diff --git a/.editorconfig b/.editorconfig
index 1583c600aa56..8b9214445391 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -344,6 +344,9 @@ resharper_keep_existing_attribute_arrangement = true
resharper_wrap_chained_binary_patterns = chop_if_long
resharper_wrap_chained_method_calls = chop_if_long
resharper_csharp_trailing_comma_in_multiline_lists = true
+resharper_csharp_qualified_using_at_nested_scope = false
+resharper_csharp_prefer_qualified_reference = false
+resharper_csharp_allow_alias = false
[*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets,props}]
indent_size = 2
diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs
index e8a104df2738..828e5ad9ac9a 100644
--- a/Content.Benchmarks/MapLoadBenchmark.cs
+++ b/Content.Benchmarks/MapLoadBenchmark.cs
@@ -46,7 +46,7 @@ public async Task Cleanup()
PoolManager.Shutdown();
}
- public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Saltern2", "Cluster2", "Atlas2"};
+ public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Convex", "Saltern2", "Cluster2", "Atlas2"};
[ParamsSource(nameof(MapsSource))]
public string Map;
diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
index 44c40143d830..04075000f5b9 100644
--- a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
+++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
@@ -39,6 +39,6 @@ protected override void UpdateState(BoundUserInterfaceState message)
if (message is not CargoBountyConsoleState state)
return;
- _menu?.UpdateEntries(state.Bounties, state.UntilNextSkip);
+ _menu?.UpdateEntries(state.Bounties, state.History, state.UntilNextSkip);
}
}
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
new file mode 100644
index 000000000000..905cf020ed1c
--- /dev/null
+++ b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
new file mode 100644
index 000000000000..54804be641c3
--- /dev/null
+++ b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
@@ -0,0 +1,49 @@
+using Content.Client.Message;
+using Content.Shared.Cargo;
+using Content.Shared.Cargo.Prototypes;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.XAML;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Timing;
+
+namespace Content.Client.Cargo.UI;
+
+[GenerateTypedNameReferences]
+public sealed partial class BountyHistoryEntry : BoxContainer
+{
+ [Dependency] private readonly IPrototypeManager _prototype = default!;
+
+ public BountyHistoryEntry(CargoBountyHistoryData bounty)
+ {
+ RobustXamlLoader.Load(this);
+ IoCManager.InjectDependencies(this);
+
+ if (!_prototype.TryIndex(bounty.Bounty, out var bountyPrototype))
+ return;
+
+ var items = new List();
+ foreach (var entry in bountyPrototype.Entries)
+ {
+ items.Add(Loc.GetString("bounty-console-manifest-entry",
+ ("amount", entry.Amount),
+ ("item", Loc.GetString(entry.Name))));
+ }
+
+ ManifestLabel.SetMarkup(Loc.GetString("bounty-console-manifest-label", ("item", string.Join(", ", items))));
+ RewardLabel.SetMarkup(Loc.GetString("bounty-console-reward-label", ("reward", bountyPrototype.Reward)));
+ IdLabel.SetMarkup(Loc.GetString("bounty-console-id-label", ("id", bounty.Id)));
+
+ TimestampLabel.SetMarkup(bounty.Timestamp.ToString(@"hh\:mm\:ss"));
+
+ if (bounty.Result == CargoBountyHistoryData.BountyResult.Completed)
+ {
+ NoticeLabel.SetMarkup(Loc.GetString("bounty-console-history-notice-completed-label"));
+ }
+ else
+ {
+ NoticeLabel.SetMarkup(Loc.GetString("bounty-console-history-notice-skipped-label",
+ ("id", bounty.ActorName ?? "")));
+ }
+ }
+}
diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml b/Content.Client/Cargo/UI/CargoBountyMenu.xaml
index bb263ff6c4ab..526ba69129bb 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml
@@ -11,15 +11,28 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
index 3767b45e4bed..c289fb6ed83c 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
@@ -15,9 +15,12 @@ public sealed partial class CargoBountyMenu : FancyWindow
public CargoBountyMenu()
{
RobustXamlLoader.Load(this);
+
+ MasterTabContainer.SetTabTitle(0, Loc.GetString("bounty-console-tab-available-label"));
+ MasterTabContainer.SetTabTitle(1, Loc.GetString("bounty-console-tab-history-label"));
}
- public void UpdateEntries(List bounties, TimeSpan untilNextSkip)
+ public void UpdateEntries(List bounties, List history, TimeSpan untilNextSkip)
{
BountyEntriesContainer.Children.Clear();
foreach (var b in bounties)
@@ -32,5 +35,21 @@ public void UpdateEntries(List bounties, TimeSpan untilNextSkip
{
MinHeight = 10
});
+
+ BountyHistoryContainer.Children.Clear();
+ if (history.Count == 0)
+ {
+ NoHistoryLabel.Visible = true;
+ }
+ else
+ {
+ NoHistoryLabel.Visible = false;
+
+ // Show the history in reverse, so last entry is first in the list
+ for (var i = history.Count - 1; i >= 0; i--)
+ {
+ BountyHistoryContainer.AddChild(new BountyHistoryEntry(history[i]));
+ }
+ }
}
}
diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs
index 9b7fd7543692..cb07e16a9c28 100644
--- a/Content.Client/Changelog/ChangelogWindow.xaml.cs
+++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs
@@ -8,6 +8,8 @@
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.XAML;
+using Robust.Shared;
+using Robust.Shared.Configuration;
using Robust.Shared.Console;
namespace Content.Client.Changelog
@@ -15,8 +17,9 @@ namespace Content.Client.Changelog
[GenerateTypedNameReferences]
public sealed partial class ChangelogWindow : FancyWindow
{
- [Dependency] private readonly IClientAdminManager _adminManager = default!;
[Dependency] private readonly ChangelogManager _changelog = default!;
+ [Dependency] private readonly IClientAdminManager _adminManager = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
public ChangelogWindow()
{
@@ -67,8 +70,22 @@ private async void PopulateChangelog()
Tabs.SetTabTitle(i++, Loc.GetString($"changelog-tab-title-{changelog.Name}"));
}
- var version = typeof(ChangelogWindow).Assembly.GetName().Version ?? new Version(1, 0);
- VersionLabel.Text = Loc.GetString("changelog-version-tag", ("version", version.ToString()));
+ // Try to get the current version from the build.json file
+ var version = _cfg.GetCVar(CVars.BuildVersion);
+ var forkId = _cfg.GetCVar(CVars.BuildForkId);
+
+ var versionText = Loc.GetString("changelog-version-unknown");
+
+ // Make sure these aren't empty, like in a dev env
+ if (!string.IsNullOrEmpty(version) && !string.IsNullOrEmpty(forkId))
+ {
+ versionText = Loc.GetString("changelog-version-tag",
+ ("fork", forkId),
+ ("version", version[..7])); // Only show the first 7 characters
+ }
+
+ // if else statements are ugly, shut up
+ VersionLabel.Text = versionText;
TabsUpdated();
}
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
index 9047624f49be..d5cc4ecfa9a0 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
@@ -39,6 +39,8 @@ protected override void Open()
SendMessage(new CriminalRecordChangeStatus(status, null));
_window.OnDialogConfirmed += (status, reason) =>
SendMessage(new CriminalRecordChangeStatus(status, reason));
+ _window.OnStatusFilterPressed += (statusFilter) =>
+ SendMessage(new CriminalRecordSetStatusFilter(statusFilter));
_window.OnHistoryUpdated += UpdateHistory;
_window.OnHistoryClosed += () => _historyWindow?.Close();
_window.OnClose += Close;
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
index 77da0ba1b065..d36718cf08ba 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
@@ -1,36 +1,142 @@
+ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
+ Title="{Loc 'criminal-records-console-window-title'}"
+ MinSize="695 440">
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
index 7cae290fe178..a35cf84c44f1 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
@@ -13,6 +13,9 @@
using Robust.Shared.Random;
using Robust.Shared.Utility;
using System.Linq;
+using System.Numerics;
+using Content.Shared.StatusIcon;
+using Robust.Client.GameObjects;
namespace Content.Client.CriminalRecords;
@@ -24,6 +27,8 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
private readonly IPrototypeManager _proto;
private readonly IRobustRandom _random;
private readonly AccessReaderSystem _accessReader;
+ [Dependency] private readonly IEntityManager _entManager = default!;
+ private readonly SpriteSystem _spriteSystem;
public readonly EntityUid Console;
@@ -33,10 +38,12 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
public Action? OnKeySelected;
public Action? OnFiltersChanged;
public Action? OnStatusSelected;
+ public Action? OnCheckStatus;
public Action? OnHistoryUpdated;
public Action? OnHistoryClosed;
public Action? OnDialogConfirmed;
+ public Action? OnStatusFilterPressed;
private uint _maxLength;
private bool _access;
private uint? _selectedKey;
@@ -46,6 +53,8 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
private StationRecordFilterType _currentFilterType;
+ private SecurityStatus _currentCrewListFilter;
+
public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerManager playerManager, IPrototypeManager prototypeManager, IRobustRandom robustRandom, AccessReaderSystem accessReader)
{
RobustXamlLoader.Load(this);
@@ -55,10 +64,14 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
_proto = prototypeManager;
_random = robustRandom;
_accessReader = accessReader;
+ IoCManager.InjectDependencies(this);
+ _spriteSystem = _entManager.System();
_maxLength = maxLength;
_currentFilterType = StationRecordFilterType.Name;
+ _currentCrewListFilter = SecurityStatus.None;
+
OpenCentered();
foreach (var item in Enum.GetValues())
@@ -71,6 +84,12 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
AddStatusSelect(status);
}
+ //Populate status to filter crew list
+ foreach (var item in Enum.GetValues())
+ {
+ CrewListFilter.AddItem(GetCrewListFilterLocals(item), (int)item);
+ }
+
OnClose += () => _reasonDialog?.Close();
RecordListing.OnItemSelected += args =>
@@ -97,6 +116,20 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
}
};
+ //Select Status to filter crew
+ CrewListFilter.OnItemSelected += eventArgs =>
+ {
+ var type = (SecurityStatus)eventArgs.Id;
+
+ if (_currentCrewListFilter != type)
+ {
+ _currentCrewListFilter = type;
+
+ StatusFilterPressed(type);
+
+ }
+ };
+
FilterText.OnTextEntered += args =>
{
FilterListingOfRecords(args.Text);
@@ -104,16 +137,21 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
StatusOptionButton.OnItemSelected += args =>
{
- SetStatus((SecurityStatus) args.Id);
+ SetStatus((SecurityStatus)args.Id);
};
HistoryButton.OnPressed += _ =>
{
- if (_selectedRecord is {} record)
+ if (_selectedRecord is { } record)
OnHistoryUpdated?.Invoke(record, _access, true);
};
}
+ public void StatusFilterPressed(SecurityStatus statusSelected)
+ {
+ OnStatusFilterPressed?.Invoke(statusSelected);
+ }
+
public void UpdateState(CriminalRecordsConsoleState state)
{
if (state.Filter != null)
@@ -129,10 +167,14 @@ public void UpdateState(CriminalRecordsConsoleState state)
}
}
- _selectedKey = state.SelectedKey;
+ if (state.FilterStatus != _currentCrewListFilter)
+ {
+ _currentCrewListFilter = state.FilterStatus;
+ }
+ _selectedKey = state.SelectedKey;
FilterType.SelectId((int)_currentFilterType);
-
+ CrewListFilter.SelectId((int)_currentCrewListFilter);
NoRecords.Visible = state.RecordListing == null || state.RecordListing.Count == 0;
PopulateRecordListing(state.RecordListing);
@@ -179,7 +221,7 @@ private void PopulateRecordListing(Dictionary? listing)
// in parallel to synchronize the items in RecordListing with `entries`.
int i = RecordListing.Count - 1;
int j = entries.Count - 1;
- while(i >= 0 && j >= 0)
+ while (i >= 0 && j >= 0)
{
var strcmp = string.Compare(RecordListing[i].Text, entries[j].Value, StringComparison.Ordinal);
if (strcmp == 0)
@@ -212,23 +254,44 @@ private void PopulateRecordListing(Dictionary? listing)
// And finally, any remaining items in `entries`, don't exist in RecordListing. Create them.
while (j >= 0)
{
- RecordListing.Insert(0, new ItemList.Item(RecordListing){Text = entries[j].Value, Metadata = entries[j].Key});
+ RecordListing.Insert(0, new ItemList.Item(RecordListing){ Text = entries[j].Value, Metadata = entries[j].Key });
j--;
}
}
-
private void PopulateRecordContainer(GeneralStationRecord stationRecord, CriminalRecord criminalRecord)
{
+ var specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Misc/job_icons.rsi"), "Unknown");
var na = Loc.GetString("generic-not-available-shorthand");
PersonName.Text = stationRecord.Name;
- PersonPrints.Text = Loc.GetString("general-station-record-console-record-fingerprint", ("fingerprint", stationRecord.Fingerprint ?? na));
- PersonDna.Text = Loc.GetString("general-station-record-console-record-dna", ("dna", stationRecord.DNA ?? na));
+ PersonJob.Text = stationRecord.JobTitle ?? na;
+
+ // Job icon
+ if (_proto.TryIndex(stationRecord.JobIcon, out var proto))
+ {
+ PersonJobIcon.Texture = _spriteSystem.Frame0(proto.Icon);
+ }
+
+ PersonPrints.Text = stationRecord.Fingerprint ?? Loc.GetString("generic-not-available-shorthand");
+ PersonDna.Text = stationRecord.DNA ?? Loc.GetString("generic-not-available-shorthand");
+
+ if (criminalRecord.Status != SecurityStatus.None)
+ {
+ specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Misc/security_icons.rsi"), GetStatusIcon(criminalRecord.Status));
+ }
+ PersonStatusTX.SetFromSpriteSpecifier(specifier);
+ PersonStatusTX.DisplayRect.TextureScale = new Vector2(3f, 3f);
- StatusOptionButton.SelectId((int) criminalRecord.Status);
- if (criminalRecord.Reason is {} reason)
+ StatusOptionButton.SelectId((int)criminalRecord.Status);
+ if (criminalRecord.Reason is { } reason)
{
var message = FormattedMessage.FromMarkupOrThrow(Loc.GetString("criminal-records-console-wanted-reason"));
+
+ if (criminalRecord.Status == SecurityStatus.Suspected)
+ {
+ message = FormattedMessage.FromMarkupOrThrow(Loc.GetString("criminal-records-console-suspected-reason"));
+ }
message.AddText($": {reason}");
+
WantedReason.SetMessage(message);
WantedReason.Visible = true;
}
@@ -288,9 +351,37 @@ private void GetReason(SecurityStatus status)
_reasonDialog.OnClose += () => { _reasonDialog = null; };
}
-
+ private string GetStatusIcon(SecurityStatus status)
+ {
+ return status switch
+ {
+ SecurityStatus.Paroled => "hud_paroled",
+ SecurityStatus.Wanted => "hud_wanted",
+ SecurityStatus.Detained => "hud_incarcerated",
+ SecurityStatus.Discharged => "hud_discharged",
+ SecurityStatus.Suspected => "hud_suspected",
+ _ => "SecurityIconNone"
+ };
+ }
private string GetTypeFilterLocals(StationRecordFilterType type)
{
return Loc.GetString($"criminal-records-{type.ToString().ToLower()}-filter");
}
+
+ private string GetCrewListFilterLocals(SecurityStatus type)
+ {
+ string result;
+
+ // If "NONE" override to "show all"
+ if (type == SecurityStatus.None)
+ {
+ result = Loc.GetString("criminal-records-console-show-all");
+ }
+ else
+ {
+ result = Loc.GetString($"criminal-records-status-{type.ToString().ToLower()}");
+ }
+
+ return result;
+ }
}
diff --git a/Content.Client/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs
index bc52730b0e7b..5e3de813d653 100644
--- a/Content.Client/Doors/DoorSystem.cs
+++ b/Content.Client/Doors/DoorSystem.cs
@@ -21,112 +21,131 @@ public override void Initialize()
protected override void OnComponentInit(Entity ent, ref ComponentInit args)
{
var comp = ent.Comp;
- comp.OpenSpriteStates = new(2);
- comp.ClosedSpriteStates = new(2);
+ comp.OpenSpriteStates = new List<(DoorVisualLayers, string)>(2);
+ comp.ClosedSpriteStates = new List<(DoorVisualLayers, string)>(2);
comp.OpenSpriteStates.Add((DoorVisualLayers.Base, comp.OpenSpriteState));
comp.ClosedSpriteStates.Add((DoorVisualLayers.Base, comp.ClosedSpriteState));
- comp.OpeningAnimation = new Animation()
+ comp.OpeningAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.OpeningAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.Base,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f),
+ },
+ },
},
};
- comp.ClosingAnimation = new Animation()
+ comp.ClosingAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.ClosingAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.Base,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f),
+ },
+ },
},
};
- comp.EmaggingAnimation = new Animation ()
+ comp.EmaggingAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.EmaggingAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.BaseUnlit,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.EmaggingSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.EmaggingSpriteState, 0f),
+ },
+ },
},
};
}
- private void OnAppearanceChange(EntityUid uid, DoorComponent comp, ref AppearanceChangeEvent args)
+ private void OnAppearanceChange(Entity entity, ref AppearanceChangeEvent args)
{
if (args.Sprite == null)
return;
- if(!AppearanceSystem.TryGetData(uid, DoorVisuals.State, out var state, args.Component))
+ if (!AppearanceSystem.TryGetData(entity, DoorVisuals.State, out var state, args.Component))
state = DoorState.Closed;
- if (AppearanceSystem.TryGetData(uid, DoorVisuals.BaseRSI, out var baseRsi, args.Component))
- {
- if (!_resourceCache.TryGetResource(SpriteSpecifierSerializer.TextureRoot / baseRsi, out var res))
- {
- Log.Error("Unable to load RSI '{0}'. Trace:\n{1}", baseRsi, Environment.StackTrace);
- }
- foreach (var layer in args.Sprite.AllLayers)
- {
- layer.Rsi = res?.RSI;
- }
- }
+ if (AppearanceSystem.TryGetData(entity, DoorVisuals.BaseRSI, out var baseRsi, args.Component))
+ UpdateSpriteLayers(args.Sprite, baseRsi);
- TryComp(uid, out var animPlayer);
- if (_animationSystem.HasRunningAnimation(uid, animPlayer, DoorComponent.AnimationKey))
- _animationSystem.Stop(uid, animPlayer, DoorComponent.AnimationKey); // Halt all running anomations.
+ if (_animationSystem.HasRunningAnimation(entity, DoorComponent.AnimationKey))
+ _animationSystem.Stop(entity.Owner, DoorComponent.AnimationKey);
- args.Sprite.DrawDepth = comp.ClosedDrawDepth;
- switch(state)
+ UpdateAppearanceForDoorState(entity, args.Sprite, state);
+ }
+
+ private void UpdateAppearanceForDoorState(Entity entity, SpriteComponent sprite, DoorState state)
+ {
+ sprite.DrawDepth = state is DoorState.Open ? entity.Comp.OpenDrawDepth : entity.Comp.ClosedDrawDepth;
+
+ switch (state)
{
case DoorState.Open:
- args.Sprite.DrawDepth = comp.OpenDrawDepth;
- foreach(var (layer, layerState) in comp.OpenSpriteStates)
+ foreach (var (layer, layerState) in entity.Comp.OpenSpriteStates)
{
- args.Sprite.LayerSetState(layer, layerState);
+ sprite.LayerSetState(layer, layerState);
}
- break;
+
+ return;
case DoorState.Closed:
- foreach(var (layer, layerState) in comp.ClosedSpriteStates)
+ foreach (var (layer, layerState) in entity.Comp.ClosedSpriteStates)
{
- args.Sprite.LayerSetState(layer, layerState);
+ sprite.LayerSetState(layer, layerState);
}
- break;
+
+ return;
case DoorState.Opening:
- if (animPlayer != null && comp.OpeningAnimationTime != 0.0)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.OpeningAnimation, DoorComponent.AnimationKey);
- break;
+ if (entity.Comp.OpeningAnimationTime == 0.0)
+ return;
+
+ _animationSystem.Play(entity, (Animation)entity.Comp.OpeningAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Closing:
- if (animPlayer != null && comp.ClosingAnimationTime != 0.0 && comp.CurrentlyCrushing.Count == 0)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.ClosingAnimation, DoorComponent.AnimationKey);
- break;
+ if (entity.Comp.ClosingAnimationTime == 0.0 || entity.Comp.CurrentlyCrushing.Count != 0)
+ return;
+
+ _animationSystem.Play(entity, (Animation)entity.Comp.ClosingAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Denying:
- if (animPlayer != null)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.DenyingAnimation, DoorComponent.AnimationKey);
- break;
- case DoorState.Welded:
- break;
+ _animationSystem.Play(entity, (Animation)entity.Comp.DenyingAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Emagging:
- if (animPlayer != null)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.EmaggingAnimation, DoorComponent.AnimationKey);
- break;
- default:
- throw new ArgumentOutOfRangeException($"Invalid door visual state {state}");
+ _animationSystem.Play(entity, (Animation)entity.Comp.EmaggingAnimation, DoorComponent.AnimationKey);
+
+ return;
}
}
+
+ private void UpdateSpriteLayers(SpriteComponent sprite, string baseRsi)
+ {
+ if (!_resourceCache.TryGetResource(SpriteSpecifierSerializer.TextureRoot / baseRsi, out var res))
+ {
+ Log.Error("Unable to load RSI '{0}'. Trace:\n{1}", baseRsi, Environment.StackTrace);
+ return;
+ }
+
+ sprite.BaseRSI = res.RSI;
+ }
}
diff --git a/Content.Client/Magic/MagicSystem.cs b/Content.Client/Magic/MagicSystem.cs
index 03aa9eb56d4d..086a0f7b42e7 100644
--- a/Content.Client/Magic/MagicSystem.cs
+++ b/Content.Client/Magic/MagicSystem.cs
@@ -1,5 +1,8 @@
using Content.Shared.Magic;
+using Content.Shared.Magic.Events;
namespace Content.Client.Magic;
-public sealed class MagicSystem : SharedMagicSystem;
+public sealed class MagicSystem : SharedMagicSystem
+{
+}
diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
index 179a2c25c029..ac23e8216b23 100644
--- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
+++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
@@ -25,6 +25,7 @@ public sealed partial class CrewMonitoringWindow : FancyWindow
{
[Dependency] private readonly IEntityManager _entManager = default!;
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
+ private readonly SharedTransformSystem _transformSystem;
private readonly SpriteSystem _spriteSystem;
private NetEntity? _trackedEntity;
@@ -36,10 +37,10 @@ public CrewMonitoringWindow()
RobustXamlLoader.Load(this);
IoCManager.InjectDependencies(this);
+ _transformSystem = _entManager.System();
_spriteSystem = _entManager.System();
NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap;
-
}
public void Set(string stationName, EntityUid? mapUid)
@@ -290,7 +291,7 @@ private void PopulateDepartmentList(IEnumerable departmentSens
{
NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid,
new NavMapBlip
- (coordinates.Value,
+ (CoordinatesToLocal(coordinates.Value),
_blipTexture,
(_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
sensor.SuitSensorUid == _trackedEntity));
@@ -356,7 +357,7 @@ private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTra
if (NavMap.TrackedEntities.TryGetValue(castSensor.SuitSensorUid, out var data))
{
data = new NavMapBlip
- (data.Coordinates,
+ (CoordinatesToLocal(data.Coordinates),
data.Texture,
(currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
castSensor.SuitSensorUid == currTrackedEntity);
@@ -421,6 +422,26 @@ private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollP
return false;
}
+ ///
+ /// Converts the input coordinates to an EntityCoordinates which are in
+ /// reference to the grid that the map is displaying. This is a stylistic
+ /// choice; this window deliberately limits the rate that blips update,
+ /// but if the blip is attached to another grid which is moving, that
+ /// blip will move smoothly, unlike the others. By converting the
+ /// coordinates, we are back in control of the blip movement.
+ ///
+ private EntityCoordinates CoordinatesToLocal(EntityCoordinates refCoords)
+ {
+ if (NavMap.MapUid != null)
+ {
+ return _transformSystem.WithEntityId(refCoords, (EntityUid)NavMap.MapUid);
+ }
+ else
+ {
+ return refCoords;
+ }
+ }
+
private void ClearOutDatedData()
{
SensorsTable.RemoveAllChildren();
diff --git a/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..5ed1bf4a6cd4
--- /dev/null
+++ b/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,19 @@
+using System.Numerics;
+using Content.Client.Movement.Systems;
+using Content.Shared.Movement.Components;
+
+namespace Content.Client.Movement.Components;
+
+[RegisterComponent]
+public sealed partial class EyeCursorOffsetComponent : SharedEyeCursorOffsetComponent
+{
+ ///
+ /// The location the offset will attempt to pan towards; based on the cursor's position in the game window.
+ ///
+ public Vector2 TargetPosition = Vector2.Zero;
+
+ ///
+ /// The current positional offset being applied. Used to enable gradual panning.
+ ///
+ public Vector2 CurrentPosition = Vector2.Zero;
+}
diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs
index 9fbd4b5c37d0..518a4a1bd40a 100644
--- a/Content.Client/Movement/Systems/ContentEyeSystem.cs
+++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs
@@ -1,6 +1,7 @@
using System.Numerics;
using Content.Shared.Movement.Components;
using Content.Shared.Movement.Systems;
+using Robust.Client.GameObjects;
using Robust.Client.Player;
namespace Content.Client.Movement.Systems;
@@ -52,4 +53,14 @@ public void RequestEye(bool drawFov, bool drawLight)
{
RaisePredictiveEvent(new RequestEyeEvent(drawFov, drawLight));
}
+
+ public override void FrameUpdate(float frameTime)
+ {
+ base.FrameUpdate(frameTime);
+ var eyeEntities = AllEntityQuery();
+ while (eyeEntities.MoveNext(out var entity, out ContentEyeComponent? contentComponent, out EyeComponent? eyeComponent))
+ {
+ UpdateEyeOffset((entity, eyeComponent));
+ }
+ }
}
diff --git a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs
new file mode 100644
index 000000000000..f3bff9ef0c95
--- /dev/null
+++ b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs
@@ -0,0 +1,91 @@
+using System.Numerics;
+using Content.Client.Movement.Components;
+using Content.Shared.Camera;
+using Content.Shared.Inventory;
+using Content.Shared.Movement.Systems;
+using Robust.Client.Graphics;
+using Robust.Client.Input;
+using Robust.Shared.Map;
+using Robust.Client.Player;
+
+namespace Content.Client.Movement.Systems;
+
+public partial class EyeCursorOffsetSystem : EntitySystem
+{
+ [Dependency] private readonly IEyeManager _eyeManager = default!;
+ [Dependency] private readonly IInputManager _inputManager = default!;
+ [Dependency] private readonly IPlayerManager _player = default!;
+ [Dependency] private readonly SharedTransformSystem _transform = default!;
+ [Dependency] private readonly SharedContentEyeSystem _contentEye = default!;
+ [Dependency] private readonly IMapManager _mapManager = default!;
+ [Dependency] private readonly IClyde _clyde = default!;
+
+ // This value is here to make sure the user doesn't have to move their mouse
+ // all the way out to the edge of the screen to get the full offset.
+ static private float _edgeOffset = 0.9f;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnGetEyeOffsetEvent);
+ }
+
+ private void OnGetEyeOffsetEvent(EntityUid uid, EyeCursorOffsetComponent component, ref GetEyeOffsetEvent args)
+ {
+ var offset = OffsetAfterMouse(uid, component);
+ if (offset == null)
+ return;
+
+ args.Offset += offset.Value;
+ }
+
+ public Vector2? OffsetAfterMouse(EntityUid uid, EyeCursorOffsetComponent? component)
+ {
+ var localPlayer = _player.LocalPlayer?.ControlledEntity;
+ var mousePos = _inputManager.MouseScreenPosition;
+ var screenSize = _clyde.MainWindow.Size;
+ var minValue = MathF.Min(screenSize.X / 2, screenSize.Y / 2) * _edgeOffset;
+
+ var mouseNormalizedPos = new Vector2(-(mousePos.X - screenSize.X / 2) / minValue, (mousePos.Y - screenSize.Y / 2) / minValue); // X needs to be inverted here for some reason, otherwise it ends up flipped.
+
+ if (localPlayer == null)
+ return null;
+
+ var playerPos = _transform.GetWorldPosition(localPlayer.Value);
+
+ if (component == null)
+ {
+ component = EnsureComp(uid);
+ }
+
+ // Doesn't move the offset if the mouse has left the game window!
+ if (mousePos.Window != WindowId.Invalid)
+ {
+ // The offset must account for the in-world rotation.
+ var eyeRotation = _eyeManager.CurrentEye.Rotation;
+ var mouseActualRelativePos = Vector2.Transform(mouseNormalizedPos, System.Numerics.Quaternion.CreateFromAxisAngle(-System.Numerics.Vector3.UnitZ, (float)(eyeRotation.Opposite().Theta))); // I don't know, it just works.
+
+ // Caps the offset into a circle around the player.
+ mouseActualRelativePos *= component.MaxOffset;
+ if (mouseActualRelativePos.Length() > component.MaxOffset)
+ {
+ mouseActualRelativePos = mouseActualRelativePos.Normalized() * component.MaxOffset;
+ }
+
+ component.TargetPosition = mouseActualRelativePos;
+
+ //Makes the view not jump immediately when moving the cursor fast.
+ if (component.CurrentPosition != component.TargetPosition)
+ {
+ Vector2 vectorOffset = component.TargetPosition - component.CurrentPosition;
+ if (vectorOffset.Length() > component.OffsetSpeed)
+ {
+ vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed;
+ }
+ component.CurrentPosition += vectorOffset;
+ }
+ }
+ return component.CurrentPosition;
+ }
+}
diff --git a/Content.Client/Overlays/EquipmentHudSystem.cs b/Content.Client/Overlays/EquipmentHudSystem.cs
index 502a1f36274b..f3c556961a55 100644
--- a/Content.Client/Overlays/EquipmentHudSystem.cs
+++ b/Content.Client/Overlays/EquipmentHudSystem.cs
@@ -56,35 +56,35 @@ protected virtual void UpdateInternal(RefreshEquipmentHudEvent args) { }
protected virtual void DeactivateInternal() { }
- private void OnStartup(EntityUid uid, T component, ComponentStartup args)
+ private void OnStartup(Entity ent, ref ComponentStartup args)
{
- RefreshOverlay(uid);
+ RefreshOverlay();
}
- private void OnRemove(EntityUid uid, T component, ComponentRemove args)
+ private void OnRemove(Entity ent, ref ComponentRemove args)
{
- RefreshOverlay(uid);
+ RefreshOverlay();
}
private void OnPlayerAttached(LocalPlayerAttachedEvent args)
{
- RefreshOverlay(args.Entity);
+ RefreshOverlay();
}
private void OnPlayerDetached(LocalPlayerDetachedEvent args)
{
- if (_player.LocalSession?.AttachedEntity == null)
+ if (_player.LocalSession?.AttachedEntity is null)
Deactivate();
}
- private void OnCompEquip(EntityUid uid, T component, GotEquippedEvent args)
+ private void OnCompEquip(Entity ent, ref GotEquippedEvent args)
{
- RefreshOverlay(args.Equipee);
+ RefreshOverlay();
}
- private void OnCompUnequip(EntityUid uid, T component, GotUnequippedEvent args)
+ private void OnCompUnequip(Entity ent, ref GotUnequippedEvent args)
{
- RefreshOverlay(args.Equipee);
+ RefreshOverlay();
}
private void OnRoundRestart(RoundRestartCleanupEvent args)
@@ -92,24 +92,24 @@ private void OnRoundRestart(RoundRestartCleanupEvent args)
Deactivate();
}
- protected virtual void OnRefreshEquipmentHud(EntityUid uid, T component, InventoryRelayedEvent> args)
+ protected virtual void OnRefreshEquipmentHud(Entity ent, ref InventoryRelayedEvent> args)
{
- OnRefreshComponentHud(uid, component, args.Args);
+ OnRefreshComponentHud(ent, ref args.Args);
}
- protected virtual void OnRefreshComponentHud(EntityUid uid, T component, RefreshEquipmentHudEvent args)
+ protected virtual void OnRefreshComponentHud(Entity ent, ref RefreshEquipmentHudEvent args)
{
args.Active = true;
- args.Components.Add(component);
+ args.Components.Add(ent.Comp);
}
- protected void RefreshOverlay(EntityUid uid)
+ protected void RefreshOverlay()
{
- if (uid != _player.LocalSession?.AttachedEntity)
+ if (_player.LocalSession?.AttachedEntity is not { } entity)
return;
var ev = new RefreshEquipmentHudEvent(TargetSlots);
- RaiseLocalEvent(uid, ev);
+ RaiseLocalEvent(entity, ref ev);
if (ev.Active)
Update(ev);
diff --git a/Content.Client/Overlays/ShowHealthBarsSystem.cs b/Content.Client/Overlays/ShowHealthBarsSystem.cs
index b23209ff202b..9fefe93094ef 100644
--- a/Content.Client/Overlays/ShowHealthBarsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthBarsSystem.cs
@@ -28,7 +28,7 @@ public override void Initialize()
private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args)
{
- RefreshOverlay(ent);
+ RefreshOverlay();
}
protected override void UpdateInternal(RefreshEquipmentHudEvent component)
diff --git a/Content.Client/Overlays/ShowHealthIconsSystem.cs b/Content.Client/Overlays/ShowHealthIconsSystem.cs
index b4d845e4217a..3301261bd09e 100644
--- a/Content.Client/Overlays/ShowHealthIconsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthIconsSystem.cs
@@ -47,7 +47,7 @@ protected override void DeactivateInternal()
private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args)
{
- RefreshOverlay(ent);
+ RefreshOverlay();
}
private void OnGetStatusIconsEvent(Entity entity, ref GetStatusIconsEvent args)
diff --git a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
index cdb9c54fdfa4..8f8b8e640775 100644
--- a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
+++ b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
@@ -15,6 +15,16 @@ public override void Initialize()
base.Initialize();
SubscribeLocalEvent(OnGetStatusIconsEvent);
+ SubscribeLocalEvent(OnGetStatusIconsEventFake);
+ }
+ // TODO: Probably need to get this OFF of client since this can be read by bad actors rather easily
+ // ...imagine cheating in a game about silly paper dolls
+ private void OnGetStatusIconsEventFake(EntityUid uid, FakeMindShieldComponent component, ref GetStatusIconsEvent ev)
+ {
+ if(!IsActive)
+ return;
+ if (component.IsEnabled && _prototype.TryIndex(component.MindShieldStatusIcon, out var fakeStatusIconPrototype))
+ ev.StatusIcons.Add(fakeStatusIconPrototype);
}
private void OnGetStatusIconsEvent(EntityUid uid, MindShieldComponent component, ref GetStatusIconsEvent ev)
diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
index 63f15837068a..7cef7d58b63d 100644
--- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
+++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
@@ -1,50 +1,129 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
+ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
+ xmlns:ui="clr-namespace:Content.Client.ParticleAccelerator.UI"
+ Title="{Loc 'particle-accelerator-control-menu-device-version-label'}"
+ MinSize="320 120">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
@@ -58,17 +137,47 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
index 7236714ef29f..e4727e93660f 100644
--- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs
+++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
@@ -81,13 +81,19 @@ protected override void Draw(DrawingHandleScreen handle)
// Get the positive reduced angle.
var displayRot = -worldRot.Reduced();
- GridPosition.Text = $"{worldPos.X:0.0}, {worldPos.Y:0.0}";
- GridOrientation.Text = $"{displayRot.Degrees:0.0}";
+ GridPosition.Text = Loc.GetString("shuttle-console-position-value",
+ ("X", $"{worldPos.X:0.0}"),
+ ("Y", $"{worldPos.Y:0.0}"));
+ GridOrientation.Text = Loc.GetString("shuttle-console-orientation-value",
+ ("angle", $"{displayRot.Degrees:0.0}"));
var gridVelocity = gridBody.LinearVelocity;
gridVelocity = displayRot.RotateVec(gridVelocity);
// Get linear velocity relative to the console entity
- GridLinearVelocity.Text = $"{gridVelocity.X + 10f * float.Epsilon:0.0}, {gridVelocity.Y + 10f * float.Epsilon:0.0}";
- GridAngularVelocity.Text = $"{-gridBody.AngularVelocity + 10f * float.Epsilon:0.0}";
+ GridLinearVelocity.Text = Loc.GetString("shuttle-console-linear-velocity-value",
+ ("X", $"{gridVelocity.X + 10f * float.Epsilon:0.0}"),
+ ("Y", $"{gridVelocity.Y + 10f * float.Epsilon:0.0}"));
+ GridAngularVelocity.Text = Loc.GetString("shuttle-console-angular-velocity-value",
+ ("angularVelocity", $"{-MathHelper.RadiansToDegrees(gridBody.AngularVelocity) + 10f * float.Epsilon:0.0}"));
}
}
diff --git a/Content.Client/Storage/StorageBoundUserInterface.cs b/Content.Client/Storage/StorageBoundUserInterface.cs
index b90977cbb4da..bacc90eabffc 100644
--- a/Content.Client/Storage/StorageBoundUserInterface.cs
+++ b/Content.Client/Storage/StorageBoundUserInterface.cs
@@ -1,39 +1,80 @@
-using Content.Client.Storage.Systems;
+using Content.Client.UserInterface.Systems.Storage;
+using Content.Client.UserInterface.Systems.Storage.Controls;
using Content.Shared.Storage;
using JetBrains.Annotations;
+using Robust.Client.UserInterface;
namespace Content.Client.Storage;
[UsedImplicitly]
public sealed class StorageBoundUserInterface : BoundUserInterface
{
- [Dependency] private readonly IEntityManager _entManager = default!;
-
- private readonly StorageSystem _storage;
-
- [Obsolete] public override bool DeferredClose => false;
+ private StorageWindow? _window;
public StorageBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
- IoCManager.InjectDependencies(this);
- _storage = _entManager.System();
}
protected override void Open()
{
base.Open();
- if (_entManager.TryGetComponent(Owner, out var comp))
- _storage.OpenStorageWindow((Owner, comp));
+ _window = IoCManager.Resolve()
+ .GetUIController()
+ .CreateStorageWindow(Owner);
+
+ if (EntMan.TryGetComponent(Owner, out StorageComponent? storage))
+ {
+ _window.UpdateContainer((Owner, storage));
+ }
+
+ _window.OnClose += Close;
+ _window.FlagDirty();
+ }
+
+ public void Refresh()
+ {
+ _window?.FlagDirty();
+ }
+
+ public void Reclaim()
+ {
+ if (_window == null)
+ return;
+
+ _window.OnClose -= Close;
+ _window.Orphan();
+ _window = null;
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
- if (!disposing)
+
+ Reclaim();
+ }
+
+ public void Hide()
+ {
+ if (_window == null)
+ return;
+
+ _window.Visible = false;
+ }
+
+ public void Show()
+ {
+ if (_window == null)
return;
- _storage.CloseStorageWindow(Owner);
+ _window.Visible = true;
+ }
+
+ public void ReOpen()
+ {
+ _window?.Orphan();
+ _window = null;
+ Open();
}
}
diff --git a/Content.Client/Storage/Systems/StorageSystem.cs b/Content.Client/Storage/Systems/StorageSystem.cs
index eea7b9ec797f..ab4d9407b222 100644
--- a/Content.Client/Storage/Systems/StorageSystem.cs
+++ b/Content.Client/Storage/Systems/StorageSystem.cs
@@ -4,7 +4,8 @@
using Content.Shared.Hands;
using Content.Shared.Storage;
using Content.Shared.Storage.EntitySystems;
-using Robust.Shared.Collections;
+using Robust.Client.Player;
+using Robust.Shared.GameStates;
using Robust.Shared.Map;
using Robust.Shared.Timing;
@@ -13,114 +14,95 @@ namespace Content.Client.Storage.Systems;
public sealed class StorageSystem : SharedStorageSystem
{
[Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly IPlayerManager _player = default!;
[Dependency] private readonly EntityPickupAnimationSystem _entityPickupAnimation = default!;
- private readonly List> _openStorages = new();
- public int OpenStorageAmount => _openStorages.Count;
-
- public event Action>? StorageUpdated;
- public event Action?>? StorageOrderChanged;
+ private Dictionary _oldStoredItems = new();
public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnShutdown);
+ SubscribeLocalEvent(OnStorageHandleState);
SubscribeNetworkEvent(HandlePickupAnimation);
SubscribeAllEvent(HandleAnimatingInsertingEntities);
}
- public override void UpdateUI(Entity entity)
+ private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args)
{
- if (Resolve(entity.Owner, ref entity.Comp))
- StorageUpdated?.Invoke((entity, entity.Comp));
- }
+ if (args.Current is not StorageComponentState state)
+ return;
- public void OpenStorageWindow(Entity entity)
- {
- if (_openStorages.Contains(entity))
- {
- if (_openStorages.LastOrDefault() == entity)
- {
- CloseStorageWindow((entity, entity.Comp));
- }
- else
- {
- var storages = new ValueList>(_openStorages);
- var reverseStorages = storages.Reverse();
+ component.Grid.Clear();
+ component.Grid.AddRange(state.Grid);
+ component.MaxItemSize = state.MaxItemSize;
+ component.Whitelist = state.Whitelist;
+ component.Blacklist = state.Blacklist;
- foreach (var storageEnt in reverseStorages)
- {
- if (storageEnt == entity)
- break;
+ _oldStoredItems.Clear();
- CloseStorageBoundUserInterface(storageEnt.Owner);
- _openStorages.Remove(entity);
- }
- }
- return;
+ foreach (var item in component.StoredItems)
+ {
+ _oldStoredItems.Add(item.Key, item.Value);
}
- ClearNonParentStorages(entity);
- _openStorages.Add(entity);
- Entity? last = _openStorages.LastOrDefault();
- StorageOrderChanged?.Invoke(last);
- }
-
- public void CloseStorageWindow(Entity entity)
- {
- if (!Resolve(entity, ref entity.Comp, false))
- return;
+ component.StoredItems.Clear();
- if (!_openStorages.Contains((entity, entity.Comp)))
- return;
+ foreach (var (nent, location) in state.StoredItems)
+ {
+ var ent = EnsureEntity(nent, uid);
+ component.StoredItems[ent] = location;
+ }
- var storages = new ValueList>(_openStorages);
- var reverseStorages = storages.Reverse();
+ component.SavedLocations.Clear();
- foreach (var storage in reverseStorages)
+ foreach (var loc in state.SavedLocations)
{
- CloseStorageBoundUserInterface(storage.Owner);
- _openStorages.Remove(storage);
- if (storage.Owner == entity.Owner)
- break;
+ component.SavedLocations[loc.Key] = new(loc.Value);
}
- Entity? last = null;
- if (_openStorages.Any())
- last = _openStorages.LastOrDefault();
- StorageOrderChanged?.Invoke(last);
- }
+ var uiDirty = !component.StoredItems.SequenceEqual(_oldStoredItems);
- private void ClearNonParentStorages(EntityUid uid)
- {
- var storages = new ValueList>(_openStorages);
- var reverseStorages = storages.Reverse();
-
- foreach (var storage in reverseStorages)
+ if (uiDirty && UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
{
- if (storage.Comp.Container.Contains(uid))
- break;
+ storageBui.Refresh();
+ // Make sure nesting still updated.
+ var player = _player.LocalEntity;
- CloseStorageBoundUserInterface(storage.Owner);
- _openStorages.Remove(storage);
+ if (NestedStorage && player != null && ContainerSystem.TryGetContainingContainer((uid, null, null), out var container) &&
+ UI.TryGetOpenUi(container.Owner, StorageComponent.StorageUiKey.Key, out var containerBui))
+ {
+ containerBui.Hide();
+ }
+ else
+ {
+ storageBui.Show();
+ }
}
}
- private void CloseStorageBoundUserInterface(Entity entity)
+ public override void UpdateUI(Entity entity)
{
- if (!Resolve(entity, ref entity.Comp, false))
- return;
-
- if (entity.Comp.ClientOpenInterfaces.GetValueOrDefault(StorageComponent.StorageUiKey.Key) is not { } bui)
- return;
+ if (UI.TryGetOpenUi(entity.Owner, StorageComponent.StorageUiKey.Key, out var sBui))
+ {
+ sBui.Refresh();
+ }
+ }
- bui.Close();
+ protected override void HideStorageWindow(EntityUid uid, EntityUid actor)
+ {
+ if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
+ {
+ storageBui.Hide();
+ }
}
- private void OnShutdown(Entity ent, ref ComponentShutdown args)
+ protected override void ShowStorageWindow(EntityUid uid, EntityUid actor)
{
- CloseStorageWindow((ent, ent.Comp));
+ if (UI.TryGetOpenUi(uid, StorageComponent.StorageUiKey.Key, out var storageBui))
+ {
+ storageBui.Show();
+ }
}
///
@@ -142,7 +124,7 @@ public void PickupAnimation(EntityUid item, EntityCoordinates initialCoords, Ent
{
if (!_timing.IsFirstTimePredicted)
return;
-
+
if (TransformSystem.InRange(finalCoords, initialCoords, 0.1f) ||
!Exists(initialCoords.EntityId) || !Exists(finalCoords.EntityId))
{
diff --git a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
index c10c33a99020..9d9dd3091164 100644
--- a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
+++ b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
@@ -3,6 +3,7 @@
using Content.Shared.Mobs;
using Content.Shared.Mobs.Components;
using Content.Shared.Mobs.Systems;
+using Content.Shared.Traits.Assorted;
using JetBrains.Annotations;
using Robust.Client.Graphics;
using Robust.Client.Player;
@@ -94,7 +95,11 @@ private void UpdateOverlays(EntityUid entity, MobStateComponent? mobState, Damag
{
case MobState.Alive:
{
- if (damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
+ if (EntityManager.HasComponent(entity))
+ {
+ _overlay.BruteLevel = 0;
+ }
+ else if (damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
{
_overlay.BruteLevel = FixedPoint2.Min(1f, bruteDamage / critThreshold).Float();
}
diff --git a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
index 2f266cfdd6bf..b89115da86b9 100644
--- a/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
+++ b/Content.Client/UserInterface/Systems/Hotbar/HotbarUIController.cs
@@ -31,13 +31,12 @@ private void OnScreenLoad()
ReloadHotbar();
}
- public void Setup(HandsContainer handsContainer, StorageContainer storageContainer)
+ public void Setup(HandsContainer handsContainer)
{
_inventory = UIManager.GetUIController();
_hands = UIManager.GetUIController();
_storage = UIManager.GetUIController();
_hands.RegisterHandContainer(handsContainer);
- _storage.RegisterStorageContainer(storageContainer);
}
public void ReloadHotbar()
diff --git a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
index 00ba1878b48d..153e02bd5585 100644
--- a/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
+++ b/Content.Client/UserInterface/Systems/Hotbar/Widgets/HotbarGui.xaml
@@ -1,7 +1,6 @@
-
();
- hotbarController.Setup(HandContainer, StoragePanel);
+ hotbarController.Setup(HandContainer);
LayoutContainer.SetGrowVertical(this, LayoutContainer.GrowDirection.Begin);
}
diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
index dd9986e4c6e6..f4c4158b5ced 100644
--- a/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
+++ b/Content.Client/UserInterface/Systems/Storage/Controls/ItemGridPiece.cs
@@ -59,7 +59,7 @@ public ItemGridPiece(Entity entity, ItemStorageLocation location,
Location = location;
Visible = true;
- MouseFilter = MouseFilterMode.Pass;
+ MouseFilter = MouseFilterMode.Stop;
TooltipSupplier = SupplyTooltip;
@@ -105,8 +105,11 @@ protected override void Draw(DrawingHandleScreen handle)
return;
}
- if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity && _storageController.DraggingGhost != this)
+ if (_storageController.IsDragging && _storageController.DraggingGhost?.Entity == Entity &&
+ _storageController.DraggingGhost != this)
+ {
return;
+ }
var adjustedShape = _entityManager.System().GetAdjustedItemShape((Entity, itemComponent), Location.Rotation, Vector2i.Zero);
var boundingGrid = adjustedShape.GetBoundingBox();
diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs
similarity index 64%
rename from Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs
rename to Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs
index a9d7e098265a..88b4c06d72c0 100644
--- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageContainer.cs
+++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs
@@ -3,7 +3,9 @@
using System.Numerics;
using Content.Client.Hands.Systems;
using Content.Client.Items.Systems;
+using Content.Client.Storage;
using Content.Client.Storage.Systems;
+using Content.Shared.IdentityManagement;
using Content.Shared.Input;
using Content.Shared.Item;
using Content.Shared.Storage;
@@ -11,12 +13,14 @@
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
+using Robust.Shared.Collections;
+using Robust.Shared.Containers;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Client.UserInterface.Systems.Storage.Controls;
-public sealed class StorageContainer : BaseWindow
+public sealed class StorageWindow : BaseWindow
{
[Dependency] private readonly IEntityManager _entity = default!;
private readonly StorageUIController _storageController;
@@ -27,6 +31,20 @@ public sealed class StorageContainer : BaseWindow
private readonly GridContainer _backgroundGrid;
private readonly GridContainer _sidebar;
+ private Control _titleContainer;
+ private Label _titleLabel;
+
+ // Needs to be nullable in case a piece is in default spot.
+ private readonly Dictionary _pieces = new();
+ private readonly List _controlGrid = new();
+
+ private ValueList _contained = new();
+ private ValueList _toRemove = new();
+
+ private TextureButton? _backButton;
+
+ private bool _isDirty;
+
public event Action? OnPiecePressed;
public event Action? OnPieceUnpressed;
@@ -51,9 +69,10 @@ public sealed class StorageContainer : BaseWindow
private readonly string _sidebarFatTexturePath = "Storage/sidebar_fat";
private Texture? _sidebarFatTexture;
- public StorageContainer()
+ public StorageWindow()
{
IoCManager.InjectDependencies(this);
+ Resizable = false;
_storageController = UserInterfaceManager.GetUIController();
@@ -63,6 +82,7 @@ public StorageContainer()
_sidebar = new GridContainer
{
+ Name = "SideBar",
HSeparationOverride = 0,
VSeparationOverride = 0,
Columns = 1
@@ -70,21 +90,48 @@ public StorageContainer()
_pieceGrid = new GridContainer
{
+ Name = "PieceGrid",
HSeparationOverride = 0,
VSeparationOverride = 0
};
_backgroundGrid = new GridContainer
{
+ Name = "BackgroundGrid",
HSeparationOverride = 0,
VSeparationOverride = 0
};
+ _titleLabel = new Label()
+ {
+ HorizontalExpand = true,
+ Name = "StorageLabel",
+ ClipText = true,
+ Text = "Dummy",
+ StyleClasses =
+ {
+ "FancyWindowTitle",
+ }
+ };
+
+ _titleContainer = new PanelContainer()
+ {
+ StyleClasses =
+ {
+ "WindowHeadingBackground"
+ },
+ Children =
+ {
+ _titleLabel
+ }
+ };
+
var container = new BoxContainer
{
Orientation = BoxContainer.LayoutOrientation.Vertical,
Children =
{
+ _titleContainer,
new BoxContainer
{
Orientation = BoxContainer.LayoutOrientation.Horizontal,
@@ -130,12 +177,22 @@ public void UpdateContainer(Entity? entity)
if (entity == null)
return;
+ if (UserInterfaceManager.GetUIController().WindowTitle)
+ {
+ _titleLabel.Text = Identity.Name(entity.Value, _entity);
+ _titleContainer.Visible = true;
+ }
+ else
+ {
+ _titleContainer.Visible = false;
+ }
+
BuildGridRepresentation();
}
private void BuildGridRepresentation()
{
- if (!_entity.TryGetComponent(StorageEntity, out var comp) || !comp.Grid.Any())
+ if (!_entity.TryGetComponent(StorageEntity, out var comp) || comp.Grid.Count == 0)
return;
var boundingGrid = comp.Grid.GetBoundingBox();
@@ -144,12 +201,13 @@ private void BuildGridRepresentation()
#region Sidebar
_sidebar.Children.Clear();
- _sidebar.Rows = boundingGrid.Height + 1;
+ var rows = boundingGrid.Height + 1;
+ _sidebar.Rows = rows;
+
var exitButton = new TextureButton
{
- TextureNormal = _entity.System().OpenStorageAmount == 1
- ?_exitTexture
- : _backTexture,
+ Name = "ExitButton",
+ TextureNormal = _exitTexture,
Scale = new Vector2(2, 2),
};
exitButton.OnPressed += _ =>
@@ -165,8 +223,10 @@ private void BuildGridRepresentation()
args.Handle();
}
};
+
var exitContainer = new BoxContainer
{
+ Name = "ExitContainer",
Children =
{
new TextureRect
@@ -182,28 +242,70 @@ private void BuildGridRepresentation()
}
}
};
+
_sidebar.AddChild(exitContainer);
- for (var i = 0; i < boundingGrid.Height - 1; i++)
+ var offset = 2;
+
+ if (_entity.System().NestedStorage && rows > 0)
{
- _sidebar.AddChild(new TextureRect
+ _backButton = new TextureButton
{
- Texture = _sidebarMiddleTexture,
- TextureScale = new Vector2(2, 2),
- });
+ TextureNormal = _backTexture,
+ Scale = new Vector2(2, 2),
+ };
+ _backButton.OnPressed += _ =>
+ {
+ var containerSystem = _entity.System();
+
+ if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) &&
+ _entity.TryGetComponent(container.Owner, out StorageComponent? storage))
+ {
+ Close();
+
+ if (_entity.System()
+ .TryGetOpenUi(container.Owner,
+ StorageComponent.StorageUiKey.Key,
+ out var parentBui))
+ {
+ parentBui.Show();
+ }
+ }
+ };
+
+ var backContainer = new BoxContainer
+ {
+ Name = "ExitContainer",
+ Children =
+ {
+ new TextureRect
+ {
+ Texture = rows > 2 ? _sidebarMiddleTexture : _sidebarBottomTexture,
+ TextureScale = new Vector2(2, 2),
+ Children =
+ {
+ _backButton,
+ }
+ }
+ }
+ };
+
+ _sidebar.AddChild(backContainer);
}
- if (boundingGrid.Height > 0)
+ var fillerRows = rows - offset;
+
+ for (var i = 0; i < fillerRows; i++)
{
_sidebar.AddChild(new TextureRect
{
- Texture = _sidebarBottomTexture,
+ Texture = i != (fillerRows - 1) ? _sidebarMiddleTexture : _sidebarBottomTexture,
TextureScale = new Vector2(2, 2),
});
}
#endregion
- BuildItemPieces();
+ FlagDirty();
}
public void BuildBackground()
@@ -240,70 +342,127 @@ public void BuildBackground()
}
}
+ public void Reclaim(ItemStorageLocation location, ItemGridPiece draggingGhost)
+ {
+ draggingGhost.OnPiecePressed += OnPiecePressed;
+ draggingGhost.OnPieceUnpressed += OnPieceUnpressed;
+ _pieces[draggingGhost.Entity] = (location, draggingGhost);
+ draggingGhost.Location = location;
+ var controlIndex = GetGridIndex(draggingGhost);
+ _controlGrid[controlIndex].AddChild(draggingGhost);
+ }
+
+ private int GetGridIndex(ItemGridPiece piece)
+ {
+ return piece.Location.Position.X + piece.Location.Position.Y * _pieceGrid.Columns;
+ }
+
+ public void FlagDirty()
+ {
+ _isDirty = true;
+ }
+
+ public void RemoveGrid(ItemGridPiece control)
+ {
+ control.Orphan();
+ _pieces.Remove(control.Entity);
+ control.OnPiecePressed -= OnPiecePressed;
+ control.OnPieceUnpressed -= OnPieceUnpressed;
+ }
+
public void BuildItemPieces()
{
if (!_entity.TryGetComponent(StorageEntity, out var storageComp))
return;
- if (!storageComp.Grid.Any())
+ if (storageComp.Grid.Count == 0)
return;
var boundingGrid = storageComp.Grid.GetBoundingBox();
var size = _emptyTexture!.Size * 2;
- var containedEntities = storageComp.Container.ContainedEntities.Reverse().ToArray();
+ _contained.Clear();
+ _contained.AddRange(storageComp.Container.ContainedEntities.Reverse());
- //todo. at some point, we may want to only rebuild the pieces that have actually received new data.
-
- _pieceGrid.RemoveAllChildren();
- _pieceGrid.Rows = boundingGrid.Height + 1;
- _pieceGrid.Columns = boundingGrid.Width + 1;
- for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++)
+ // Build the grid representation
+ if (_pieceGrid.Rows - 1 != boundingGrid.Height || _pieceGrid.Columns - 1 != boundingGrid.Width)
{
- for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++)
+ _pieceGrid.Rows = boundingGrid.Height + 1;
+ _pieceGrid.Columns = boundingGrid.Width + 1;
+ _controlGrid.Clear();
+
+ for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++)
{
- var control = new Control
+ for (var x = boundingGrid.Left; x <= boundingGrid.Right; x++)
{
- MinSize = size
- };
+ var control = new Control
+ {
+ MinSize = size
+ };
- var currentPosition = new Vector2i(x, y);
+ _controlGrid.Add(control);
+ _pieceGrid.AddChild(control);
+ }
+ }
+ }
+
+ _toRemove.Clear();
- foreach (var (itemEnt, itemPos) in storageComp.StoredItems)
+ // Remove entities no longer relevant / Update existing ones
+ foreach (var (ent, data) in _pieces)
+ {
+ if (storageComp.StoredItems.TryGetValue(ent, out var updated))
+ {
+ if (data.Loc.Equals(updated))
{
- if (itemPos.Position != currentPosition)
- continue;
+ DebugTools.Assert(data.Control.Location == updated);
+ continue;
+ }
- if (_entity.TryGetComponent(itemEnt, out var itemEntComponent))
- {
- ItemGridPiece gridPiece;
+ // Update
+ data.Control.Location = updated;
+ var index = GetGridIndex(data.Control);
+ data.Control.Orphan();
+ _controlGrid[index].AddChild(data.Control);
+ _pieces[ent] = (updated, data.Control);
+ continue;
+ }
- if (_storageController.CurrentlyDragging?.Entity is { } dragging
- && dragging == itemEnt)
- {
- _storageController.CurrentlyDragging.Orphan();
- gridPiece = _storageController.CurrentlyDragging;
- }
- else
- {
- gridPiece = new ItemGridPiece((itemEnt, itemEntComponent), itemPos, _entity)
- {
- MinSize = size,
- Marked = Array.IndexOf(containedEntities, itemEnt) switch
- {
- 0 => ItemGridPieceMarks.First,
- 1 => ItemGridPieceMarks.Second,
- _ => null,
- }
- };
- gridPiece.OnPiecePressed += OnPiecePressed;
- gridPiece.OnPieceUnpressed += OnPieceUnpressed;
- }
+ _toRemove.Add(ent);
+ }
+
+ foreach (var ent in _toRemove)
+ {
+ _pieces.Remove(ent, out var data);
+ data.Control.Orphan();
+ }
+
+ // Add new ones
+ foreach (var (ent, loc) in storageComp.StoredItems)
+ {
+ if (_pieces.TryGetValue(ent, out var existing))
+ {
+ DebugTools.Assert(existing.Loc == loc);
+ continue;
+ }
- control.AddChild(gridPiece);
+ if (_entity.TryGetComponent(ent, out var itemEntComponent))
+ {
+ var gridPiece = new ItemGridPiece((ent, itemEntComponent), loc, _entity)
+ {
+ MinSize = size,
+ Marked = _contained.IndexOf(ent) switch
+ {
+ 0 => ItemGridPieceMarks.First,
+ 1 => ItemGridPieceMarks.Second,
+ _ => null,
}
- }
+ };
+ gridPiece.OnPiecePressed += OnPiecePressed;
+ gridPiece.OnPieceUnpressed += OnPieceUnpressed;
+ var controlIndex = loc.Position.X + loc.Position.Y * (boundingGrid.Width + 1);
- _pieceGrid.AddChild(control);
+ _controlGrid[controlIndex].AddChild(gridPiece);
+ _pieces[ent] = (loc, gridPiece);
}
}
}
@@ -315,6 +474,35 @@ protected override void FrameUpdate(FrameEventArgs args)
if (!IsOpen)
return;
+ if (_isDirty)
+ {
+ _isDirty = false;
+ BuildItemPieces();
+ }
+
+ var containerSystem = _entity.System();
+
+ if (_backButton != null)
+ {
+ if (StorageEntity != null && _entity.System().NestedStorage)
+ {
+ if (containerSystem.TryGetContainingContainer(StorageEntity.Value, out var container) &&
+ _entity.HasComponent(container.Owner))
+ {
+ _backButton.Visible = true;
+ }
+ else
+ {
+ _backButton.Visible = false;
+ }
+ }
+ // Hide the button.
+ else
+ {
+ _backButton.Visible = false;
+ }
+ }
+
var itemSystem = _entity.System();
var storageSystem = _entity.System();
var handsSystem = _entity.System();
@@ -324,7 +512,7 @@ protected override void FrameUpdate(FrameEventArgs args)
child.ModulateSelfOverride = Color.FromHex("#222222");
}
- if (UserInterfaceManager.CurrentlyHovered is StorageContainer con && con != this)
+ if (UserInterfaceManager.CurrentlyHovered is StorageWindow con && con != this)
return;
if (!_entity.TryGetComponent(StorageEntity, out var storageComponent))
@@ -373,7 +561,7 @@ protected override void FrameUpdate(FrameEventArgs args)
continue;
float spot = 0;
- var marked = new List();
+ var marked = new ValueList();
foreach (var location in locations.Value)
{
@@ -500,14 +688,4 @@ protected override void KeyBindDown(GUIBoundKeyEventArgs args)
}
}
}
-
- public override void Close()
- {
- base.Close();
-
- if (StorageEntity == null)
- return;
-
- _entity.System().CloseStorageWindow(StorageEntity.Value);
- }
}
diff --git a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
index ecff43dd07dc..cbcf4293e8dc 100644
--- a/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
+++ b/Content.Client/UserInterface/Systems/Storage/StorageUIController.cs
@@ -2,6 +2,7 @@
using Content.Client.Examine;
using Content.Client.Hands.Systems;
using Content.Client.Interaction;
+using Content.Client.Storage;
using Content.Client.Storage.Systems;
using Content.Client.UserInterface.Systems.Hotbar.Widgets;
using Content.Client.UserInterface.Systems.Storage.Controls;
@@ -9,9 +10,9 @@
using Content.Shared.CCVar;
using Content.Shared.Input;
using Content.Shared.Interaction;
-using Content.Shared.Item;
using Content.Shared.Storage;
using Robust.Client.Input;
+using Robust.Client.Player;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controllers;
using Robust.Client.UserInterface.Controls;
@@ -23,19 +24,28 @@ namespace Content.Client.UserInterface.Systems.Storage;
public sealed class StorageUIController : UIController, IOnSystemChanged
{
+ /*
+ * Things are a bit over the shop but essentially
+ * - Clicking into storagewindow is handled via storagewindow
+ * - Clicking out of it is via ItemGridPiece
+ * - Dragging around is handled here
+ * - Drawing is handled via ItemGridPiece
+ * - StorageSystem handles any sim stuff around open windows.
+ */
+
[Dependency] private readonly IConfigurationManager _configuration = default!;
- [Dependency] private readonly IEntityManager _entity = default!;
[Dependency] private readonly IInputManager _input = default!;
- [Dependency] private readonly IUserInterfaceManager _ui = default!;
-
- private readonly DragDropHelper _menuDragHelper;
- private StorageContainer? _container;
+ [Dependency] private readonly IPlayerManager _player = default!;
+ [UISystemDependency] private readonly StorageSystem _storage = default!;
- private Vector2? _lastContainerPosition;
+ ///
+ /// Cached positions for opening nested storage.
+ ///
+ private readonly Dictionary _reservedStorage = new();
- private HotbarGui? Hotbar => UIManager.GetActiveUIWidgetOrNull();
+ private readonly DragDropHelper _menuDragHelper;
- public ItemGridPiece? DraggingGhost;
+ public ItemGridPiece? DraggingGhost => _menuDragHelper.Dragged;
public Angle DraggingRotation = Angle.Zero;
public bool StaticStorageUIEnabled;
public bool OpaqueStorageWindow;
@@ -43,6 +53,8 @@ public sealed class StorageUIController : UIController, IOnSystemChanged _menuDragHelper.IsDragging;
public ItemGridPiece? CurrentlyDragging => _menuDragHelper.Dragged;
+ public bool WindowTitle { get; private set; } = false;
+
public StorageUIController()
{
_menuDragHelper = new DragDropHelper(OnMenuBeginDrag, OnMenuContinueDrag, OnMenuEndDrag);
@@ -52,106 +64,93 @@ public override void Initialize()
{
base.Initialize();
+ UIManager.OnScreenChanged += OnScreenChange;
+
_configuration.OnValueChanged(CCVars.StaticStorageUI, OnStaticStorageChanged, true);
_configuration.OnValueChanged(CCVars.OpaqueStorageWindow, OnOpaqueWindowChanged, true);
+ _configuration.OnValueChanged(CCVars.StorageWindowTitle, OnStorageWindowTitle, true);
}
- public void OnSystemLoaded(StorageSystem system)
- {
- _input.FirstChanceOnKeyEvent += OnMiddleMouse;
- system.StorageUpdated += OnStorageUpdated;
- system.StorageOrderChanged += OnStorageOrderChanged;
- }
-
- public void OnSystemUnloaded(StorageSystem system)
+ private void OnScreenChange((UIScreen? Old, UIScreen? New) obj)
{
- _input.FirstChanceOnKeyEvent -= OnMiddleMouse;
- system.StorageUpdated -= OnStorageUpdated;
- system.StorageOrderChanged -= OnStorageOrderChanged;
- }
-
- private void OnStorageOrderChanged(Entity? nullEnt)
- {
- if (_container == null)
+ // Handle reconnects with hotbargui.
+
+ // Essentially HotbarGui / the screen gets loaded AFTER gamestates at the moment (because clientgameticker manually changes it via event)
+ // and changing this may be a massive change.
+ // So instead we'll just manually reload it for now.
+ if (!StaticStorageUIEnabled ||
+ obj.New == null ||
+ !EntityManager.TryGetComponent(_player.LocalEntity, out UserInterfaceUserComponent? userComp))
+ {
return;
+ }
- if (IsDragging)
- _menuDragHelper.EndDrag();
-
- _container.UpdateContainer(nullEnt);
+ // UISystemDependency not injected at this point so do it the old fashion way, I love ordering issues.
+ var uiSystem = EntityManager.System();
- if (nullEnt is not null)
+ foreach (var bui in uiSystem.GetActorUis((_player.LocalEntity.Value, userComp)))
{
- // center it if we knock it off screen somehow.
- if (!StaticStorageUIEnabled &&
- (_lastContainerPosition == null ||
- _lastContainerPosition.Value.X < 0 ||
- _lastContainerPosition.Value.Y < 0 ||
- _lastContainerPosition.Value.X > _ui.WindowRoot.Width ||
- _lastContainerPosition.Value.Y > _ui.WindowRoot.Height))
- {
- _container.OpenCenteredAt(new Vector2(0.5f, 0.75f));
- }
- else
- {
- _container.Open();
+ if (!uiSystem.TryGetOpenUi(bui.Entity, StorageComponent.StorageUiKey.Key, out var storageBui))
+ continue;
- var pos = !StaticStorageUIEnabled && _lastContainerPosition != null
- ? _lastContainerPosition.Value
- : Vector2.Zero;
+ storageBui.ReOpen();
+ }
+ }
- LayoutContainer.SetPosition(_container, pos);
- }
+ private void OnStorageWindowTitle(bool obj)
+ {
+ WindowTitle = obj;
+ }
- if (StaticStorageUIEnabled)
- {
- // we have to orphan it here because Open() sets the parent.
- _container.Orphan();
- Hotbar?.StorageContainer.AddChild(_container);
- }
- _lastContainerPosition = _container.GlobalPosition;
- }
- else
- {
- _lastContainerPosition = _container.GlobalPosition;
- _container.Close();
- }
+ private void OnOpaqueWindowChanged(bool obj)
+ {
+ OpaqueStorageWindow = obj;
}
private void OnStaticStorageChanged(bool obj)
{
- if (StaticStorageUIEnabled == obj)
- return;
-
StaticStorageUIEnabled = obj;
- _lastContainerPosition = null;
+ }
- if (_container == null)
- return;
+ public StorageWindow CreateStorageWindow(EntityUid uid)
+ {
+ var window = new StorageWindow();
+ window.MouseFilter = Control.MouseFilterMode.Pass;
- if (!_container.IsOpen)
- return;
+ window.OnPiecePressed += (args, piece) =>
+ {
+ OnPiecePressed(args, window, piece);
+ };
+ window.OnPieceUnpressed += (args, piece) =>
+ {
+ OnPieceUnpressed(args, window, piece);
+ };
- _container.Orphan();
if (StaticStorageUIEnabled)
{
- Hotbar?.StorageContainer.AddChild(_container);
+ UIManager.GetActiveUIWidgetOrNull()?.StorageContainer.AddChild(window);
}
else
{
- _ui.WindowRoot.AddChild(_container);
+ window.OpenCenteredLeft();
+
+ if (_reservedStorage.Remove(uid, out var pos))
+ {
+ LayoutContainer.SetPosition(window, pos);
+ }
}
- if (_entity.TryGetComponent(_container.StorageEntity, out var comp))
- OnStorageOrderChanged((_container.StorageEntity.Value, comp));
+ return window;
}
- private void OnOpaqueWindowChanged(bool obj)
+ public void OnSystemLoaded(StorageSystem system)
{
- if (OpaqueStorageWindow == obj)
- return;
- OpaqueStorageWindow = obj;
- _container?.BuildBackground();
+ _input.FirstChanceOnKeyEvent += OnMiddleMouse;
+ }
+
+ public void OnSystemUnloaded(StorageSystem system)
+ {
+ _input.FirstChanceOnKeyEvent -= OnMiddleMouse;
}
/// One might ask, Hey Emo, why are you parsing raw keyboard input just to rotate a rectangle?
@@ -190,7 +189,7 @@ private void OnMiddleMouse(KeyEventArgs keyEvent, KeyEventType type)
binding.Mod3 == Keyboard.Key.Control))
return;
- if (!IsDragging && _entity.System().GetActiveHandEntity() == null)
+ if (!IsDragging && EntityManager.System().GetActiveHandEntity() == null)
return;
//clamp it to a cardinal.
@@ -198,43 +197,18 @@ private void OnMiddleMouse(KeyEventArgs keyEvent, KeyEventType type)
if (DraggingGhost != null)
DraggingGhost.Location.Rotation = DraggingRotation;
- if (IsDragging || (_container != null && UIManager.CurrentlyHovered == _container))
+ if (IsDragging || UIManager.CurrentlyHovered is StorageWindow)
keyEvent.Handle();
}
- private void OnStorageUpdated(Entity uid)
+ private void OnPiecePressed(GUIBoundKeyEventArgs args, StorageWindow window, ItemGridPiece control)
{
- if (_container?.StorageEntity != uid)
- return;
-
- _container.BuildItemPieces();
- }
-
- public void RegisterStorageContainer(StorageContainer container)
- {
- if (_container != null)
- {
- container.OnPiecePressed -= OnPiecePressed;
- container.OnPieceUnpressed -= OnPieceUnpressed;
- }
-
- _container = container;
- container.OnPiecePressed += OnPiecePressed;
- container.OnPieceUnpressed += OnPieceUnpressed;
-
- if (!StaticStorageUIEnabled)
- _container.Orphan();
- }
-
- private void OnPiecePressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
- {
- if (IsDragging || !_container?.IsOpen == true)
+ if (IsDragging || !window.IsOpen)
return;
if (args.Function == ContentKeyFunctions.MoveStoredItem)
{
DraggingRotation = control.Location.Rotation;
-
_menuDragHelper.MouseDown(control);
_menuDragHelper.Update(0f);
@@ -242,17 +216,17 @@ private void OnPiecePressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
}
else if (args.Function == ContentKeyFunctions.SaveItemLocation)
{
- if (_container?.StorageEntity is not {} storage)
+ if (window.StorageEntity is not {} storage)
return;
- _entity.RaisePredictiveEvent(new StorageSaveItemLocationEvent(
- _entity.GetNetEntity(control.Entity),
- _entity.GetNetEntity(storage)));
+ EntityManager.RaisePredictiveEvent(new StorageSaveItemLocationEvent(
+ EntityManager.GetNetEntity(control.Entity),
+ EntityManager.GetNetEntity(storage)));
args.Handle();
}
else if (args.Function == ContentKeyFunctions.ExamineEntity)
{
- _entity.System().DoExamine(control.Entity);
+ EntityManager.System().DoExamine(control.Entity);
args.Handle();
}
else if (args.Function == EngineKeyFunctions.UseSecondary)
@@ -262,68 +236,102 @@ private void OnPiecePressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
}
else if (args.Function == ContentKeyFunctions.ActivateItemInWorld)
{
- _entity.RaisePredictiveEvent(
- new InteractInventorySlotEvent(_entity.GetNetEntity(control.Entity), altInteract: false));
+ EntityManager.RaisePredictiveEvent(
+ new InteractInventorySlotEvent(EntityManager.GetNetEntity(control.Entity), altInteract: false));
args.Handle();
}
else if (args.Function == ContentKeyFunctions.AltActivateItemInWorld)
{
- _entity.RaisePredictiveEvent(new InteractInventorySlotEvent(_entity.GetNetEntity(control.Entity), altInteract: true));
+ EntityManager.RaisePredictiveEvent(new InteractInventorySlotEvent(EntityManager.GetNetEntity(control.Entity), altInteract: true));
args.Handle();
}
+
+ window.FlagDirty();
}
- private void OnPieceUnpressed(GUIBoundKeyEventArgs args, ItemGridPiece control)
+ private void OnPieceUnpressed(GUIBoundKeyEventArgs args, StorageWindow window, ItemGridPiece control)
{
if (args.Function != ContentKeyFunctions.MoveStoredItem)
return;
- if (_container?.StorageEntity is not { } storageEnt|| !_entity.TryGetComponent(storageEnt, out var storageComp))
+ // Want to get the control under the dragged control.
+ // This means we can drag the original control around (and not hide the original).
+ control.MouseFilter = Control.MouseFilterMode.Ignore;
+ var targetControl = UIManager.MouseGetControl(args.PointerLocation);
+ var targetStorage = targetControl as StorageWindow;
+ control.MouseFilter = Control.MouseFilterMode.Pass;
+
+ var localPlayer = _player.LocalEntity;
+ window.RemoveGrid(control);
+ window.FlagDirty();
+
+ // If we tried to drag it on top of another grid piece then cancel out.
+ if (targetControl is ItemGridPiece || window.StorageEntity is not { } sourceStorage || localPlayer == null)
+ {
+ window.Reclaim(control.Location, control);
+ args.Handle();
+ _menuDragHelper.EndDrag();
return;
+ }
- if (DraggingGhost is { } draggingGhost)
+ if (_menuDragHelper.IsDragging && DraggingGhost is { } draggingGhost)
{
var dragEnt = draggingGhost.Entity;
var dragLoc = draggingGhost.Location;
- var itemSys = _entity.System();
-
- var position = _container.GetMouseGridPieceLocation(dragEnt, dragLoc);
- var itemBounding = itemSys.GetAdjustedItemShape(dragEnt, dragLoc).GetBoundingBox();
- var gridBounding = storageComp.Grid.GetBoundingBox();
-
- // The extended bounding box for if this is out of the window is the grid bounding box dimensions combined
- // with the item shape bounding box dimensions. Plus 1 on the left for the sidebar. This makes it so that.
- // dropping an item on the floor requires dragging it all the way out of the window.
- var left = gridBounding.Left - itemBounding.Width - 1;
- var bottom = gridBounding.Bottom - itemBounding.Height;
- var top = gridBounding.Top;
- var right = gridBounding.Right;
- var lenientBounding = new Box2i(left, bottom, right, top);
-
- if (lenientBounding.Contains(position))
+
+ // Dragging in the same storage
+ // The existing ItemGridPiece just stops rendering but still exists so check if it's hovered.
+ if (targetStorage == window)
+ {
+ var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc);
+ var newLocation = new ItemStorageLocation(DraggingRotation, position);
+
+ EntityManager.RaisePredictiveEvent(new StorageSetItemLocationEvent(
+ EntityManager.GetNetEntity(draggingGhost.Entity),
+ EntityManager.GetNetEntity(sourceStorage),
+ newLocation));
+
+ window.Reclaim(newLocation, control);
+ }
+ // Dragging to new storage
+ else if (targetStorage?.StorageEntity != null && targetStorage != window)
{
- _entity.RaisePredictiveEvent(new StorageSetItemLocationEvent(
- _entity.GetNetEntity(draggingGhost.Entity),
- _entity.GetNetEntity(storageEnt),
- new ItemStorageLocation(DraggingRotation, position)));
+ var position = targetStorage.GetMouseGridPieceLocation(dragEnt, dragLoc);
+ var newLocation = new ItemStorageLocation(DraggingRotation, position);
+
+ // Check it fits and we can move to hand (no free transfers).
+ if (_storage.ItemFitsInGridLocation(
+ (dragEnt, null),
+ (targetStorage.StorageEntity.Value, null),
+ newLocation))
+ {
+ // Can drop and move.
+ EntityManager.RaisePredictiveEvent(new StorageTransferItemEvent(
+ EntityManager.GetNetEntity(dragEnt),
+ EntityManager.GetNetEntity(targetStorage.StorageEntity.Value),
+ newLocation));
+
+ targetStorage.Reclaim(newLocation, control);
+ DraggingRotation = Angle.Zero;
+ }
+ else
+ {
+ // Cancel it (rather than dropping).
+ window.Reclaim(dragLoc, control);
+ }
}
- else
- { // Ronstation.
- _entity.RaisePredictiveEvent(new StorageRemoveItemEvent(
- _entity.GetNetEntity(draggingGhost.Entity),
- _entity.GetNetEntity(storageEnt)));
- } // Ronstation.
- _menuDragHelper.EndDrag();
- _container?.BuildItemPieces();
+ targetStorage?.FlagDirty();
}
- else //if we just clicked, then take it out of the bag.
+ // If we just clicked, then take it out of the bag.
+ else
{
- _menuDragHelper.EndDrag();
- _entity.RaisePredictiveEvent(new StorageInteractWithItemEvent(
- _entity.GetNetEntity(control.Entity),
- _entity.GetNetEntity(storageEnt)));
+ EntityManager.RaisePredictiveEvent(new StorageInteractWithItemEvent(
+ EntityManager.GetNetEntity(control.Entity),
+ EntityManager.GetNetEntity(sourceStorage)));
}
+
+ _menuDragHelper.EndDrag();
args.Handle();
}
@@ -332,14 +340,8 @@ private bool OnMenuBeginDrag()
if (_menuDragHelper.Dragged is not { } dragged)
return false;
+ DraggingGhost!.Orphan();
DraggingRotation = dragged.Location.Rotation;
- DraggingGhost = new ItemGridPiece(
- (dragged.Entity, _entity.GetComponent(dragged.Entity)),
- dragged.Location,
- _entity);
- DraggingGhost.MouseFilter = Control.MouseFilterMode.Ignore;
- DraggingGhost.Visible = true;
- DraggingGhost.Orphan();
UIManager.PopupRoot.AddChild(DraggingGhost);
SetDraggingRotation();
@@ -350,6 +352,7 @@ private bool OnMenuContinueDrag(float frameTime)
{
if (DraggingGhost == null)
return false;
+
SetDraggingRotation();
return true;
}
@@ -362,7 +365,7 @@ private void SetDraggingRotation()
var offset = ItemGridPiece.GetCenterOffset(
(DraggingGhost.Entity, null),
new ItemStorageLocation(DraggingRotation, Vector2i.Zero),
- _entity);
+ EntityManager);
// I don't know why it divides the position by 2. Hope this helps! -emo
LayoutContainer.SetPosition(DraggingGhost, UIManager.MousePositionScaled.Position / 2 - offset );
@@ -372,18 +375,13 @@ private void OnMenuEndDrag()
{
if (DraggingGhost == null)
return;
- DraggingGhost.Visible = false;
- DraggingGhost = null;
+
DraggingRotation = Angle.Zero;
}
public override void FrameUpdate(FrameEventArgs args)
{
base.FrameUpdate(args);
-
_menuDragHelper.Update(args.DeltaSeconds);
-
- if (!StaticStorageUIEnabled && _container?.Parent != null && _lastContainerPosition != null)
- _lastContainerPosition = _container.GlobalPosition;
}
}
diff --git a/Content.Client/Viewport/ScalingViewport.cs b/Content.Client/Viewport/ScalingViewport.cs
index ccd9636d7764..d9548d0f02b1 100644
--- a/Content.Client/Viewport/ScalingViewport.cs
+++ b/Content.Client/Viewport/ScalingViewport.cs
@@ -144,7 +144,7 @@ protected override void KeyBindUp(GUIBoundKeyEventArgs args)
_inputManager.ViewportKeyEvent(this, args);
}
- protected override void Draw(DrawingHandleScreen handle)
+ protected override void Draw(IRenderHandle handle)
{
EnsureViewportCreated();
@@ -170,7 +170,7 @@ protected override void Draw(DrawingHandleScreen handle)
var drawBox = GetDrawBox();
var drawBoxGlobal = drawBox.Translated(GlobalPixelPosition);
_viewport.RenderScreenOverlaysBelow(handle, this, drawBoxGlobal);
- handle.DrawTextureRect(_viewport.RenderTarget.Texture, drawBox);
+ handle.DrawingHandleScreen.DrawTextureRect(_viewport.RenderTarget.Texture, drawBox);
_viewport.RenderScreenOverlaysAbove(handle, this, drawBoxGlobal);
}
diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
index 540d76c129bf..9e20d2d5a9c7 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
@@ -138,6 +138,7 @@ private Animation GetThrustAnimation(SpriteComponent sprite, float distance, Ang
const float length = 0.15f;
var startOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance / 5f));
var endOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance));
+ sprite.Rotation += spriteRotation;
return new Animation()
{
diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs
new file mode 100644
index 000000000000..2de837923c87
--- /dev/null
+++ b/Content.Client/Wieldable/WieldableSystem.cs
@@ -0,0 +1,49 @@
+using System.Numerics;
+using Content.Client.Movement.Components;
+using Content.Client.Movement.Systems;
+using Content.Shared.Camera;
+using Content.Shared.Hands;
+using Content.Shared.Movement.Components;
+using Content.Shared.Wieldable;
+using Content.Shared.Wieldable.Components;
+using Robust.Client.Timing;
+
+namespace Content.Client.Wieldable;
+
+public sealed class WieldableSystem : SharedWieldableSystem
+{
+ [Dependency] private readonly EyeCursorOffsetSystem _eyeOffset = default!;
+ [Dependency] private readonly IClientGameTiming _gameTiming = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnEyeOffsetUnwielded);
+ SubscribeLocalEvent>(OnGetEyeOffset);
+ }
+
+ public void OnEyeOffsetUnwielded(Entity entity, ref ItemUnwieldedEvent args)
+ {
+ if (!TryComp(entity.Owner, out EyeCursorOffsetComponent? cursorOffsetComp))
+ return;
+
+ if (_gameTiming.IsFirstTimePredicted)
+ cursorOffsetComp.CurrentPosition = Vector2.Zero;
+ }
+
+ public void OnGetEyeOffset(Entity entity, ref HeldRelayedEvent args)
+ {
+ if (!TryComp(entity.Owner, out WieldableComponent? wieldableComp))
+ return;
+
+ if (!wieldableComp.Wielded)
+ return;
+
+ var offset = _eyeOffset.OffsetAfterMouse(entity.Owner, null);
+ if (offset == null)
+ return;
+
+ args.Args.Offset += offset.Value;
+ }
+}
diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs
index c560b61dc167..5e0fe89b499d 100644
--- a/Content.IntegrationTests/Tests/PostMapInitTest.cs
+++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs
@@ -66,6 +66,7 @@ public sealed class PostMapInitTest
"Loop",
"Plasma",
"Elkridge",
+ "Convex",
"Saltern2",
"Cluster2",
"Atlas2"
diff --git a/Content.Server/Access/AccessWireAction.cs b/Content.Server/Access/AccessWireAction.cs
index 7676ce489f43..b3beb3967b9b 100644
--- a/Content.Server/Access/AccessWireAction.cs
+++ b/Content.Server/Access/AccessWireAction.cs
@@ -1,7 +1,6 @@
using Content.Server.Wires;
using Content.Shared.Access;
using Content.Shared.Access.Components;
-using Content.Shared.Emag.Components;
using Content.Shared.Wires;
namespace Content.Server.Access;
@@ -31,11 +30,9 @@ public override bool Cut(EntityUid user, Wire wire, AccessReaderComponent comp)
public override bool Mend(EntityUid user, Wire wire, AccessReaderComponent comp)
{
- if (!EntityManager.HasComponent(wire.Owner))
- {
- comp.Enabled = true;
- EntityManager.Dirty(wire.Owner, comp);
- }
+ comp.Enabled = true;
+ EntityManager.Dirty(wire.Owner, comp);
+
return true;
}
@@ -58,7 +55,7 @@ private void AwaitPulseCancel(Wire wire)
{
if (!wire.IsCut)
{
- if (EntityManager.TryGetComponent(wire.Owner, out var access) && !EntityManager.HasComponent(wire.Owner))
+ if (EntityManager.TryGetComponent(wire.Owner, out var access))
{
access.Enabled = true;
EntityManager.Dirty(wire.Owner, access);
diff --git a/Content.Server/Access/Systems/AccessOverriderSystem.cs b/Content.Server/Access/Systems/AccessOverriderSystem.cs
index a882209b2d17..a0dbc96677b5 100644
--- a/Content.Server/Access/Systems/AccessOverriderSystem.cs
+++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs
@@ -245,6 +245,10 @@ private void TryWriteToTargetAccessReaderId(EntityUid uid,
$"{ToPrettyString(player):player} has modified {ToPrettyString(accessReaderEnt.Value):entity} with the following allowed access level holders: [{string.Join(", ", addedTags.Union(removedTags))}] [{string.Join(", ", newAccessList)}]");
accessReaderEnt.Value.Comp.AccessLists = ConvertAccessListToHashSet(newAccessList);
+
+ var ev = new OnAccessOverriderAccessUpdatedEvent(player);
+ RaiseLocalEvent(component.TargetAccessReaderId, ref ev);
+
Dirty(accessReaderEnt.Value);
}
diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs
index c65059f55ddc..2d76c434e9df 100644
--- a/Content.Server/Administration/Managers/BanManager.cs
+++ b/Content.Server/Administration/Managers/BanManager.cs
@@ -165,6 +165,8 @@ public async void CreateServerBan(NetUserId? target, string? targetUsername, Net
null);
await _db.AddServerBanAsync(banDef);
+ if (_cfg.GetCVar(CCVars.ServerBanResetLastReadRules) && target != null)
+ await _db.SetLastReadRules(target.Value, null); // Reset their last read rules. They probably need a refresher!
var adminName = banningAdmin == null
? Loc.GetString("system-user")
: (await _db.GetPlayerRecordByUserId(banningAdmin.Value))?.LastSeenUserName ?? Loc.GetString("system-user");
diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
index 9f81c64dbc10..983cf2c8f465 100644
--- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
+++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
@@ -116,8 +116,11 @@ private void OnSupercritical(Entity tech, ref AnomalySuper
if (_random.Prob(tech.Comp.EmagSupercritProbability))
{
- _emag.DoEmagEffect(tech, source);
- _emag.DoEmagEffect(tech, sink);
+ var sourceEv = new GotEmaggedEvent(tech, EmagType.Access | EmagType.Interaction);
+ RaiseLocalEvent(source, ref sourceEv);
+
+ var sinkEv = new GotEmaggedEvent(tech, EmagType.Access | EmagType.Interaction);
+ RaiseLocalEvent(sink, ref sinkEv);
}
CreateNewLink(tech, source, sink);
diff --git a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
index 0a3ee4d7f7dc..6d768c129261 100644
--- a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
+++ b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
@@ -21,6 +21,7 @@ public sealed class FireAlarmSystem : EntitySystem
{
[Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!;
[Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] private readonly AccessReaderSystem _access = default!;
[Dependency] private readonly IConfigurationManager _configManager = default!;
@@ -77,11 +78,18 @@ private void OnInteractHand(EntityUid uid, FireAlarmComponent component, Interac
private void OnEmagged(EntityUid uid, FireAlarmComponent component, ref GotEmaggedEvent args)
{
- if (TryComp(uid, out var alarmable))
- {
- // Remove the atmos alarmable component permanently from this device.
- _atmosAlarmable.ForceAlert(uid, AtmosAlarmType.Emagged, alarmable);
- RemCompDeferred(uid);
- }
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (!TryComp(uid, out var alarmable))
+ return;
+
+ // Remove the atmos alarmable component permanently from this device.
+ _atmosAlarmable.ForceAlert(uid, AtmosAlarmType.Emagged, alarmable);
+ RemCompDeferred(uid);
+ args.Handled = true;
}
}
diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
index 36ced3887d2d..48cdaebb97cb 100644
--- a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Binary.Components
{
@@ -38,6 +39,7 @@ public sealed partial class GasVolumePumpComponent : Component
public float LowerThreshold { get; set; } = 0.01f;
[DataField("higherThreshold")]
+ [GuidebookData]
public float HigherThreshold { get; set; } = DefaultHigherThreshold;
public static readonly float DefaultHigherThreshold = 2 * Atmospherics.MaxOutputPressure;
diff --git a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
index c0b496fae8cb..3f388617de90 100644
--- a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
+++ b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Trinary.Components
{
@@ -27,6 +28,7 @@ public sealed partial class PressureControlledValveComponent : Component
[ViewVariables(VVAccess.ReadWrite)]
[DataField("threshold")]
+ [GuidebookData]
public float Threshold { get; set; } = Atmospherics.OneAtmosphere;
[DataField("maxTransferRate")]
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
index 1daa42d7c40d..afbfb912497f 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
@@ -1,5 +1,6 @@
using Content.Shared.Atmos;
using Content.Shared.Containers.ItemSlots;
+using Content.Shared.Guidebook;
using Robust.Shared.Audio;
namespace Content.Server.Atmos.Piping.Unary.Components
@@ -61,5 +62,12 @@ public sealed partial class GasCanisterComponent : Component, IGasMixtureHolder
[DataField("accessDeniedSound")]
public SoundSpecifier AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg");
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float Volume => Air.Volume;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
index 7e082024a810..65755d62c564 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
@@ -1,6 +1,7 @@
using Content.Server.Atmos.Piping.Binary.Components;
using Content.Server.Atmos.Piping.Unary.EntitySystems;
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -29,6 +30,7 @@ public float TransferRate
public float MaxTransferRate = Atmospherics.MaxTransferRate;
[DataField("maxPressure")]
+ [GuidebookData]
public float MaxPressure { get; set; } = GasVolumePumpComponent.DefaultHigherThreshold;
[DataField("inlet")]
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
index 5da4ec9fdf23..f481443c9434 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -13,6 +14,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// thermomachine to heat or cool air.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float HeatCapacity = 5000;
[DataField, ViewVariables(VVAccess.ReadWrite)]
@@ -21,6 +23,7 @@ public sealed partial class GasThermoMachineComponent : Component
///
/// Tolerance for temperature setpoint hysteresis.
///
+ [GuidebookData]
[DataField, ViewVariables(VVAccess.ReadOnly)]
public float TemperatureTolerance = 2f;
@@ -44,6 +47,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if heater.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MinTemperature = 73.15f;
///
@@ -51,6 +55,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if freezer.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxTemperature = 593.15f;
///
@@ -63,6 +68,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// An percentage of the energy change that is leaked into the surrounding environment rather than the inlet pipe.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float EnergyLeakPercentage;
///
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
index fcf3ddf969c7..25b15f0ed55b 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
@@ -1,6 +1,7 @@
using Content.Shared.Atmos;
using Content.Shared.Atmos.Piping.Unary.Components;
using Content.Shared.DeviceLinking;
+using Content.Shared.Guidebook;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Atmos.Piping.Unary.Components
@@ -35,6 +36,7 @@ public sealed partial class GasVentPumpComponent : Component
/// In releasing mode, do not pump when environment pressure is below this limit.
///
[DataField]
+ [GuidebookData]
public float UnderPressureLockoutThreshold = 80; // this must be tuned in conjunction with atmos.mmos_spacing_speed
///
@@ -58,7 +60,7 @@ public sealed partial class GasVentPumpComponent : Component
[DataField]
public bool IsPressureLockoutManuallyDisabled = false;
///
- /// The time when the manual pressure lockout will be reenabled.
+ /// The time when the manual pressure lockout will be reenabled.
///
[DataField]
[AutoPausedField]
@@ -101,6 +103,7 @@ public float InternalPressureBound
/// Max pressure of the target gas (NOT relative to source).
///
[DataField]
+ [GuidebookData]
public float MaxPressure = Atmospherics.MaxOutputPressure;
///
@@ -172,5 +175,12 @@ public void FromAirAlarmData(GasVentPumpData data)
InternalPressureBound = data.InternalPressureBound;
PressureLockoutOverride = data.PressureLockoutOverride;
}
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float DefaultExternalBound => Atmospherics.OneAtmosphere;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
index ae9a5da96397..b22809180645 100644
--- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
+++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Portable
{
@@ -45,5 +46,12 @@ public sealed partial class PortableScrubberComponent : Component
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float TransferRate = 800;
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float Volume => Air.Volume;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs b/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
index e490ab3ea015..d13826e4e9c5 100644
--- a/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
+++ b/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
@@ -1,6 +1,7 @@
using Content.Shared.Atmos;
using Content.Shared.Atmos.Piping.Portable.Components;
using Content.Shared.Atmos.Visuals;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Portable;
@@ -23,12 +24,14 @@ public sealed partial class SpaceHeaterComponent : Component
/// Maximum target temperature the device can be set to
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxTemperature = Atmospherics.T20C + 20;
///
/// Minimal target temperature the device can be set to
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MinTemperature = Atmospherics.T0C - 10;
///
diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs
index 2cc8085e725c..b2d688940861 100644
--- a/Content.Server/Bed/BedSystem.cs
+++ b/Content.Server/Bed/BedSystem.cs
@@ -20,6 +20,7 @@ public sealed class BedSystem : EntitySystem
{
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
[Dependency] private readonly ActionsSystem _actionsSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SleepingSystem _sleepingSystem = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
@@ -114,7 +115,12 @@ private void OnPowerChanged(EntityUid uid, StasisBedComponent component, ref Pow
private void OnEmagged(EntityUid uid, StasisBedComponent component, ref GotEmaggedEvent args)
{
- args.Repeatable = true;
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
// Reset any metabolisms first so they receive the multiplier correctly
UpdateMetabolisms(uid, component, false);
component.Multiplier = 1 / component.Multiplier;
diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
index a7735787cbb6..c650438b2861 100644
--- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
+++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
@@ -12,15 +12,22 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component
///
/// Maximum amount of bounties a station can have.
///
- [DataField, ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public int MaxBounties = 6;
///
/// A list of all the bounties currently active for a station.
///
- [DataField, ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public List Bounties = new();
+ ///
+ /// A list of all the bounties that have been completed or
+ /// skipped for a station.
+ ///
+ [DataField]
+ public List History = new();
+
///
/// Used to determine unique order IDs
///
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
index 373e8e243ba9..7f74fe269d4c 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
@@ -8,6 +8,7 @@
using Content.Shared.Cargo.Components;
using Content.Shared.Cargo.Prototypes;
using Content.Shared.Database;
+using Content.Shared.IdentityManagement;
using Content.Shared.NameIdentifier;
using Content.Shared.Paper;
using Content.Shared.Stacks;
@@ -16,6 +17,7 @@
using Robust.Server.Containers;
using Robust.Shared.Containers;
using Robust.Shared.Random;
+using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Server.Cargo.Systems;
@@ -25,6 +27,7 @@ public sealed partial class CargoSystem
[Dependency] private readonly ContainerSystem _container = default!;
[Dependency] private readonly NameIdentifierSystem _nameIdentifier = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSys = default!;
+ [Dependency] private readonly IGameTiming _gameTiming = default!;
[ValidatePrototypeId]
private const string BountyNameIdentifierGroup = "Bounty";
@@ -54,7 +57,7 @@ private void OnBountyConsoleOpened(EntityUid uid, CargoBountyConsoleComponent co
return;
var untilNextSkip = bountyDb.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, bountyDb.History, untilNextSkip));
}
private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent component, BountyPrintLabelMessage args)
@@ -95,13 +98,13 @@ private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent comp
return;
}
- if (!TryRemoveBounty(station, bounty.Value))
+ if (!TryRemoveBounty(station, bounty.Value, true, args.Actor))
return;
FillBountyDatabase(station);
db.NextSkipTime = _timing.CurTime + db.SkipDelay;
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
_audio.PlayPvs(component.SkipSound, uid);
}
@@ -179,7 +182,7 @@ private void OnSold(ref EntitySoldEvent args)
continue;
}
- TryRemoveBounty(station, bounty.Value);
+ TryRemoveBounty(station, bounty.Value, false);
FillBountyDatabase(station);
_adminLogger.Add(LogType.Action, LogImpact.Low, $"Bounty \"{bounty.Value.Bounty}\" (id:{bounty.Value.Id}) was fulfilled");
}
@@ -434,24 +437,44 @@ public bool TryAddBounty(EntityUid uid, CargoBountyPrototype bounty, StationCarg
}
[PublicAPI]
- public bool TryRemoveBounty(EntityUid uid, string dataId, StationCargoBountyDatabaseComponent? component = null)
+ public bool TryRemoveBounty(Entity ent,
+ string dataId,
+ bool skipped,
+ EntityUid? actor = null)
{
- if (!TryGetBountyFromId(uid, dataId, out var data, component))
+ if (!TryGetBountyFromId(ent.Owner, dataId, out var data, ent.Comp))
return false;
- return TryRemoveBounty(uid, data.Value, component);
+ return TryRemoveBounty(ent, data.Value, skipped, actor);
}
- public bool TryRemoveBounty(EntityUid uid, CargoBountyData data, StationCargoBountyDatabaseComponent? component = null)
+ public bool TryRemoveBounty(Entity ent,
+ CargoBountyData data,
+ bool skipped,
+ EntityUid? actor = null)
{
- if (!Resolve(uid, ref component))
+ if (!Resolve(ent, ref ent.Comp))
return false;
- for (var i = 0; i < component.Bounties.Count; i++)
+ for (var i = 0; i < ent.Comp.Bounties.Count; i++)
{
- if (component.Bounties[i].Id == data.Id)
+ if (ent.Comp.Bounties[i].Id == data.Id)
{
- component.Bounties.RemoveAt(i);
+ string? actorName = null;
+ if (actor != null)
+ {
+ var getIdentityEvent = new TryGetIdentityShortInfoEvent(ent.Owner, actor.Value);
+ RaiseLocalEvent(getIdentityEvent);
+ actorName = getIdentityEvent.Title;
+ }
+
+ ent.Comp.History.Add(new CargoBountyHistoryData(data,
+ skipped
+ ? CargoBountyHistoryData.BountyResult.Skipped
+ : CargoBountyHistoryData.BountyResult.Completed,
+ _gameTiming.CurTime,
+ actorName));
+ ent.Comp.Bounties.RemoveAt(i);
return true;
}
}
@@ -492,7 +515,7 @@ public void UpdateBountyConsoles()
}
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
+ _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
}
}
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
index e4bd9515136b..9dbd2b88dcab 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
@@ -8,7 +8,7 @@
using Content.Shared.Cargo.Events;
using Content.Shared.Cargo.Prototypes;
using Content.Shared.Database;
-using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Paper;
@@ -21,6 +21,7 @@ namespace Content.Server.Cargo.Systems
public sealed partial class CargoSystem
{
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
/// How much time to wait (in seconds) before increasing bank accounts balance.
@@ -41,6 +42,7 @@ private void InitializeConsole()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnInteractUsing);
SubscribeLocalEvent(OnOrderBalanceUpdated);
+ SubscribeLocalEvent(OnEmagged);
Reset();
}
@@ -75,6 +77,17 @@ private void Reset()
_timer = 0;
}
+ private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ args.Handled = true;
+ }
+
private void UpdateConsole(float frameTime)
{
_timer += frameTime;
@@ -85,9 +98,11 @@ private void UpdateConsole(float frameTime)
{
_timer -= Delay;
- foreach (var account in EntityQuery())
+ var stationQuery = EntityQueryEnumerator();
+ while (stationQuery.MoveNext(out var uid, out var bank))
{
- account.Balance += account.IncreasePerSecond * Delay;
+ var balanceToAdd = bank.IncreasePerSecond * Delay;
+ UpdateBankAccount(uid, bank, balanceToAdd);
}
var query = EntityQueryEnumerator();
@@ -192,7 +207,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
order.Approved = true;
_audio.PlayPvs(component.ConfirmSound, uid);
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(uid, player);
RaiseLocalEvent(tryGetIdentityShortInfoEvent);
@@ -213,7 +228,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
$"{ToPrettyString(player):user} approved order [orderId:{order.OrderId}, quantity:{order.OrderQuantity}, product:{order.ProductId}, requester:{order.Requester}, reason:{order.Reason}] with balance at {bank.Balance}");
orderDatabase.Orders.Remove(order);
- DeductFunds(bank, cost);
+ UpdateBankAccount(station.Value, bank, -cost);
UpdateOrders(station.Value);
}
@@ -536,11 +551,6 @@ private bool FulfillOrder(CargoOrderData order, EntityCoordinates spawn, string?
}
- private void DeductFunds(StationBankAccountComponent component, int amount)
- {
- component.Balance = Math.Max(0, component.Balance - amount);
- }
-
#region Station
private bool TryGetOrderDatabase([NotNullWhen(true)] EntityUid? stationUid, [MaybeNullWhen(false)] out StationCargoOrderDatabaseComponent dbComp)
diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs
index 65f927400162..d8aac5651599 100644
--- a/Content.Server/Cloning/CloningSystem.cs
+++ b/Content.Server/Cloning/CloningSystem.cs
@@ -60,6 +60,7 @@ public sealed class CloningSystem : EntitySystem
[Dependency] private readonly SharedMindSystem _mindSystem = default!;
[Dependency] private readonly MetaDataSystem _metaSystem = default!;
[Dependency] private readonly SharedJobSystem _jobs = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public readonly Dictionary ClonesWaitingForMind = new();
public const float EasyModeCloningCost = 0.7f;
@@ -276,10 +277,15 @@ public override void Update(float frameTime)
///
private void OnEmagged(EntityUid uid, CloningPodComponent clonePod, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
if (!this.IsPowered(uid, EntityManager))
return;
- _audio.PlayPvs(clonePod.SparkSound, uid);
_popupSystem.PopupEntity(Loc.GetString("cloning-pod-component-upgrade-emag-requirement"), uid);
args.Handled = true;
}
@@ -309,7 +315,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
var indices = _transformSystem.GetGridTilePositionOrDefault((uid, transform));
var tileMix = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true);
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
{
_audio.PlayPvs(clonePod.ScreamSound, uid);
Spawn(clonePod.MobSpawnId, transform.Coordinates);
@@ -327,7 +333,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
}
_puddleSystem.TrySpillAt(uid, bloodSolution, out _);
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
_material.SpawnMultipleFromMaterial(_robustRandom.Next(1, (int) (clonePod.UsedBiomass / 2.5)), clonePod.RequiredMaterial, Transform(uid).Coordinates);
}
diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs
index 6c320edb23c1..abcd93f32806 100644
--- a/Content.Server/Communications/CommunicationsConsoleSystem.cs
+++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs
@@ -16,7 +16,6 @@
using Content.Shared.Communications;
using Content.Shared.Database;
using Content.Shared.DeviceNetwork;
-using Content.Shared.Emag.Components;
using Content.Shared.IdentityManagement;
using Content.Shared.Popups;
using Robust.Server.GameObjects;
@@ -177,7 +176,7 @@ private static bool CanAnnounce(CommunicationsConsoleComponent comp)
private bool CanUse(EntityUid user, EntityUid console)
{
- if (TryComp(console, out var accessReaderComponent) && !HasComp(console))
+ if (TryComp(console, out var accessReaderComponent))
{
return _accessReaderSystem.IsAllowed(user, console, accessReaderComponent);
}
diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs
index 1a42d4bf38b0..3232f12ed84a 100644
--- a/Content.Server/Construction/Commands/FixRotationsCommand.cs
+++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs
@@ -89,6 +89,8 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args)
valid |= tagSystem.HasTag(child, "ForceFixRotations");
// override
valid &= !tagSystem.HasTag(child, "ForceNoFixRotations");
+ // remove diagonal entities as well
+ valid &= !tagSystem.HasTag(child, "Diagonal");
if (!valid)
continue;
diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
index ca1d45e64494..72d66c76382f 100644
--- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
+++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
@@ -13,6 +13,8 @@
using System.Diagnostics.CodeAnalysis;
using Content.Shared.IdentityManagement;
using Content.Shared.Security.Components;
+using System.Linq;
+using Content.Shared.Roles.Jobs;
namespace Content.Server.CriminalRecords.Systems;
@@ -42,6 +44,7 @@ public override void Initialize()
subs.Event(OnChangeStatus);
subs.Event(OnAddHistory);
subs.Event(OnDeleteHistory);
+ subs.Event(OnStatusFilterPressed);
});
}
@@ -57,6 +60,11 @@ private void OnKeySelected(Entity ent, ref Sele
ent.Comp.ActiveKey = msg.SelectedKey;
UpdateUserInterface(ent);
}
+ private void OnStatusFilterPressed(Entity ent, ref CriminalRecordSetStatusFilter msg)
+ {
+ ent.Comp.FilterStatus = msg.FilterStatus;
+ UpdateUserInterface(ent);
+ }
private void OnFiltersChanged(Entity ent, ref SetStationRecordFilter msg)
{
@@ -112,13 +120,26 @@ private void OnChangeStatus(Entity ent, ref Cri
}
// will probably never fail given the checks above
+ name = _records.RecordName(key.Value);
+ officer = Loc.GetString("criminal-records-console-unknown-officer");
+ var jobName = "Unknown";
+
+ _records.TryGetRecord(key.Value, out var entry);
+ if (entry != null)
+ jobName = entry.JobTitle;
+
+ var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value);
+ RaiseLocalEvent(tryGetIdentityShortInfoEvent);
+ if (tryGetIdentityShortInfoEvent.Title != null)
+ officer = tryGetIdentityShortInfoEvent.Title;
+
_criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason, officer);
(string, object)[] args;
if (reason != null)
- args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason) };
+ args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason), ("job", jobName) };
else
- args = new (string, object)[] { ("name", name), ("officer", officer) };
+ args = new (string, object)[] { ("name", name), ("officer", officer), ("job", jobName) };
// figure out which radio message to send depending on transition
var statusString = (oldStatus, msg.Status) switch
@@ -193,8 +214,18 @@ private void UpdateUserInterface(Entity ent)
return;
}
+ // get the listing of records to display
var listing = _records.BuildListing((owningStation.Value, stationRecords), console.Filter);
+ // filter the listing by the selected criminal record status
+ //if NONE, dont filter by status, just show all crew
+ if (console.FilterStatus != SecurityStatus.None)
+ {
+ listing = listing
+ .Where(x => _records.TryGetRecord(new StationRecordKey(x.Key, owningStation.Value), out var record) && record.Status == console.FilterStatus)
+ .ToDictionary(x => x.Key, x => x.Value);
+ }
+
var state = new CriminalRecordsConsoleState(listing, console.Filter);
if (console.ActiveKey is { } id)
{
@@ -205,6 +236,9 @@ private void UpdateUserInterface(Entity ent)
state.SelectedKey = id;
}
+ // Set the Current Tab aka the filter status type for the records list
+ state.FilterStatus = console.FilterStatus;
+
_ui.SetUiState(uid, CriminalRecordsConsoleKey.Key, state);
}
diff --git a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
index bc61c5d141a8..8dfe665541c9 100644
--- a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
+++ b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
@@ -1,5 +1,6 @@
using Content.Shared.Bed.Sleep;
using Content.Shared.Damage;
+using Content.Shared.Damage.Events;
using Content.Shared.Damage.ForceSay;
using Content.Shared.FixedPoint;
using Content.Shared.Mobs;
@@ -47,7 +48,7 @@ public override void Update(float frameTime)
}
}
- private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true, string? suffixOverride = null)
+ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true)
{
if (!TryComp(uid, out var actor))
return;
@@ -57,7 +58,13 @@ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool
_timing.CurTime < component.NextAllowedTime)
return;
- var suffix = Loc.GetString(suffixOverride ?? component.ForceSayStringPrefix + _random.Next(1, component.ForceSayStringCount));
+ var ev = new BeforeForceSayEvent(component.ForceSayStringDataset);
+ RaiseLocalEvent(uid, ev);
+
+ if (!_prototype.TryIndex(ev.Prefix, out var prefixList))
+ return;
+
+ var suffix = Loc.GetString(_random.Pick(prefixList.Values));
// set cooldown & raise event
component.NextAllowedTime = _timing.CurTime + component.Cooldown;
@@ -80,7 +87,7 @@ private void OnSleep(EntityUid uid, DamageForceSayComponent component, SleepStat
if (!args.FellAsleep)
return;
- TryForceSay(uid, component, true, "damage-force-say-sleep");
+ TryForceSay(uid, component);
AllowNextSpeech(uid);
}
diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs
index b75870ac0e64..ccbaf276cd4d 100644
--- a/Content.Server/Database/ServerDbBase.cs
+++ b/Content.Server/Database/ServerDbBase.cs
@@ -1112,7 +1112,7 @@ public async Task RemoveFromWhitelistAsync(NetUserId player)
.SingleOrDefaultAsync());
}
- public async Task SetLastReadRules(NetUserId player, DateTimeOffset date)
+ public async Task SetLastReadRules(NetUserId player, DateTimeOffset? date)
{
await using var db = await GetDb();
@@ -1122,7 +1122,7 @@ public async Task SetLastReadRules(NetUserId player, DateTimeOffset date)
return;
}
- dbPlayer.LastReadRules = date.UtcDateTime;
+ dbPlayer.LastReadRules = date?.UtcDateTime;
await db.DbContext.SaveChangesAsync();
}
diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs
index 5ddb3a590cbe..e3cfb66c7f7a 100644
--- a/Content.Server/Database/ServerDbManager.cs
+++ b/Content.Server/Database/ServerDbManager.cs
@@ -282,7 +282,7 @@ Task AddConnectionLogAsync(
#region Rules
Task GetLastReadRules(NetUserId player);
- Task SetLastReadRules(NetUserId player, DateTimeOffset time);
+ Task SetLastReadRules(NetUserId player, DateTimeOffset? time);
#endregion
@@ -830,7 +830,7 @@ public Task PurgeUploadedResourceLogAsync(int days)
return RunDbCommand(() => _db.GetLastReadRules(player));
}
- public Task SetLastReadRules(NetUserId player, DateTimeOffset time)
+ public Task SetLastReadRules(NetUserId player, DateTimeOffset? time)
{
DbWriteOpsMetric.Inc();
return RunDbCommand(() => _db.SetLastReadRules(player, time));
diff --git a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
index 689757d04408..24c58898c652 100644
--- a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
+++ b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
@@ -15,7 +15,6 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// The type of explosion. Determines damage types and tile break chance scaling.
///
[DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer))]
- [JsonIgnore]
public string ExplosionType = default!;
///
@@ -23,14 +22,12 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// chance.
///
[DataField]
- [JsonIgnore]
public float MaxIntensity = 5;
///
/// How quickly intensity drops off as you move away from the epicenter
///
[DataField]
- [JsonIgnore]
public float IntensitySlope = 1;
///
@@ -41,15 +38,20 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// A slope of 1 and MaxTotalIntensity of 100 corresponds to a radius of around 4.5 tiles.
///
[DataField]
- [JsonIgnore]
public float MaxTotalIntensity = 100;
///
/// The intensity of the explosion per unit reaction.
///
[DataField]
- [JsonIgnore]
public float IntensityPerUnit = 1;
+
+ ///
+ /// Factor used to scale the explosion intensity when calculating tile break chances. Allows for stronger
+ /// explosives that don't space tiles, without having to create a new explosion-type prototype.
+ ///
+ [DataField]
+ public float TileBreakScale = 1f;
public override bool ShouldLog => true;
@@ -72,6 +74,7 @@ public override void Effect(EntityEffectBaseArgs args)
ExplosionType,
intensity,
IntensitySlope,
- MaxIntensity);
+ MaxIntensity,
+ TileBreakScale);
}
}
diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs
index a43d0171e604..b73c101e3fea 100644
--- a/Content.Server/Fax/FaxSystem.cs
+++ b/Content.Server/Fax/FaxSystem.cs
@@ -50,6 +50,7 @@ public sealed class FaxSystem : EntitySystem
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] private readonly MetaDataSystem _metaData = default!;
[Dependency] private readonly FaxecuteSystem _faxecute = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
private const string PaperSlotId = "Paper";
@@ -227,7 +228,7 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
return;
}
- if (component.KnownFaxes.ContainsValue(newName) && !HasComp(uid)) // Allow existing names if emagged for fun
+ if (component.KnownFaxes.ContainsValue(newName) && !_emag.CheckFlag(uid, EmagType.Interaction)) // Allow existing names if emagged for fun
{
_popupSystem.PopupEntity(Loc.GetString("fax-machine-popup-name-exist"), uid);
return;
@@ -246,7 +247,12 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
private void OnEmagged(EntityUid uid, FaxMachineComponent component, ref GotEmaggedEvent args)
{
- _audioSystem.PlayPvs(component.EmagSound, uid);
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -260,7 +266,7 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi
switch (command)
{
case FaxConstants.FaxPingCommand:
- var isForSyndie = HasComp(uid) &&
+ var isForSyndie = _emag.CheckFlag(uid, EmagType.Interaction) &&
args.Data.ContainsKey(FaxConstants.FaxSyndicateData);
if (!isForSyndie && !component.ResponsePings)
return;
@@ -405,7 +411,7 @@ public void Refresh(EntityUid uid, FaxMachineComponent? component = null)
{ DeviceNetworkConstants.Command, FaxConstants.FaxPingCommand }
};
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
payload.Add(FaxConstants.FaxSyndicateData, true);
_deviceNetworkSystem.QueuePacket(uid, null, payload);
diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs
index e441574213e9..5efd5dc6fb32 100644
--- a/Content.Server/Implants/ImplanterSystem.cs
+++ b/Content.Server/Implants/ImplanterSystem.cs
@@ -58,17 +58,6 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen
return;
}
- // Check if we are trying to implant a implant which is already implanted
- if (implant.HasValue && !component.AllowMultipleImplants && CheckSameImplant(target, implant.Value))
- {
- var name = Identity.Name(target, EntityManager, args.User);
- var msg = Loc.GetString("implanter-component-implant-already", ("implant", implant), ("target", name));
- _popup.PopupEntity(msg, target, args.User);
- args.Handled = true;
- return;
- }
-
-
//Implant self instantly, otherwise try to inject the target.
if (args.User == target)
Implant(target, target, uid, component);
@@ -79,14 +68,7 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen
args.Handled = true;
}
- public bool CheckSameImplant(EntityUid target, EntityUid implant)
- {
- if (!TryComp(target, out var implanted))
- return false;
- var implantPrototype = Prototype(implant);
- return implanted.ImplantContainer.ContainedEntities.Any(entity => Prototype(entity) == implantPrototype);
- }
///
/// Attempt to implant someone else.
diff --git a/Content.Server/Implants/RadioImplantSystem.cs b/Content.Server/Implants/RadioImplantSystem.cs
new file mode 100644
index 000000000000..d9ba2290574e
--- /dev/null
+++ b/Content.Server/Implants/RadioImplantSystem.cs
@@ -0,0 +1,76 @@
+using Content.Server.Radio.Components;
+using Content.Shared.Implants;
+using Content.Shared.Implants.Components;
+using Robust.Shared.Containers;
+
+namespace Content.Server.Implants;
+
+public sealed class RadioImplantSystem : EntitySystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnImplantImplanted);
+ SubscribeLocalEvent(OnRemove);
+ }
+
+ ///
+ /// If implanted with a radio implant, installs the necessary intrinsic radio components
+ ///
+ private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args)
+ {
+ if (args.Implanted == null)
+ return;
+
+ var activeRadio = EnsureComp(args.Implanted.Value);
+ foreach (var channel in ent.Comp.RadioChannels)
+ {
+ if (activeRadio.Channels.Add(channel))
+ ent.Comp.ActiveAddedChannels.Add(channel);
+ }
+
+ EnsureComp(args.Implanted.Value);
+
+ var intrinsicRadioTransmitter = EnsureComp(args.Implanted.Value);
+ foreach (var channel in ent.Comp.RadioChannels)
+ {
+ if (intrinsicRadioTransmitter.Channels.Add(channel))
+ ent.Comp.TransmitterAddedChannels.Add(channel);
+ }
+ }
+
+ ///
+ /// Removes intrinsic radio components once the Radio Implant is removed
+ ///
+ private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args)
+ {
+ if (TryComp(args.Container.Owner, out var activeRadioComponent))
+ {
+ foreach (var channel in ent.Comp.ActiveAddedChannels)
+ {
+ activeRadioComponent.Channels.Remove(channel);
+ }
+ ent.Comp.ActiveAddedChannels.Clear();
+
+ if (activeRadioComponent.Channels.Count == 0)
+ {
+ RemCompDeferred(args.Container.Owner);
+ }
+ }
+
+ if (!TryComp(args.Container.Owner, out var radioTransmitterComponent))
+ return;
+
+ foreach (var channel in ent.Comp.TransmitterAddedChannels)
+ {
+ radioTransmitterComponent.Channels.Remove(channel);
+ }
+ ent.Comp.TransmitterAddedChannels.Clear();
+
+ if (radioTransmitterComponent.Channels.Count == 0 || activeRadioComponent?.Channels.Count == 0)
+ {
+ RemCompDeferred(args.Container.Owner);
+ }
+ }
+}
diff --git a/Content.Server/Info/RulesManager.cs b/Content.Server/Info/RulesManager.cs
index f4d9e57bd4dd..224d7f7d9af3 100644
--- a/Content.Server/Info/RulesManager.cs
+++ b/Content.Server/Info/RulesManager.cs
@@ -34,7 +34,7 @@ private async void OnConnected(object? sender, NetChannelArgs e)
{
PopupTime = _cfg.GetCVar(CCVars.RulesWaitTime),
CoreRules = _cfg.GetCVar(CCVars.RulesFile),
- ShouldShowRules = !isLocalhost && !hasCooldown
+ ShouldShowRules = !isLocalhost && !hasCooldown,
};
_netManager.ServerSendMessage(showRulesMessage, e.Channel);
}
diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs
index 18f246dcef49..ba82e65aa79a 100644
--- a/Content.Server/Lathe/LatheSystem.cs
+++ b/Content.Server/Lathe/LatheSystem.cs
@@ -16,6 +16,7 @@
using Content.Shared.UserInterface;
using Content.Shared.Database;
using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.Examine;
using Content.Shared.Lathe;
using Content.Shared.Materials;
@@ -42,6 +43,7 @@ public sealed class LatheSystem : SharedLatheSystem
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly ContainerSystem _container = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly UserInterfaceSystem _uiSys = default!;
[Dependency] private readonly MaterialStorageSystem _materialStorage = default!;
[Dependency] private readonly PopupSystem _popup = default!;
@@ -292,7 +294,7 @@ private void GetEmagLatheRecipes(EntityUid uid, EmagLatheRecipesComponent compon
{
if (uid != args.Lathe || !TryComp(uid, out var technologyDatabase))
return;
- if (!args.getUnavailable && !HasComp(uid))
+ if (!args.getUnavailable && !_emag.CheckFlag(uid, EmagType.Interaction))
return;
foreach (var recipe in component.EmagDynamicRecipes)
{
diff --git a/Content.Server/Magic/MagicSystem.cs b/Content.Server/Magic/MagicSystem.cs
index 2cf5136b4277..a7e5e967862a 100644
--- a/Content.Server/Magic/MagicSystem.cs
+++ b/Content.Server/Magic/MagicSystem.cs
@@ -19,4 +19,17 @@ private void OnSpellSpoken(ref SpeakSpellEvent args)
{
_chat.TrySendInGameICMessage(args.Performer, Loc.GetString(args.Speech), InGameICChatType.Speak, false);
}
+
+ public override void OnVoidApplause(VoidApplauseSpellEvent ev)
+ {
+ base.OnVoidApplause(ev);
+
+ _chat.TryEmoteWithChat(ev.Performer, ev.Emote);
+
+ var perfXForm = Transform(ev.Performer);
+ var targetXForm = Transform(ev.Target);
+
+ Spawn(ev.Effect, perfXForm.Coordinates);
+ Spawn(ev.Effect, targetXForm.Coordinates);
+ }
}
diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs
index cf5869d1cbb7..74bce0eee6ae 100644
--- a/Content.Server/Medical/HealingSystem.cs
+++ b/Content.Server/Medical/HealingSystem.cs
@@ -72,7 +72,10 @@ entity.Comp.DamageContainerID is not null &&
_bloodstreamSystem.TryModifyBleedAmount(entity.Owner, healing.BloodlossModifier);
if (isBleeding != bloodstream.BleedAmount > 0)
{
- _popupSystem.PopupEntity(Loc.GetString("medical-item-stop-bleeding"), entity, args.User);
+ var popup = (args.User == entity.Owner)
+ ? Loc.GetString("medical-item-stop-bleeding-self")
+ : Loc.GetString("medical-item-stop-bleeding", ("target", Identity.Entity(entity.Owner, EntityManager)));
+ _popupSystem.PopupEntity(popup, entity, args.User);
}
}
diff --git a/Content.Server/Mining/MiningSystem.cs b/Content.Server/Mining/MiningSystem.cs
index 18e96e576962..6b1b0fed4d8c 100644
--- a/Content.Server/Mining/MiningSystem.cs
+++ b/Content.Server/Mining/MiningSystem.cs
@@ -35,7 +35,7 @@ private void OnDestruction(EntityUid uid, OreVeinComponent component, Destructio
return;
var coords = Transform(uid).Coordinates;
- var toSpawn = _random.Next(proto.MinOreYield, proto.MaxOreYield);
+ var toSpawn = _random.Next(proto.MinOreYield, proto.MaxOreYield+1);
for (var i = 0; i < toSpawn; i++)
{
Spawn(proto.OreEntity, coords.Offset(_random.NextVector2(0.2f)));
diff --git a/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..b3809fe794b1
--- /dev/null
+++ b/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,12 @@
+using System.Numerics;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
+using Robust.Shared.GameStates;
+
+namespace Content.Server.Movement.Components;
+
+[RegisterComponent]
+public sealed partial class EyeCursorOffsetComponent : SharedEyeCursorOffsetComponent
+{
+
+}
diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
index 2cc735194f6a..bac9cfcf40b4 100644
--- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
+++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
@@ -1,5 +1,5 @@
using Content.Server.Chat.Systems;
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.Damage;
using Content.Shared.Emag.Components;
@@ -55,34 +55,11 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi
if (!_entMan.TryGetComponent(owner, out var botComp))
return HTNOperatorStatus.Failed;
-
- if (!_entMan.TryGetComponent(target, out var damage))
- return HTNOperatorStatus.Failed;
-
- if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _))
+ if (!_medibot.CheckInjectable((owner, botComp), target) || !_medibot.TryInject((owner, botComp), target))
return HTNOperatorStatus.Failed;
- if (!_interaction.InRangeUnobstructed(owner, target))
- return HTNOperatorStatus.Failed;
-
- var total = damage.TotalDamage;
-
- // always inject healthy patients when emagged
- if (total == 0 && !_entMan.HasComponent(owner))
- return HTNOperatorStatus.Failed;
-
- if (!_entMan.TryGetComponent(target, out var mobState))
- return HTNOperatorStatus.Failed;
-
- var state = mobState.CurrentState;
- if (!_medibot.TryGetTreatment(botComp, mobState.CurrentState, out var treatment) || !treatment.IsValid(total))
- return HTNOperatorStatus.Failed;
-
- _entMan.EnsureComponent(target);
- _solutionContainer.TryAddReagent(injectable.Value, treatment.Reagent, treatment.Quantity, out _);
- _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target);
- _audio.PlayPvs(botComp.InjectSound, target);
_chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, hideChat: true, hideLog: true);
+
return HTNOperatorStatus.Finished;
}
}
diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
index a71091ad97dd..f351d582c6ee 100644
--- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
+++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
@@ -1,6 +1,6 @@
using System.Threading;
using System.Threading.Tasks;
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
using Content.Server.NPC.Pathfinding;
using Content.Shared.Chemistry.Components.SolutionManager;
using Content.Shared.Damage;
diff --git a/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs b/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
index dd4ff6c65f19..6d8cb9dfe54e 100644
--- a/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
+++ b/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
@@ -1,4 +1,4 @@
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
namespace Content.Server.NPC.Systems;
diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs
index 141e99055cf3..e1a117f4bdbe 100644
--- a/Content.Server/Nuke/NukeComponent.cs
+++ b/Content.Server/Nuke/NukeComponent.cs
@@ -25,6 +25,13 @@ public sealed partial class NukeComponent : SharedNukeComponent
[ViewVariables(VVAccess.ReadWrite)]
public int Timer = 300;
+ ///
+ /// If the nuke is disarmed, this sets the minimum amount of time the timer can have.
+ /// The remaining time will reset to this value if it is below it.
+ ///
+ [DataField]
+ public int MinimumTime = 180;
+
///
/// How long until the bomb can arm again after deactivation.
/// Used to prevent announcements spam.
diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs
index 0a6228750580..84118931b109 100644
--- a/Content.Server/Nuke/NukeSystem.cs
+++ b/Content.Server/Nuke/NukeSystem.cs
@@ -522,6 +522,9 @@ public void DisarmBomb(EntityUid uid, NukeComponent? component = null)
_sound.PlayGlobalOnStation(uid, _audio.GetSound(component.DisarmSound));
_sound.StopStationEventMusic(uid, StationEventMusicType.Nuke);
+ // reset nuke remaining time to either itself or the minimum time, whichever is higher
+ component.RemainingTime = Math.Max(component.RemainingTime, component.MinimumTime);
+
// disable sound and reset it
component.PlayedAlertSound = false;
component.AlertAudioStream = _audio.Stop(component.AlertAudioStream);
diff --git a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
index 6e9856a61dc0..8f4c5f415003 100644
--- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
@@ -21,6 +21,7 @@ namespace Content.Server.Nutrition.EntitySystems;
public sealed class FatExtractorSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly HungerSystem _hunger = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
@@ -36,8 +37,13 @@ public override void Initialize()
private void OnGotEmagged(EntityUid uid, FatExtractorComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
- args.Repeatable = false;
}
private void OnClosed(EntityUid uid, FatExtractorComponent component, ref StorageAfterCloseEvent args)
@@ -103,7 +109,7 @@ public bool TryGetValidOccupant(EntityUid uid, [NotNullWhen(true)] out EntityUid
if (_hunger.GetHunger(hunger) < component.NutritionPerSecond)
return false;
- if (hunger.CurrentThreshold < component.MinHungerThreshold && !HasComp(uid))
+ if (hunger.CurrentThreshold < component.MinHungerThreshold && !_emag.CheckFlag(uid, EmagType.Interaction))
return false;
return true;
diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
index 26fa5ca3cc8f..48fb946135e7 100644
--- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
+++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
@@ -24,6 +24,7 @@ public sealed partial class SmokingSystem
{
[Dependency] private readonly DoAfterSystem _doAfterSystem = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly FoodSystem _foodSystem = default!;
[Dependency] private readonly ExplosionSystem _explosionSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!;
@@ -63,7 +64,7 @@ private void OnVapeInteraction(Entity entity, ref AfterInteractEv
forced = false;
}
- if (entity.Comp.ExplodeOnUse || HasComp(entity.Owner))
+ if (entity.Comp.ExplodeOnUse || _emag.CheckFlag(entity, EmagType.Interaction))
{
_explosionSystem.QueueExplosion(entity.Owner, "Default", entity.Comp.ExplosionIntensity, 0.5f, 3, canCreateVacuum: false);
EntityManager.DeleteEntity(entity);
@@ -161,8 +162,15 @@ private void OnVapeDoAfter(Entity entity, ref VapeDoAfterEvent ar
args.Args.Target.Value);
}
}
+
private void OnEmagged(Entity entity, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(entity, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
}
diff --git a/Content.Server/Power/Components/BatteryComponent.cs b/Content.Server/Power/Components/BatteryComponent.cs
index 4ef889133392..860b7b219a83 100644
--- a/Content.Server/Power/Components/BatteryComponent.cs
+++ b/Content.Server/Power/Components/BatteryComponent.cs
@@ -1,4 +1,5 @@
using Content.Server.Power.EntitySystems;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -16,6 +17,7 @@ public partial class BatteryComponent : Component
/// Maximum charge of the battery in joules (ie. watt seconds)
///
[DataField]
+ [GuidebookData]
public float MaxCharge;
///
diff --git a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
index a0f74df6a127..fcef03903b9a 100644
--- a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
+++ b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
@@ -1,4 +1,5 @@
using Content.Server.Power.Pow3r;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -24,6 +25,7 @@ public float MaxChargeRate
[DataField("maxSupply")]
[ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxSupply
{
get => NetworkBattery.MaxSupply;
diff --git a/Content.Server/Power/Components/PowerSupplierComponent.cs b/Content.Server/Power/Components/PowerSupplierComponent.cs
index cf23288fcd63..30f8335c4957 100644
--- a/Content.Server/Power/Components/PowerSupplierComponent.cs
+++ b/Content.Server/Power/Components/PowerSupplierComponent.cs
@@ -1,5 +1,6 @@
using Content.Server.Power.NodeGroups;
using Content.Server.Power.Pow3r;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -8,6 +9,7 @@ public sealed partial class PowerSupplierComponent : BaseNetConnectorComponent NetworkSupply.MaxSupply; set => NetworkSupply.MaxSupply = value; }
[ViewVariables(VVAccess.ReadWrite)]
diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs
index 14dddbb43e32..29c1431179da 100644
--- a/Content.Server/Power/EntitySystems/ApcSystem.cs
+++ b/Content.Server/Power/EntitySystems/ApcSystem.cs
@@ -4,7 +4,6 @@
using Content.Server.Power.Pow3r;
using Content.Shared.Access.Systems;
using Content.Shared.APC;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.Popups;
using Content.Shared.Rounding;
@@ -19,6 +18,7 @@ public sealed class ApcSystem : EntitySystem
{
[Dependency] private readonly AccessReaderSystem _accessReader = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
@@ -111,7 +111,12 @@ public void ApcToggleBreaker(EntityUid uid, ApcComponent? apc = null, PowerNetwo
private void OnEmagged(EntityUid uid, ApcComponent comp, ref GotEmaggedEvent args)
{
- // no fancy conditions
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -170,7 +175,7 @@ public void UpdateUIState(EntityUid uid,
private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery)
{
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
return ApcChargeState.Emag;
if (battery.CurrentStorage / battery.Capacity > ApcComponent.HighPowerThreshold)
diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs
index 127b80a631e6..c227aee7f075 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Console.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs
@@ -3,6 +3,7 @@
using Content.Shared.UserInterface;
using Content.Shared.Access.Components;
using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.IdentityManagement;
using Content.Shared.Research.Components;
using Content.Shared.Research.Prototypes;
@@ -11,6 +12,8 @@ namespace Content.Server.Research.Systems;
public sealed partial class ResearchSystem
{
+ [Dependency] private readonly EmagSystem _emag = default!;
+
private void InitializeConsole()
{
SubscribeLocalEvent(OnConsoleUnlock);
@@ -18,6 +21,7 @@ private void InitializeConsole()
SubscribeLocalEvent(OnPointsChanged);
SubscribeLocalEvent(OnConsoleRegistrationChanged);
SubscribeLocalEvent(OnConsoleDatabaseModified);
+ SubscribeLocalEvent(OnEmagged);
}
private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, ConsoleUnlockTechnologyMessage args)
@@ -39,7 +43,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
if (!UnlockTechnology(uid, args.Id, act))
return;
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
var getIdentityEvent = new TryGetIdentityShortInfoEvent(uid, act);
RaiseLocalEvent(getIdentityEvent);
@@ -52,7 +56,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
);
_radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false);
}
-
+
SyncClientWithServer(uid);
UpdateConsoleInterface(uid, component);
}
@@ -100,4 +104,15 @@ private void OnConsoleDatabaseModified(EntityUid uid, ResearchConsoleComponent c
UpdateConsoleInterface(uid, component);
}
+ private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ args.Handled = true;
+ }
+
}
diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
index 6b83a61d2860..1eb9aabed6a1 100644
--- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
+++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
@@ -36,7 +36,6 @@ public sealed partial class RevenantSystem
{
[Dependency] private readonly ThrowingSystem _throwing = default!;
[Dependency] private readonly EntityStorageSystem _entityStorage = default!;
- [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!;
[Dependency] private readonly GhostSystem _ghost = default!;
@@ -343,7 +342,8 @@ private void OnMalfunctionAction(EntityUid uid, RevenantComponent component, Rev
_whitelistSystem.IsBlacklistPass(component.MalfunctionBlacklist, ent))
continue;
- _emag.DoEmagEffect(uid, ent); //it does not emag itself. adorable.
+ var ev = new GotEmaggedEvent(uid, EmagType.Interaction | EmagType.Access);
+ RaiseLocalEvent(ent, ref ev);
}
}
}
diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
index b4ba14004415..4d2a8912e830 100644
--- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
+++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
@@ -8,6 +8,7 @@
using Content.Server.DeviceNetwork.Components;
using Content.Server.DeviceNetwork.Systems;
using Content.Server.Explosion.Components;
+using Content.Shared.Emag.Systems;
using Robust.Shared.Utility;
namespace Content.Server.Silicons.Borgs;
@@ -15,6 +16,8 @@ namespace Content.Server.Silicons.Borgs;
///
public sealed partial class BorgSystem
{
+ [Dependency] private readonly EmagSystem _emag = default!;
+
private void InitializeTransponder()
{
SubscribeLocalEvent(OnPacketReceived);
@@ -127,7 +130,7 @@ private void Destroy(Entity ent)
private bool CheckEmagged(EntityUid uid, string name)
{
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
{
Popup.PopupEntity(Loc.GetString($"borg-transponder-emagged-{name}-popup"), uid, uid, PopupType.LargeCaution);
return true;
diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
index 109c183f0401..f5ead80bddbf 100644
--- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs
+++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
@@ -6,7 +6,6 @@
using Content.Server.Station.Systems;
using Content.Shared.Administration;
using Content.Shared.Chat;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.GameTicking;
using Content.Shared.Mind;
@@ -14,7 +13,6 @@
using Content.Shared.Roles;
using Content.Shared.Silicons.Laws;
using Content.Shared.Silicons.Laws.Components;
-using Content.Shared.Stunnable;
using Content.Shared.Wires;
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
@@ -22,7 +20,6 @@
using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Toolshed;
-using Robust.Shared.Audio;
namespace Content.Server.Silicons.Laws;
@@ -34,8 +31,8 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
[Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] private readonly SharedRoleSystem _roles = default!;
[Dependency] private readonly StationSystem _station = default!;
- [Dependency] private readonly SharedStunSystem _stunSystem = default!;
[Dependency] private readonly UserInterfaceSystem _userInterface = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
public override void Initialize()
@@ -52,7 +49,7 @@ public override void Initialize()
SubscribeLocalEvent(OnIonStormLaws);
SubscribeLocalEvent(OnLawProviderMindAdded);
SubscribeLocalEvent(OnLawProviderMindRemoved);
- SubscribeLocalEvent(OnEmagLawsAdded);
+ SubscribeLocalEvent(OnEmagLawsAdded);
}
private void OnMapInit(EntityUid uid, SiliconLawBoundComponent component, MapInitEvent args)
@@ -135,7 +132,7 @@ private void OnDirectedGetLaws(EntityUid uid, SiliconLawProviderComponent compon
private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component, ref IonStormLawsEvent args)
{
// Emagged borgs are immune to ion storm
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
component.Lawset = args.Lawset;
@@ -152,9 +149,8 @@ private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component
}
}
- private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref GotEmaggedEvent args)
+ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref SiliconEmaggedEvent args)
{
-
if (component.Lawset == null)
component.Lawset = GetLawset(component.Laws);
@@ -164,7 +160,7 @@ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent componen
// Add the first emag law before the others
component.Lawset?.Laws.Insert(0, new SiliconLaw
{
- LawString = Loc.GetString("law-emag-custom", ("name", Name(args.UserUid)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
+ LawString = Loc.GetString("law-emag-custom", ("name", Name(args.user)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
Order = 0
});
@@ -176,20 +172,6 @@ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent componen
});
}
- protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
- {
- if (component.RequireOpenPanel && TryComp(uid, out var panel) && !panel.Open)
- return;
-
- base.OnGotEmagged(uid, component, ref args);
- NotifyLawsChanged(uid, component.EmaggedSound);
- if(_mind.TryGetMind(uid, out var mindId, out _))
- EnsureSubvertedSiliconRole(mindId);
-
- _stunSystem.TryParalyze(uid, component.StunTime, true);
-
- }
-
private void EnsureSubvertedSiliconRole(EntityUid mindId)
{
if (!_roles.MindHasRole(mindId))
diff --git a/Content.Server/Stunnable/Systems/StunbatonSystem.cs b/Content.Server/Stunnable/Systems/StunbatonSystem.cs
index 97dd2c7e7359..1e2494203abf 100644
--- a/Content.Server/Stunnable/Systems/StunbatonSystem.cs
+++ b/Content.Server/Stunnable/Systems/StunbatonSystem.cs
@@ -1,7 +1,6 @@
using Content.Server.Power.Components;
using Content.Server.Power.EntitySystems;
using Content.Server.Power.Events;
-using Content.Server.Stunnable.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.Damage.Events;
using Content.Shared.Examine;
diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs
index c20a6a46446c..c2ea6dd1ac00 100644
--- a/Content.Server/VendingMachines/VendingMachineSystem.cs
+++ b/Content.Server/VendingMachines/VendingMachineSystem.cs
@@ -39,6 +39,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!;
[Dependency] private readonly SharedPointLightSystem _light = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
private const float WallVendEjectDistanceFromWall = 1f;
@@ -48,7 +49,6 @@ public override void Initialize()
SubscribeLocalEvent(OnPowerChanged);
SubscribeLocalEvent(OnBreak);
- SubscribeLocalEvent(OnEmagged);
SubscribeLocalEvent(OnDamageChanged);
SubscribeLocalEvent(OnVendingPrice);
SubscribeLocalEvent(OnEmpPulse);
@@ -123,12 +123,6 @@ private void OnBreak(EntityUid uid, VendingMachineComponent vendComponent, Break
TryUpdateVisualState(uid, vendComponent);
}
- private void OnEmagged(EntityUid uid, VendingMachineComponent component, ref GotEmaggedEvent args)
- {
- // only emag if there are emag-only items
- args.Handled = component.EmaggedInventory.Count > 0;
- }
-
private void OnDamageChanged(EntityUid uid, VendingMachineComponent component, DamageChangedEvent args)
{
if (!args.DamageIncreased && component.Broken)
@@ -232,7 +226,7 @@ public bool IsAuthorized(EntityUid uid, EntityUid sender, VendingMachineComponen
if (!TryComp(uid, out var accessReader))
return true;
- if (_accessReader.IsAllowed(sender, uid, accessReader) || HasComp(uid))
+ if (_accessReader.IsAllowed(sender, uid, accessReader))
return true;
Popup.PopupEntity(Loc.GetString("vending-machine-component-try-eject-access-denied"), uid);
@@ -422,7 +416,7 @@ private void EjectItem(EntityUid uid, VendingMachineComponent? vendComponent = n
if (!Resolve(uid, ref component))
return null;
- if (type == InventoryType.Emagged && HasComp(uid))
+ if (type == InventoryType.Emagged && _emag.CheckFlag(uid, EmagType.Interaction))
return component.EmaggedInventory.GetValueOrDefault(entryId);
if (type == InventoryType.Contraband && component.Contraband)
diff --git a/Content.Server/Wieldable/WieldableSystem.cs b/Content.Server/Wieldable/WieldableSystem.cs
new file mode 100644
index 000000000000..35f75276a8ff
--- /dev/null
+++ b/Content.Server/Wieldable/WieldableSystem.cs
@@ -0,0 +1,45 @@
+using Content.Server.Movement.Components;
+using Content.Server.Movement.Systems;
+using Content.Shared.Camera;
+using Content.Shared.Hands;
+using Content.Shared.Movement.Components;
+using Content.Shared.Wieldable;
+using Content.Shared.Wieldable.Components;
+
+namespace Content.Server.Wieldable;
+
+public sealed class WieldableSystem : SharedWieldableSystem
+{
+ [Dependency] private readonly ContentEyeSystem _eye = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnEyeOffsetUnwielded);
+ SubscribeLocalEvent(OnEyeOffsetWielded);
+ SubscribeLocalEvent>(OnGetEyePvsScale);
+ }
+
+ private void OnEyeOffsetUnwielded(Entity entity, ref ItemUnwieldedEvent args)
+ {
+ _eye.UpdatePvsScale(args.User);
+ }
+
+ private void OnEyeOffsetWielded(Entity entity, ref ItemWieldedEvent args)
+ {
+ _eye.UpdatePvsScale(args.User);
+ }
+
+ private void OnGetEyePvsScale(Entity entity,
+ ref HeldRelayedEvent args)
+ {
+ if (!TryComp(entity, out EyeCursorOffsetComponent? eyeCursorOffset) || !TryComp(entity.Owner, out WieldableComponent? wieldableComp))
+ return;
+
+ if (!wieldableComp.Wielded)
+ return;
+
+ args.Args.Scale += eyeCursorOffset.PvsIncrease;
+ }
+}
diff --git a/Content.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs
index 903ceab186d1..0219fd2b1ad6 100644
--- a/Content.Shared/Access/Components/AccessReaderComponent.cs
+++ b/Content.Shared/Access/Components/AccessReaderComponent.cs
@@ -76,7 +76,7 @@ public sealed partial class AccessReaderComponent : Component
/// Whether or not emag interactions have an effect on this.
///
[DataField]
- public bool BreakOnEmag = true;
+ public bool BreakOnAccessBreaker = true;
}
[DataDefinition, Serializable, NetSerializable]
diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs
index 0b1d508cc241..84de549b6636 100644
--- a/Content.Shared/Access/Systems/AccessReaderSystem.cs
+++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs
@@ -2,7 +2,6 @@
using System.Linq;
using Content.Shared.Access.Components;
using Content.Shared.DeviceLinking.Events;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.Hands.EntitySystems;
using Content.Shared.Inventory;
@@ -24,6 +23,7 @@ public sealed class AccessReaderSystem : EntitySystem
[Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] private readonly InventorySystem _inventorySystem = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedGameTicker _gameTicker = default!;
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;
@@ -71,17 +71,28 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA
{
if (args.User == null) // AutoLink (and presumably future external linkers) have no user.
return;
- if (!HasComp(uid) && !IsAllowed(args.User.Value, uid, component))
+ if (!IsAllowed(args.User.Value, uid, component))
args.Cancel();
}
private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args)
{
- if (!reader.BreakOnEmag)
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
return;
+
+ if (!reader.BreakOnAccessBreaker)
+ return;
+
+ if (!GetMainAccessReader(uid, out var accessReader))
+ return;
+
+ if (accessReader.Value.Comp.AccessLists.Count < 1)
+ return;
+
+ args.Repeatable = true;
args.Handled = true;
- reader.Enabled = false;
- reader.AccessLog.Clear();
+ accessReader.Value.Comp.AccessLists.Clear();
+ accessReader.Value.Comp.AccessLog.Clear();
Dirty(uid, reader);
}
@@ -135,6 +146,7 @@ public bool GetMainAccessReader(EntityUid uid, [NotNullWhen(true)] out Entity
[DataField]
+ [GuidebookData]
public float MaxTargetPressure = Atmospherics.MaxOutputPressure;
}
diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs
index cbea0a0516f0..dbabb8bb9fda 100644
--- a/Content.Shared/Bed/Sleep/SleepingComponent.cs
+++ b/Content.Shared/Bed/Sleep/SleepingComponent.cs
@@ -1,6 +1,8 @@
+using Content.Shared.Dataset;
using Content.Shared.FixedPoint;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
namespace Content.Shared.Bed.Sleep;
@@ -39,4 +41,11 @@ public sealed partial class SleepingComponent : Component
{
Params = AudioParams.Default.WithVariation(0.05f)
};
+
+ ///
+ /// The fluent string prefix to use when picking a random suffix
+ /// This is only active for those who have the sleeping component
+ ///
+ [DataField]
+ public ProtoId ForceSaySleepDataset = "ForceSaySleepDataset";
}
diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs
index 90e1fd38e862..d0c6c753deb5 100644
--- a/Content.Shared/Bed/Sleep/SleepingSystem.cs
+++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs
@@ -1,6 +1,7 @@
using Content.Shared.Actions;
using Content.Shared.Buckle.Components;
using Content.Shared.Damage;
+using Content.Shared.Damage.Events;
using Content.Shared.Damage.ForceSay;
using Content.Shared.Emoting;
using Content.Shared.Examine;
@@ -18,6 +19,7 @@
using Content.Shared.Speech;
using Content.Shared.StatusEffect;
using Content.Shared.Stunnable;
+using Content.Shared.Traits.Assorted;
using Content.Shared.Verbs;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Prototypes;
@@ -63,6 +65,8 @@ public override void Initialize()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnUnbuckleAttempt);
SubscribeLocalEvent(OnEmoteAttempt);
+
+ SubscribeLocalEvent(OnChangeForceSay, after: new []{typeof(PainNumbnessSystem)});
}
private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args)
@@ -317,6 +321,11 @@ public void OnEmoteAttempt(Entity ent, ref EmoteAttemptEvent
{
args.Cancel();
}
+
+ private void OnChangeForceSay(Entity ent, ref BeforeForceSayEvent args)
+ {
+ args.Prefix = ent.Comp.ForceSaySleepDataset;
+ }
}
diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs
index bbce533ed1bb..f05eb3376ea7 100644
--- a/Content.Shared/CCVar/CCVars.Admin.cs
+++ b/Content.Shared/CCVar/CCVars.Admin.cs
@@ -89,6 +89,12 @@ public sealed partial class CCVars
public static readonly CVarDef ServerBanErasePlayer =
CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED);
+ ///
+ /// If true, will reset the last time the player has read the rules. This will mean on their next login they will be shown the rules again.
+ ///
+ public static readonly CVarDef ServerBanResetLastReadRules =
+ CVarDef.Create("admin.server_ban_reset_last_read_rules", true, CVar.ARCHIVE | CVar.SERVER);
+
///
/// Minimum players sharing a connection required to create an alert. -1 to disable the alert.
///
diff --git a/Content.Shared/CCVar/CCVars.Interactions.cs b/Content.Shared/CCVar/CCVars.Interactions.cs
index c62f81be0ca3..fcefa73a96ae 100644
--- a/Content.Shared/CCVar/CCVars.Interactions.cs
+++ b/Content.Shared/CCVar/CCVars.Interactions.cs
@@ -51,4 +51,23 @@ public sealed partial class CCVars
///
public static readonly CVarDef OpaqueStorageWindow =
CVarDef.Create("control.opaque_storage_background", false, CVar.CLIENTONLY | CVar.ARCHIVE);
+
+ ///
+ /// Whether or not the storage window has a title of the entity name.
+ ///
+ public static readonly CVarDef StorageWindowTitle =
+ CVarDef.Create("control.storage_window_title", false, CVar.CLIENTONLY | CVar.ARCHIVE);
+
+ ///
+ /// How many storage windows are allowed to be open at once.
+ /// Recommended that you utilise this in conjunction with
+ ///
+ public static readonly CVarDef StorageLimit =
+ CVarDef.Create("control.storage_limit", 1, CVar.REPLICATED | CVar.SERVER);
+
+ ///
+ /// Whether or not storage can be opened recursively.
+ ///
+ public static readonly CVarDef NestedStorage =
+ CVarDef.Create("control.nested_storage", true, CVar.REPLICATED | CVar.SERVER);
}
diff --git a/Content.Shared/Camera/GetEyeOffsetEvent.cs b/Content.Shared/Camera/GetEyeOffsetEvent.cs
index de9c7c9e178f..0e3c00110a32 100644
--- a/Content.Shared/Camera/GetEyeOffsetEvent.cs
+++ b/Content.Shared/Camera/GetEyeOffsetEvent.cs
@@ -1,4 +1,5 @@
using System.Numerics;
+using Content.Shared.Inventory;
using Content.Shared.Movement.Systems;
namespace Content.Shared.Camera;
@@ -17,3 +18,15 @@ namespace Content.Shared.Camera;
///
[ByRefEvent]
public record struct GetEyeOffsetEvent(Vector2 Offset);
+
+///
+/// Raised on any equipped and in-hand items that may modify the eye offset.
+/// Pockets and suitstorage are excluded.
+///
+[ByRefEvent]
+public sealed class GetEyeOffsetRelayedEvent : EntityEventArgs, IInventoryRelayEvent
+{
+ public SlotFlags TargetSlots { get; } = ~(SlotFlags.POCKET & SlotFlags.SUITSTORAGE);
+
+ public Vector2 Offset;
+}
diff --git a/Content.Shared/Camera/GetEyePvsScaleEvent.cs b/Content.Shared/Camera/GetEyePvsScaleEvent.cs
new file mode 100644
index 000000000000..482b755db8d3
--- /dev/null
+++ b/Content.Shared/Camera/GetEyePvsScaleEvent.cs
@@ -0,0 +1,33 @@
+using System.Numerics;
+using Content.Shared.Inventory;
+using Content.Shared.Movement.Systems;
+
+namespace Content.Shared.Camera;
+
+///
+/// Raised directed by-ref when is called.
+/// Should be subscribed to by any systems that want to modify an entity's eye PVS scale,
+/// so that they do not override each other. Keep in mind that this should be done serverside;
+/// the client may set a new PVS scale, but the server won't provide the data if it isn't done on the server.
+///
+///
+/// The total scale to apply.
+///
+///
+/// Note that in most cases should be incremented or decremented by subscribers, not set.
+/// Otherwise, any offsets applied by previous subscribing systems will be overridden.
+///
+[ByRefEvent]
+public record struct GetEyePvsScaleEvent(float Scale);
+
+///
+/// Raised on any equipped and in-hand items that may modify the eye offset.
+/// Pockets and suitstorage are excluded.
+///
+[ByRefEvent]
+public sealed class GetEyePvsScaleRelayedEvent : EntityEventArgs, IInventoryRelayEvent
+{
+ public SlotFlags TargetSlots { get; } = ~(SlotFlags.POCKET & SlotFlags.SUITSTORAGE);
+
+ public float Scale;
+}
diff --git a/Content.Shared/Camera/SharedCameraRecoilSystem.cs b/Content.Shared/Camera/SharedCameraRecoilSystem.cs
index a2ce0e77e20c..a497016c46f0 100644
--- a/Content.Shared/Camera/SharedCameraRecoilSystem.cs
+++ b/Content.Shared/Camera/SharedCameraRecoilSystem.cs
@@ -1,4 +1,6 @@
using System.Numerics;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
using JetBrains.Annotations;
using Robust.Shared.Network;
using Robust.Shared.Serialization;
@@ -28,7 +30,7 @@ public abstract class SharedCameraRecoilSystem : EntitySystem
///
protected const float KickMagnitudeMax = 1f;
- [Dependency] private readonly SharedEyeSystem _eye = default!;
+ [Dependency] private readonly SharedContentEyeSystem _eye = default!;
[Dependency] private readonly INetManager _net = default!;
public override void Initialize()
@@ -81,9 +83,7 @@ private void UpdateEyes(float frameTime)
continue;
recoil.LastKick = recoil.CurrentKick;
- var ev = new GetEyeOffsetEvent();
- RaiseLocalEvent(uid, ref ev);
- _eye.SetOffset(uid, ev.Offset, eye);
+ _eye.UpdateEyeOffset((uid, eye));
}
}
diff --git a/Content.Shared/Cargo/CargoBountyHistoryData.cs b/Content.Shared/Cargo/CargoBountyHistoryData.cs
new file mode 100644
index 000000000000..eb46bc194425
--- /dev/null
+++ b/Content.Shared/Cargo/CargoBountyHistoryData.cs
@@ -0,0 +1,67 @@
+using Content.Shared.Cargo.Prototypes;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Cargo;
+
+///
+/// A data structure for storing historical information about bounties.
+///
+[DataDefinition, NetSerializable, Serializable]
+public readonly partial record struct CargoBountyHistoryData
+{
+ ///
+ /// A unique id used to identify the bounty
+ ///
+ [DataField]
+ public string Id { get; init; } = string.Empty;
+
+ ///
+ /// Whether this bounty was completed or skipped.
+ ///
+ [DataField]
+ public BountyResult Result { get; init; } = BountyResult.Completed;
+
+ ///
+ /// Optional name of the actor that completed/skipped the bounty.
+ ///
+ [DataField]
+ public string? ActorName { get; init; } = default;
+
+ ///
+ /// Time when this bounty was completed or skipped
+ ///
+ [DataField]
+ public TimeSpan Timestamp { get; init; } = TimeSpan.MinValue;
+
+ ///
+ /// The prototype containing information about the bounty.
+ ///
+ [DataField(required: true)]
+ public ProtoId Bounty { get; init; } = string.Empty;
+
+ public CargoBountyHistoryData(CargoBountyData bounty, BountyResult result, TimeSpan timestamp, string? actorName)
+ {
+ Bounty = bounty.Bounty;
+ Result = result;
+ Id = bounty.Id;
+ ActorName = actorName;
+ Timestamp = timestamp;
+ }
+
+ ///
+ /// Covers how a bounty was actually finished.
+ ///
+ public enum BountyResult
+ {
+ ///
+ /// Bounty was actually fulfilled and the goods sold
+ ///
+ Completed = 0,
+
+ ///
+ /// Bounty was explicitly skipped by some actor
+ ///
+ Skipped = 1,
+ }
+}
diff --git a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
index bf82a08127e5..8c78312be19b 100644
--- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
+++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
@@ -50,11 +50,13 @@ public sealed partial class CargoBountyConsoleComponent : Component
public sealed class CargoBountyConsoleState : BoundUserInterfaceState
{
public List Bounties;
+ public List History;
public TimeSpan UntilNextSkip;
- public CargoBountyConsoleState(List bounties, TimeSpan untilNextSkip)
+ public CargoBountyConsoleState(List bounties, List history, TimeSpan untilNextSkip)
{
Bounties = bounties;
+ History = history;
UntilNextSkip = untilNextSkip;
}
}
diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs
index 88d587c14577..d588b62eb37f 100644
--- a/Content.Shared/Cloning/CloningPodComponent.cs
+++ b/Content.Shared/Cloning/CloningPodComponent.cs
@@ -46,15 +46,6 @@ public sealed partial class CloningPodComponent : Component
[DataField("mobSpawnId"), ViewVariables(VVAccess.ReadWrite)]
public EntProtoId MobSpawnId = "MobAbomination";
- ///
- /// Emag sound effects.
- ///
- [DataField("sparkSound")]
- public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks")
- {
- Params = AudioParams.Default.WithVolume(8),
- };
-
// TODO: Remove this from here when cloning and/or zombies are refactored
[DataField("screamSound")]
public SoundSpecifier ScreamSound = new SoundCollectionSpecifier("ZombieScreams")
diff --git a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
index 70e927e3cb84..3a35b807c01c 100644
--- a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
+++ b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
@@ -1,7 +1,10 @@
using Content.Shared.CriminalRecords.Systems;
+using Content.Shared.CriminalRecords.Components;
+using Content.Shared.CriminalRecords;
using Content.Shared.Radio;
using Content.Shared.StationRecords;
using Robust.Shared.Prototypes;
+using Content.Shared.Security;
namespace Content.Shared.CriminalRecords.Components;
@@ -31,6 +34,12 @@ public sealed partial class CriminalRecordsConsoleComponent : Component
[DataField]
public StationRecordsFilter? Filter;
+ ///
+ /// Current seleced security status for the filter by criminal status dropdown.
+ ///
+ [DataField]
+ public SecurityStatus FilterStatus;
+
///
/// Channel to send messages to when someone's status gets changed.
///
diff --git a/Content.Shared/CriminalRecords/CriminalRecordsUi.cs b/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
index 287de36ac736..b8ad9ede15ef 100644
--- a/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
+++ b/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
@@ -35,9 +35,9 @@ public sealed class CriminalRecordsConsoleState : BoundUserInterfaceState
/// Currently selected crewmember record key.
///
public uint? SelectedKey = null;
-
public CriminalRecord? CriminalRecord = null;
public GeneralStationRecord? StationRecord = null;
+ public SecurityStatus FilterStatus = SecurityStatus.None;
public readonly Dictionary? RecordListing;
public readonly StationRecordsFilter? Filter;
@@ -100,3 +100,20 @@ public CriminalRecordDeleteHistory(uint index)
Index = index;
}
}
+
+///
+/// Used to set what status to filter by index.
+///
+///
+///
+[Serializable, NetSerializable]
+
+public sealed class CriminalRecordSetStatusFilter : BoundUserInterfaceMessage
+{
+ public readonly SecurityStatus FilterStatus;
+ public CriminalRecordSetStatusFilter(SecurityStatus newFilterStatus)
+ {
+ FilterStatus = newFilterStatus;
+ }
+}
+
diff --git a/Content.Shared/Damage/Events/BeforeForceSayEvent.cs b/Content.Shared/Damage/Events/BeforeForceSayEvent.cs
new file mode 100644
index 000000000000..9e35f6ce7309
--- /dev/null
+++ b/Content.Shared/Damage/Events/BeforeForceSayEvent.cs
@@ -0,0 +1,14 @@
+using Content.Shared.Dataset;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Damage.Events;
+
+///
+/// Event for interrupting and changing the prefix for when an entity is being forced to say something
+///
+[Serializable, NetSerializable]
+public sealed class BeforeForceSayEvent(ProtoId prefixDataset) : EntityEventArgs
+{
+ public ProtoId Prefix = prefixDataset;
+}
diff --git a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
index 163cc7cbf4cc..e184f4beb97c 100644
--- a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
+++ b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
@@ -1,8 +1,8 @@
using Content.Shared.Damage.Prototypes;
+using Content.Shared.Dataset;
using Content.Shared.FixedPoint;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
-using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Shared.Damage.ForceSay;
@@ -30,14 +30,7 @@ public sealed partial class DamageForceSayComponent : Component
/// The fluent string prefix to use when picking a random suffix
///
[DataField]
- public string ForceSayStringPrefix = "damage-force-say-";
-
- ///
- /// The number of suffixes that exist for use with .
- /// i.e. (prefix)-1 through (prefix)-(count)
- ///
- [DataField]
- public int ForceSayStringCount = 7;
+ public ProtoId ForceSayStringDataset = "ForceSayStringDataset";
///
/// The amount of total damage between that needs to be taken before
diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
index 9fdb4a6a804d..a650ef72f803 100644
--- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
+++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
@@ -24,6 +24,7 @@ public sealed partial class DisposalDoAfterEvent : SimpleDoAfterEvent
public abstract class SharedDisposalUnitSystem : EntitySystem
{
[Dependency] protected readonly IGameTiming GameTiming = default!;
+ [Dependency] protected readonly EmagSystem _emag = default!;
[Dependency] protected readonly MetaDataSystem Metadata = default!;
[Dependency] protected readonly SharedJointSystem Joints = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
@@ -102,6 +103,12 @@ protected void OnCanDragDropOn(EntityUid uid, SharedDisposalUnitComponent compon
protected void OnEmagged(EntityUid uid, SharedDisposalUnitComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (component.DisablePressure == true)
+ return;
+
component.DisablePressure = true;
args.Handled = true;
}
diff --git a/Content.Shared/Doors/Components/FirelockComponent.cs b/Content.Shared/Doors/Components/FirelockComponent.cs
index 3f7d6c3f7049..cc9278dfe7e4 100644
--- a/Content.Shared/Doors/Components/FirelockComponent.cs
+++ b/Content.Shared/Doors/Components/FirelockComponent.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Guidebook;
using Robust.Shared.GameStates;
namespace Content.Shared.Doors.Components
@@ -23,12 +24,14 @@ public sealed partial class FirelockComponent : Component
/// Maximum pressure difference before the firelock will refuse to open, in kPa.
///
[DataField("pressureThreshold"), ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float PressureThreshold = 20;
///
/// Maximum temperature difference before the firelock will refuse to open, in k.
///
[DataField("temperatureThreshold"), ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float TemperatureThreshold = 330;
// this used to check for hot-spots, but because accessing that data is a a mess this now just checks
// temperature. This does mean a cold room will trigger hot-air pop-ups
diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs
index ef9d28e4ef7a..f2dcd443e918 100644
--- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs
+++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs
@@ -34,6 +34,7 @@ public abstract partial class SharedDoorSystem : EntitySystem
[Dependency] private readonly INetManager _net = default!;
[Dependency] protected readonly SharedPhysicsSystem PhysicsSystem = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedStunSystem _stunSystem = default!;
[Dependency] protected readonly TagSystem Tags = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
@@ -77,8 +78,6 @@ public override void Initialize()
SubscribeLocalEvent(OnWeldAttempt);
SubscribeLocalEvent(OnWeldChanged);
SubscribeLocalEvent(OnPryTimeModifier);
-
- SubscribeLocalEvent(OnAttemptEmag);
SubscribeLocalEvent(OnEmagged);
}
@@ -118,31 +117,24 @@ private void OnRemove(Entity door, ref ComponentRemove args)
_activeDoors.Remove(door);
}
- private void OnAttemptEmag(EntityUid uid, DoorComponent door, ref OnAttemptEmagEvent args)
+ private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ return;
+
if (!TryComp(uid, out var airlock))
- {
- args.Handled = true;
return;
- }
if (IsBolted(uid) || !airlock.Powered)
- {
- args.Handled = true;
return;
- }
if (door.State != DoorState.Closed)
- {
- args.Handled = true;
- }
- }
+ return;
- private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
- {
if (!SetState(uid, DoorState.Emagging, door))
return;
- Audio.PlayPredicted(door.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8));
+
+ args.Repeatable = true;
args.Handled = true;
}
diff --git a/Content.Shared/DrawDepth/DrawDepth.cs b/Content.Shared/DrawDepth/DrawDepth.cs
index d0d2daf5d90f..4a93b5f0eaf3 100644
--- a/Content.Shared/DrawDepth/DrawDepth.cs
+++ b/Content.Shared/DrawDepth/DrawDepth.cs
@@ -9,32 +9,42 @@ public enum DrawDepth
///
/// This is for sub-floors, the floors you see after prying off a tile.
///
- LowFloors = DrawDepthTag.Default - 11,
+ LowFloors = DrawDepthTag.Default - 14,
// various entity types that require different
// draw depths, as to avoid hiding
#region SubfloorEntities
- ThickPipe = DrawDepthTag.Default - 10,
- ThickWire = DrawDepthTag.Default - 9,
- ThinPipe = DrawDepthTag.Default - 8,
- ThinWire = DrawDepthTag.Default - 7,
+ ThickPipe = DrawDepthTag.Default - 13,
+ ThickWire = DrawDepthTag.Default - 12,
+ ThinPipe = DrawDepthTag.Default - 11,
+ ThinWire = DrawDepthTag.Default - 10,
#endregion
///
/// Things that are beneath regular floors.
///
- BelowFloor = DrawDepthTag.Default - 7,
+ BelowFloor = DrawDepthTag.Default - 9,
///
/// Used for entities like carpets.
///
- FloorTiles = DrawDepthTag.Default - 6,
+ FloorTiles = DrawDepthTag.Default - 8,
///
- /// Things that are actually right on the floor, like puddles. This does not mean objects like
+ /// Things that are actually right on the floor, like ice crust or atmos devices. This does not mean objects like
/// tables, even though they are technically "on the floor".
///
- FloorObjects = DrawDepthTag.Default - 5,
+ FloorObjects = DrawDepthTag.Default - 7,
+
+ ///
+ // Discrete drawdepth to avoid z-fighting with other FloorObjects but also above floor entities.
+ ///
+ Puddles = DrawDepthTag.Default - 6,
+
+ ///
+ // Objects that are on the floor, but should render above puddles. This includes kudzu, holopads, telepads and levers.
+ ///
+ HighFloorObjects = DrawDepthTag.Default - 5,
DeadMobs = DrawDepthTag.Default - 4,
diff --git a/Content.Shared/Emag/Components/EmagComponent.cs b/Content.Shared/Emag/Components/EmagComponent.cs
index 235cf0c74448..23d3b90eeda9 100644
--- a/Content.Shared/Emag/Components/EmagComponent.cs
+++ b/Content.Shared/Emag/Components/EmagComponent.cs
@@ -1,6 +1,8 @@
using Content.Shared.Emag.Systems;
using Content.Shared.Tag;
+using Robust.Shared.Audio;
using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
using Robust.Shared.Serialization;
@@ -14,7 +16,21 @@ public sealed partial class EmagComponent : Component
///
/// The tag that marks an entity as immune to emags
///
- [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
[AutoNetworkedField]
- public string EmagImmuneTag = "EmagImmune";
+ public ProtoId EmagImmuneTag = "EmagImmune";
+
+ ///
+ /// What type of emag effect this device will do
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public EmagType EmagType = EmagType.Interaction;
+
+ ///
+ /// What sound should the emag play when used
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
}
diff --git a/Content.Shared/Emag/Components/EmaggedComponent.cs b/Content.Shared/Emag/Components/EmaggedComponent.cs
index 337f1a8e5611..152fdca8e368 100644
--- a/Content.Shared/Emag/Components/EmaggedComponent.cs
+++ b/Content.Shared/Emag/Components/EmaggedComponent.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Emag.Systems;
using Robust.Shared.GameStates;
namespace Content.Shared.Emag.Components;
@@ -5,7 +6,12 @@ namespace Content.Shared.Emag.Components;
///
/// Marker component for emagged entities
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class EmaggedComponent : Component
{
+ ///
+ /// The EmagType flags that were used to emag this device
+ ///
+ [DataField, AutoNetworkedField]
+ public EmagType EmagType = EmagType.None;
}
diff --git a/Content.Shared/Emag/Systems/EmagSystem.cs b/Content.Shared/Emag/Systems/EmagSystem.cs
index 3a556b47063b..9626f177192f 100644
--- a/Content.Shared/Emag/Systems/EmagSystem.cs
+++ b/Content.Shared/Emag/Systems/EmagSystem.cs
@@ -6,8 +6,9 @@
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Popups;
-using Content.Shared.Silicons.Laws.Components;
using Content.Shared.Tag;
+using Robust.Shared.Audio.Systems;
+using Robust.Shared.Serialization;
namespace Content.Shared.Emag.Systems;
@@ -23,88 +24,124 @@ public sealed class EmagSystem : EntitySystem
[Dependency] private readonly SharedChargesSystem _charges = default!;
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly TagSystem _tag = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnAfterInteract);
+ SubscribeLocalEvent(OnAccessOverriderAccessUpdated);
}
+ private void OnAccessOverriderAccessUpdated(Entity entity, ref OnAccessOverriderAccessUpdatedEvent args)
+ {
+ if (!CompareFlag(entity.Comp.EmagType, EmagType.Access))
+ return;
+
+ entity.Comp.EmagType &= ~EmagType.Access;
+ Dirty(entity);
+ }
private void OnAfterInteract(EntityUid uid, EmagComponent comp, AfterInteractEvent args)
{
if (!args.CanReach || args.Target is not { } target)
return;
- args.Handled = TryUseEmag(uid, args.User, target, comp);
+ args.Handled = TryEmagEffect((uid, comp), args.User, target);
}
///
- /// Tries to use the emag on a target entity
+ /// Does the emag effect on a specified entity
///
- public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComponent? comp = null)
+ public bool TryEmagEffect(Entity ent, EntityUid user, EntityUid target)
{
- if (!Resolve(uid, ref comp, false))
+ if (!Resolve(ent, ref ent.Comp, false))
return false;
- if (_tag.HasTag(target, comp.EmagImmuneTag))
+ if (_tag.HasTag(target, ent.Comp.EmagImmuneTag))
return false;
- TryComp(uid, out var charges);
- if (_charges.IsEmpty(uid, charges))
+ TryComp(ent, out var charges);
+ if (_charges.IsEmpty(ent, charges))
{
_popup.PopupClient(Loc.GetString("emag-no-charges"), user, user);
return false;
}
- var handled = DoEmagEffect(user, target);
- if (!handled)
+ var emaggedEvent = new GotEmaggedEvent(user, ent.Comp.EmagType);
+ RaiseLocalEvent(target, ref emaggedEvent);
+
+ if (!emaggedEvent.Handled)
return false;
- _popup.PopupClient(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user,
- user, PopupType.Medium);
+ _popup.PopupPredicted(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, user, PopupType.Medium);
- _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target}");
+ _audio.PlayPredicted(ent.Comp.EmagSound, ent, ent);
- if (charges != null)
- _charges.UseCharge(uid, charges);
- return true;
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target} with flag(s): {ent.Comp.EmagType}");
+
+ if (charges != null && emaggedEvent.Handled)
+ _charges.UseCharge(ent, charges);
+
+ if (!emaggedEvent.Repeatable)
+ {
+ EnsureComp(target, out var emaggedComp);
+
+ emaggedComp.EmagType |= ent.Comp.EmagType;
+ Dirty(target, emaggedComp);
+ }
+
+ return emaggedEvent.Handled;
}
///
- /// Does the emag effect on a specified entity
+ /// Checks whether an entity has the EmaggedComponent with a set flag.
///
- public bool DoEmagEffect(EntityUid user, EntityUid target)
+ /// The target entity to check for the flag.
+ /// The EmagType flag to check for.
+ /// True if entity has EmaggedComponent and the provided flag. False if the entity lacks EmaggedComponent or provided flag.
+ public bool CheckFlag(EntityUid target, EmagType flag)
{
- // prevent emagging twice
- if (HasComp(target))
+ if (!TryComp(target, out var comp))
return false;
- var onAttemptEmagEvent = new OnAttemptEmagEvent(user);
- RaiseLocalEvent(target, ref onAttemptEmagEvent);
+ if ((comp.EmagType & flag) == flag)
+ return true;
- // prevent emagging if attempt fails
- if (onAttemptEmagEvent.Handled)
- return false;
+ return false;
+ }
- var emaggedEvent = new GotEmaggedEvent(user);
- RaiseLocalEvent(target, ref emaggedEvent);
+ ///
+ /// Compares a flag to the target.
+ ///
+ /// The target flag to check.
+ /// The flag to check for within the target.
+ /// True if target contains flag. Otherwise false.
+ public bool CompareFlag(EmagType target, EmagType flag)
+ {
+ if ((target & flag) == flag)
+ return true;
- if (emaggedEvent.Handled && !emaggedEvent.Repeatable)
- EnsureComp(target);
- return emaggedEvent.Handled;
+ return false;
}
}
+
+[Flags]
+[Serializable, NetSerializable]
+public enum EmagType : byte
+{
+ None = 0,
+ Interaction = 1 << 1,
+ Access = 1 << 2
+}
///
/// Shows a popup to emag user (client side only!) and adds to the entity when handled
///
/// Emag user
+/// The emag type to use
/// Did the emagging succeed? Causes a user-only popup to show on client side
/// Can the entity be emagged more than once? Prevents adding of
/// Needs to be handled in shared/client, not just the server, to actually show the emagging popup
[ByRefEvent]
-public record struct GotEmaggedEvent(EntityUid UserUid, bool Handled = false, bool Repeatable = false);
-
-[ByRefEvent]
-public record struct OnAttemptEmagEvent(EntityUid UserUid, bool Handled = false);
+public record struct GotEmaggedEvent(EntityUid UserUid, EmagType Type, bool Handled = false, bool Repeatable = false);
diff --git a/Content.Shared/Fax/Components/FaxMachineComponent.cs b/Content.Shared/Fax/Components/FaxMachineComponent.cs
index 161c878e2752..2407ba594995 100644
--- a/Content.Shared/Fax/Components/FaxMachineComponent.cs
+++ b/Content.Shared/Fax/Components/FaxMachineComponent.cs
@@ -59,12 +59,6 @@ public sealed partial class FaxMachineComponent : Component
[DataField]
public bool ReceiveNukeCodes { get; set; } = false;
- ///
- /// Sound to play when fax has been emagged
- ///
- [DataField]
- public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
-
///
/// Sound to play when fax printing new message
///
diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
index 9e8e0fa74415..a0e02cf2e1ad 100644
--- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
+++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Camera;
using Content.Shared.Hands.Components;
using Content.Shared.Movement.Systems;
@@ -7,6 +8,8 @@ public abstract partial class SharedHandsSystem
{
private void InitializeRelay()
{
+ SubscribeLocalEvent(RelayEvent);
+ SubscribeLocalEvent(RelayEvent);
SubscribeLocalEvent(RelayEvent);
}
diff --git a/Content.Shared/Implants/Components/RadioImplantComponent.cs b/Content.Shared/Implants/Components/RadioImplantComponent.cs
new file mode 100644
index 000000000000..e0e7f556463b
--- /dev/null
+++ b/Content.Shared/Implants/Components/RadioImplantComponent.cs
@@ -0,0 +1,37 @@
+using Content.Shared.Radio;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Implants.Components;
+
+///
+/// Gives the user access to a given channel without the need for a headset.
+///
+[RegisterComponent]
+public sealed partial class RadioImplantComponent : Component
+{
+ ///
+ /// The radio channel(s) to grant access to.
+ ///
+ [DataField(required: true)]
+ public HashSet> RadioChannels = new();
+
+ ///
+ /// The radio channels that have been added by the implant to a user's ActiveRadioComponent.
+ /// Used to track which channels were successfully added (not already in user)
+ ///
+ ///
+ /// Should not be modified outside RadioImplantSystem.cs
+ ///
+ [DataField]
+ public HashSet> ActiveAddedChannels = new();
+
+ ///
+ /// The radio channels that have been added by the implant to a user's IntrinsicRadioTransmitterComponent.
+ /// Used to track which channels were successfully added (not already in user)
+ ///
+ ///
+ /// Should not be modified outside RadioImplantSystem.cs
+ ///
+ [DataField]
+ public HashSet> TransmitterAddedChannels = new();
+}
diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs
index 44803e721c0d..6f394fb932a4 100644
--- a/Content.Shared/Implants/SharedImplanterSystem.cs
+++ b/Content.Shared/Implants/SharedImplanterSystem.cs
@@ -52,7 +52,14 @@ private void OnExamine(EntityUid uid, ImplanterComponent component, ExaminedEven
args.PushMarkup(Loc.GetString("implanter-contained-implant-text", ("desc", component.ImplantData.Item2)));
}
+ public bool CheckSameImplant(EntityUid target, EntityUid implant)
+ {
+ if (!TryComp(target, out var implanted))
+ return false;
+ var implantPrototype = Prototype(implant);
+ return implanted.ImplantContainer.ContainedEntities.Any(entity => Prototype(entity) == implantPrototype);
+ }
//Instantly implant something and add all necessary components and containers.
//Set to draw mode if not implant only
public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component)
@@ -60,6 +67,16 @@ public void Implant(EntityUid user, EntityUid target, EntityUid implanter, Impla
if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp))
return;
+ // Check if we are trying to implant a implant which is already implanted
+ // Check AFTER the doafter to prevent "is it a fake?" metagaming against deceptive implants
+ if (!component.AllowMultipleImplants && CheckSameImplant(target, implant.Value))
+ {
+ var name = Identity.Name(target, EntityManager, user);
+ var msg = Loc.GetString("implanter-component-implant-already", ("implant", implant), ("target", name));
+ _popup.PopupEntity(msg, target, user);
+ return;
+ }
+
//If the target doesn't have the implanted component, add it.
var implantedComp = EnsureComp(target);
var implantContainer = implantedComp.ImplantContainer;
diff --git a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
index 4f486fe695e7..e39fb056b4a5 100644
--- a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
+++ b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
@@ -1,13 +1,10 @@
namespace Content.Shared.Inventory.Events;
-public sealed class RefreshEquipmentHudEvent : EntityEventArgs, IInventoryRelayEvent where T : IComponent
+[ByRefEvent]
+public record struct RefreshEquipmentHudEvent(SlotFlags TargetSlots) : IInventoryRelayEvent
+ where T : IComponent
{
- public SlotFlags TargetSlots { get; init; }
+ public SlotFlags TargetSlots { get; } = TargetSlots;
public bool Active = false;
public List Components = new();
-
- public RefreshEquipmentHudEvent(SlotFlags targetSlots)
- {
- TargetSlots = targetSlots;
- }
}
diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs
index d431195a8166..bb5dd02ab3d8 100644
--- a/Content.Shared/Inventory/InventorySystem.Relay.cs
+++ b/Content.Shared/Inventory/InventorySystem.Relay.cs
@@ -55,14 +55,14 @@ public void InitializeRelay()
SubscribeLocalEvent(RelayInventoryEvent);
// ComponentActivatedClientSystems
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
SubscribeLocalEvent>(OnGetEquipmentVerbs);
}
diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs
index dd251ed18b3f..7328787f25ef 100644
--- a/Content.Shared/Lathe/SharedLatheSystem.cs
+++ b/Content.Shared/Lathe/SharedLatheSystem.cs
@@ -18,6 +18,7 @@ public abstract class SharedLatheSystem : EntitySystem
{
[Dependency] private readonly IPrototypeManager _proto = default!;
[Dependency] private readonly SharedMaterialStorageSystem _materialStorage = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public readonly Dictionary> InverseRecipes = new();
@@ -66,6 +67,12 @@ public bool CanProduce(EntityUid uid, LatheRecipePrototype recipe, int amount =
private void OnEmagged(EntityUid uid, EmagLatheRecipesComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
diff --git a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
index 8754de50583e..6dc6cbfe0b32 100644
--- a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
+++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
@@ -2,6 +2,7 @@
using Content.Shared.Emag.Systems;
using Content.Shared.Light.Components;
using Content.Shared.Mind.Components;
+using Content.Shared.Storage.Components;
using Content.Shared.Toggleable;
using Content.Shared.Verbs;
using Robust.Shared.Audio.Systems;
@@ -22,6 +23,7 @@ public sealed class UnpoweredFlashlightSystem : EntitySystem
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
[Dependency] private readonly SharedPointLightSystem _light = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
@@ -78,6 +80,9 @@ private void OnMindAdded(EntityUid uid, UnpoweredFlashlightComponent component,
private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
if (!_light.TryGetLight(uid, out var light))
return;
diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs
index 070d5801c1c8..2689602ae8c9 100644
--- a/Content.Shared/Lock/LockComponent.cs
+++ b/Content.Shared/Lock/LockComponent.cs
@@ -54,9 +54,9 @@ public sealed partial class LockComponent : Component
///
/// Whether or not an emag disables it.
///
- [DataField("breakOnEmag")]
+ [DataField]
[AutoNetworkedField]
- public bool BreakOnEmag = true;
+ public bool BreakOnAccessBreaker = true;
///
/// Amount of do-after time needed to lock the entity.
diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs
index 106528009533..0b24bc672216 100644
--- a/Content.Shared/Lock/LockSystem.cs
+++ b/Content.Shared/Lock/LockSystem.cs
@@ -28,6 +28,7 @@ public sealed class LockSystem : EntitySystem
[Dependency] private readonly AccessReaderSystem _accessReader = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
[Dependency] private readonly ActivatableUISystem _activatableUI = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedPopupSystem _sharedPopupSystem = default!;
@@ -295,7 +296,10 @@ private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsE
private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEvent args)
{
- if (!component.Locked || !component.BreakOnEmag)
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ return;
+
+ if (!component.Locked || !component.BreakOnAccessBreaker)
return;
_audio.PlayPredicted(component.UnlockSound, uid, args.UserUid);
@@ -307,7 +311,7 @@ private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEve
var ev = new LockToggledEvent(false);
RaiseLocalEvent(uid, ref ev, true);
- RemComp(uid); //Literally destroys the lock as a tell it was emagged
+ args.Repeatable = true;
args.Handled = true;
}
diff --git a/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs b/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs
new file mode 100644
index 000000000000..c134790da88d
--- /dev/null
+++ b/Content.Shared/Magic/Events/VoidApplauseSpellEvent.cs
@@ -0,0 +1,24 @@
+using Content.Shared.Actions;
+using Content.Shared.Chat.Prototypes;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Magic.Events;
+
+public sealed partial class VoidApplauseSpellEvent : EntityTargetActionEvent, ISpeakSpell
+{
+ [DataField]
+ public string? Speech { get; private set; }
+
+ ///
+ /// Emote to use.
+ ///
+ [DataField]
+ public ProtoId Emote = "ClapSingle";
+
+ ///
+ /// Visual effect entity that is spawned at both the user's and the target's location.
+ ///
+ [DataField]
+ public EntProtoId Effect = "EffectVoidBlink";
+}
diff --git a/Content.Shared/Magic/SharedMagicSystem.cs b/Content.Shared/Magic/SharedMagicSystem.cs
index acedaf05f657..fe033f249879 100644
--- a/Content.Shared/Magic/SharedMagicSystem.cs
+++ b/Content.Shared/Magic/SharedMagicSystem.cs
@@ -80,6 +80,7 @@ public override void Initialize()
SubscribeLocalEvent(OnChargeSpell);
SubscribeLocalEvent(OnRandomGlobalSpawnSpell);
SubscribeLocalEvent(OnMindSwapSpell);
+ SubscribeLocalEvent(OnVoidApplause);
// Spell wishlist
// A wishlish of spells that I'd like to implement or planning on implementing in a future PR
@@ -402,8 +403,7 @@ private void OnTeleportSpell(TeleportSpellEvent args)
return;
var transform = Transform(args.Performer);
-
- if (transform.MapID != args.Target.GetMapId(EntityManager) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true))
+ if (transform.MapID != _transform.GetMapId(args.Target) || !_interaction.InRangeUnobstructed(args.Performer, args.Target, range: 1000F, collisionMask: CollisionGroup.Opaque, popup: true))
return;
_transform.SetCoordinates(args.Performer, args.Target);
@@ -411,6 +411,17 @@ private void OnTeleportSpell(TeleportSpellEvent args)
Speak(args);
args.Handled = true;
}
+
+ public virtual void OnVoidApplause(VoidApplauseSpellEvent ev)
+ {
+ if (ev.Handled || !PassesSpellPrerequisites(ev.Action, ev.Performer))
+ return;
+
+ ev.Handled = true;
+ Speak(ev);
+
+ _transform.SwapPositions(ev.Performer, ev.Target);
+ }
// End Teleport Spells
#endregion
#region Spell Helpers
diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
index d143f509485c..8eb541ee5982 100644
--- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
+++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
@@ -29,6 +29,7 @@ public abstract class SharedMaterialReclaimerSystem : EntitySystem
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] protected readonly SharedContainerSystem Container = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public const string ActiveReclaimerContainerId = "active-material-reclaimer-container";
@@ -60,6 +61,12 @@ private void OnExamined(EntityUid uid, MaterialReclaimerComponent component, Exa
private void OnEmagged(EntityUid uid, MaterialReclaimerComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -207,7 +214,7 @@ public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent c
component.Enabled &&
!component.Broken &&
HasComp(victim) &&
- HasComp(uid);
+ _emag.CheckFlag(uid, EmagType.Interaction);
}
///
diff --git a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
index f6ce235ff749..891129a2ddc0 100644
--- a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
+++ b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
@@ -20,6 +20,7 @@ public abstract partial class SharedCryoPodSystem: EntitySystem
{
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
[Dependency] private readonly StandingStateSystem _standingStateSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;
@@ -156,9 +157,13 @@ protected void AddAlternativeVerbs(EntityUid uid, CryoPodComponent cryoPodCompon
protected void OnEmagged(EntityUid uid, CryoPodComponent? cryoPodComponent, ref GotEmaggedEvent args)
{
if (!Resolve(uid, ref cryoPodComponent))
- {
return;
- }
+
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (cryoPodComponent.PermaLocked && cryoPodComponent.Locked)
+ return;
cryoPodComponent.PermaLocked = true;
cryoPodComponent.Locked = true;
diff --git a/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs b/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs
new file mode 100644
index 000000000000..788de804f440
--- /dev/null
+++ b/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs
@@ -0,0 +1,8 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Mindshield.Components;
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class FakeMindShieldImplantComponent : Component
+{
+}
diff --git a/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs b/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs
new file mode 100644
index 000000000000..106f43367ee3
--- /dev/null
+++ b/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs
@@ -0,0 +1,22 @@
+using Content.Shared.StatusIcon;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Mindshield.Components;
+
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+public sealed partial class FakeMindShieldComponent : Component
+{
+
+ ///
+ /// The state of the Fake mindshield, if true the owning entity will display a mindshield effect on their job icon
+ ///
+ [DataField, AutoNetworkedField]
+ public bool IsEnabled { get; set; } = false;
+
+ ///
+ /// The Security status icon displayed to the security officer. Should be a duplicate of the one the mindshield uses since it's spoofing that
+ ///
+ [DataField, AutoNetworkedField]
+ public ProtoId MindShieldStatusIcon = "MindShieldIcon";
+}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
new file mode 100644
index 000000000000..cb48ef6997f3
--- /dev/null
+++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
@@ -0,0 +1,44 @@
+using Content.Shared.Actions;
+using Content.Shared.Implants;
+using Content.Shared.Implants.Components;
+using Content.Shared.Mindshield.Components;
+using Robust.Shared.Containers;
+
+namespace Content.Shared.Mindshield.FakeMindShield;
+
+public sealed class SharedFakeMindShieldImplantSystem : EntitySystem
+{
+ [Dependency] private readonly SharedActionsSystem _actionsSystem = default!;
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnFakeMindShieldToggle);
+ SubscribeLocalEvent(ImplantCheck);
+ SubscribeLocalEvent(ImplantDraw);
+ }
+
+ ///
+ /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity
+ ///
+ private void OnFakeMindShieldToggle(Entity entity, ref FakeMindShieldToggleEvent ev)
+ {
+ ev.Handled = true;
+ if (entity.Comp.ImplantedEntity is not { } ent)
+ return;
+
+ if (!TryComp(ent, out var comp))
+ return;
+ _actionsSystem.SetToggled(ev.Action, !comp.IsEnabled); // Set it to what the Mindshield component WILL be after this
+ RaiseLocalEvent(ent, ev); //this reraises the action event to support an eventual future Changeling Antag which will also be using this component for it's "mindshield" ability
+ }
+ private void ImplantCheck(EntityUid uid, FakeMindShieldImplantComponent component ,ref ImplantImplantedEvent ev)
+ {
+ if (ev.Implanted != null)
+ EnsureComp(ev.Implanted.Value);
+ }
+
+ private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev)
+ {
+ RemComp(ev.Container.Owner);
+ }
+}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
new file mode 100644
index 000000000000..0a7c97420011
--- /dev/null
+++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
@@ -0,0 +1,21 @@
+using Content.Shared.Actions;
+using Content.Shared.Mindshield.Components;
+
+namespace Content.Shared.Mindshield.FakeMindShield;
+
+public sealed class SharedFakeMindShieldSystem : EntitySystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnToggleMindshield);
+ }
+
+ private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent toggleEvent)
+ {
+ comp.IsEnabled = !comp.IsEnabled;
+ Dirty(uid, comp);
+ }
+}
+
+public sealed partial class FakeMindShieldToggleEvent : InstantActionEvent;
diff --git a/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs b/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs
new file mode 100644
index 000000000000..e729314d39bb
--- /dev/null
+++ b/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Alert;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Mobs.Events;
+
+///
+/// Event for allowing the interrupting and change of the mob threshold severity alert
+///
+[Serializable, NetSerializable]
+public sealed class BeforeAlertSeverityCheckEvent(ProtoId currentAlert, short severity) : EntityEventArgs
+{
+ public bool CancelUpdate = false;
+ public ProtoId CurrentAlert = currentAlert;
+ public short Severity = severity;
+}
diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
index eeaecc24d800..a059c18dd8f4 100644
--- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
+++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
@@ -4,6 +4,7 @@
using Content.Shared.Damage;
using Content.Shared.FixedPoint;
using Content.Shared.Mobs.Components;
+using Content.Shared.Mobs.Events;
using Robust.Shared.GameStates;
namespace Content.Shared.Mobs.Systems;
@@ -391,6 +392,16 @@ private void UpdateAlerts(EntityUid target, MobState currentMobState, MobThresho
if (alertPrototype.SupportsSeverity)
{
var severity = _alerts.GetMinSeverity(currentAlert);
+
+ var ev = new BeforeAlertSeverityCheckEvent(currentAlert, severity);
+ RaiseLocalEvent(target, ev);
+
+ if (ev.CancelUpdate)
+ {
+ _alerts.ShowAlert(target, ev.CurrentAlert, ev.Severity);
+ return;
+ }
+
if (TryGetNextState(target, currentMobState, out var nextState, threshold) &&
TryGetPercentageForState(target, nextState.Value, damageable.TotalDamage, out var percentage))
{
diff --git a/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs b/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs
new file mode 100644
index 000000000000..3f5a12874b91
--- /dev/null
+++ b/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs
@@ -0,0 +1,13 @@
+using Content.Shared.Wieldable;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Indicates that this item requires wielding for the cursor offset effect to be active.
+///
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem))]
+public sealed partial class CursorOffsetRequiresWieldComponent : Component
+{
+
+}
diff --git a/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..e0884222f257
--- /dev/null
+++ b/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,32 @@
+using System.Numerics;
+using Content.Shared.Movement.Systems;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Displaces SS14 eye data when given to an entity.
+///
+[ComponentProtoName("EyeCursorOffset"), NetworkedComponent]
+public abstract partial class SharedEyeCursorOffsetComponent : Component
+{
+ ///
+ /// The amount the view will be displaced when the cursor is positioned at/beyond the max offset distance.
+ /// Measured in tiles.
+ ///
+ [DataField]
+ public float MaxOffset = 3f;
+
+ ///
+ /// The speed which the camera adjusts to new positions. 0.5f seems like a good value, but can be changed if you want very slow/instant adjustments.
+ ///
+ [DataField]
+ public float OffsetSpeed = 0.5f;
+
+ ///
+ /// The amount the PVS should increase to account for the max offset.
+ /// Should be 1/10 of MaxOffset most of the time.
+ ///
+ [DataField]
+ public float PvsIncrease = 0.3f;
+}
diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
index faade44c8587..71bc65a79ea0 100644
--- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
+++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
@@ -140,11 +140,29 @@ public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? compon
Dirty(uid, component);
}
- public void UpdateEyeOffset(Entity eye)
+ public void UpdateEyeOffset(Entity eye)
{
var ev = new GetEyeOffsetEvent();
RaiseLocalEvent(eye, ref ev);
- _eye.SetOffset(eye, ev.Offset, eye);
+
+ var evRelayed = new GetEyeOffsetRelayedEvent();
+ RaiseLocalEvent(eye, ref evRelayed);
+
+ _eye.SetOffset(eye, ev.Offset + evRelayed.Offset, eye);
+ }
+
+ public void UpdatePvsScale(EntityUid uid, ContentEyeComponent? contentEye = null, EyeComponent? eye = null)
+ {
+ if (!Resolve(uid, ref contentEye) || !Resolve(uid, ref eye))
+ return;
+
+ var ev = new GetEyePvsScaleEvent();
+ RaiseLocalEvent(uid, ref ev);
+
+ var evRelayed = new GetEyePvsScaleRelayedEvent();
+ RaiseLocalEvent(uid, ref evRelayed);
+
+ _eye.SetPvsScale((uid, eye), 1 + ev.Scale + evRelayed.Scale);
}
///
diff --git a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs b/Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
similarity index 78%
rename from Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
rename to Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
index 0bc5dce55b9f..b79c4dd9ef05 100644
--- a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
+++ b/Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
@@ -1,8 +1,10 @@
-namespace Content.Server.NPC.Components
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.NPC.Components
{
/// Added when a medibot injects someone
/// So they don't get injected again for at least a minute.
- [RegisterComponent]
+ [RegisterComponent, NetworkedComponent]
public sealed partial class NPCRecentlyInjectedComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("accumulator")]
diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
index ae3e85cbe42a..630ce12d53ce 100644
--- a/Content.Shared/Ninja/Components/EmagProviderComponent.cs
+++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
@@ -1,6 +1,8 @@
+using Content.Shared.Emag.Systems;
using Content.Shared.Ninja.Systems;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
@@ -17,11 +19,23 @@ public sealed partial class EmagProviderComponent : Component
/// The tag that marks an entity as immune to emagging.
///
[DataField]
- public ProtoId EmagImmuneTag = "EmagImmune";
+ public ProtoId AccessBreakerImmuneTag = "AccessBreakerImmune";
///
/// Whitelist that entities must be on to work.
///
[DataField]
public EntityWhitelist? Whitelist;
+
+ ///
+ /// What type of emag this will provide.
+ ///
+ [DataField]
+ public EmagType EmagType = EmagType.Access;
+
+ ///
+ /// What sound should the emag play when used
+ ///
+ [DataField]
+ public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
}
diff --git a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
index ae0bacaf5f65..3be2ae52e130 100644
--- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
+++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
@@ -5,6 +5,7 @@
using Content.Shared.Ninja.Components;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio.Systems;
namespace Content.Shared.Ninja.Systems;
@@ -13,6 +14,7 @@ namespace Content.Shared.Ninja.Systems;
///
public sealed class EmagProviderSystem : EntitySystem
{
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!;
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
@@ -42,14 +44,18 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
return;
// only allowed to emag non-immune entities
- if (_tag.HasTag(target, comp.EmagImmuneTag))
+ if (_tag.HasTag(target, comp.AccessBreakerImmuneTag))
return;
- var handled = _emag.DoEmagEffect(uid, target);
- if (!handled)
+ var emagEv = new GotEmaggedEvent(uid, EmagType.Access);
+ RaiseLocalEvent(args.Target, ref emagEv);
+
+ if (!emagEv.Handled)
return;
- _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target}");
+ _audio.PlayPredicted(comp.EmagSound, uid, uid);
+
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target} with flag(s): {ent.Comp.EmagType}");
var ev = new EmaggedSomethingEvent(target);
RaiseLocalEvent(uid, ref ev);
args.Handled = true;
@@ -57,7 +63,7 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
}
///
-/// Raised on the player when emagging something.
+/// Raised on the player when access breaking something.
///
[ByRefEvent]
public record struct EmaggedSomethingEvent(EntityUid Target);
diff --git a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
index 7f6b88912559..471096018356 100644
--- a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
+++ b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
@@ -10,6 +10,7 @@ namespace Content.Shared.Pinpointer;
public abstract class SharedPinpointerSystem : EntitySystem
{
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
@@ -137,6 +138,15 @@ public virtual bool TogglePinpointer(EntityUid uid, PinpointerComponent? pinpoin
private void OnEmagged(EntityUid uid, PinpointerComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (component.CanRetarget)
+ return;
+
args.Handled = true;
component.CanRetarget = true;
}
diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
index e75a18f011da..f096cfcb420f 100644
--- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
+++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
@@ -40,13 +40,16 @@ public override bool Check(IEntityManager entManager,
var formattedRoleDiff = ContentLocalizationManager.FormatPlaytime(roleDiffSpan);
var departmentColor = Color.Yellow;
- if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
- {
- var jobProto = jobSystem.GetJobPrototype(proto);
+ if (!entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
+ return false;
- if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
- departmentColor = departmentProto.Color;
- }
+ var jobProto = jobSystem.GetJobPrototype(proto);
+
+ if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
+ departmentColor = departmentProto.Color;
+
+ if (!protoManager.TryIndex(jobProto, out var indexedJob))
+ return false;
if (!Inverted)
{
@@ -56,7 +59,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-insufficient",
("time", formattedRoleDiff),
- ("job", Loc.GetString(proto)),
+ ("job", indexedJob.LocalizedName),
("departmentColor", departmentColor.ToHex())));
return false;
}
@@ -66,7 +69,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-too-high",
("time", formattedRoleDiff),
- ("job", Loc.GetString(proto)),
+ ("job", indexedJob.LocalizedName),
("departmentColor", departmentColor.ToHex())));
return false;
}
diff --git a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
index 73775aaf91ac..0253cf12bc06 100644
--- a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
+++ b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
@@ -16,13 +16,4 @@ public sealed partial class EmaggableMedibotComponent : Component
///
[DataField(required: true), ViewVariables(VVAccess.ReadWrite)]
public Dictionary Replacements = new();
-
- ///
- /// Sound to play when the bot has been emagged
- ///
- [DataField]
- public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks")
- {
- Params = AudioParams.Default.WithVolume(8f)
- };
}
diff --git a/Content.Shared/Silicons/Bots/MedibotSystem.cs b/Content.Shared/Silicons/Bots/MedibotSystem.cs
index 3ab73149c08e..407e586eb1c8 100644
--- a/Content.Shared/Silicons/Bots/MedibotSystem.cs
+++ b/Content.Shared/Silicons/Bots/MedibotSystem.cs
@@ -1,6 +1,15 @@
+using Content.Shared.Chemistry.EntitySystems;
+using Content.Shared.Damage;
+using Content.Shared.DoAfter;
+using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
+using Content.Shared.Interaction;
using Content.Shared.Mobs;
+using Content.Shared.Mobs.Components;
+using Content.Shared.NPC.Components;
+using Content.Shared.Popups;
using Robust.Shared.Audio.Systems;
+using Robust.Shared.Serialization;
using System.Diagnostics.CodeAnalysis;
namespace Content.Shared.Silicons.Bots;
@@ -11,20 +20,31 @@ namespace Content.Shared.Silicons.Bots;
public sealed class MedibotSystem : EntitySystem
{
[Dependency] private readonly SharedAudioSystem _audio = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
+ [Dependency] private SharedInteractionSystem _interaction = default!;
+ [Dependency] private SharedSolutionContainerSystem _solutionContainer = default!;
+ [Dependency] private SharedPopupSystem _popup = default!;
+ [Dependency] private SharedDoAfterSystem _doAfter = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnEmagged);
+ SubscribeLocalEvent(OnInteract);
+ SubscribeLocalEvent(OnInject);
}
private void OnEmagged(EntityUid uid, EmaggableMedibotComponent comp, ref GotEmaggedEvent args)
{
- if (!TryComp(uid, out var medibot))
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
return;
- _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid);
+ if (!TryComp(uid, out var medibot))
+ return;
foreach (var (state, treatment) in comp.Replacements)
{
@@ -34,6 +54,25 @@ private void OnEmagged(EntityUid uid, EmaggableMedibotComponent comp, ref GotEma
args.Handled = true;
}
+ private void OnInteract(Entity medibot, ref UserActivateInWorldEvent args)
+ {
+ if (!CheckInjectable(medibot!, args.Target, true)) return;
+
+ _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, 2f, new MedibotInjectDoAfterEvent(), args.User, args.Target)
+ {
+ BlockDuplicate = true,
+ BreakOnMove = true,
+ });
+ }
+
+ private void OnInject(EntityUid uid, MedibotComponent comp, ref MedibotInjectDoAfterEvent args)
+ {
+ if (args.Cancelled) return;
+
+ if (args.Target is { } target)
+ TryInject(uid, target);
+ }
+
///
/// Get a treatment for a given mob state.
///
@@ -44,4 +83,66 @@ public bool TryGetTreatment(MedibotComponent comp, MobState state, [NotNullWhen(
{
return comp.Treatments.TryGetValue(state, out treatment);
}
+
+ ///
+ /// Checks if the target can be injected.
+ ///
+ public bool CheckInjectable(Entity medibot, EntityUid target, bool manual = false)
+ {
+ if (!Resolve(medibot, ref medibot.Comp, false)) return false;
+
+ if (HasComp(target))
+ {
+ _popup.PopupClient(Loc.GetString("medibot-recently-injected"), medibot, medibot);
+ return false;
+ }
+
+ if (!TryComp(target, out var mobState)) return false;
+ if (!TryComp(target, out var damageable)) return false;
+ if (!_solutionContainer.TryGetInjectableSolution(target, out _, out _)) return false;
+
+ if (mobState.CurrentState != MobState.Alive && mobState.CurrentState != MobState.Critical)
+ {
+ _popup.PopupClient(Loc.GetString("medibot-target-dead"), medibot, medibot);
+ return false;
+ }
+
+ var total = damageable.TotalDamage;
+ if (total == 0 && !HasComp(medibot))
+ {
+ _popup.PopupClient(Loc.GetString("medibot-target-healthy"), medibot, medibot);
+ return false;
+ }
+
+ if (!TryGetTreatment(medibot.Comp, mobState.CurrentState, out var treatment) || !treatment.IsValid(total) && !manual) return false;
+
+ return true;
+ }
+
+ ///
+ /// Tries to inject the target.
+ ///
+ public bool TryInject(Entity medibot, EntityUid target)
+ {
+ if (!Resolve(medibot, ref medibot.Comp, false)) return false;
+
+ if (!_interaction.InRangeUnobstructed(medibot.Owner, target)) return false;
+
+ if (!TryComp(target, out var mobState)) return false;
+ if (!TryGetTreatment(medibot.Comp, mobState.CurrentState, out var treatment)) return false;
+ if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _)) return false;
+
+ EnsureComp(target);
+ _solutionContainer.TryAddReagent(injectable.Value, treatment.Reagent, treatment.Quantity, out _);
+
+ _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target);
+ _popup.PopupClient(Loc.GetString("medibot-target-injected"), medibot, medibot);
+
+ _audio.PlayPredicted(medibot.Comp.InjectSound, medibot, medibot);
+
+ return true;
+ }
}
+
+[Serializable, NetSerializable]
+public sealed partial class MedibotInjectDoAfterEvent : SimpleDoAfterEvent { }
diff --git a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
index a30e7c8980f9..c3a8c228084a 100644
--- a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
+++ b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
@@ -1,7 +1,10 @@
using Content.Shared.Emag.Systems;
+using Content.Shared.Mind;
using Content.Shared.Popups;
using Content.Shared.Silicons.Laws.Components;
+using Content.Shared.Stunnable;
using Content.Shared.Wires;
+using Robust.Shared.Audio;
namespace Content.Shared.Silicons.Laws;
@@ -11,22 +14,29 @@ namespace Content.Shared.Silicons.Laws;
public abstract partial class SharedSiliconLawSystem : EntitySystem
{
[Dependency] private readonly SharedPopupSystem _popup = default!;
+ [Dependency] private readonly SharedStunSystem _stunSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
+ [Dependency] private readonly SharedMindSystem _mind = default!;
///
public override void Initialize()
{
InitializeUpdater();
SubscribeLocalEvent(OnGotEmagged);
- SubscribeLocalEvent(OnAttemptEmag);
}
- protected virtual void OnAttemptEmag(EntityUid uid, EmagSiliconLawComponent component, ref OnAttemptEmagEvent args)
+ private void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
{
- //prevent self emagging
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ // prevent self-emagging
if (uid == args.UserUid)
{
_popup.PopupClient(Loc.GetString("law-emag-cannot-emag-self"), uid, args.UserUid);
- args.Handled = true;
return;
}
@@ -35,14 +45,33 @@ protected virtual void OnAttemptEmag(EntityUid uid, EmagSiliconLawComponent comp
!panel.Open)
{
_popup.PopupClient(Loc.GetString("law-emag-require-panel"), uid, args.UserUid);
- args.Handled = true;
+ return;
}
- }
+ var ev = new SiliconEmaggedEvent(args.UserUid);
+ RaiseLocalEvent(uid, ref ev);
- protected virtual void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
- {
component.OwnerName = Name(args.UserUid);
+
+ NotifyLawsChanged(uid, component.EmaggedSound);
+ if(_mind.TryGetMind(uid, out var mindId, out _))
+ EnsureSubvertedSiliconRole(mindId);
+
+ _stunSystem.TryParalyze(uid, component.StunTime, true);
+
args.Handled = true;
}
+
+ protected virtual void NotifyLawsChanged(EntityUid uid, SoundSpecifier? cue = null)
+ {
+
+ }
+
+ protected virtual void EnsureSubvertedSiliconRole(EntityUid mindId)
+ {
+
+ }
}
+
+[ByRefEvent]
+public record struct SiliconEmaggedEvent(EntityUid user);
diff --git a/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs b/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
index ee6dc89bb847..331c1fa4ddb6 100644
--- a/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
+++ b/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
@@ -11,6 +11,7 @@ public abstract class SharedSingularityGeneratorSystem : EntitySystem
{
#region Dependencies
[Dependency] protected readonly SharedPopupSystem PopupSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
#endregion Dependencies
public override void Initialize()
@@ -22,7 +23,16 @@ public override void Initialize()
private void OnEmagged(EntityUid uid, SingularityGeneratorComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (component.FailsafeDisabled)
+ return;
+
component.FailsafeDisabled = true;
args.Handled = true;
}
-}
\ No newline at end of file
+}
diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
index 0a183642d249..7bf6d74c60b4 100644
--- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
+++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs
@@ -3,6 +3,7 @@
using System.Linq;
using Content.Shared.ActionBlocker;
using Content.Shared.Administration.Logs;
+using Content.Shared.CCVar;
using Content.Shared.Containers.ItemSlots;
using Content.Shared.Database;
using Content.Shared.Destructible;
@@ -27,6 +28,7 @@
using Content.Shared.Whitelist;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
+using Robust.Shared.Configuration;
using Robust.Shared.Containers;
using Robust.Shared.GameStates;
using Robust.Shared.Input.Binding;
@@ -35,36 +37,46 @@
using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Serialization;
+using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Shared.Storage.EntitySystems;
public abstract class SharedStorageSystem : EntitySystem
{
- [Dependency] private readonly IPrototypeManager _prototype = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
+ [Dependency] protected readonly IGameTiming Timing = default!;
+ [Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] protected readonly IRobustRandom Random = default!;
+ [Dependency] private readonly ISharedAdminLogManager _adminLog = default!;
+
[Dependency] protected readonly ActionBlockerSystem ActionBlocker = default!;
- [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!;
- [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly EntityLookupSystem _entityLookupSystem = default!;
+ [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
+ [Dependency] private readonly InventorySystem _inventory = default!;
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
- [Dependency] private readonly SharedContainerSystem _containerSystem = default!;
- [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
+ [Dependency] protected readonly SharedContainerSystem ContainerSystem = default!;
+ [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
[Dependency] protected readonly SharedEntityStorageSystem EntityStorage = default!;
- [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
- [Dependency] private readonly InventorySystem _inventory = default!;
+ [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] protected readonly SharedItemSystem ItemSystem = default!;
- [Dependency] private readonly SharedPopupSystem _popupSystem = default!;
- [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!;
- [Dependency] private readonly SharedStackSystem _stack = default!;
+ [Dependency] private readonly SharedPopupSystem _popupSystem = default!;
+ [Dependency] private readonly SharedHandsSystem _sharedHandsSystem = default!;
+ [Dependency] private readonly SharedStackSystem _stack = default!;
[Dependency] protected readonly SharedTransformSystem TransformSystem = default!;
- [Dependency] private readonly SharedUserInterfaceSystem _ui = default!;
+ [Dependency] protected readonly SharedUserInterfaceSystem UI = default!;
[Dependency] protected readonly UseDelaySystem UseDelay = default!;
- [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
- [Dependency] private readonly ISharedAdminLogManager _adminLog = default!;
private EntityQuery _itemQuery;
private EntityQuery _stackQuery;
private EntityQuery _xformQuery;
+ private EntityQuery _userQuery;
+
+ ///
+ /// Whether we're allowed to go up-down storage via UI.
+ ///
+ public bool NestedStorage = true;
[ValidatePrototypeId]
public const string DefaultStorageMaxItemSize = "Normal";
@@ -76,10 +88,15 @@ public abstract class SharedStorageSystem : EntitySystem
private ItemSizePrototype _defaultStorageMaxItemSize = default!;
+ ///
+ /// Flag for whether we're checking for nested storage interactions.
+ ///
+ private bool _nestedCheck;
+
public bool CheckingCanInsert;
- private List _entList = new();
- private HashSet _entSet = new();
+ private readonly List _entList = new();
+ private readonly HashSet _entSet = new();
private readonly List _sortedSizes = new();
private FrozenDictionary _nextSmallest = FrozenDictionary.Empty;
@@ -87,6 +104,11 @@ public abstract class SharedStorageSystem : EntitySystem
private const string QuickInsertUseDelayID = "quickInsert";
private const string OpenUiUseDelayID = "storage";
+ ///
+ /// How many storage windows are allowed to be open at once.
+ ///
+ private int _openStorageLimit = -1;
+
protected readonly List CantFillReasons = [];
///
@@ -97,8 +119,11 @@ public override void Initialize()
_itemQuery = GetEntityQuery();
_stackQuery = GetEntityQuery();
_xformQuery = GetEntityQuery();
+ _userQuery = GetEntityQuery();
_prototype.PrototypesReloaded += OnPrototypesReloaded;
+ Subs.CVar(_cfg, CCVars.StorageLimit, OnStorageLimitChanged, true);
+
Subs.BuiEvents(StorageComponent.StorageUiKey.Key, subs =>
{
subs.Event(OnBoundUIClosed);
@@ -108,7 +133,6 @@ public override void Initialize()
SubscribeLocalEvent(OnMapInit);
SubscribeLocalEvent>(AddUiVerb);
SubscribeLocalEvent(OnStorageGetState);
- SubscribeLocalEvent(OnStorageHandleState);
SubscribeLocalEvent(OnComponentInit, before: new[] { typeof(SharedContainerSystem) });
SubscribeLocalEvent>(AddTransferVerbs);
SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ItemSlotsSystem) });
@@ -116,6 +140,7 @@ public override void Initialize()
SubscribeLocalEvent(OnImplantActivate);
SubscribeLocalEvent(AfterInteract);
SubscribeLocalEvent(OnDestroy);
+ SubscribeLocalEvent(OnBoundUIAttempt);
SubscribeLocalEvent(OnBoundUIOpen);
SubscribeLocalEvent(OnLockToggled);
SubscribeLocalEvent(OnStackCountChanged);
@@ -126,10 +151,11 @@ public override void Initialize()
SubscribeLocalEvent(OnDoAfter);
+ SubscribeAllEvent(OnStorageNested);
+ SubscribeAllEvent(OnStorageTransfer);
SubscribeAllEvent(OnInteractWithItem);
SubscribeAllEvent(OnSetItemLocation);
SubscribeAllEvent(OnInsertItemIntoLocation);
- SubscribeAllEvent(OnRemoveItem);
SubscribeAllEvent(OnSaveItemLocation);
SubscribeLocalEvent(OnReclaimed);
@@ -139,12 +165,24 @@ public override void Initialize()
.Bind(ContentKeyFunctions.OpenBelt, InputCmdHandler.FromDelegate(HandleOpenBelt, handle: false))
.Register();
+ Subs.CVar(_cfg, CCVars.NestedStorage, OnNestedStorageCvar, true);
+
UpdatePrototypeCache();
}
+ private void OnNestedStorageCvar(bool obj)
+ {
+ NestedStorage = obj;
+ }
+
+ private void OnStorageLimitChanged(int obj)
+ {
+ _openStorageLimit = obj;
+ }
+
private void OnRemove(Entity entity, ref ComponentRemove args)
{
- _ui.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key);
+ UI.CloseUi(entity.Owner, StorageComponent.StorageUiKey.Key);
}
private void OnMapInit(Entity entity, ref MapInitEvent args)
@@ -173,28 +211,6 @@ private void OnStorageGetState(EntityUid uid, StorageComponent component, ref Co
};
}
- private void OnStorageHandleState(EntityUid uid, StorageComponent component, ref ComponentHandleState args)
- {
- if (args.Current is not StorageComponentState state)
- return;
-
- component.Grid.Clear();
- component.Grid.AddRange(state.Grid);
- component.MaxItemSize = state.MaxItemSize;
- component.Whitelist = state.Whitelist;
- component.Blacklist = state.Blacklist;
-
- component.StoredItems.Clear();
-
- foreach (var (nent, location) in state.StoredItems)
- {
- var ent = EnsureEntity(nent, uid);
- component.StoredItems[ent] = location;
- }
-
- component.SavedLocations = state.SavedLocations;
- }
-
public override void Shutdown()
{
_prototype.PrototypesReloaded -= OnPrototypesReloaded;
@@ -229,7 +245,7 @@ private void UpdatePrototypeCache()
private void OnComponentInit(EntityUid uid, StorageComponent storageComp, ComponentInit args)
{
- storageComp.Container = _containerSystem.EnsureContainer(uid, StorageComponent.ContainerId);
+ storageComp.Container = ContainerSystem.EnsureContainer(uid, StorageComponent.ContainerId);
UpdateAppearance((uid, storageComp, null));
}
@@ -248,7 +264,7 @@ private void CloseNestedInterfaces(EntityUid uid, EntityUid actor, StorageCompon
// close ui
foreach (var entity in storageComp.Container.ContainedEntities)
{
- _ui.CloseUis(entity, actor);
+ UI.CloseUis(entity, actor);
}
}
@@ -257,7 +273,7 @@ private void OnBoundUIClosed(EntityUid uid, StorageComponent storageComp, BoundU
CloseNestedInterfaces(uid, args.Actor, storageComp);
// If UI is closed for everyone
- if (!_ui.IsUiOpen(uid, args.UiKey))
+ if (!UI.IsUiOpen(uid, args.UiKey))
{
UpdateAppearance((uid, storageComp, null));
Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor);
@@ -270,7 +286,7 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent<
return;
// Does this player currently have the storage UI open?
- var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User);
+ var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User);
ActivationVerb verb = new()
{
@@ -278,7 +294,7 @@ private void AddUiVerb(EntityUid uid, StorageComponent component, GetVerbsEvent<
{
if (uiOpen)
{
- _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
+ UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
}
else
{
@@ -316,16 +332,16 @@ public void OpenStorageUI(EntityUid uid, EntityUid entity, StorageComponent? sto
if (!CanInteract(entity, (uid, storageComp), silent: silent))
return;
+ if (!UI.TryOpenUi(uid, StorageComponent.StorageUiKey.Key, entity))
+ return;
+
if (!silent)
{
- if (!_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key))
- Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity);
+ Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity);
if (useDelay != null)
UseDelay.TryResetDelay((uid, useDelay), id: OpenUiUseDelayID);
}
-
- _ui.OpenUi(uid, StorageComponent.StorageUiKey.Key, entity);
}
public virtual void UpdateUI(Entity entity) {}
@@ -385,18 +401,43 @@ private void OnActivate(EntityUid uid, StorageComponent storageComp, ActivateInW
return;
// Toggle
- if (_ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User))
+ if (UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.User))
{
- _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
+ UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.User);
}
else
{
- OpenStorageUI(uid, args.User, storageComp, false);
+ // Handle recursively opening nested storages.
+ if (ContainerSystem.TryGetContainingContainer((args.Target, null, null), out var container) &&
+ UI.IsUiOpen(container.Owner, StorageComponent.StorageUiKey.Key, args.User))
+ {
+ _nestedCheck = true;
+ HideStorageWindow(container.Owner, args.User);
+ OpenStorageUI(uid, args.User, storageComp, silent: true);
+ _nestedCheck = false;
+ }
+ else
+ {
+ // If you need something more sophisticated for multi-UI you'll need to code some smarter
+ // interactions.
+ if (_openStorageLimit == 1)
+ UI.CloseUserUis(args.User);
+
+ OpenStorageUI(uid, args.User, storageComp, silent: false);
+ }
}
args.Handled = true;
}
+ protected virtual void HideStorageWindow(EntityUid uid, EntityUid actor)
+ {
+ }
+
+ protected virtual void ShowStorageWindow(EntityUid uid, EntityUid actor)
+ {
+ }
+
///
/// Specifically for storage implants.
///
@@ -405,10 +446,10 @@ private void OnImplantActivate(EntityUid uid, StorageComponent storageComp, Open
if (args.Handled)
return;
- var uiOpen = _ui.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer);
+ var uiOpen = UI.IsUiOpen(uid, StorageComponent.StorageUiKey.Key, args.Performer);
if (uiOpen)
- _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer);
+ UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, args.Performer);
else
OpenStorageUI(uid, args.Performer, storageComp, false);
@@ -475,7 +516,7 @@ private void AfterInteract(EntityUid uid, StorageComponent storageComp, AfterInt
if (args.Target is not { Valid: true } target)
return;
- if (_containerSystem.IsEntityInContainer(target)
+ if (ContainerSystem.IsEntityInContainer(target)
|| target == args.User
|| !_itemQuery.HasComponent(target))
{
@@ -526,7 +567,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf
var entity = GetEntity(args.Entities[i]);
// Check again, situation may have changed for some entities, but we'll still pick up any that are valid
- if (_containerSystem.IsEntityInContainer(entity)
+ if (ContainerSystem.IsEntityInContainer(entity)
|| entity == args.Args.User
|| !_itemQuery.HasComponent(entity))
{
@@ -571,7 +612,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf
private void OnReclaimed(EntityUid uid, StorageComponent storageComp, GotReclaimedEvent args)
{
- _containerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates);
+ ContainerSystem.EmptyContainer(storageComp.Container, destination: args.ReclaimerCoordinates);
}
private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionEventArgs args)
@@ -579,7 +620,7 @@ private void OnDestroy(EntityUid uid, StorageComponent storageComp, DestructionE
var coordinates = TransformSystem.GetMoverCoordinates(uid);
// Being destroyed so need to recalculate.
- _containerSystem.EmptyContainer(storageComp.Container, destination: coordinates);
+ ContainerSystem.EmptyContainer(storageComp.Container, destination: coordinates);
}
///
@@ -639,18 +680,54 @@ private void OnSetItemLocation(StorageSetItemLocationEvent msg, EntitySessionEve
TrySetItemStorageLocation(item!, storage!, msg.Location);
}
- private void OnRemoveItem(StorageRemoveItemEvent msg, EntitySessionEventArgs args) // Ronstation.
+ private void OnStorageNested(OpenNestedStorageEvent msg, EntitySessionEventArgs args)
{
- if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item))
+ if (!NestedStorage)
+ return;
+
+ if (!TryGetEntity(msg.InteractedItemUid, out var itemEnt))
+ return;
+
+ _nestedCheck = true;
+
+ var result = ValidateInput(args,
+ msg.StorageUid,
+ msg.InteractedItemUid,
+ out var player,
+ out var storage,
+ out var item);
+
+ if (!result)
+ {
+ _nestedCheck = false;
+ return;
+ }
+
+ HideStorageWindow(storage.Owner, player.Owner);
+ OpenStorageUI(item.Owner, player.Owner, silent: true);
+ _nestedCheck = false;
+ }
+
+ private void OnStorageTransfer(StorageTransferItemEvent msg, EntitySessionEventArgs args)
+ {
+ if (!TryGetEntity(msg.ItemEnt, out var itemEnt))
+ return;
+
+ var localPlayer = args.SenderSession.AttachedEntity;
+
+ if (!TryComp(localPlayer, out HandsComponent? handsComp) || !_sharedHandsSystem.TryPickup(localPlayer.Value, itemEnt.Value, handsComp: handsComp, animate: false))
+ return;
+
+ if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true))
return;
_adminLog.Add(
LogType.Storage,
LogImpact.Low,
- $"{ToPrettyString(player):player} is removing {ToPrettyString(item):item} from {ToPrettyString(storage):storage}");
- TransformSystem.DropNextTo(item.Owner, player.Owner);
- Audio.PlayPredicted(storage.Comp.StorageRemoveSound, storage, player, _audioParams);
- } // Ronstation.
+ $"{ToPrettyString(player):player} is inserting {ToPrettyString(item):item} into {ToPrettyString(storage):storage}");
+ InsertAt(storage!, item!, msg.Location, out _, player, stackAutomatically: false);
+ }
+
private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args)
{
if (!ValidateInput(args, msg.StorageEnt, msg.ItemEnt, out var player, out var storage, out var item, held: true))
@@ -671,9 +748,46 @@ private void OnSaveItemLocation(StorageSaveItemLocationEvent msg, EntitySessionE
SaveItemLocation(storage!, item.Owner);
}
- private void OnBoundUIOpen(EntityUid uid, StorageComponent storageComp, BoundUIOpenedEvent args)
+ private void OnBoundUIOpen(Entity ent, ref BoundUIOpenedEvent args)
{
- UpdateAppearance((uid, storageComp, null));
+ UpdateAppearance((ent.Owner, ent.Comp, null));
+ }
+
+ private void OnBoundUIAttempt(BoundUserInterfaceMessageAttempt args)
+ {
+ if (args.UiKey is not StorageComponent.StorageUiKey.Key ||
+ _openStorageLimit == -1 ||
+ _nestedCheck ||
+ args.Message is not OpenBoundInterfaceMessage)
+ return;
+
+ var uid = args.Target;
+ var actor = args.Actor;
+ var count = 0;
+
+ if (_userQuery.TryComp(actor, out var userComp))
+ {
+ foreach (var (ui, keys) in userComp.OpenInterfaces)
+ {
+ if (ui == uid)
+ continue;
+
+ foreach (var key in keys)
+ {
+ if (key is not StorageComponent.StorageUiKey)
+ continue;
+
+ count++;
+
+ if (count >= _openStorageLimit)
+ {
+ args.Cancel();
+ }
+
+ break;
+ }
+ }
+ }
}
private void OnEntInserted(Entity entity, ref EntInsertedIntoContainerMessage args)
@@ -689,7 +803,7 @@ private void OnEntInserted(Entity entity, ref EntInsertedIntoC
{
if (!TryGetAvailableGridSpace((entity.Owner, entity.Comp), (args.Entity, null), out var location))
{
- _containerSystem.Remove(args.Entity, args.Container, force: true);
+ ContainerSystem.Remove(args.Entity, args.Container, force: true);
return;
}
@@ -751,7 +865,7 @@ public void UpdateAppearance(Entity ent
var capacity = storage.Grid.GetArea();
var used = GetCumulativeItemAreas((uid, storage));
- var isOpen = _ui.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key);
+ var isOpen = UI.IsUiOpen(entity.Owner, StorageComponent.StorageUiKey.Key);
_appearance.SetData(uid, StorageVisuals.StorageUsed, used, appearance);
_appearance.SetData(uid, StorageVisuals.Capacity, capacity, appearance);
@@ -861,7 +975,7 @@ public bool CanInsert(
}
CheckingCanInsert = true;
- if (!_containerSystem.CanInsert(insertEnt, storageComp.Container))
+ if (!ContainerSystem.CanInsert(insertEnt, storageComp.Container))
{
CheckingCanInsert = false;
reason = null;
@@ -962,7 +1076,7 @@ public bool Insert(
if (!stackAutomatically || !_stackQuery.TryGetComponent(insertEnt, out var insertStack))
{
- if (!_containerSystem.Insert(insertEnt, storageComp.Container))
+ if (!ContainerSystem.Insert(insertEnt, storageComp.Container))
return false;
if (playSound)
@@ -988,7 +1102,7 @@ public bool Insert(
// Still stackable remaining
if (insertStack.Count > 0
- && !_containerSystem.Insert(insertEnt, storageComp.Container)
+ && !ContainerSystem.Insert(insertEnt, storageComp.Container)
&& toInsertCount == insertStack.Count)
{
// Failed to insert anything.
@@ -1067,6 +1181,7 @@ public bool TrySetItemStorageLocation(Entity itemEnt, Entity ent, Entity
@@ -1370,16 +1486,16 @@ private void OnLockToggled(EntityUid uid, StorageComponent component, ref LockTo
return;
// Gets everyone looking at the UI
- foreach (var actor in _ui.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList())
+ foreach (var actor in UI.GetActors(uid, StorageComponent.StorageUiKey.Key).ToList())
{
if (!CanInteract(actor, (uid, component)))
- _ui.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor);
+ UI.CloseUi(uid, StorageComponent.StorageUiKey.Key, actor);
}
}
private void OnStackCountChanged(EntityUid uid, MetaDataComponent component, StackCountChangedEvent args)
{
- if (_containerSystem.TryGetContainingContainer((uid, null, component), out var container) &&
+ if (ContainerSystem.TryGetContainingContainer((uid, null, component), out var container) &&
container.ID == StorageComponent.ContainerId)
{
UpdateAppearance(container.Owner);
@@ -1411,13 +1527,13 @@ private void HandleToggleSlotUI(ICommonSession? session, string slot)
if (!ActionBlocker.CanInteract(playerEnt, storageEnt))
return;
- if (!_ui.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt))
+ if (!UI.IsUiOpen(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt))
{
OpenStorageUI(storageEnt.Value, playerEnt, silent: false);
}
else
{
- _ui.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt);
+ UI.CloseUi(storageEnt.Value, StorageComponent.StorageUiKey.Key, playerEnt);
}
}
@@ -1472,7 +1588,7 @@ private bool ValidateInput(
// TODO STORAGE use BUI events
// This would automatically validate that the UI is open & that the user can interact.
// However, we still need to manually validate that items being used are in the users hands or in the storage.
- if (!_ui.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid))
+ if (!UI.IsUiOpen(storageUid.Value, StorageComponent.StorageUiKey.Key, playerUid))
return false;
if (!ActionBlocker.CanInteract(playerUid, storageUid))
diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs
index 879a0fddf80d..c59f7ab00e91 100644
--- a/Content.Shared/Storage/StorageComponent.cs
+++ b/Content.Shared/Storage/StorageComponent.cs
@@ -148,6 +148,19 @@ public enum StorageUiKey : byte
}
}
+ [Serializable, NetSerializable]
+ public sealed class OpenNestedStorageEvent : EntityEventArgs
+ {
+ public readonly NetEntity InteractedItemUid;
+ public readonly NetEntity StorageUid;
+
+ public OpenNestedStorageEvent(NetEntity interactedItemUid, NetEntity storageUid)
+ {
+ InteractedItemUid = interactedItemUid;
+ StorageUid = storageUid;
+ }
+ }
+
[Serializable, NetSerializable]
public sealed class StorageInteractWithItemEvent : EntityEventArgs
{
@@ -179,19 +192,25 @@ public StorageSetItemLocationEvent(NetEntity itemEnt, NetEntity storageEnt, Item
}
}
- [Serializable, NetSerializable] // Ronstation.
- public sealed class StorageRemoveItemEvent : EntityEventArgs
+ [Serializable, NetSerializable]
+ public sealed class StorageTransferItemEvent : EntityEventArgs
{
public readonly NetEntity ItemEnt;
+ ///
+ /// Target storage to receive the transfer.
+ ///
public readonly NetEntity StorageEnt;
- public StorageRemoveItemEvent(NetEntity itemEnt, NetEntity storageEnt)
+ public readonly ItemStorageLocation Location;
+
+ public StorageTransferItemEvent(NetEntity itemEnt, NetEntity storageEnt, ItemStorageLocation location)
{
ItemEnt = itemEnt;
StorageEnt = storageEnt;
+ Location = location;
}
- } // Ronstation.
+ }
[Serializable, NetSerializable]
public sealed class StorageInsertItemIntoLocationEvent : EntityEventArgs
diff --git a/Content.Shared/Stunnable/StunbatonComponent.cs b/Content.Shared/Stunnable/StunbatonComponent.cs
index 1df009f780b4..b133679cd36d 100644
--- a/Content.Shared/Stunnable/StunbatonComponent.cs
+++ b/Content.Shared/Stunnable/StunbatonComponent.cs
@@ -2,7 +2,7 @@
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
-namespace Content.Server.Stunnable.Components;
+namespace Content.Shared.Stunnable;
[RegisterComponent, NetworkedComponent]
[AutoGenerateComponentState]
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
new file mode 100644
index 000000000000..9ae72c628673
--- /dev/null
+++ b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Dataset;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Traits.Assorted;
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class PainNumbnessComponent : Component
+{
+ ///
+ /// The fluent string prefix to use when picking a random suffix
+ /// This is only active for those who have the pain numbness component
+ ///
+ [DataField]
+ public ProtoId ForceSayNumbDataset = "ForceSayNumbDataset";
+}
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs b/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs
new file mode 100644
index 000000000000..3ded13300d98
--- /dev/null
+++ b/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs
@@ -0,0 +1,46 @@
+using Content.Shared.Damage.Events;
+using Content.Shared.Mobs.Components;
+using Content.Shared.Mobs.Events;
+using Content.Shared.Mobs.Systems;
+
+namespace Content.Shared.Traits.Assorted;
+
+public sealed class PainNumbnessSystem : EntitySystem
+{
+ [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!;
+
+ public override void Initialize()
+ {
+ SubscribeLocalEvent(OnComponentInit);
+ SubscribeLocalEvent(OnComponentRemove);
+ SubscribeLocalEvent(OnChangeForceSay);
+ SubscribeLocalEvent(OnAlertSeverityCheck);
+ }
+
+ private void OnComponentRemove(EntityUid uid, PainNumbnessComponent component, ComponentRemove args)
+ {
+ if (!HasComp(uid))
+ return;
+
+ _mobThresholdSystem.VerifyThresholds(uid);
+ }
+
+ private void OnComponentInit(EntityUid uid, PainNumbnessComponent component, ComponentInit args)
+ {
+ if (!HasComp(uid))
+ return;
+
+ _mobThresholdSystem.VerifyThresholds(uid);
+ }
+
+ private void OnChangeForceSay(Entity ent, ref BeforeForceSayEvent args)
+ {
+ args.Prefix = ent.Comp.ForceSayNumbDataset;
+ }
+
+ private void OnAlertSeverityCheck(Entity ent, ref BeforeAlertSeverityCheckEvent args)
+ {
+ if (args.CurrentAlert == "HumanHealth")
+ args.CancelUpdate = true;
+ }
+}
diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
index 94562ce8d1bf..c4f3eede2d29 100644
--- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
+++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
@@ -2,6 +2,7 @@
using Robust.Shared.Prototypes;
using System.Linq;
using Content.Shared.DoAfter;
+using Content.Shared.Emag.Systems;
using Content.Shared.Interaction;
using Content.Shared.Popups;
using Robust.Shared.Audio;
@@ -19,11 +20,14 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem
[Dependency] private readonly SharedDoAfterSystem _doAfter = default!;
[Dependency] protected readonly SharedPopupSystem Popup = default!;
[Dependency] protected readonly IRobustRandom Randomizer = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnMapInit);
+ SubscribeLocalEvent(OnEmagged);
+
SubscribeLocalEvent(OnAfterInteract);
}
@@ -49,9 +53,21 @@ public void RestockInventoryFromPrototype(EntityUid uid,
Dirty(uid, component);
}
+ private void OnEmagged(EntityUid uid, VendingMachineComponent component, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ // only emag if there are emag-only items
+ args.Handled = component.EmaggedInventory.Count > 0;
+ }
+
///
/// Returns all of the vending machine's inventory. Only includes emagged and contraband inventories if
- /// exists and is true
+ /// with the EmagType.Interaction flag exists and is true
/// are true respectively.
///
///
@@ -64,7 +80,7 @@ public List GetAllInventory(EntityUid uid, Vending
var inventory = new List(component.Inventory.Values);
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
inventory.AddRange(component.EmaggedInventory.Values);
if (component.Contraband)
diff --git a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
index b322bbe51bce..ffa78ba42a20 100644
--- a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
+++ b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
@@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Melee.Components;
///
/// Indicates that this meleeweapon requires wielding to be useable.
///
-[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem))]
public sealed partial class MeleeRequiresWieldComponent : Component
{
diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
index 2016459b9d59..d5016c90e725 100644
--- a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Ranged.Components;
/// Indicates that this gun requires wielding to be useable.
///
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
-[Access(typeof(WieldableSystem))]
+[Access(typeof(SharedWieldableSystem))]
public sealed partial class GunRequiresWieldComponent : Component
{
[DataField, AutoNetworkedField]
diff --git a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
index 522319ccbd33..bd2e9d4dd1e5 100644
--- a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
@@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components;
///
/// Applies an accuracy bonus upon wielding.
///
-[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(WieldableSystem))]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedWieldableSystem))]
public sealed partial class GunWieldBonusComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("minAngle"), AutoNetworkedField]
diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
index 62e63501ee8a..35a15178d876 100644
--- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
+++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
@@ -508,7 +508,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAn
return;
var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle);
- CreateEffect(gun, ev, gun);
+ CreateEffect(gun, ev, user);
}
public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates toCoordinates, EntityUid user, PhysicsComponent userPhysics)
diff --git a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
index 3336923b024c..86afe1897b05 100644
--- a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
+++ b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
@@ -2,7 +2,7 @@
namespace Content.Shared.Wieldable.Components;
-[RegisterComponent, Access(typeof(WieldableSystem))]
+[RegisterComponent, Access(typeof(SharedWieldableSystem))]
public sealed partial class IncreaseDamageOnWieldComponent : Component
{
[DataField("damage", required: true)]
diff --git a/Content.Shared/Wieldable/Components/WieldableComponent.cs b/Content.Shared/Wieldable/Components/WieldableComponent.cs
index 5dc6abbbbea5..c146940b7a2c 100644
--- a/Content.Shared/Wieldable/Components/WieldableComponent.cs
+++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared.Wieldable.Components;
///
/// Used for objects that can be wielded in two or more hands,
///
-[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem)), AutoGenerateComponentState]
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem)), AutoGenerateComponentState]
public sealed partial class WieldableComponent : Component
{
[DataField("wieldSound")]
diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/SharedWieldableSystem.cs
similarity index 99%
rename from Content.Shared/Wieldable/WieldableSystem.cs
rename to Content.Shared/Wieldable/SharedWieldableSystem.cs
index 200a50d28f73..24c63c5f2f13 100644
--- a/Content.Shared/Wieldable/WieldableSystem.cs
+++ b/Content.Shared/Wieldable/SharedWieldableSystem.cs
@@ -1,4 +1,5 @@
using System.Linq;
+using Content.Shared.Camera;
using Content.Shared.Examine;
using Content.Shared.Hands;
using Content.Shared.Hands.Components;
@@ -7,6 +8,7 @@
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory.VirtualItem;
using Content.Shared.Item;
+using Content.Shared.Movement.Components;
using Content.Shared.Popups;
using Content.Shared.Timing;
using Content.Shared.Verbs;
@@ -23,7 +25,7 @@
namespace Content.Shared.Wieldable;
-public sealed class WieldableSystem : EntitySystem
+public abstract class SharedWieldableSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly INetManager _netManager = default!;
diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
index da253ba80afc..2d7d86822f9e 100644
--- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
+++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
@@ -14,6 +14,7 @@ public abstract class SharedArtifactCrusherSystem : EntitySystem
[Dependency] protected readonly SharedAppearanceSystem Appearance = default!;
[Dependency] protected readonly SharedAudioSystem AudioSystem = default!;
[Dependency] protected readonly SharedContainerSystem ContainerSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
public override void Initialize()
@@ -40,6 +41,15 @@ private void OnStorageAfterOpen(Entity ent, ref Storag
private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ if (ent.Comp.AutoLock)
+ return;
+
ent.Comp.AutoLock = true;
args.Handled = true;
}
diff --git a/Resources/Audio/Effects/Emotes/attributions.yml b/Resources/Audio/Effects/Emotes/attributions.yml
index 0c62b483660e..6b580a930bb7 100644
--- a/Resources/Audio/Effects/Emotes/attributions.yml
+++ b/Resources/Audio/Effects/Emotes/attributions.yml
@@ -6,6 +6,11 @@
license: "CC-BY-SA-3.0"
copyright: "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432"
source: "https://github.com/tgstation/tgstation"
+- files:
+ - clap-single.ogg
+ license: "CC-BY-SA-3.0"
+ copyright: "Taken from Citadel Station at https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456"
+ source: "https://github.com/Citadel-Station-13/Citadel-Station-13"
- files:
- snap1.ogg
- snap2.ogg
diff --git a/Resources/Audio/Effects/Emotes/clap-single.ogg b/Resources/Audio/Effects/Emotes/clap-single.ogg
new file mode 100644
index 000000000000..94d8b10107ee
Binary files /dev/null and b/Resources/Audio/Effects/Emotes/clap-single.ogg differ
diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml
index e5756369be21..12a46ae1eb63 100644
--- a/Resources/Audio/Machines/attributions.yml
+++ b/Resources/Audio/Machines/attributions.yml
@@ -191,3 +191,8 @@
license: "CC0-1.0"
copyright: "by AftrLite (Github). Uses audio from hypospray.ogg and hiss.ogg (Found in Resources/Audio/Items)"
source: "https://github.com/space-wizards/space-station-14/pull/33097"
+
+- files: ["shutter.ogg"]
+ license: "CC-BY-3.0"
+ copyright: "Created by Tomlija, converted to OGG and modified by themias."
+ source: "https://freesound.org/people/Tomlija/sounds/99565/"
\ No newline at end of file
diff --git a/Resources/Audio/Machines/shutter.ogg b/Resources/Audio/Machines/shutter.ogg
new file mode 100644
index 000000000000..f3430aaf47f9
Binary files /dev/null and b/Resources/Audio/Machines/shutter.ogg differ
diff --git a/Resources/Audio/Magic/Eldritch/voidblink.ogg b/Resources/Audio/Magic/Eldritch/voidblink.ogg
new file mode 100644
index 000000000000..84855918d1ef
Binary files /dev/null and b/Resources/Audio/Magic/Eldritch/voidblink.ogg differ
diff --git a/Resources/Audio/Magic/attributions.yml b/Resources/Audio/Magic/attributions.yml
index bfbe4d6ec24d..92a4ae3c4505 100644
--- a/Resources/Audio/Magic/attributions.yml
+++ b/Resources/Audio/Magic/attributions.yml
@@ -22,3 +22,9 @@
copyright: '"forcewall.ogg", "knock.ogg", "blink.ogg", "ethereal_enter.ogg", and "ethereal_exit.ogg" by Citadel Station 13'
license: CC-BY-SA-3.0
source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5
+
+- files:
+ - voidblink.ogg
+ copyright: '"voidblink.ogg" by Citadel Station 13'
+ license: CC-BY-SA-3.0
+ source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index 2f4aaf703a4c..53e6fe594658 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,315 +1,4 @@
Entries:
-- author: SlamBamActionman
- changes:
- - message: The Station AI job is no longer affected by the Bureaucratic Event event.
- type: Fix
- id: 7350
- time: '2024-09-11T11:24:24.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32021
-- author: K-Dynamic
- changes:
- - message: Reduced canister prices from 1000 to 200 spesos
- type: Tweak
- id: 7351
- time: '2024-09-11T12:53:51.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31965
-- author: EmoGarbage404
- changes:
- - message: Added the hivelord! This self-replicating alien is found on the mining
- asteroid. It's core is known to have powerful healing properties.
- type: Add
- id: 7352
- time: '2024-09-11T13:52:27.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31322
-- author: PeccNeck
- changes:
- - message: Fixed a bug where ore processors could not produce reinforced glass
- type: Fix
- id: 7353
- time: '2024-09-11T14:06:08.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32069
-- author: Plykiya
- changes:
- - message: You can now use swords to make baseball bats.
- type: Fix
- id: 7354
- time: '2024-09-11T14:45:00.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32075
-- author: Plykiya
- changes:
- - message: Banners are no longer invincible.
- type: Fix
- id: 7355
- time: '2024-09-11T15:29:23.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32077
-- author: themias
- changes:
- - message: Very small amounts of heat damage no longer play the cauterization sound
- (e.g. spacing)
- type: Fix
- id: 7356
- time: '2024-09-11T16:05:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32080
-- author: deltanedas
- changes:
- - message: Coins and Supercharged CPUs can now be recycled for rarer materials.
- type: Tweak
- id: 7357
- time: '2024-09-11T16:24:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31970
-- author: lzk228
- changes:
- - message: Fixed forensic pad didn't care about target identity.
- type: Fix
- - message: Instead of name changing, forensic pad now will have a label with target's
- name.
- type: Tweak
- id: 7358
- time: '2024-09-12T00:52:19.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31842
-- author: lzk228
- changes:
- - message: Borgs and Station AI will not receive selected in preferences traits.
- type: Tweak
- id: 7359
- time: '2024-09-12T10:36:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31990
-- author: MrRobDemo
- changes:
- - message: Added 5% chance to make killer tomatoes a ghost role.
- type: Add
- - message: Killer tomatoes can now heal from being splashed with water, blood or
- RobustHarvest.
- type: Add
- - message: Killer tomatoes can now escape from inventory (only intelligent).
- type: Tweak
- id: 7360
- time: '2024-09-12T12:51:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31932
-- author: ScarKy0
- changes:
- - message: Station AI now has a comms console ability.
- type: Add
- - message: Station AI abilities now have a default order.
- type: Tweak
- id: 7361
- time: '2024-09-12T15:28:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31852
-- author: themias
- changes:
- - message: Fixed medical PDAs sometimes toggling their lights while scanning
- type: Fix
- id: 7362
- time: '2024-09-13T13:59:19.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32091
-- author: Gorox221
- changes:
- - message: Mech pilots receive a warning before they are ejected from the mech.
- type: Tweak
- - message: Now, when removing the pilot of the mech, you need to not move.
- type: Fix
- id: 7363
- time: '2024-09-13T14:01:26.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31649
-- author: slarticodefast
- changes:
- - message: Extradimensional orange, holymelon, meatwheat and world peas plant mutations
- have been added. Obtain them by mutating oranges, watermelons, wheat and laughin'
- peas respectively.
- type: Add
- id: 7364
- time: '2024-09-13T14:02:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/27624
-- author: ShadowCommander
- changes:
- - message: Fixed PDA sometimes showing uplink and music buttons when the PDA was
- not able to use them.
- type: Fix
- id: 7365
- time: '2024-09-13T14:19:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28373
-- author: Dezzzix
- changes:
- - message: Now you can wear a hood in void cloak
- type: Add
- id: 7366
- time: '2024-09-13T15:02:45.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31061
-- author: PJB3005
- changes:
- - message: Fixed some powered machines working when unpowered if the panel is open.
- type: Fix
- id: 7367
- time: '2024-09-13T23:58:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32135
-- author: qwerltaz
- changes:
- - message: The RCD can now place grilles and windows under shutters and cables under
- doors.
- type: Fix
- id: 7368
- time: '2024-09-14T01:53:14.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32102
-- author: SlamBamActionman
- changes:
- - message: Briefcases can now be used as melee weapons.
- type: Add
- id: 7369
- time: '2024-09-14T13:09:43.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32063
-- author: Just_Art
- changes:
- - message: Added a head gauze to customization.
- type: Add
- id: 7370
- time: '2024-09-14T14:55:13.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/30852
-- author: deltanedas
- changes:
- - message: Fixed security's helmets not having any protection.
- type: Fix
- id: 7371
- time: '2024-09-14T15:56:57.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32152
-- author: eoineoineoin
- changes:
- - message: Ghosts can now read books.
- type: Add
- id: 7372
- time: '2024-09-14T16:28:33.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32151
-- author: Errant
- changes:
- - message: Lone Ops nukies now spawn with the appropriate species-specific survival
- gear.
- type: Fix
- id: 7373
- time: '2024-09-14T16:34:01.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31641
-- author: Plykiya
- changes:
- - message: The vent spawn event now has a chance to spawn snakes.
- type: Add
- id: 7374
- time: '2024-09-14T17:19:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32070
-- author: lzk228
- changes:
- - message: Command intercom now reinforced the same way as the security one.
- type: Tweak
- id: 7375
- time: '2024-09-14T20:40:38.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32169
-- author: de0rix
- changes:
- - message: Animals in critical state now all have proper sprites.
- type: Fix
- id: 7376
- time: '2024-09-15T01:53:58.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32175
-- author: notafet
- changes:
- - message: Pressure and volume pumps now require power to operate.
- type: Tweak
- id: 7377
- time: '2024-09-15T01:58:10.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28995
-- author: deltanedas
- changes:
- - message: Holoparasites can no longer be summoned from inside containers.
- type: Tweak
- id: 7378
- time: '2024-09-15T19:04:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32068
-- author: BackeTako
- changes:
- - message: Added French and Spanish speech traits.
- type: Add
- id: 7379
- time: '2024-09-15T20:03:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/30966
-- author: Plykiya
- changes:
- - message: Meteors break through less walls now.
- type: Tweak
- id: 7380
- time: '2024-09-15T20:04:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32109
-- author: drakewill-CRL
- changes:
- - message: Produce harvested from sentient plants are no longer sentient themselves.
- type: Fix
- id: 7381
- time: '2024-09-16T00:04:45.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32192
-- author: DrSmugleaf
- changes:
- - message: Fixed examine sometimes flickering and closing until you examine something
- around you.
- type: Fix
- id: 7382
- time: '2024-09-16T08:51:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32205
-- author: ArtisticRoomba
- changes:
- - message: The Bruise-O-Mat alcohol vendor has been added to the nukie outpost,
- for all your pre-op drinking needs. Seems to have developed a witty personality,
- too...
- type: Add
- id: 7383
- time: '2024-09-16T08:59:00.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32107
-- author: ArtisticRoomba
- changes:
- - message: The binary translator key in the syndie uplink is now correctly marked
- as syndicate contraband.
- type: Tweak
- id: 7384
- time: '2024-09-16T10:01:49.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32193
-- author: MissKay1994
- changes:
- - message: Lizards are now poisoned by hot chocolate
- type: Fix
- id: 7385
- time: '2024-09-16T12:45:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32147
-- author: Alice Liddel
- changes:
- - message: Crayon charges increased from 15 to 25
- type: Add
- id: 7386
- time: '2024-09-17T00:35:57.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32061
-- author: TheShuEd
- changes:
- - message: Anomalous infections added! People can now be infected by anomalies!
- This allows you to use abnormal abilities, but can easily kill the host. To
- cure them, bombard them with containment particles, because if the anomaly inside
- them explodes, their bodies will be gibbed....
- type: Add
- - message: Flesh anomaly resprite
- type: Tweak
- - message: anomalies now disconnect from the anomaly synchronizer if they are too
- far away from it.
- type: Fix
- id: 7387
- time: '2024-09-17T09:49:19.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31876
-- author: TheShuEd
- changes:
- - message: fix Tech anomaly loud sounds and superfast flickering
- type: Fix
- id: 7388
- time: '2024-09-17T16:05:38.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32245
-- author: drakewill-CRL
- changes:
- - message: Fixed plant mutations carrying over to other plants and future rounds.
- type: Fix
- id: 7389
- time: '2024-09-17T19:45:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32257
- author: Moomoobeef
changes:
- message: Added more names to the pool of names the AI can have.
@@ -3887,3 +3576,333 @@
id: 7849
time: '2025-01-24T06:58:34.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/34614
+- author: CaasGit
+ changes:
+ - message: Solar panels can now be upgraded with plasma or uranium glass.
+ type: Add
+ id: 7850
+ time: '2025-01-26T14:01:34.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/29224
+- author: Coolsurf6
+ changes:
+ - message: Added the HoS's flask to their respective lockers.
+ type: Add
+ id: 7851
+ time: '2025-01-26T23:39:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34658
+- author: Compilatron144
+ changes:
+ - message: Plasma station fixes
+ type: Tweak
+ id: 7852
+ time: '2025-01-27T07:07:44.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34602
+- author: ArtisticRoomba
+ changes:
+ - message: The pneumatic valve now has a more descriptive description.
+ type: Tweak
+ id: 7853
+ time: '2025-01-27T07:40:23.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32655
+- author: Helm
+ changes:
+ - message: Fixed an overly roomy matchbox!
+ type: Fix
+ id: 7854
+ time: '2025-01-27T08:30:32.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34632
+- author: metalgearsloth
+ changes:
+ - message: Fix hovering storage containers flickering sometimes.
+ type: Fix
+ id: 7855
+ time: '2025-01-27T10:29:51.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33045
+- author: Coolsurf6
+ changes:
+ - message: Added the ability for a creature to be unable to feel pain
+ type: Add
+ - message: Added a Pain Numbness Trait to character creation.
+ type: Add
+ id: 7856
+ time: '2025-01-27T10:34:21.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34538
+- author: metalgearsloth
+ changes:
+ - message: Puddles will now draw below floor objects like vents.
+ type: Fix
+ id: 7857
+ time: '2025-01-27T12:44:17.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32369
+- author: august-sun
+ changes:
+ - message: Utility and CE belts can now hold the pAI and the handheld station map.
+ type: Tweak
+ id: 7858
+ time: '2025-01-27T18:48:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33048
+- author: ArtisticRoomba
+ changes:
+ - message: The Engineering Guidebook has been significantly revamped and is now
+ mostly up to date.
+ type: Add
+ - message: Most Atmospherics and Engineering-related devices and equipment now have
+ a link to their relevant guidebook entry upon examine.
+ type: Add
+ id: 7859
+ time: '2025-01-27T19:42:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33062
+- author: SlamBamActionman
+ changes:
+ - message: Hristov now provides an increased view range of 3 tiles when wielded.
+ type: Tweak
+ id: 7860
+ time: '2025-01-27T23:20:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/31626
+- author: Kickguy223
+ changes:
+ - message: A new Syndicate and Thief togglable implant is available capable of Impersonating
+ a Mindshield
+ type: Add
+ - message: All implants will now inform you if an implant is already present after
+ the attempt instead of before
+ type: Tweak
+ id: 7861
+ time: '2025-01-28T02:37:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34079
+- author: ArtisticRoomba
+ changes:
+ - message: Frezon prices have been tweaked to be much more worth it for new players
+ and elder atmosians alike.
+ type: Tweak
+ id: 7862
+ time: '2025-01-28T17:31:11.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34049
+- author: K-Dynamic
+ changes:
+ - message: Stun batons play thrusting instead of wide swing animation on precise
+ attacks (LMB).
+ type: Tweak
+ id: 7863
+ time: '2025-01-28T18:55:08.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34693
+- author: Emisse
+ changes:
+ - message: Drozd sprites have been updated.
+ type: Tweak
+ id: 7864
+ time: '2025-01-29T08:41:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34574
+- author: Southbridge
+ changes:
+ - message: The Nuke will now reset to a minimum countdown value when disarmed if
+ the countdown is below the minimum value.
+ type: Tweak
+ id: 7865
+ time: '2025-01-29T09:04:48.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34734
+- author: themias
+ changes:
+ - message: Fixed precision attack animation for thrust weapons
+ type: Fix
+ id: 7866
+ time: '2025-01-29T10:11:08.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34713
+- author: yuitop
+ changes:
+ - message: Sentient medibots can now properly inject.
+ type: Tweak
+ id: 7867
+ time: '2025-01-29T10:34:01.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32110
+- author: jamessimo
+ changes:
+ - message: Criminal Records computer got enhanced UX & UI.
+ type: Tweak
+ - message: Criminal Records computer can now filter its list against crew criminal
+ status.
+ type: Tweak
+ - message: Criminal Records computer will now announce the suspects Job next to
+ their name.
+ type: Tweak
+ id: 7868
+ time: '2025-01-29T10:34:49.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32352
+- author: Starbuckss14
+ changes:
+ - message: New borg names
+ type: Add
+ id: 7869
+ time: '2025-01-29T10:35:22.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32502
+- author: thetolbean
+ changes:
+ - message: Traitors now have access to a Syndicate Radio Implanter, allowing covert
+ communications on the Syndicate channel without a headset.
+ type: Add
+ id: 7870
+ time: '2025-01-30T00:14:00.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33533
+- author: Spessmann
+ changes:
+ - message: Added Convex recreational complex, a large service-oriented highpop map.
+ type: Add
+ id: 7871
+ time: '2025-01-30T02:44:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33346
+- author: ScarKy0
+ changes:
+ - message: Added the Authentication Disruptor to the syndicate uplink for 5TC. It
+ removes access requirements from devices and forcefully opens airlocks and digital
+ locks.
+ type: Add
+ - message: The EMAG can no longer open airlocks or break locks.
+ type: Tweak
+ - message: Price of the EMAG lowered to 4TC.
+ type: Tweak
+ - message: '"Emagged" airlocks can now be fixed by unbolting and using the access
+ configurator. Locks and similiar can now be fixed by just using the access configurator.'
+ type: Tweak
+ id: 7872
+ time: '2025-01-30T04:05:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34337
+- author: Southbridge
+ changes:
+ - message: Astro Asteroid Sand has been added as another type of faux tile.
+ type: Add
+ - message: Asteroid Astro Sand has also been added to the T2 civilian tech for the
+ faux astro tiles.
+ type: Add
+ id: 7873
+ time: '2025-01-30T04:41:59.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34463
+- author: august-sun
+ changes:
+ - message: Added the goliath hardsuit to the game and crafting menu. Adjusted goliath
+ hide drop rates to 3 hide per kill.
+ type: Add
+ id: 7874
+ time: '2025-01-30T04:45:56.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34721
+- author: Velken
+ changes:
+ - message: Mixing opposite types of lizard juices now has explosive consequences.
+ type: Add
+ id: 7875
+ time: '2025-01-30T11:34:32.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34730
+- author: SpaceRox1244
+ changes:
+ - message: Massive scrap can now fit in bags of holding.
+ type: Tweak
+ id: 7876
+ time: '2025-01-30T12:06:41.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33454
+- author: sleepyyapril
+ changes:
+ - message: Fixed double muzzle flash for the user.
+ type: Fix
+ id: 7877
+ time: '2025-01-30T13:34:05.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33981
+- author: BarryNorfolk
+ changes:
+ - message: Added a history tab to the bounty computer, showing all past completed
+ and skipped orders (and who skipped them).
+ type: Add
+ id: 7878
+ time: '2025-01-30T17:27:36.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33932
+- author: K-Dynamic
+ changes:
+ - message: The Kammerer now holds 7 shells but now fires slightly slower than other
+ shotguns.
+ type: Tweak
+ - message: The Double-Barreled Shotgun and its sawn-off counterpart now share the
+ same firerate.
+ type: Tweak
+ - message: Changed descriptions of the Kammerer, Enforcer and Bulldog.
+ type: Tweak
+ id: 7879
+ time: '2025-01-30T17:36:12.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33512
+- author: beck-thompson
+ changes:
+ - message: Ore rocks now drop the correct amount of ore when mined.
+ type: Fix
+ id: 7880
+ time: '2025-01-30T17:48:11.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34557
+- author: keronshb
+ changes:
+ - message: Added Void's Applause! A Wizard Spell that switches your location with
+ the target.
+ type: Add
+ id: 7881
+ time: '2025-01-31T00:10:36.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34591
+- author: Nox38
+ changes:
+ - message: Rebalanced Box's armory and increased its max security officers to 7.
+ type: Tweak
+ id: 7882
+ time: '2025-01-31T07:23:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34750
+- author: SlamBamActionman
+ changes:
+ - message: Forcefeeding pills now takes 2 seconds (was 1 second), while eating them
+ takes 0.6 seconds (was 1 second).
+ type: Tweak
+ id: 7883
+ time: '2025-01-31T11:59:38.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34764
+- author: themias
+ changes:
+ - message: Updated sound effects for shutters
+ type: Tweak
+ id: 7884
+ time: '2025-01-31T17:41:52.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34774
+- author: Nox38
+ changes:
+ - message: Renamed riot bullet shield to ballistic shield
+ type: Tweak
+ - message: Renamed riot laser shield to ablative shield
+ type: Tweak
+ id: 7885
+ time: '2025-01-31T23:39:22.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34794
+- author: Nox38
+ changes:
+ - message: Set Marathon's max secoffs to 8.
+ type: Tweak
+ - message: Restocked Marathon's armory.
+ type: Tweak
+ id: 7886
+ time: '2025-02-01T06:32:42.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34798
+- author: ToxicSonicFan04
+ changes:
+ - message: Added Sink to Chemistry on Box Station!
+ type: Add
+ id: 7887
+ time: '2025-02-01T06:35:36.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34803
+- author: NazrinNya
+ changes:
+ - message: Flesh Kudzu now contains razorium, making it unsafe to eat.
+ type: Tweak
+ id: 7888
+ time: '2025-02-01T12:10:20.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32821
+- author: Boaz1111
+ changes:
+ - message: 'New Reagent: Coldsauce! It can be made using the Frost Oil from Chilly
+ Peppers, similar to Hotsauce from Capsaicin Oil!'
+ type: Add
+ - message: Coldsauce packets and bottles now contain Coldsauce, instead of Frost
+ Oil.
+ type: Tweak
+ id: 7889
+ time: '2025-02-01T15:20:01.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34458
diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml
index 2bd16b61b8f8..95aecb284a46 100644
--- a/Resources/ConfigPresets/WizardsDen/vulture.toml
+++ b/Resources/ConfigPresets/WizardsDen/vulture.toml
@@ -5,6 +5,3 @@ hostname = "[EN] Wizard's Den Vulture [US East 2]"
[hub]
tags = "lang:en,region:am_n_e,rp:low"
-
-[worldgen]
-enabled = true
diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt
index 244ba8874bda..cbd4e77d5537 100644
--- a/Resources/Credits/GitHub.txt
+++ b/Resources/Credits/GitHub.txt
@@ -1 +1 @@
-0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, nox, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex
+0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, milon, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex
diff --git a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
index 4314cbf44960..d7a7025927fc 100644
--- a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
+++ b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
@@ -18,3 +18,9 @@ bounty-console-flavor-right = v1.4
bounty-manifest-header = [font size=14][bold]Official cargo bounty manifest[/bold] (ID#{$id})[/font]
bounty-manifest-list-start = Item manifest:
+
+bounty-console-tab-available-label = Available
+bounty-console-tab-history-label = History
+bounty-console-history-empty-label = No bounty history found
+bounty-console-history-notice-completed-label = [color=limegreen]Completed[/color]
+bounty-console-history-notice-skipped-label = [color=red]Skipped[/color] by {$id}
diff --git a/Resources/Locale/en-US/changelog/changelog-window.ftl b/Resources/Locale/en-US/changelog/changelog-window.ftl
index b7f5d6a2fae9..9d17dea62995 100644
--- a/Resources/Locale/en-US/changelog/changelog-window.ftl
+++ b/Resources/Locale/en-US/changelog/changelog-window.ftl
@@ -5,7 +5,8 @@ changelog-author-changed = [color=#EEE]{ $author }[/color] changed:
changelog-today = Today
changelog-yesterday = Yesterday
changelog-new-changes = new changes
-changelog-version-tag = version v{ $version }
+changelog-version-unknown = Unknown Version
+changelog-version-tag = { $fork }/{ $version }
changelog-button = Changelog
changelog-button-new-entries = Changelog (new!)
diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl
index 479e9daab4a2..74e669b50725 100644
--- a/Resources/Locale/en-US/chat/emotes.ftl
+++ b/Resources/Locale/en-US/chat/emotes.ftl
@@ -11,6 +11,7 @@ chat-emote-name-squeak = Squeak
chat-emote-name-thump = Thump Tail
chat-emote-name-click = Click
chat-emote-name-clap = Clap
+chat-emote-name-clap-single = Single Clap
chat-emote-name-snap = Snap
chat-emote-name-salute = Salute
chat-emote-name-gasp = Gasp
@@ -45,6 +46,7 @@ chat-emote-msg-squeak = squeaks.
chat-emote-msg-thump = thumps {POSS-ADJ($entity)} tail.
chat-emote-msg-click = clicks.
chat-emote-msg-clap = claps!
+chat-emote-msg-clap-single = claps their hands together.
chat-emote-msg-snap = snaps {POSS-ADJ($entity)} fingers.
chat-emote-msg-salute = salutes.
chat-emote-msg-gasp = gasps.
diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
index 2a7c09912fae..20eb160c1374 100644
--- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl
+++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
@@ -3,6 +3,9 @@ criminal-records-console-records-list-title = Crewmembers
criminal-records-console-select-record-info = Select a record.
criminal-records-console-no-records = No records found!
criminal-records-console-no-record-found = No record was found for the selected person.
+criminal-records-console-flavor-left = Arrest first! Ask questions later.
+criminal-records-console-flavor-right = v2.1
+criminal-records-console-show-all = All
## Status
@@ -14,8 +17,8 @@ criminal-records-status-suspected = Suspect
criminal-records-status-discharged = Discharged
criminal-records-status-paroled = Paroled
-criminal-records-console-wanted-reason = [color=gray]Wanted Reason[/color]
-criminal-records-console-suspected-reason = [color=gray]Suspected Reason[/color]
+criminal-records-console-wanted-reason = Wanted Reason
+criminal-records-console-suspected-reason = Suspected Reason
criminal-records-console-reason = Reason
criminal-records-console-reason-placeholder = For example: {$placeholder}
@@ -31,14 +34,14 @@ criminal-records-permission-denied = Permission denied
## Security channel notifications
-criminal-records-console-wanted = {$name} was made wanted by {$officer} for: {$reason}.
-criminal-records-console-suspected = {$officer} marked {$name} as suspicious because of: {$reason}
-criminal-records-console-not-suspected = {$name} has been cleared of suspicion by {$officer}.
-criminal-records-console-detained = {$name} has been detained by {$officer}.
-criminal-records-console-released = {$name} has been released by {$officer}.
-criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name}.
-criminal-records-console-paroled = {$name} has been released on parole by {$officer}.
-criminal-records-console-not-parole = {$officer} cleared the parole status of {$name}.
+criminal-records-console-wanted = {$name} ({$job}) was made wanted by {$officer} for: {$reason}.
+criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name} ({$job}).
+criminal-records-console-suspected = {$officer} marked {$name} ({$job}) as suspicious because of: {$reason}
+criminal-records-console-not-suspected = {$name} ({$job}) has been cleared of suspicion by {$officer}.
+criminal-records-console-detained = {$name} ({$job}) has been detained by {$officer}.
+criminal-records-console-released = {$name} ({$job}) has been released by {$officer}.
+criminal-records-console-paroled = {$name} ({$job}) has been released on parole by {$officer}.
+criminal-records-console-not-parole = {$officer} cleared the parole status of {$name} ({$job}).
criminal-records-console-unknown-officer =
## Filters
diff --git a/Resources/Locale/en-US/damage/damage-force-say.ftl b/Resources/Locale/en-US/damage/damage-force-say.ftl
index a43603511457..83934a181e02 100644
--- a/Resources/Locale/en-US/damage/damage-force-say.ftl
+++ b/Resources/Locale/en-US/damage/damage-force-say.ftl
@@ -9,4 +9,10 @@ damage-force-say-5 = OW!
damage-force-say-6 = URGH!
damage-force-say-7 = HRNK!
-damage-force-say-sleep = zzz...
+damage-force-say-sleep-1 = zzz...
+
+damage-force-say-numb-1 = oh-
+damage-force-say-numb-2 = ow-
+damage-force-say-numb-3 = oof-
+damage-force-say-numb-4 = ah-
+damage-force-say-numb-5 = ugh-
diff --git a/Resources/Locale/en-US/datasets/names/ai.ftl b/Resources/Locale/en-US/datasets/names/ai.ftl
index ac6ce0d83e6c..eaa268b3de5e 100644
--- a/Resources/Locale/en-US/datasets/names/ai.ftl
+++ b/Resources/Locale/en-US/datasets/names/ai.ftl
@@ -73,7 +73,7 @@ names-ai-dataset-55 = Hivebot Overmind
names-ai-dataset-56 = Huey
# A play on the fad apple spawned of putting "i" infront of your tech products name
-names-ai-dataset-57 = iAI
+names-ai-dataset-57 = iCore
# Hell on earth (web browser)
names-ai-dataset-58 = I.E. 6
@@ -99,7 +99,7 @@ names-ai-dataset-70 = Max 404
names-ai-dataset-71 = Metalhead
names-ai-dataset-72 = M.I.M.I
names-ai-dataset-73 = MK ULTRA
-names-ai-dataset-74 = MoMMI
+names-ai-dataset-74 = Monarch
names-ai-dataset-75 = Mugsy3000
names-ai-dataset-76 = Multivac
names-ai-dataset-77 = NCH
diff --git a/Resources/Locale/en-US/emag/emag.ftl b/Resources/Locale/en-US/emag/emag.ftl
index b4679870b522..e91bacbc657d 100644
--- a/Resources/Locale/en-US/emag/emag.ftl
+++ b/Resources/Locale/en-US/emag/emag.ftl
@@ -1,2 +1,2 @@
-emag-success = The card zaps something in {THE($target)}.
+emag-success = The device zaps something in {THE($target)}.
emag-no-charges = No charges left!
diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
index 06f8aeb565e5..dcb061a692e0 100644
--- a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
+++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
@@ -4,7 +4,7 @@ nukeops-description = Nuclear operatives have targeted the station. Try to keep
nukeops-welcome =
You are a nuclear operative. Your goal is to blow up {$station}, and ensure that it is nothing but a pile of rubble. Your bosses, the Syndicate, have provided you with the tools you'll need for the task.
Operation {$name} is a go ! Death to Nanotrasen!
-nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it detonates. Begin mission.
+nukeops-briefing = Your objectives are simple. Deliver the payload and get out before the payload detonates. Begin mission.
nukeops-opsmajor = [color=crimson]Syndicate major victory![/color]
nukeops-opsminor = [color=crimson]Syndicate minor victory![/color]
diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl
index 52ac5a09fb48..530881abd19c 100644
--- a/Resources/Locale/en-US/guidebook/guides.ftl
+++ b/Resources/Locale/en-US/guidebook/guides.ftl
@@ -1,18 +1,59 @@
guide-entry-ss14 = Station and Shifts
guide-entry-engineering = Engineering
guide-entry-construction = Construction
+guide-entry-expandingrepairingstation = Expanding and Repairing Stations
guide-entry-airlock-security = Airlock Upgrades
+guide-entry-wirepanels = Wire Panels
+guide-entry-airlocks = Airlocks
guide-entry-atmospherics = Atmospherics
+guide-entry-pipes = Pipes
+guide-entry-pumps = Pumps
+guide-entry-gasmanipulation = Gas Manipulation
+guide-entry-atmosphereinout = Atmosphere In/Out
+guide-entry-airvent = Air Vent
+guide-entry-passivevent = Passive Vent
+guide-entry-airinjector = Air Injector
+guide-entry-airscrubber = Air Scrubber
+guide-entry-portablescrubber = Portable Scrubber
+guide-entry-valves = Valves
+guide-entry-manualvalve = Manual Valve
+guide-entry-signalvalve = Signal Valve
+guide-entry-pneumaticvalve = Pneumatic Valve
+guide-entry-passivegate = Passive Gate
+guide-entry-mixingandfiltering = Mixing and Filtering
+guide-entry-gascanisters = Gas Canisters
+guide-entry-thermomachines = Thermomachines
+guide-entry-gascondensing = Gas Condensing
+guide-entry-radiators = Radiators
+guide-entry-atmosphericssystems = Atmospherics Systems
+guide-entry-pipenetworks = Pipe Networks
+guide-entry-devicemonitoringandcontrol = Device Monitoring and Control
+guide-entry-airalarms = Air Alarms
+guide-entry-atmosphericalertscomputer = Atmospheric Alerts Computer
+guide-entry-atmosphericnetworkmonitor = Atmospheric Network Monitor
+guide-entry-fireandgascontrol = Fire and Gas Control
+guide-entry-gasminingandstorage = Gas Mining and Storage
+guide-entry-atmosphericupsets = Atmospheric Upsets
+guide-entry-fires = Fires
+guide-entry-spacing = Spacing
+guide-entry-atmostools = Atmos Tools
+guide-entry-gasses = Gasses
guide-entry-botany = Botany
-guide-entry-fires = Fires & Space
guide-entry-shuttle-craft = Shuttle-craft
guide-entry-networking = Networking
-guide-entry-network-configurator = Network Configurator
guide-entry-access-configurator = Access Configurator
guide-entry-power = Power
+guide-entry-inspectingpower = Inspecting Power
+guide-entry-powerstorage = Power Storage
+guide-entry-ramping = Ramping
+guide-entry-voltagenetworks = Voltage Networks
+guide-entry-generators = Generators
guide-entry-portable-generator = Portable Generators
guide-entry-ame = Antimatter Engine (AME)
-guide-entry-singularity = Singularity / Tesla
+guide-entry-singularityteslaengine = Singularity / Tesla
+guide-entry-singularityengine = Singularity Engine
+guide-entry-teslaengine = Tesla Engine
+guide-entry-solarpanels = Solar Panels
guide-entry-teg = Thermo-electric Generator (TEG)
guide-entry-rtg = RTG
guide-entry-jobs = Jobs
diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl
index 073757f53c78..813ed3e7a986 100644
--- a/Resources/Locale/en-US/implant/implant.ftl
+++ b/Resources/Locale/en-US/implant/implant.ftl
@@ -17,6 +17,9 @@ implanter-label = [color=green]{$implantName}[/color]
implanter-contained-implant-text = [color=green]{$desc}[/color]
+action-name-toggle-fake-mindshield = [color=green]Toggle Fake Mindshield[/color]
+action-description-toggle-fake-mindshield = Turn the Fake Mindshield implants transmission on/off
+
## Implant Popups
scramble-implant-activated-popup = Your appearance shifts and changes!
diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl
index 9f678c1802ef..81f59df62277 100644
--- a/Resources/Locale/en-US/job/job-description.ftl
+++ b/Resources/Locale/en-US/job/job-description.ftl
@@ -3,7 +3,7 @@ job-description-atmostech = Optimize the station's atmospherics setup, and synth
job-description-bartender = Manage the bar and keep it lively, give out drinks, and listen to the crew's stories.
job-description-botanist = Grow food for the chef, drugs for medbay, and other plants to keep yourself entertained.
job-description-borg = Half-human, Half-machine. Follow your laws, serve the crew, and hound the science team for upgrades.
-job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core and Cog.
+job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core, Convex and Cog.
job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you.
job-description-cadet = Learn the basics of arresting criminals and managing the brig. Listen to your supervisors and feel free to ask them for any help.
job-description-captain = Keep the station running, delegate work to the other heads of staff, and exert your will.
@@ -38,7 +38,7 @@ job-description-psychologist = Provide emotional support to traumatized crew. Cu
job-description-qm = Manage the supplies of the station & the cargo department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing.
job-description-rd = Manage the science department, unlocking technologies, acquiring & researching artifacts, and performing experiments.
job-description-research-assistant = Learn the basics of how to research various artifacts, anomalies and robotics.
-job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Cog, Core, Train and Oasis.
+job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Cog, Convex, Core, Train and Oasis.
job-description-salvagespec = Use the salvage magnet to draw in detatched scraps & asteroids to loot and enrich the station, build a salvage ship and then travel to new planets, while fighting off any space fauna along the way.
job-description-scientist = Research alien artifacts, unlock new technologies, build newer and better machines around the station, and make everything run more efficiently.
job-description-security = Catch criminals and enemies of the station, enforce the law, and ensure that the station does not fall into disarray.
diff --git a/Resources/Locale/en-US/job/role-requirements.ftl b/Resources/Locale/en-US/job/role-requirements.ftl
index 686fcb93cb12..37265b875ce8 100644
--- a/Resources/Locale/en-US/job/role-requirements.ftl
+++ b/Resources/Locale/en-US/job/role-requirements.ftl
@@ -1,15 +1,15 @@
-role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to play this role.
-role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?)
-role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to play this role.
-role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to play this role. (Are you trying to play a trainee role?)
-role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to play this role.
-role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?)
-role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] to play this role.
-role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] to play this role.
-role-timer-whitelisted-species = Your character must be one of the following species to play this role:
-role-timer-blacklisted-species = Your character must not be one of the following species to play this role:
-role-timer-whitelisted-traits = Your character must have one of the following traits:
-role-timer-blacklisted-traits = Your character must not have any of the following traits:
+role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to unlock this.
+role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to select this. (Are you trying to play a trainee role?)
+role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to unlock this.
+role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to select this. (Are you trying to play a trainee role?)
+role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to unlock this.
+role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to select this. (Are you trying to play a trainee role?)
+role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] for you to choose this.
+role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] for you to choose this.
+role-timer-whitelisted-species = Your character must be one of the following species for you to select this:
+role-timer-blacklisted-species = Your character must not be one of the following species for you to select this:
+role-timer-whitelisted-traits = Your character must have one of the following traits for you to select this:
+role-timer-blacklisted-traits = Your character must not have any of the following traits for you to select this:
role-timer-locked = Locked (hover for details)
diff --git a/Resources/Locale/en-US/medical/components/healing-component.ftl b/Resources/Locale/en-US/medical/components/healing-component.ftl
index 1deb39db091a..20ad23dcb214 100644
--- a/Resources/Locale/en-US/medical/components/healing-component.ftl
+++ b/Resources/Locale/en-US/medical/components/healing-component.ftl
@@ -1,4 +1,5 @@
medical-item-finished-using = You have finished healing with the {$item}
medical-item-cant-use = There is no damage you can heal with the {$item}
-medical-item-stop-bleeding = They have stopped bleeding
+medical-item-stop-bleeding = {CAPITALIZE($target)} has stopped bleeding
+medical-item-stop-bleeding-self = You have stopped bleeding
medical-item-popup-target = {CAPITALIZE(THE($user))} is trying to heal you with the {$item}!
diff --git a/Resources/Locale/en-US/npc/medibot.ftl b/Resources/Locale/en-US/npc/medibot.ftl
index b64522011980..79be6d371b2f 100644
--- a/Resources/Locale/en-US/npc/medibot.ftl
+++ b/Resources/Locale/en-US/npc/medibot.ftl
@@ -1,2 +1,7 @@
medibot-start-inject = Hold still, please.
medibot-finish-inject = All done.
+
+medibot-target-dead = The patient is dead.
+medibot-target-healthy = The patient is already healthy.
+medibot-target-injected = The patient was injected.
+medibot-recently-injected = The patient was recently injected.
diff --git a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
index da3221e4f85e..9d8d9d839a03 100644
--- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
+++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
@@ -8,7 +8,6 @@ particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE ST
particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color]
particle-accelerator-control-menu-scan-parts-button = Scan Parts
particle-accelerator-control-menu-check-containment-field-warning = Ensure containment field is active before operation
-particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ
particle-accelerator-control-menu-status-label = [bold]Status:[/bold]
particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold]
particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Operational[/color][/bold]
@@ -16,6 +15,8 @@ particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=r
particle-accelerator-control-menu-draw = [bold]Draw:[/bold]
particle-accelerator-control-menu-draw-value = [font="Monospace"]{$watts}/{$lastReceive}[/font]
particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]N/A[/color][/font]
+particle-accelerator-control-menu-flavor-left = Please keep the clown away from this console!
+particle-accelerator-control-menu-flavor-right = v 1.6
particle-accelerator-radio-message-on = PA power has been switched on.
particle-accelerator-radio-message-off = PA power has been switched off.
diff --git a/Resources/Locale/en-US/reagents/frostoil.ftl b/Resources/Locale/en-US/reagents/frostoil.ftl
new file mode 100644
index 000000000000..f2181e7e4a28
--- /dev/null
+++ b/Resources/Locale/en-US/reagents/frostoil.ftl
@@ -0,0 +1,3 @@
+### Messages that pop up when metabolizing Frost Oil.
+
+frost-oil-effect-light-cold = You feel a slight cold tingle in your throat...
\ No newline at end of file
diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
index 809fbafffd9c..0fe7be6b371c 100644
--- a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
+++ b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl
@@ -7,8 +7,8 @@ reagent-desc-bbq-sauce = Hand wipes not included.
reagent-name-cornoil = corn oil
reagent-desc-cornoil = Corn oil, A delicious oil used in cooking. Made from corn.
-reagent-name-frostoil = frostoil
-reagent-desc-frostoil = Leaves the tongue numb in its passage.
+reagent-name-coldsauce = coldsauce
+reagent-desc-coldsauce = Leaves the tongue numb in its passage.
reagent-name-horseradish-sauce = horseradish sauce
reagent-desc-horseradish-sauce = Smelly horseradish sauce.
diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
index 4f5c5ae78268..98dc73ecbc31 100644
--- a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
+++ b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl
@@ -36,3 +36,6 @@ reagent-desc-oil = Used by chefs to cook.
reagent-name-capsaicin-oil = Capsaicin Oil
reagent-desc-capsaicin-oil = Capsaicin Oil is the ingredient found in different types of hot peppers.
+
+reagent-name-frost-oil = Frost Oil
+reagent-desc-frost-oil = Frost Oil is the ingredient found in chilly peppers, a rare pepper mutation.
diff --git a/Resources/Locale/en-US/shutter/shutter.ftl b/Resources/Locale/en-US/shutter/shutter.ftl
new file mode 100644
index 000000000000..3ddcf6d0845c
--- /dev/null
+++ b/Resources/Locale/en-US/shutter/shutter.ftl
@@ -0,0 +1 @@
+shutter-rattle = *rattle rattle*
\ No newline at end of file
diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl
index 5b8be6ff021f..0ed364b93333 100644
--- a/Resources/Locale/en-US/shuttles/console.ftl
+++ b/Resources/Locale/en-US/shuttles/console.ftl
@@ -10,9 +10,13 @@ shuttle-console-prevent = You are unable to pilot this ship
shuttle-console-display-label = Display
shuttle-console-position = Position:
+shuttle-console-position-value = {$X}, {$Y}
shuttle-console-orientation = Orientation:
+shuttle-console-orientation-value = {$angle}
shuttle-console-linear-velocity = Linear velocity:
+shuttle-console-linear-velocity-value = {$X}, {$Y}
shuttle-console-angular-velocity = Angular velocity:
+shuttle-console-angular-velocity-value = {$angularVelocity}
shuttle-console-unknown = Unknown
shuttle-console-iff-label = {$name} ({$distance}m)
diff --git a/Resources/Locale/en-US/station-events/events/radiation-storm.ftl b/Resources/Locale/en-US/station-events/events/radiation-storm.ftl
deleted file mode 100644
index c8f07c1b2ffb..000000000000
--- a/Resources/Locale/en-US/station-events/events/radiation-storm.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-## RadiationStorm
-
-station-event-radiation-storm-start-announcement = High levels of radiation detected near the station. Evacuate any areas containing abnormal green energy fields.
-station-event-radiation-storm-end-announcement = The radiation threat has passed. Please return to your workplaces.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl
index 1450cc86082f..98d19817c675 100644
--- a/Resources/Locale/en-US/store/spellbook-catalog.ftl
+++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl
@@ -5,6 +5,9 @@ spellbook-fireball-desc = Get most crew exploding with rage when they see this f
spellbook-blink-name = Blink
spellbook-blink-desc = Don't blink or you'll miss yourself teleporting away.
+spellbook-voidapplause-name = Void Applause
+spellbook-voidapplause-desc = Swap places with the target, doesn't it make you want to do the boogie?
+
spellbook-force-wall-name = Force Wall
spellbook-force-wall-desc = Make three walls of pure force that you can pass through, but other's can't.
diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index 82c80dab1f46..59cecca3123a 100644
--- a/Resources/Locale/en-US/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/store/uplink-catalog.ftl
@@ -113,7 +113,10 @@ uplink-chest-rig-name = Chest Rig
uplink-chest-rig-desc = Explosion-resistant tactical webbing used for holding traitor goods.
uplink-emag-name = Emag
-uplink-emag-desc = The business card of the syndicate, this sequencer is able to break open airlocks and tamper with a variety of station devices. Recharges automatically.
+uplink-emag-desc = The business card of the syndicate, this sequencer is able to tamper with a variety of station devices. Recharges automatically.
+
+uplink-access-breaker-name = Access Breaker
+uplink-access-breaker-desc = A hacked access configurator and a good friend of the emag. This device is able to force airlocks open as well as erase access requirements from station equipment. Recharges automatically.
uplink-agent-id-card-name = Agent ID Card
uplink-agent-id-card-desc = A modified ID card that can copy accesses from other cards and change its name and job title at-will.
@@ -200,6 +203,9 @@ uplink-death-acidifier-implant-desc = Completely melts the user and their equipm
uplink-micro-bomb-implanter-name = Micro Bomb Implanter
uplink-micro-bomb-implanter-desc = Explode on death or manual activation with this implant. Destroys the body with all equipment.
+uplink-radio-implanter-name = Radio Implanter
+uplink-radio-implanter-desc = Implants a Syndicate radio, allowing covert communication without a headset.
+
# Bundles
uplink-observation-kit-name = Observation Kit
uplink-observation-kit-desc = Includes surveillance camera monitor board and security hud disguised as sunglasses.
@@ -451,3 +457,6 @@ uplink-combat-bakery-desc = A kit of clandestine baked weapons. Contains a bague
uplink-business-card-name = Syndicate Business Card
uplink-business-card-desc = A business card that you can give to someone to demonstrate your involvement in the syndicate or leave at the crime scene in order to make fun of the detective. You can buy no more than three of them.
+
+uplink-fake-mindshield-name = Fake Mindshield
+uplink-fake-mindshield-desc = A togglable implant capable of mimicking the same transmissions a real mindshield puts out when on, tricking capable Heads-up displays into thinking you have a mindshield (Nanotrasen brand implanter not provided.)
diff --git a/Resources/Locale/en-US/thief/backpack.ftl b/Resources/Locale/en-US/thief/backpack.ftl
index 6a69ab8bc6f3..6d3baa2c0d8a 100644
--- a/Resources/Locale/en-US/thief/backpack.ftl
+++ b/Resources/Locale/en-US/thief/backpack.ftl
@@ -39,7 +39,7 @@ thief-backpack-category-syndie-name = syndie kit
thief-backpack-category-syndie-description =
Trinkets from a disavowed past, or stolen from a careless agent?
You've made some connections. Whiskey, echo...
- Includes: An Emag, Interdyne cigs, a Syndicate codeword,
+ Includes: An Emag, Access Breaker, Interdyne cigs, a Syndicate codeword,
a Radio Jammer, a lighter and some strange red crystals.
thief-backpack-category-sleeper-name = sleeper kit
diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl
index b52023561422..0263c447a012 100644
--- a/Resources/Locale/en-US/tiles/tiles.ftl
+++ b/Resources/Locale/en-US/tiles/tiles.ftl
@@ -128,4 +128,5 @@ tiles-mowed-astro-grass = mowed astro-grass
tiles-jungle-astro-grass = jungle astro-grass
tiles-astro-ice = astro-ice
tiles-astro-snow = astro-snow
+tiles-astro-asteroid-sand = asteroid astro-sand
tiles-wood-large = large wood
diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl
index 7f4dcfe2ecab..f4e5736db5d8 100644
--- a/Resources/Locale/en-US/traits/traits.ftl
+++ b/Resources/Locale/en-US/traits/traits.ftl
@@ -59,3 +59,6 @@ trait-french-desc = Your accent seems to have a certain «je ne sais quoi».
trait-spanish-name = Spanish accent
trait-spanish-desc = Hola señor, donde esta la biblioteca.
+
+trait-painnumbness-name = Numb
+trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be.
diff --git a/Resources/Maps/Dungeon/maints.yml b/Resources/Maps/Dungeon/maints.yml
new file mode 100644
index 000000000000..ae7ec858588d
--- /dev/null
+++ b/Resources/Maps/Dungeon/maints.yml
@@ -0,0 +1,2402 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 2: FloorAsteroidSand
+ 6: FloorAsteroidSandUnvariantized
+ 5: FloorAsteroidTile
+ 10: FloorAstroGrass
+ 8: FloorBrokenWood
+ 11: FloorRGlass
+ 82: FloorShuttleOrange
+ 1: FloorShuttlePurple
+ 89: FloorSteel
+ 9: FloorSteelDamaged
+ 7: FloorWood
+ 3: Plating
+ 4: PlatingAsteroid
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: WQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAACAQAAAAADAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAWQAAAAADWQAAAAABWQAAAAACCAAAAAAEBwAAAAABCAAAAAABBwAAAAADAQAAAAADAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAwAAAAAAAQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABCAAAAAABBwAAAAABBwAAAAACBwAAAAABAQAAAAADWQAAAAACWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAABwAAAAADBwAAAAAABwAAAAABCAAAAAAFAQAAAAADWQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAAAWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAWQAAAAAABwAAAAADCAAAAAABBwAAAAACCAAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABWQAAAAABCgAAAAABAwAAAAAACQAAAAAACgAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACCgAAAAACCgAAAAADCgAAAAAAWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACCQAAAAACCgAAAAAAAwAAAAAACgAAAAADCgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAADCgAAAAACCgAAAAABWQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACWQAAAAABAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADWQAAAAABWQAAAAABWQAAAAABAwAAAAAAWQAAAAACAQAAAAACWQAAAAACAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAACWQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: WQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAAQAAAAABWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAACWQAAAAADAwAAAAAAWQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAAAWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACWQAAAAABWQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAABAwAAAAAAAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAWQAAAAAAWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADWQAAAAADAwAAAAAAAQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAWQAAAAADAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAACWQAAAAABAwAAAAAAWQAAAAACWQAAAAABAwAAAAAAAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAQAAAAADWQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADAQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABWQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACCwAAAAADWQAAAAABAwAAAAAAAQAAAAABWQAAAAADWQAAAAADWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAABWQAAAAAAAwAAAAAAAQAAAAAAWQAAAAACWQAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAAAWQAAAAACAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAC
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAD
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAD
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: AwAAAAAAAQAAAAABAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAWQAAAAADAwAAAAAAWQAAAAABWQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAACWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAADAwAAAAAAWQAAAAACWQAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAABWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAACAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAADAwAAAAAAWQAAAAACAwAAAAAAWQAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAAAWQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: WQAAAAABAQAAAAABAwAAAAAAWQAAAAADWQAAAAABWQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAACWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAABWQAAAAABAwAAAAAAWQAAAAAAWQAAAAACAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAACAwAAAAAAWQAAAAAAWQAAAAACWQAAAAADAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAWQAAAAADAwAAAAAAWQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABAwAAAAAAWQAAAAADAwAAAAAAWQAAAAACWQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAQAAAAABWQAAAAABAwAAAAAAWQAAAAACWQAAAAADWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAWQAAAAABWQAAAAABWQAAAAACAwAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAABWQAAAAAAAwAAAAAAWQAAAAACAwAAAAAAWQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACAQAAAAAAWQAAAAAAAwAAAAAAAwAAAAAAWQAAAAABAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: AQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: AQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ cleanable: True
+ color: '#00D4D4FF'
+ id: Blasto
+ decals:
+ 447: 15.750851,6.288084
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 219: 1,15
+ 221: 15,9
+ 222: 14,9
+ 223: 13,9
+ 806: 3,21
+ 807: 1,26
+ 808: 19,20
+ 809: 7,3
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf1
+ decals:
+ 66: 0.9926146,6.054738
+ 71: 2.9403546,6.9957204
+ 75: 1.1116524,7.4451113
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf2
+ decals:
+ 67: -0.025895834,9.01513
+ 74: 3.3199868,7.922289
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushf3
+ decals:
+ 68: 3.011142,9.186537
+ 77: 1.743463,9.159254
+ - node:
+ cleanable: True
+ color: '#FF5F00FF'
+ id: Clandestine
+ decals:
+ 564: 6,13
+ - node:
+ cleanable: True
+ color: '#FFFFFF6D'
+ id: Dirt
+ decals:
+ 38: 2,1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 26: 3,8
+ 28: 1,6
+ 153: 19,7
+ 154: 18,9
+ 155: 21,10
+ 156: 21,6
+ 183: 9,6
+ 184: 6,8
+ 185: 8,10
+ 186: 10,9
+ 188: 7,8
+ 214: 0,13
+ 215: 2,12
+ 216: 2,15
+ 217: 4,15
+ 218: 2,16
+ 267: 10,0
+ 268: 7,2
+ 269: 6,0
+ 271: 13,6
+ 272: 16,8
+ 303: 18,13
+ 339: 22,4
+ 341: 18,3
+ 348: 13,0
+ 349: 15,2
+ 350: 13,3
+ 351: 12,4
+ 379: 20,2
+ 380: 16,12
+ 381: 14,15
+ 385: 10,16
+ 469: 15,14
+ 569: 9,7
+ 573: 8,13
+ 574: 6,14
+ 602: 18,21
+ 603: 21,22
+ 604: 22,19
+ 605: 19,18
+ 606: 20,20
+ 649: 14,18
+ 650: 12,20
+ 651: 16,22
+ 652: 8,20
+ 653: 10,22
+ 654: 9,18
+ 655: 6,20
+ 656: 7,24
+ 657: 10,26
+ 658: 7,28
+ 659: 4,25
+ 660: 2,24
+ 661: 2,26
+ 662: 3,27
+ 663: 0,27
+ 664: 3,21
+ 665: 0,21
+ 666: 3,19
+ 667: 2,18
+ 668: 16,24
+ 669: 15,25
+ 670: 13,25
+ 672: 16,28
+ 673: 21,25
+ 674: 20,26
+ 675: 18,28
+ 676: 22,27
+ 677: 19,24
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 95: 3,0
+ 127: 18,6
+ 128: 18,7
+ 129: 19,7
+ 131: 18,8
+ 159: 7,9
+ 169: 7,7
+ 170: 8,8
+ 171: 9,9
+ 172: 10,10
+ 173: 9,10
+ 174: 8,10
+ 175: 10,9
+ 176: 10,8
+ 177: 10,6
+ 178: 8,6
+ 179: 7,6
+ 180: 6,6
+ 181: 6,7
+ 182: 6,8
+ 191: 1,13
+ 192: 0,13
+ 193: 0,14
+ 194: 1,14
+ 195: 2,14
+ 196: 2,13
+ 197: 2,12
+ 198: 3,12
+ 199: 3,13
+ 200: 4,12
+ 201: 4,13
+ 202: 4,14
+ 203: 3,14
+ 205: 4,15
+ 208: 2,15
+ 209: 2,16
+ 210: 1,16
+ 211: 1,15
+ 212: 0,15
+ 225: 7,1
+ 226: 6,1
+ 229: 8,1
+ 252: 12,0
+ 253: 13,0
+ 256: 13,3
+ 258: 13,2
+ 274: 12,6
+ 277: 16,6
+ 278: 15,6
+ 279: 15,9
+ 281: 12,9
+ 296: 13,1
+ 297: 22,12
+ 298: 21,14
+ 299: 19,13
+ 301: 19,15
+ 305: 18,13
+ 309: 22,16
+ 311: 22,15
+ 313: 19,12
+ 317: 20,0
+ 318: 19,1
+ 319: 19,2
+ 322: 22,4
+ 345: 14,4
+ 355: 14,15
+ 356: 13,15
+ 359: 9,12
+ 362: 8,16
+ 366: 8,12
+ 386: 10,16
+ 459: 12,12
+ 461: 14,16
+ 462: 12,15
+ 464: 15,13
+ 465: 14,13
+ 466: 15,15
+ 467: 14,14
+ 468: 15,14
+ 470: 0,0
+ 471: 0,2
+ 472: 0,4
+ 473: 4,0
+ 474: 2,0
+ 475: 0,1
+ 483: 14,0
+ 484: 15,0
+ 485: 16,1
+ 486: 16,3
+ 487: 15,4
+ 488: 12,1
+ 489: 12,3
+ 490: 22,1
+ 491: 22,2
+ 492: 21,4
+ 493: 19,4
+ 494: 19,0
+ 495: 20,6
+ 496: 18,10
+ 497: 22,8
+ 498: 16,7
+ 499: 14,7
+ 500: 12,10
+ 501: 14,10
+ 502: 15,10
+ 503: 20,12
+ 504: 18,12
+ 505: 21,16
+ 506: 22,13
+ 510: 16,16
+ 511: 15,16
+ 512: 10,13
+ 513: 7,15
+ 514: 6,13
+ 524: 8,13
+ 525: 7,13
+ 526: 12,16
+ 527: 12,14
+ 528: 12,13
+ 529: 15,12
+ 530: 14,12
+ 531: 16,14
+ 532: 16,15
+ 533: 18,15
+ 534: 20,16
+ 535: 19,16
+ 536: 18,4
+ 537: 16,4
+ 544: 10,3
+ 545: 8,0
+ 567: 9,7
+ 568: 8,7
+ 570: 21,2
+ 571: 21,1
+ 572: 6,15
+ 575: 18,14
+ 576: 18,16
+ 577: 21,18
+ 578: 22,18
+ 579: 22,19
+ 581: 19,20
+ 582: 20,21
+ 583: 22,21
+ 584: 21,21
+ 585: 20,19
+ 586: 21,20
+ 587: 22,20
+ 588: 20,18
+ 590: 18,18
+ 591: 18,19
+ 592: 18,20
+ 593: 19,22
+ 594: 18,22
+ 595: 22,22
+ 596: 20,22
+ 629: 13,18
+ 630: 12,18
+ 631: 12,19
+ 632: 16,20
+ 633: 16,19
+ 634: 13,20
+ 635: 12,22
+ 636: 13,22
+ 637: 15,22
+ 638: 15,18
+ 648: 14,21
+ 678: 13,24
+ 679: 14,25
+ 680: 13,25
+ 683: 16,28
+ 684: 16,26
+ 685: 16,24
+ 702: 20,25
+ 703: 19,27
+ 706: 21,24
+ 707: 22,25
+ 708: 18,27
+ 709: 21,28
+ 710: 18,24
+ 711: 21,26
+ 725: 6,16
+ 726: 4,16
+ 727: 0,16
+ 728: 7,22
+ 729: 10,24
+ 730: 9,25
+ 731: 7,26
+ 732: 9,28
+ 733: 6,27
+ 734: 6,26
+ 735: 7,24
+ 736: 10,26
+ 737: 10,27
+ 738: 7,28
+ 754: 20,26
+ 755: 4,24
+ 756: 2,25
+ 757: 3,27
+ 759: 0,25
+ 760: 0,24
+ 785: 2,20
+ 786: 3,20
+ 787: 2,19
+ 788: 3,21
+ 789: 3,19
+ 805: 3,15
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 753: 8,26
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 17: 4,7
+ 18: 4,7
+ 19: 4,7
+ 22: 0,8
+ 23: 3,6
+ 24: 2,10
+ 25: 2,10
+ 94: 1,0
+ 143: 19,10
+ 144: 20,9
+ 145: 21,8
+ 146: 22,7
+ 148: 21,9
+ 149: 22,10
+ 151: 22,9
+ 152: 21,10
+ 168: 6,10
+ 231: 8,4
+ 232: 9,3
+ 233: 10,2
+ 241: 7,3
+ 243: 7,2
+ 244: 8,2
+ 245: 9,1
+ 246: 9,0
+ 247: 6,0
+ 248: 3,16
+ 291: 16,8
+ 293: 13,6
+ 294: 14,2
+ 295: 14,1
+ 332: 18,0
+ 333: 21,0
+ 334: 18,2
+ 335: 18,3
+ 336: 20,3
+ 337: 20,4
+ 387: 9,16
+ 388: 6,12
+ 518: 7,13
+ 519: 6,14
+ 520: 8,15
+ 521: 9,15
+ 522: 10,14
+ 550: 1,10
+ 551: 3,10
+ 552: 4,10
+ 553: 4,9
+ 554: 12,7
+ 555: 16,10
+ 556: 13,10
+ 557: 19,6
+ 558: 20,10
+ 559: 21,3
+ 562: 22,14
+ 565: 2,6
+ 566: 8,14
+ 622: 6,21
+ 623: 6,22
+ 624: 8,22
+ 625: 9,20
+ 626: 9,21
+ 627: 10,21
+ 628: 10,18
+ 646: 12,21
+ 647: 16,21
+ 697: 12,24
+ 698: 12,26
+ 699: 12,28
+ 700: 14,28
+ 701: 14,26
+ 719: 18,25
+ 720: 19,28
+ 721: 20,28
+ 722: 21,27
+ 723: 20,24
+ 749: 9,24
+ 750: 10,25
+ 751: 8,25
+ 752: 8,27
+ 774: 0,26
+ 775: 2,26
+ 776: 3,25
+ 777: 0,28
+ 778: 2,28
+ 779: 4,28
+ 801: 0,18
+ 802: 4,18
+ 803: 4,21
+ 804: 0,22
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 134: 18,9
+ 135: 19,8
+ 136: 20,7
+ 137: 21,6
+ 138: 22,6
+ 139: 21,7
+ 140: 20,8
+ 141: 19,9
+ 161: 9,8
+ 162: 9,6
+ 163: 10,7
+ 164: 7,8
+ 165: 8,9
+ 166: 7,10
+ 167: 6,9
+ 236: 6,4
+ 237: 7,4
+ 239: 10,0
+ 240: 10,1
+ 260: 16,0
+ 263: 12,4
+ 264: 13,4
+ 266: 16,2
+ 283: 12,8
+ 285: 14,6
+ 287: 16,9
+ 327: 22,3
+ 331: 22,0
+ 338: 19,3
+ 346: 14,3
+ 347: 15,3
+ 367: 7,12
+ 369: 10,15
+ 371: 7,16
+ 374: 10,12
+ 376: 13,16
+ 378: 16,13
+ 517: 0,12
+ 538: 12,2
+ 539: 6,2
+ 540: 6,3
+ 541: 10,4
+ 542: 9,4
+ 546: 7,0
+ 547: 0,6
+ 548: 0,7
+ 549: 0,10
+ 597: 18,21
+ 598: 19,21
+ 599: 21,22
+ 600: 20,20
+ 601: 19,18
+ 608: 9,18
+ 609: 6,19
+ 610: 9,22
+ 611: 10,20
+ 612: 8,20
+ 613: 7,18
+ 614: 6,18
+ 615: 10,19
+ 616: 6,20
+ 618: 8,18
+ 619: 10,22
+ 620: 9,19
+ 621: 8,21
+ 639: 15,19
+ 640: 14,19
+ 641: 14,18
+ 642: 12,20
+ 643: 16,22
+ 644: 14,22
+ 645: 16,18
+ 686: 14,24
+ 687: 12,25
+ 688: 13,26
+ 689: 12,27
+ 690: 13,28
+ 691: 15,28
+ 692: 16,27
+ 693: 16,25
+ 694: 15,24
+ 695: 15,25
+ 696: 15,26
+ 704: 19,26
+ 705: 21,25
+ 712: 18,26
+ 713: 20,27
+ 714: 22,24
+ 715: 18,28
+ 716: 22,26
+ 717: 22,28
+ 718: 22,27
+ 739: 6,24
+ 740: 7,25
+ 741: 7,27
+ 742: 6,28
+ 743: 8,28
+ 744: 9,27
+ 745: 10,28
+ 746: 6,25
+ 747: 8,24
+ 748: 9,26
+ 761: 1,24
+ 762: 1,25
+ 763: 3,24
+ 764: 4,25
+ 765: 4,26
+ 766: 2,24
+ 767: 0,27
+ 768: 1,26
+ 769: 1,28
+ 770: 2,27
+ 771: 3,26
+ 772: 4,27
+ 773: 3,28
+ 790: 3,18
+ 791: 1,18
+ 792: 0,19
+ 793: 0,21
+ 794: 2,22
+ 795: 1,22
+ 796: 3,22
+ 797: 4,20
+ 798: 4,19
+ 799: 0,20
+ 800: 4,22
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 80: 1.0463814,8.287419
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 81: 2.0432951,6.945241
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 79: 0.92909765,9.108977
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 78: 4.043461,6.0179305
+ - node:
+ cleanable: True
+ color: '#9ABB00FF'
+ id: Gib
+ decals:
+ 449: 19.008198,0.9538171
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 82: 2.49391,8.717236
+ 83: 4.099624,7.9493446
+ 84: 0.97462475,7.0111895
+ 85: 3.2385101,8.651217
+ - node:
+ cleanable: True
+ color: '#D439DBFF'
+ id: Max
+ decals:
+ 450: 13.987783,1.9440596
+ - node:
+ cleanable: True
+ color: '#6129B0FF'
+ id: Prima
+ decals:
+ 452: 8.033474,8.849318
+ - node:
+ cleanable: True
+ color: '#D48335FF'
+ id: Psyke
+ decals:
+ 451: 13,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 106: 4,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 107: 1,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 108: 4,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 99: 1,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 109: 4,2
+ 110: 4,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 111: 2,4
+ 112: 3,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 103: 2,1
+ 104: 3,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 100: 1,2
+ 101: 1,3
+ - node:
+ cleanable: True
+ color: '#FF5F6CFF'
+ id: amyjon
+ decals:
+ 563: 22,13
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: body
+ decals:
+ 157: 19,9
+ - node:
+ cleanable: True
+ color: '#9D1500FF'
+ id: engie
+ decals:
+ 448: 7.010515,0.8736541
+ - node:
+ cleanable: True
+ color: '#4D00A1FF'
+ id: matt
+ decals:
+ 86: 4.0649,9.103307
+ - node:
+ cleanable: True
+ color: '#348800FF'
+ id: prolizard
+ decals:
+ 453: 7.1689034,7.1397905
+ - node:
+ cleanable: True
+ color: '#503E005B'
+ id: splatter
+ decals:
+ 810: 2.0135477,19.99514
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridPathfinding
+ - type: RadiationGridResistance
+- proto: AirCanister
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 15.5,15.5
+ parent: 1
+- proto: AltarConvertMaint
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+- proto: Barricade
+ entities:
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 16.5,8.5
+ parent: 1
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 7.5,22.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,10.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,6.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,6.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,6.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,12.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,12.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,14.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,13.5
+ parent: 1
+- proto: Chair
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,8.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 14.5,7.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,8.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,13.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,14.5
+ parent: 1
+- proto: ChairFolding
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.59151,2.6490026
+ parent: 1
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,7.5
+ parent: 1
+- proto: ChairOfficeDark
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,1.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,26.5
+ parent: 1
+- proto: ChairOfficeLight
+ entities:
+ - uid: 201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,20.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,20.5
+ parent: 1
+- proto: ChairWood
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 1
+- proto: ClosetEmergencyN2FilledRandom
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 14.5,9.5
+ parent: 1
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 15.5,9.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 1
+- proto: ComputerBroken
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,1.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,20.5
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,25.5
+ parent: 1
+- proto: ComputerFrame
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,3.5
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,26.5
+ parent: 1
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,20.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 1
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 1
+- proto: DisposalPipeBroken
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,22.5
+ parent: 1
+- proto: DisposalTrunk
+ entities:
+ - uid: 259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,20.5
+ parent: 1
+- proto: FolderSpawner
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1
+- proto: GasMixerFlipped
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,14.5
+ parent: 1
+- proto: GasPipeBend
+ entities:
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,15.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,14.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,13.5
+ parent: 1
+- proto: GasPipeStraight
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,15.5
+ parent: 1
+- proto: GasPort
+ entities:
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,13.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,15.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,14.5
+ parent: 1
+- proto: Girder
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 15.5,8.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 15.5,27.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 1
+- proto: hydroponicsSoil
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+- proto: HydroponicsTrayEmpty
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+- proto: KitchenMicrowave
+ entities:
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 1
+- proto: LockerElectricalSupplies
+ entities:
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1
+- proto: LootSpawnerCableCoil
+ entities:
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 13.5,19.5
+ parent: 1
+- proto: LootSpawnerIndustrial
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1
+- proto: LootSpawnerIndustrialFluff
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 15.5,12.5
+ parent: 1
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 7.5,25.5
+ parent: 1
+- proto: LootSpawnerMaterials
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1
+- proto: LootSpawnerMedicalMinor
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 21.5,21.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 3.5,26.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 1
+- proto: MachineFrame
+ entities:
+ - uid: 272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,25.5
+ parent: 1
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 16.5,7.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 13.5,12.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 1
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 1
+- proto: Mattress
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 1
+- proto: OperatingTable
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 1.5,26.5
+ parent: 1
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+- proto: PosterBroken
+ entities:
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 1
+- proto: PosterContrabandAmbrosiaVulgaris
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+- proto: PosterContrabandEAT
+ entities:
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 16.5,7.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 8.5,20.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 19.5,27.5
+ parent: 1
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 19.5,26.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+- proto: Railing
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 1
+- proto: RailingCorner
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+- proto: RandomDrinkSoda
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1
+- proto: RandomFoodBakedWhole
+ entities:
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1
+- proto: RandomIngredient
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ pos: 19.5,26.5
+ parent: 1
+- proto: RandomPosterContraband
+ entities:
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 19.5,19.5
+ parent: 1
+- proto: RandomProduce
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 19.5,27.5
+ parent: 1
+- proto: RandomSnacks
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+- proto: RandomSoap
+ entities:
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 1
+- proto: RandomSpawner
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 22.5,22.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 7.5,18.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 15.5,24.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ pos: 15.5,16.5
+ parent: 1
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 1
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ pos: 9.5,24.5
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 9.5,22.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 1
+- proto: SignBiohazardMed
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 1
+- proto: SignElectricalMed
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1
+- proto: SignFlammableMed
+ entities:
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 13.5,13.5
+ parent: 1
+- proto: SignLaserMed
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 1
+- proto: SignRestroom
+ entities:
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,27.5
+ parent: 1
+- proto: SpawnMobMonkey
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+- proto: Stool
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,13.5
+ parent: 1
+- proto: Table
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 21.5,21.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,2.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,1.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,1.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,2.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,8.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 21.5,19.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 3.5,25.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 3.5,26.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 15.5,19.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 13.5,19.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1
+- proto: TableCarpet
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
+ parent: 1
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,20.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,27.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 7.5,20.5
+ parent: 1
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 7.5,19.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 1
+- proto: WallSolidRust
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,13.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,19.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 15.5,21.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 7.5,21.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 8.5,19.5
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 1
+- proto: WaterTankFull
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+- proto: Window
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 14.5,8.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 13.5,8.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,1.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,2.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,3.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,2.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,21.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,20.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,19.5
+ parent: 1
+ - uid: 243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,26.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,25.5
+ parent: 1
+...
diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml
index 6c0a209decaa..5d6cbb693057 100644
--- a/Resources/Maps/Nonstations/nukieplanet.yml
+++ b/Resources/Maps/Nonstations/nukieplanet.yml
@@ -1661,6 +1661,15 @@ entities:
- 0
- 0
- type: LoadedMap
+- proto: ActionStethoscope
+ entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ parent: 1336
+ - type: EntityTargetAction
+ originalIconColor: '#FFFFFFFF'
+ container: 1336
- proto: AirlockExternalGlassNukeopLocked
entities:
- uid: 49
@@ -6576,12 +6585,12 @@ entities:
- uid: 2031
components:
- type: Transform
- pos: 4.0109396,-12.223828
+ pos: 3.3130646,-11.479682
parent: 104
- uid: 2095
components:
- type: Transform
- pos: 4.017678,-12.520861
+ pos: 3.6099396,-11.479682
parent: 104
- proto: Bed
entities:
@@ -6656,7 +6665,7 @@ entities:
- uid: 2114
components:
- type: Transform
- pos: 5.539936,-12.489611
+ pos: 7.223599,-12.19286
parent: 104
- proto: BoxFolderBlack
entities:
@@ -6684,7 +6693,7 @@ entities:
- uid: 1844
components:
- type: Transform
- pos: 5.430561,-12.364611
+ pos: 7.629849,-12.44286
parent: 104
- proto: BoxShotgunPractice
entities:
@@ -10191,6 +10200,13 @@ entities:
- type: Transform
pos: -0.5,-1.5
parent: 104
+- proto: ChemDispenser
+ entities:
+ - uid: 2539
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 104
- proto: ChemicalPayload
entities:
- uid: 2380
@@ -10285,7 +10301,7 @@ entities:
- uid: 1738
components:
- type: Transform
- pos: 3.5009227,-11.519134
+ pos: 3.5005646,-10.854682
parent: 104
- proto: ClothingNeckScarfStripedRed
entities:
@@ -10299,8 +10315,16 @@ entities:
- uid: 1336
components:
- type: Transform
- pos: 7.5027137,-12.301802
+ pos: -2.327716,-12.470306
parent: 104
+ - type: Stethoscope
+ actionEntity: 1739
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 1739
- proto: ClothingShoesBootsSalvage
entities:
- uid: 542
@@ -10509,15 +10533,18 @@ entities:
parent: 104
- type: Fixtures
fixtures: {}
-- proto: FloraRockSolid01
+- proto: FloraRockSolid
entities:
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 13.550529,12.489372
+ parent: 104
- uid: 1707
components:
- type: Transform
pos: 5.5565968,16.377468
parent: 104
-- proto: FloraRockSolid02
- entities:
- uid: 1708
components:
- type: Transform
@@ -10528,81 +10555,72 @@ entities:
- type: Transform
pos: -1.3676796,16.13784
parent: 104
-- proto: FloraRockSolid03
- entities:
- - uid: 1706
- components:
- - type: Transform
- pos: 13.550529,12.489372
- parent: 104
-- proto: FloraTreeConifer01
+- proto: FloraTreeConifer
entities:
- - uid: 261
+ - uid: 219
components:
- type: Transform
- pos: 7.7892694,4.987089
+ pos: 5.5,4.5
parent: 104
- - uid: 275
+ - uid: 260
components:
- type: Transform
- pos: -3.80645,4.798395
+ pos: 7.7267694,7.536619
parent: 104
- - uid: 281
+ - uid: 261
components:
- type: Transform
- pos: -1.0279694,6.890992
+ pos: 7.7892694,4.987089
parent: 104
- - uid: 1619
+ - uid: 267
components:
- type: Transform
- pos: 16.10984,7.3249645
+ pos: 12.789269,3.6888618
parent: 104
- - uid: 1622
+ - uid: 268
components:
- type: Transform
- pos: 7.42463,16.597832
+ pos: -0.17814255,7.5043383
parent: 104
- - uid: 1626
+ - uid: 271
components:
- type: Transform
- pos: 11.605486,16.944057
+ pos: -1.1000175,4.26659
parent: 104
-- proto: FloraTreeConifer02
- entities:
- - uid: 219
+ - uid: 273
components:
- type: Transform
- pos: 5.5,4.5
+ pos: -2.591959,2.9214401
parent: 104
- - uid: 260
+ - uid: 275
components:
- type: Transform
- pos: 7.7267694,7.536619
+ pos: -3.80645,4.798395
parent: 104
- - uid: 267
+ - uid: 280
components:
- type: Transform
- pos: 12.789269,3.6888618
+ pos: 1.5111885,4.4898434
parent: 104
- - uid: 268
+ - uid: 281
components:
- type: Transform
- pos: -0.17814255,7.5043383
+ pos: -1.0279694,6.890992
parent: 104
- - uid: 273
+ - uid: 1035
components:
- type: Transform
- pos: -2.591959,2.9214401
+ pos: 0.74747276,19.424063
parent: 104
- - uid: 280
+ - uid: 1618
components:
- type: Transform
- pos: 1.5111885,4.4898434
+ pos: 11.32859,10.093473
parent: 104
- - uid: 1618
+ - uid: 1619
components:
- type: Transform
- pos: 11.32859,10.093473
+ pos: 16.10984,7.3249645
parent: 104
- uid: 1620
components:
@@ -10614,17 +10632,15 @@ entities:
- type: Transform
pos: 14.582346,17.286049
parent: 104
-- proto: FloraTreeConifer03
- entities:
- - uid: 271
+ - uid: 1622
components:
- type: Transform
- pos: -1.1000175,4.26659
+ pos: 7.42463,16.597832
parent: 104
- - uid: 1035
+ - uid: 1626
components:
- type: Transform
- pos: 0.74747276,19.424063
+ pos: 11.605486,16.944057
parent: 104
- uid: 1673
components:
@@ -10636,43 +10652,32 @@ entities:
- type: Transform
pos: 8.497473,19.862019
parent: 104
-- proto: FloraTreeSnow01
+- proto: FloraTreeSnow
entities:
- uid: 262
components:
- type: Transform
pos: 9.630766,6.7434845
parent: 104
-- proto: FloraTreeSnow02
- entities:
- - uid: 270
- components:
- - type: Transform
- pos: -2.3114033,5.0917635
- parent: 104
- - uid: 1630
+ - uid: 265
components:
- type: Transform
- pos: 4.558771,16.696045
+ pos: 0.24603653,5.7335367
parent: 104
-- proto: FloraTreeSnow03
- entities:
- - uid: 274
+ - uid: 269
components:
- type: Transform
- pos: -3.3325882,6.8936405
+ pos: 0.30623245,3.9068413
parent: 104
- - uid: 1629
+ - uid: 270
components:
- type: Transform
- pos: 9.924105,15.382175
+ pos: -2.3114033,5.0917635
parent: 104
-- proto: FloraTreeSnow04
- entities:
- - uid: 265
+ - uid: 274
components:
- type: Transform
- pos: 0.24603653,5.7335367
+ pos: -3.3325882,6.8936405
parent: 104
- uid: 276
components:
@@ -10684,13 +10689,6 @@ entities:
- type: Transform
pos: -3.1344147,13.722986
parent: 104
-- proto: FloraTreeSnow05
- entities:
- - uid: 269
- components:
- - type: Transform
- pos: 0.30623245,3.9068413
- parent: 104
- uid: 1627
components:
- type: Transform
@@ -10701,6 +10699,16 @@ entities:
- type: Transform
pos: 15.066191,11.052429
parent: 104
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 9.924105,15.382175
+ parent: 104
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 4.558771,16.696045
+ parent: 104
- uid: 1631
components:
- type: Transform
@@ -10780,8 +10788,6 @@ entities:
- type: Transform
pos: 22.5,-15.5
parent: 104
- - type: GravityGenerator
- charge: 100
- type: PointLight
radius: 175.75
- proto: GrenadeFlashBang
@@ -10998,7 +11004,7 @@ entities:
- uid: 1826
components:
- type: Transform
- pos: 3.4542694,-10.616036
+ pos: 3.5161896,-10.573432
parent: 104
- proto: KitchenKnife
entities:
@@ -11019,7 +11025,7 @@ entities:
- uid: 2021
components:
- type: Transform
- pos: 5.039936,-12.489611
+ pos: 3.9919167,-12.28661
parent: 104
- proto: LightPostSmall
entities:
@@ -12826,7 +12832,7 @@ entities:
- type: Transform
pos: 2.5,-12.5
parent: 104
-- proto: SignToxins2
+- proto: SignToxins
entities:
- uid: 1318
components:
@@ -13265,7 +13271,7 @@ entities:
- uid: 1151
components:
- type: Transform
- pos: -2.530845,-12.414692
+ pos: -2.702716,-12.314056
parent: 104
- proto: Table
entities:
@@ -13479,11 +13485,6 @@ entities:
- type: Transform
pos: 3.5,-15.5
parent: 104
- - uid: 1739
- components:
- - type: Transform
- pos: 5.5,-12.5
- parent: 104
- uid: 2016
components:
- type: Transform
diff --git a/Resources/Maps/Ruins/chunked_tcomms.yml b/Resources/Maps/Ruins/chunked_tcomms.yml
index d17b925bf2c2..cfddf10b8dad 100644
--- a/Resources/Maps/Ruins/chunked_tcomms.yml
+++ b/Resources/Maps/Ruins/chunked_tcomms.yml
@@ -20,15 +20,15 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAAQAAAAACAQAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABgAAAAAAAgAAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAABgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -50,24 +50,290 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 1: 2,-8
- node:
cleanable: True
color: '#FFFFFFFF'
id: Remains
decals:
0: 7,-2
+ - node:
+ color: '#75271CFF'
+ id: splatter
+ decals:
+ 2: 1.5710351,-4.3071213
+ 3: 5.6960354,-8.588371
- type: GridAtmosphere
version: 2
data:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
-- proto: ClothingHeadsetGrey
+ - type: NavMap
+- proto: AirlockEngineering
entities:
- - uid: 27
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 1
+- proto: AirlockExternal
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+- proto: ClothingHeadsetEngineering
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 4.4946365,-5.4995103
+ parent: 1
+- proto: GeneratorRTG
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 78
components:
- type: Transform
- pos: 4.4739795,-2.5042162
+ pos: 14.5,6.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 13.5,6.5
parent: 1
- proto: LootSpawnerEncryptionKey
entities:
@@ -76,6 +342,11 @@ entities:
- type: Transform
pos: 6.5,-4.5
parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 1
- proto: LootSpawnerIndustrial
entities:
- uid: 25
@@ -83,6 +354,11 @@ entities:
- type: Transform
pos: 8.5,2.5
parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
- proto: MachineFrame
entities:
- uid: 19
@@ -102,6 +378,13 @@ entities:
- type: Transform
pos: 6.5,-3.5
parent: 1
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
- proto: PosterLegitHereForYourSafety
entities:
- uid: 24
@@ -109,6 +392,13 @@ entities:
- type: Transform
pos: 7.5,-0.5
parent: 1
+- proto: RandomEngineerCorpseSpawner
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
- proto: ReinforcedGirder
entities:
- uid: 9
@@ -126,6 +416,100 @@ entities:
- type: Transform
pos: 10.5,-6.5
parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 1
+- proto: SalvageSpawnerScrapCommon75
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 1
+- proto: SalvageSpawnerScrapValuable75
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+- proto: ScrapGeneratorUraniumLeaking
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 1
- proto: SheetPlasteel1
entities:
- uid: 26
@@ -133,6 +517,20 @@ entities:
- type: Transform
pos: 2.5,-1.5
parent: 1
+- proto: SMESBasicEmpty
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+- proto: SuitStorageNTSRA
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
- proto: TelecomServer
entities:
- uid: 23
@@ -140,6 +538,13 @@ entities:
- type: Transform
pos: 8.5,-2.5
parent: 1
+- proto: TelecomServerCircuitboard
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 7.5276585,-2.4633026
+ parent: 1
- proto: UnfinishedMachineFrame
entities:
- uid: 18
@@ -169,11 +574,6 @@ entities:
- type: Transform
pos: 7.5,-0.5
parent: 1
- - uid: 6
- components:
- - type: Transform
- pos: 8.5,-0.5
- parent: 1
- uid: 7
components:
- type: Transform
@@ -214,4 +614,39 @@ entities:
- type: Transform
pos: 10.5,-3.5
parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 1
...
diff --git a/Resources/Maps/Ruins/ruined_prison_ship.yml b/Resources/Maps/Ruins/ruined_prison_ship.yml
new file mode 100644
index 000000000000..ab921840291c
--- /dev/null
+++ b/Resources/Maps/Ruins/ruined_prison_ship.yml
@@ -0,0 +1,4978 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 2: FloorFreezer
+ 4: FloorMetalFoam
+ 6: FloorReinforced
+ 98: FloorSteel
+ 5: FloorSteelCheckerLight
+ 1: FloorSteelDamaged
+ 129: Lattice
+ 130: Plating
+ 3: PlatingDamaged
+entities:
+- proto: ""
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.5625,-0.609375
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: YgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAACggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAABggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAQAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAABAAAAAAAAwAAAAACAQAAAAAEYgAAAAABYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAACYgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAwAAAAACggAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAACggAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: YgAAAAADggAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAACggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAABggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADYgAAAAADAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAQAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAggAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAAAwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAEAwAAAAACggAAAAAAAwAAAAABAwAAAAACAwAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAABggAAAAAAAQAAAAAEYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAAAQAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADYgAAAAADggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAQAAAAACYgAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAQAAAAADYgAAAAACggAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAABAQAAAAACYgAAAAADYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAADYgAAAAABYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACYgAAAAAAYgAAAAADggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEYgAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAAAAQAAAAABYgAAAAACYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACYgAAAAACggAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAABggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADBgAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-3:
+ ind: 0,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 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:
+ 95: 4,-21
+ 96: 4,-20
+ 97: 4,-19
+ 98: 3,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 61: 2,6
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 63: 1,-8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 76: 0,-13
+ 88: 1,-18
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 85: -6,-13
+ 87: -1,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 49: 1,1
+ 52: 2,4
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 68: 1,-11
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 75: 0,-16
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 50: -1,1
+ 51: -2,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 54: 1,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 53: -1,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 55: 1,3
+ 56: 1,2
+ 60: 2,5
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineE
+ decals:
+ 66: 1,-9
+ 67: 1,-10
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineE
+ decals:
+ 77: 0,-15
+ 78: 0,-14
+ 89: 1,-19
+ 90: 1,-20
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 64: 0,-8
+ 65: -1,-8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineN
+ decals:
+ 79: -1,-13
+ 80: -2,-13
+ 81: -3,-13
+ 82: -4,-13
+ 83: -5,-13
+ 91: 0,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineS
+ decals:
+ 62: 0,1
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 69: 0,-11
+ 70: -1,-11
+ 71: -2,-11
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineS
+ decals:
+ 72: -3,-16
+ 73: -2,-16
+ 74: -1,-16
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineW
+ decals:
+ 57: -1,2
+ 58: -1,3
+ 59: -2,5
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineW
+ decals:
+ 86: -6,-14
+ 92: -1,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 93: 4,-18
+ 94: 3,-21
+ - node:
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 99: 3,-19
+ - node:
+ cleanable: True
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 32: -0.83460975,-18.601887
+ 33: -0.64710975,-18.28906
+ 34: -0.80335975,-17.866747
+ 39: 0.032532215,-17.89233
+ 40: 0.22003222,-17.86105
+ 41: -0.37371778,-16.046658
+ 42: -0.5924678,-15.561777
+ 43: -0.43621778,-15.061256
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 44: -0.9518428,-15.155104
+ 45: -1.4205928,-14.920485
+ 46: -2.1549678,-15.139463
+ 47: -2.7643428,-14.889202
+ 48: -3.6237178,-15.202028
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 27: -2.8189847,-19.039845
+ 28: -2.4439847,-18.836506
+ 29: -1.9283597,-19.10241
+ 30: -1.4439847,-18.836506
+ 31: -1.0846097,-19.039845
+ - node:
+ cleanable: True
+ color: '#1D1D21FF'
+ id: i
+ decals:
+ 2: -6.1578336,-22.7679
+ 3: -6.0640836,-22.78354
+ 4: -5.9390836,-22.752258
+ 5: -5.8453336,-22.752258
+ 6: -6.1109586,-23.268421
+ 7: -6.0015836,-23.25278
+ 8: -5.9234586,-23.25278
+ 9: -5.8453336,-23.25278
+ 10: -6.0015836,-23.706377
+ 11: -5.8765836,-23.706377
+ 12: -5.7828336,-23.706377
+ 13: -6.1422086,-23.706377
+ 14: -6.8140836,-23.675095
+ 15: -6.7047086,-23.675095
+ 16: -6.9547086,-23.675095
+ 17: -7.1265836,-23.675095
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#1D1D21FF'
+ id: i
+ decals:
+ 18: -7.0015836,-23.659454
+ 19: -6.7828336,-23.690737
+ 20: -6.0797086,-23.72202
+ 21: -5.7984586,-23.768944
+ 22: -5.9547086,-23.315346
+ 23: -6.0797086,-22.752258
+ 24: -5.9078336,-22.78354
+ 25: -6.0953336,-23.299704
+ - node:
+ cleanable: True
+ color: '#500000FF'
+ id: splatter
+ decals:
+ 26: -3.469792,-19.956484
+ 35: -2.8274255,-20.432554
+ 36: -0.32533944,-26.16806
+ 37: -4.212329,-15.119475
+ 38: -0.07861769,4.1256695
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 13104
+ 1: 34816
+ 0,-1:
+ 0: 4369
+ 1: 16384
+ -1,0:
+ 0: 34944
+ 1: 512
+ 0,1:
+ 0: 14327
+ -1,1:
+ 0: 52428
+ 0,2:
+ 0: 1
+ 1: 8
+ -1,2:
+ 0: 12
+ 1: 2
+ -1,-1:
+ 1: 16384
+ -3,-4:
+ 0: 2048
+ -2,-4:
+ 0: 53198
+ 1: 1
+ -2,-5:
+ 1: 5188
+ 0: 59520
+ -2,-3:
+ 1: 33793
+ 0: 2180
+ -1,-4:
+ 0: 65527
+ 2: 8
+ -1,-3:
+ 0: 61426
+ 1: 4096
+ -1,-2:
+ 1: 2
+ 0: 12
+ 0,-4:
+ 0: 57309
+ 0,-3:
+ 0: 13112
+ 3: 2176
+ 0,-2:
+ 0: 4355
+ 1: 8
+ 0,-5:
+ 0: 7099
+ 1,-4:
+ 0: 32631
+ 1,-3:
+ 3: 272
+ 0: 4
+ 1: 1024
+ 2,-4:
+ 1: 1
+ 0: 768
+ 2,-3:
+ 1: 1
+ 2,-5:
+ 1: 4096
+ -2,-8:
+ 1: 14608
+ -2,-7:
+ 0: 16243
+ -2,-6:
+ 0: 238
+ 1: 16384
+ -1,-8:
+ 1: 4366
+ 0: 52784
+ -1,-7:
+ 0: 65484
+ 1: 48
+ -1,-6:
+ 0: 45311
+ 1: 2048
+ -1,-5:
+ 0: 4095
+ 0,-8:
+ 1: 15
+ 0: 65280
+ 0,-7:
+ 0: 65521
+ 0,-6:
+ 0: 45823
+ 1,-7:
+ 0: 8176
+ 1,-6:
+ 0: 255
+ 2: 4096
+ 1: 16384
+ 1,-5:
+ 2: 1
+ 0: 272
+ 1: 1092
+ 1,-8:
+ 1: 57344
+ 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
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: ActionToggleInternals
+ entities:
+ - uid: 624
+ components:
+ - type: Transform
+ parent: 623
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 623
+- proto: AirCanister
+ entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+- proto: AirlockAssemblySecurityGlass
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+- proto: AirlockFreezer
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-13.5
+ parent: 2
+- proto: AirlockMedical
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
+ parent: 2
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 2
+- proto: AirlockSecurityLocked
+ entities:
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+- proto: APCBasic
+ entities:
+ - uid: 305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 2
+ - type: BatterySelfRecharger
+ autoRechargeRate: 50000
+ autoRecharge: True
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+- proto: Ash
+ entities:
+ - uid: 445
+ components:
+ - type: Transform
+ pos: -6.195281,-26.437138
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ pos: -3.203737,-25.202763
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: -1.3359063,-27.327763
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ pos: -1.0546563,-25.077763
+ parent: 2
+ - uid: 453
+ components:
+ - type: Transform
+ pos: -0.03366363,-22.432955
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: -2.6510031,-18.54101
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: -3.2283134,-9.365705
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: -2.3064384,-8.334455
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: -0.00895834,7.122772
+ parent: 2
+- proto: Ashtray
+ entities:
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 4.5108266,-14.346764
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 1.3899925,3.382719
+ parent: 2
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -8.5,-13.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 2
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-9.5
+ parent: 2
+- proto: Bed
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+- proto: BedsheetMedical
+ entities:
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+- proto: BlastDoor
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+- proto: BlastDoorFrame
+ entities:
+ - uid: 373
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-21.5
+ parent: 2
+- proto: BlastDoorOpen
+ entities:
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+- proto: BookSpaceLaw
+ entities:
+ - uid: 516
+ components:
+ - type: Transform
+ pos: -3.4286723,-13.415376
+ parent: 2
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 256
+ components:
+ - type: MetaData
+ desc: a sign below it reads 'IN CASE OF PRISONER MUTINY PRESS THIS'
+ name: Emergency Bridge Lockdown
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 387
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: Transform
+ pos: -5.5,-25.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 2.5,-29.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 0.5,-29.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 3.5,-29.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+- proto: CableHVStack1
+ entities:
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 0.13673306,-29.357548
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 1.5,-28.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 0.5,-26.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -1.5,-29.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 4.5,-19.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+- proto: CannabisSeeds
+ entities:
+ - uid: 483
+ components:
+ - type: Transform
+ pos: -2.0755308,-23.311163
+ parent: 2
+- proto: CarpetBlack
+ entities:
+ - uid: 663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 2
+- proto: Chair
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 2
+- proto: ChairOfficeDark
+ entities:
+ - uid: 273
+ components:
+ - type: Transform
+ pos: -2.423964,-17.38368
+ parent: 2
+- proto: ChairPilotSeat
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 2
+- proto: CigaretteSyndicate
+ entities:
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 6.8286705,-25.253609
+ parent: 2
+- proto: CigarGold
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 4.7982235,-14.428652
+ parent: 2
+- proto: ClosetWall
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 285
+ - 283
+ - 278
+ - 274
+ - 297
+ - 299
+- proto: ClothingBackpackDuffelSyndicate
+ entities:
+ - uid: 385
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHandsGlovesCombat
+ entities:
+ - uid: 215
+ components:
+ - type: Transform
+ parent: 196
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHelmetSwat
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 3.59788,-18.369648
+ parent: 2
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 4.559528,-9.526169
+ parent: 2
+- proto: ClothingMaskGasSyndicate
+ entities:
+ - uid: 383
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Coal1
+ entities:
+ - uid: 389
+ components:
+ - type: Transform
+ pos: -5.891542,-22.484156
+ parent: 2
+- proto: ComputerAlert
+ entities:
+ - uid: 252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 2
+- proto: computerBodyScanner
+ entities:
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 2
+- proto: ComputerBroken
+ entities:
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: MetaData
+ name: Broken shuttle console
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 272
+ components:
+ - type: MetaData
+ name: Broken Criminal Records computer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 2
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 2
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 2
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 2
+- proto: ComputerRadar
+ entities:
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ anchored: True
+ pos: 4.5,-20.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ 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:
+ - 269
+ - 383
+ - 385
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CratePermaEscapeSpawner
+ entities:
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 3.5,-26.5
+ parent: 2
+- proto: CurtainsRed
+ entities:
+ - uid: 431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 2
+- proto: DeskBell
+ entities:
+ - uid: 633
+ components:
+ - type: Transform
+ pos: -1.466649,-17.43652
+ parent: 2
+- proto: DrinkMug
+ entities:
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 3.4327016,-14.253014
+ parent: 2
+- proto: EmergencyLight
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-19.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-26.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+- proto: EmergencyOxygenTank
+ entities:
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 4.497028,-9.338669
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 624
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 624
+- proto: EphedrineChemistryBottle
+ entities:
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 1.2954173,-7.5306168
+ parent: 2
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-16.5
+ parent: 2
+- proto: ExtinguisherCabinetOpen
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-27.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+- proto: FirelockGlass
+ entities:
+ - uid: 707
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+- proto: FlashlightSeclite
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ parent: 511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FlippoLighter
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 0.6057625,-25.265987
+ parent: 2
+- proto: FloorDrain
+ entities:
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorTileItemSteel
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.6513882,-25.21156
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3642368,-24.77406
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.8857632,-25.93031
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.63289,-27.93135
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3642368,-29.477184
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.74513817,-22.93031
+ parent: 2
+- proto: FoodBadRecipe
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.7103342,6.9647202
+ parent: 2
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 425
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 427
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRotten
+ entities:
+ - uid: 426
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 428
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodPizzaMoldySlice
+ entities:
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 3.9014516,-14.378014
+ parent: 2
+- proto: FoodPlateTrash
+ entities:
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 1.6479025,-24.275301
+ parent: 2
+- proto: ForkPlastic
+ entities:
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 1.3197775,-24.478426
+ parent: 2
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 622
+ components:
+ - type: Transform
+ pos: -3.5,-29.5
+ parent: 2
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 2
+- proto: GeneratorRTGDamaged
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 3.5,-29.5
+ parent: 2
+- proto: GrenadeFlashBang
+ entities:
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -2.5479493,-13.4216585
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+- proto: GrilleBroken
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+- proto: GunSafe
+ entities:
+ - uid: 106
+ components:
+ - type: MetaData
+ name: Energy Weapons safe
+ - type: Transform
+ anchored: True
+ pos: 4.5,-19.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ 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:
+ - 408
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: Handcuffs
+ entities:
+ - uid: 266
+ components:
+ - type: Transform
+ pos: -0.53172827,2.545515
+ parent: 2
+- proto: HandheldHealthAnalyzerUnpowered
+ entities:
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 1.5534105,-7.299921
+ parent: 2
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-18.5
+ parent: 2
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.9395652,-13.425855
+ parent: 2
+- proto: HospitalCurtains
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+- proto: HydroponicsTrayEmpty
+ entities:
+ - uid: 479
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 2
+- proto: KitchenMicrowave
+ entities:
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+- proto: LockableButtonArmory
+ entities:
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-17.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 382:
+ - Pressed: Toggle
+- proto: LockableButtonSecurity
+ entities:
+ - uid: 366
+ components:
+ - type: MetaData
+ name: prison blast doors
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 376:
+ - Pressed: Toggle
+ 374:
+ - Pressed: Toggle
+ 372:
+ - Pressed: Toggle
+ 371:
+ - Pressed: Toggle
+ 361:
+ - Pressed: Toggle
+ 368:
+ - Pressed: Toggle
+ 369:
+ - Pressed: Toggle
+ 367:
+ - Pressed: Toggle
+ 380:
+ - Pressed: Toggle
+ 379:
+ - Pressed: Toggle
+ 377:
+ - Pressed: Toggle
+ 378:
+ - Pressed: Toggle
+- proto: LockerEvidence
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+- proto: LockerFreezerBase
+ entities:
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 425
+ - 426
+ - 427
+ - 428
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+- proto: LockerSecurity
+ entities:
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 215
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - type: Lock
+ locked: False
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.48
+ - 0.25,-0.48
+ - 0.25,0.48
+ - -0.25,0.48
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 75
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: EntityStorage
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ 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:
+ - 33
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LootSpawnerRandomCrateSecurity
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
+ parent: 2
+- proto: LuxuryPen
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 1.7685776,3.576183
+ parent: 2
+- proto: MachineFrame
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-31.5
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-31.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-29.5
+ parent: 2
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 232
+ components:
+ - type: MetaData
+ desc: Well, this used to be able to make ammo...
+ name: Destroyed Security Techfab
+ - type: Transform
+ pos: 4.5,-17.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: -1.5,-29.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -0.5,-31.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -1.5,-31.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -2.5,-31.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destryoed thruster
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: MetaData
+ desc: The technology this machine once held was invaluable...
+ name: Broken body scanner
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: MetaData
+ desc: The tech this machine once held was invaluable...
+ name: Broken Cloning pod
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+- proto: MaterialGunpowder
+ entities:
+ - uid: 278
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 283
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 285
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 297
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 299
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: MedicalBed
+ entities:
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 508
+ components:
+ - type: Transform
+ pos: -0.5821552,-10.268289
+ parent: 2
+- proto: PaperOffice
+ entities:
+ - uid: 24
+ components:
+ - type: MetaData
+ name: Captain's orders
+ - type: Transform
+ pos: -0.25811195,4.835703
+ parent: 2
+ - type: Paper
+ content: >+
+ security are to preform regular searches of John Grey's cell. we have strong evidence that he is hiding something.
+
+
+ defence turrets are to be set to fire-at-will. we have received several reports from long range sensor stations of increased syndicate activity in the sector.
+
+ - uid: 260
+ components:
+ - type: MetaData
+ desc: a burned and worn piece of a diary, written in charcoal. some of it is still legible
+ name: Hastily scrawled note
+ - type: Transform
+ pos: -5.6918225,-23.565489
+ parent: 2
+ - type: Paper
+ content: >-
+ Hacks-the-doors says he can get us into the bridge if i can rush the warden's offce. the crew seems to have gotten wise, they keep searching my cell, but ive hidden everything in a secret slot in the wall between my and the diona's cells.
+
+
+ everyone is on board with the plan except that weirdo in cell four, never even speaking to anyone. fine, he can rot while we take back our freedom.
+ - uid: 268
+ components:
+ - type: MetaData
+ desc: The bottom of the page is singed off
+ name: Prisoner Manifest
+ - type: Transform
+ pos: 1.3511494,3.7201993
+ parent: 2
+ - type: Paper
+ content: >
+ NT correctional transit ship st-187 high-value prisoner transit manifest
+
+
+ John Grey - cell 1
+
+ Hacks-the-doors - cell 2
+
+ The Sapling of Destruction - cell 3
+
+ John C-
+- proto: PipeBombGunpowder
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: PlushieLizard
+ entities:
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 6.467701,-11.451192
+ parent: 2
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+- proto: PosterContrabandCybersun600
+ entities:
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 2
+- proto: PosterContrabandLustyExomorph
+ entities:
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+- proto: PosterLegit12Gauge
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 2
+- proto: PosterLegitAnatomyPoster
+ entities:
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-26.5
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-17.5
+ parent: 2
+ - uid: 661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-26.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-22.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-9.5
+ parent: 2
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-22.5
+ parent: 2
+- proto: Rack
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+- proto: RandomEngineerCorpseSpawner
+ entities:
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+- proto: RandomMedicCorpseSpawner
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+- proto: RandomPosterContraband
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 2
+- proto: RandomPosterLegit
+ entities:
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+- proto: RandomSecurityCorpseSpawner
+ entities:
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+- proto: RandomSoap
+ entities:
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+- proto: RandomSpawner100
+ entities:
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 2
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+- proto: ReinforcedGirder
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -0.5,-30.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -1.5,-30.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -3.5,-31.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-24.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 2
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+- proto: ReinforcedWindow
+ entities:
+ - uid: 198
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+- proto: SalvageHumanCorpseSpawner
+ entities:
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+- proto: SalvageLootSpawner
+ entities:
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+- proto: SalvageMobSpawner75
+ entities:
+ - uid: 521
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 1.5,-26.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 0.5,-29.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 2.5,-26.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+- proto: SalvageSpawnerScrapCommon
+ entities:
+ - uid: 706
+ components:
+ - type: Transform
+ pos: -1.5,-13.5
+ parent: 2
+- proto: SalvageSpawnerScrapCommon75
+ entities:
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-27.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-22.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-25.5
+ parent: 2
+- proto: SalvageSpawnerScrapValuable75
+ entities:
+ - uid: 465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-28.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-23.5
+ parent: 2
+- proto: ScalpelShiv
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -3.2524245,-19.35137
+ parent: 2
+- proto: ScrapCloset
+ entities:
+ - uid: 306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.689742,-26.853409
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.8192973,-15.509125
+ parent: 2
+- proto: ScrapFaxMachine
+ entities:
+ - uid: 705
+ components:
+ - type: Transform
+ pos: -0.12547827,6.420515
+ parent: 2
+- proto: ScrapFireExtinguisher
+ entities:
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.7115498,-14.995926
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.37643647,5.796526
+ parent: 2
+- proto: ScrapFirelock1
+ entities:
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 4.983548,-23.481426
+ parent: 2
+- proto: ScrapFirelock2
+ entities:
+ - uid: 280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.433796,-23.519455
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.48865283,-20.504122
+ parent: 2
+- proto: ScrapGeneratorUraniumLeaking
+ entities:
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 2
+- proto: ScrapGlass
+ entities:
+ - uid: 702
+ components:
+ - type: Transform
+ pos: -3.3567662,-17.571495
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -1.0932239,-9.317591
+ parent: 2
+- proto: ScrapMedkit
+ entities:
+ - uid: 701
+ components:
+ - type: Transform
+ pos: -1.8971674,-10.441557
+ parent: 2
+- proto: ScrapPAIGold
+ entities:
+ - uid: 704
+ components:
+ - type: Transform
+ pos: -0.65672827,2.951765
+ parent: 2
+- proto: Screwdriver
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -2.8623977,-14.451639
+ parent: 2
+- proto: ShardGlass
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.46758842,4.2362804
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5792866,7.6737804
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.1261616,5.9081554
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.6730366,5.3144054
+ parent: 2
+- proto: ShardGlassPlasma
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -0.5295793,6.567419
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -0.48270428,7.395544
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 0.39229572,7.004919
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.2199116,5.7050304
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.4855366,5.4550304
+ parent: 2
+- proto: ShardGlassReinforced
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.508602,-22.257473
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -1.659688,-9.705481
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -4.237813,-9.627356
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -3.5858517,-17.94417
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -2.1029367,-18.958366
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.6136457,-27.686813
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -2.722188,-8.705481
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -4.1327267,-18.63167
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.6917706,-29.811813
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.7714419,-23.008694
+ parent: 2
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5667706,-25.803532
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3016276,-26.287907
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.43168306,-21.852444
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.180477,-22.694973
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -2.6654367,-18.239616
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -1.5248117,-18.255241
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: -3.253438,-10.736731
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -3.534688,-8.111731
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -5.331563,-9.127356
+ parent: 2
+- proto: SheetGlass
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 4.7765174,-18.467577
+ parent: 2
+- proto: SheetPlasma
+ entities:
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 1.5424409,-29.552258
+ parent: 2
+- proto: SheetPlastic
+ entities:
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 4.3702674,-18.467577
+ parent: 2
+- proto: SignalButton
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - Pressed: Toggle
+ 73:
+ - Pressed: Toggle
+- proto: SignArmory
+ entities:
+ - uid: 630
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+- proto: SignBridge
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+- proto: SignMedical
+ entities:
+ - uid: 634
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+- proto: SignPrison
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+- proto: SignRedFour
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
+ parent: 2
+- proto: SignRedOne
+ entities:
+ - uid: 484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-21.5
+ parent: 2
+- proto: SignRedThree
+ entities:
+ - uid: 486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 2
+- proto: SignRedTwo
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-21.5
+ parent: 2
+- proto: SpawnVendingMachineRestockFoodDrink
+ entities:
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+- proto: StasisBedMachineCircuitboard
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ pos: -3.276686,-9.972807
+ parent: 2
+- proto: SubstationMachineCircuitboard
+ entities:
+ - uid: 311
+ components:
+ - type: Transform
+ pos: -1.0817939,-29.5628
+ parent: 2
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 2
+- proto: SyringeBluespace
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.37354228,-10.530617
+ parent: 2
+- proto: Table
+ entities:
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 221
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 2
+- proto: TableFrame
+ entities:
+ - uid: 476
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 2
+- proto: TableGlass
+ entities:
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+- proto: TableReinforced
+ entities:
+ - uid: 513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-13.5
+ parent: 2
+- proto: TableWood
+ entities:
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 2
+- proto: Thruster
+ entities:
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-20.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-19.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-20.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-31.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-31.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-28.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-28.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 2
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+- proto: VendingMachineCigs
+ entities:
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 2.5,-22.5
+ parent: 2
+- proto: WallReinforced
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -8.5,-12.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -6.5,-14.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 7.5,-10.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -4.5,-21.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -5.5,-21.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -3.5,-32.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 3.5,-30.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 4.5,-30.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 1.5,-30.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 4.5,-32.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 1.5,-27.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 2.5,-27.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 8.5,-27.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 8.5,-26.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 8.5,-24.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 2
+- proto: WallReinforcedRust
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-14.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-20.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-21.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-21.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-30.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-30.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-27.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-27.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-28.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-27.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-28.5
+ parent: 2
+ - uid: 167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-24.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-24.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-21.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-22.5
+ parent: 2
+ - uid: 185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 2
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 7.5,-22.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -6.5,-22.5
+ parent: 2
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 7.5,-26.5
+ parent: 2
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 267
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+- proto: WeaponDisabler
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: -2.5065405,-20.501991
+ parent: 2
+- proto: WeaponLaserGun
+ entities:
+ - uid: 408
+ components:
+ - type: Transform
+ parent: 106
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponShotgunKammerer
+ entities:
+ - uid: 269
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponTurretHostile
+ entities:
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 401
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 6.5,-28.5
+ parent: 2
+- proto: WindoorSecure
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 2
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 2
+- proto: WindowDirectional
+ entities:
+ - uid: 502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-10.5
+ parent: 2
+- proto: Wirecutter
+ entities:
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -4.360674,-13.823505
+ parent: 2
+...
diff --git a/Resources/Maps/Salvage/medium-vault-1.yml b/Resources/Maps/Salvage/medium-vault-1.yml
index 28e028b78459..7a187cb334c9 100644
--- a/Resources/Maps/Salvage/medium-vault-1.yml
+++ b/Resources/Maps/Salvage/medium-vault-1.yml
@@ -239,7 +239,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 202.38435
+ temperature: 139.98299
moles:
- 0
- 0
@@ -306,12 +306,12 @@ entities:
- type: Transform
pos: 3.5,1.5
parent: 222
-- proto: BoxShotgunFlare
+- proto: BlueprintSeismicCharge
entities:
- - uid: 25
+ - uid: 217
components:
- type: Transform
- pos: 0.5821538,-2.3847435
+ pos: 0.5,-4.518282
parent: 222
- proto: CableApcExtension
entities:
@@ -650,54 +650,48 @@ entities:
- type: Transform
pos: -1.6170431,-2.424334
parent: 222
-- proto: ClothingBackpackMerc
+- proto: ClothingBeltUtility
entities:
- - uid: 20
+ - uid: 196
components:
- type: Transform
- pos: 0.5821538,-4.4794393
+ pos: -6.516491,-5.5462
parent: 222
-- proto: ClothingBeltUtility
+- proto: ClothingNeckChameleon
entities:
- - uid: 196
+ - uid: 25
components:
- type: Transform
- pos: -6.516491,-5.5462
+ pos: -1.5,-3.5
parent: 222
-- proto: ClothingShoesBootsCombatFilled
+- proto: ClothingNeckScarfStripedSyndieGreen
entities:
- - uid: 220
+ - uid: 203
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 221
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingNeckScarfStripedSyndieRed
+ entities:
+ - uid: 204
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpskirtSyndieFormalDress
entities:
- - uid: 217
+ - uid: 205
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpsuitSyndieFormal
entities:
- - uid: 216
+ - uid: 17
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -1.5,-3.5
+ parent: 222
- proto: ComputerBroken
entities:
- uid: 48
@@ -787,11 +781,34 @@ entities:
- type: Transform
pos: -1.5,-3.5
parent: 222
+ - type: Lock
+ locked: False
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.48
+ - 0.25,-0.48
+ - 0.25,0.48
+ - -0.25,0.48
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 75
+ hard: True
+ restitution: 0
+ friction: 0.4
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 102.54218
+ temperature: 127.50272
moles:
- 0
- 0
@@ -805,20 +822,10 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 216
- - 217
- - 220
- - 221
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
- proto: MachineFrameDestroyed
entities:
- uid: 197
@@ -826,6 +833,18 @@ entities:
- type: Transform
pos: -3.5,-6.5
parent: 222
+- proto: MaterialDiamond1
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -1.390625,-4.737032
+ parent: 222
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -1.75,-4.455782
+ parent: 222
- proto: PartRodMetal1
entities:
- uid: 198
@@ -961,6 +980,13 @@ entities:
- type: Transform
pos: -6.5,4.5
parent: 222
+- proto: ResearchDisk10000
+ entities:
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -1.515625,-4.643282
+ parent: 222
- proto: SalvageCanisterSpawner
entities:
- uid: 209
@@ -968,6 +994,13 @@ entities:
- type: Transform
pos: 4.5,0.5
parent: 222
+- proto: SalvageLootSpawner
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 222
- proto: SalvageMaterialCrateSpawner
entities:
- uid: 180
@@ -1421,13 +1454,6 @@ entities:
- type: Transform
pos: -1.5,-5.5
parent: 222
-- proto: WeaponShotgunImprovisedLoaded
- entities:
- - uid: 17
- components:
- - type: Transform
- pos: -1.5115962,-4.5263143
- parent: 222
- proto: WeaponTurretHostile
entities:
- uid: 202
diff --git a/Resources/Maps/Shuttles/emergency_plasma.yml b/Resources/Maps/Shuttles/emergency_plasma.yml
index 854d87c77e17..79bd43cc5858 100644
--- a/Resources/Maps/Shuttles/emergency_plasma.yml
+++ b/Resources/Maps/Shuttles/emergency_plasma.yml
@@ -541,6 +541,7 @@ entities:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
+ - type: EmergencyShuttle
- proto: AirAlarm
entities:
- uid: 218
@@ -2180,6 +2181,66 @@ entities:
- type: Transform
pos: 11.5,-16.5
parent: 2
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 14.5,-17.5
+ parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 13.5,-17.5
+ parent: 2
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 15.5,-17.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 15.5,-18.5
+ parent: 2
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 14.5,9.5
+ parent: 2
- proto: CableHV
entities:
- uid: 459
@@ -2768,6 +2829,36 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,4.5
parent: 2
+ - uid: 1152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 1153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-17.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-18.5
+ parent: 2
- proto: ChairOfficeDark
entities:
- uid: 645
@@ -3065,29 +3156,27 @@ entities:
parent: 2
- proto: ClosetWallEmergencyFilledRandom
entities:
- - uid: 66
+ - uid: 191
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-6.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 118
+ - uid: 475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
parent: 2
- - uid: 155
+ - uid: 1159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-8.5
parent: 2
- - uid: 184
+ - uid: 1160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
+ pos: 15.5,-0.5
parent: 2
- proto: ComputerAlert
entities:
@@ -3192,6 +3281,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,8.5
parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 1165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-10.5
+ parent: 2
- proto: DoubleEmergencyNitrogenTankFilled
entities:
- uid: 635
@@ -3397,7 +3494,6 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Nitrogen
- enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- uid: 414
@@ -3407,7 +3503,6 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Oxygen
- enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasMinerNitrogen
@@ -3437,7 +3532,6 @@ entities:
inletTwoConcentration: 0.78
inletOneConcentration: 0.22
targetPressure: 4500
- enabled: True
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasOutletInjector
@@ -5055,7 +5149,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
- enabled: True
- uid: 404
components:
- type: Transform
@@ -5064,7 +5157,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
- enabled: True
- uid: 408
components:
- type: Transform
@@ -5073,7 +5165,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 303.3
- enabled: True
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentPump
@@ -6124,6 +6215,43 @@ entities:
- type: Transform
pos: 6.3648415,-19.594425
parent: 2
+- proto: Screen
+ entities:
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 15.5,-6.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 2
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 2
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
- proto: ShuttleWindow
entities:
- uid: 30
@@ -6500,115 +6628,115 @@ entities:
611:
- On: Open
- Off: Close
- 588:
+ lastSignals:
+ Status: True
+ - type: Label
+ currentLabel: Bridge Blast Doors
+ - type: NameModifier
+ baseName: signal switch
+ - uid: 607
+ components:
+ - type: MetaData
+ name: signal switch (Exterior Blast Doors)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.2,7.5
+ parent: 2
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 610:
- On: Open
- Off: Close
- 587:
+ 609:
- On: Open
- Off: Close
- 589:
+ 613:
- On: Open
- Off: Close
- 590:
+ 614:
- On: Open
- Off: Close
- 591:
+ 5:
- On: Open
- Off: Close
- 592:
+ 615:
- On: Open
- Off: Close
- 593:
+ 616:
- On: Open
- Off: Close
- 595:
+ 617:
- On: Open
- Off: Close
- 596:
+ 618:
- On: Open
- Off: Close
- 597:
+ 621:
- On: Open
- Off: Close
- 598:
+ 622:
- On: Open
- Off: Close
- 599:
+ 623:
- On: Open
- Off: Close
- 600:
+ 625:
- On: Open
- Off: Close
- 601:
+ 626:
- On: Open
- Off: Close
- 602:
+ 587:
- On: Open
- Off: Close
- 603:
+ 588:
- On: Open
- Off: Close
- 594:
+ 589:
- On: Open
- Off: Close
- lastSignals:
- Status: True
- - type: Label
- currentLabel: Bridge Blast Doors
- - type: NameModifier
- baseName: signal switch
- - uid: 607
- components:
- - type: MetaData
- name: signal switch (Exterior Blast Doors)
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.2,7.5
- parent: 2
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 610:
+ 590:
- On: Open
- Off: Close
- 609:
+ 591:
- On: Open
- Off: Close
- 613:
+ 592:
- On: Open
- Off: Close
- 614:
+ 593:
- On: Open
- Off: Close
- 5:
+ 594:
- On: Open
- Off: Close
- 615:
+ 595:
- On: Open
- Off: Close
- 616:
+ 596:
- On: Open
- Off: Close
- 617:
+ 597:
- On: Open
- Off: Close
- 618:
+ 598:
- On: Open
- Off: Close
- 621:
+ 599:
- On: Open
- Off: Close
- 622:
+ 600:
- On: Open
- Off: Close
- 623:
+ 601:
- On: Open
- Off: Close
- 625:
+ 602:
- On: Open
- Off: Close
- 626:
+ 603:
- On: Open
- Off: Close
lastSignals:
@@ -6665,6 +6793,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-0.5
parent: 2
+- proto: Sink
+ entities:
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 2
- proto: SodaDispenser
entities:
- uid: 212
@@ -6915,6 +7051,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,0.5
parent: 2
+ - uid: 1156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-17.5
+ parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 2
- proto: TableWood
entities:
- uid: 54
@@ -7114,20 +7262,6 @@ entities:
- type: Transform
pos: 7.5,-19.5
parent: 2
-- proto: VendingMachineWallMedical
- entities:
- - uid: 191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-13.5
- parent: 2
- - uid: 475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-13.5
- parent: 2
- proto: VendingMachineYouTool
entities:
- uid: 515
@@ -7294,12 +7428,6 @@ entities:
- type: Transform
pos: 16.5,-15.5
parent: 2
- - uid: 237
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-15.5
- parent: 2
- uid: 252
components:
- type: Transform
@@ -7780,6 +7908,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-15.5
+ parent: 2
- uid: 238
components:
- type: Transform
@@ -7803,6 +7937,7 @@ entities:
- uid: 242
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 10.5,-15.5
parent: 2
- uid: 243
diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml
index acaebac8aab9..bb07d0481304 100644
--- a/Resources/Maps/amber.yml
+++ b/Resources/Maps/amber.yml
@@ -81,59 +81,59 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: CQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAADDwAAAAAADwAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAACDwAAAAAADwAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACGgAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAABDwAAAAADDwAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDwAAAAAADwAAAAAADwAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABDwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACGgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: CQAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAABCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: IwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAAGgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAAASQAAAAACSQAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAAASQAAAAABSQAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA
+ tiles: IwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABIwAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAACCQAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAABSQAAAAAASQAAAAAAHAAAAAABHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAABKQAAAAAAKwAAAAABKwAAAAADKwAAAAADDgAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAAASQAAAAAASQAAAAABHAAAAAABHAAAAAABSQAAAAADSQAAAAAAHAAAAAADDgAAAAAAKwAAAAADKwAAAAABKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD
version: 6
-1,-4:
ind: -1,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADIwAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACIwAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACIwAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAAQAAAAADAQAAAAABAQAAAAAADgAAAAAAIwAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAIwAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAIwAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABIwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAACDgAAAAAAIwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAC
version: 6
-1,-5:
ind: -1,-5
- tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: CQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAJLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAMAAAAAABMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAMAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAADLwAAAAABLwAAAAADLwAAAAABAQAAAAADAQAAAAABAQAAAAAALwAAAAAALwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADAQAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAABLwAAAAABLwAAAAADAQAAAAADAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAALwAAAAADLwAAAAABLwAAAAABAQAAAAAAAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAAAAQAAAAACLwAAAAAALwAAAAACLwAAAAABAQAAAAABAQAAAAAAAQAAAAAALwAAAAAALwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAAAQAAAAAALwAAAAACLwAAAAAALwAAAAACAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABLwAAAAADLwAAAAABLwAAAAACAQAAAAABAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAABLwAAAAACLwAAAAAAAQAAAAACAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AQAAAAACLwAAAAABLwAAAAADLwAAAAADAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAACAQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADDgAAAAAAMQAAAAADDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: AQAAAAAALwAAAAADLwAAAAAALwAAAAACAQAAAAABAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAQAAAAAALwAAAAABLwAAAAACLwAAAAACAQAAAAADAQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABCQAAAAACCQAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABMQAAAAABMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAABCQAAAAACCQAAAAAACAAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAACQAAAAAD
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAACCQAAAAACCQAAAAADCAAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABCQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: MwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADCQAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAADOAAAAAAAOAAAAAACOAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACAAAAAAACQAAAAADCQAAAAAB
+ tiles: MwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAANwAAAAADNwAAAAABNwAAAAAANwAAAAADCQAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAANwAAAAACNwAAAAACNwAAAAADNwAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAAAOAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAOAAAAAABOAAAAAACOAAAAAAAOAAAAAAAOAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAABCAAAAAAACQAAAAACCQAAAAAB
version: 6
-2,-3:
ind: -2,-3
- tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAACHAAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAD
+ tiles: DgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAADHAAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAADHAAAAAADHAAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: DgAAAAAAHAAAAAABHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAAAHAAAAAACOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAIwAAAAADIwAAAAAA
+ tiles: DgAAAAAAHAAAAAACHAAAAAADOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAOQAAAAADOQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAB
version: 6
-2,-5:
ind: -2,-5
- tiles: CQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: DgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAC
+ tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD
version: 6
-2,1:
ind: -2,1
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAABAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAA
version: 6
-2,2:
ind: -2,2
@@ -141,31 +141,31 @@ entities:
version: 6
-3,-1:
ind: -3,-1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAABLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAACCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: CQAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAAAMwAAAAAAMwAAAAADCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAADMwAAAAACDgAAAAAACQAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAADCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAACCQAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAAAMwAAAAADDgAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAABMwAAAAABDgAAAAAACQAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAACMwAAAAABMwAAAAABCQAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAADDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAB
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAAC
version: 6
-3,-4:
ind: -3,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAC
version: 6
-3,-5:
ind: -3,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAB
version: 6
-3,0:
ind: -3,0
- tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -173,23 +173,23 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: HAAAAAABDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAC
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAD
version: 6
-4,-4:
ind: -4,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-5,-2:
ind: -5,-2
@@ -205,31 +205,31 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: IQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAADDwAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAADCQAAAAADDwAAAAAAMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDwAAAAACDwAAAAAADwAAAAABCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAA
+ tiles: IQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDwAAAAADDwAAAAADDwAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAABDwAAAAACMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAABCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: CQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADGwAAAAAADgAAAAAAGwAAAAAAAQAAAAACAQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACAQAAAAACDgAAAAAADgAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABIQAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAB
+ tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACGwAAAAAADgAAAAAAGwAAAAAAAQAAAAABAQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAAQAAAAADDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAADgAAAAAAAQAAAAACAQAAAAADAQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAC
version: 6
0,-5:
ind: 0,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAGLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAADgAAAAAALwAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAADgAAAAAALwAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
version: 6
0,2:
ind: 0,2
@@ -237,19 +237,19 @@ entities:
version: 6
1,-1:
ind: 1,-1
- tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAASgAAAAAASgAAAAACSgAAAAACSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAD
+ tiles: HgAAAAAADgAAAAAASgAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAASgAAAAAASgAAAAAASgAAAAADSgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: CQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAADCQAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABCQAAAAADDwAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAADCQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAB
+ tiles: CQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACCQAAAAABDwAAAAACCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAACQAAAAACDwAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADHAAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAC
version: 6
1,-3:
ind: 1,-3
- tiles: DgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAABJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAACIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAAQQAAAAAAQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAQQAAAAABQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
version: 6
1,-5:
ind: 1,-5
@@ -257,11 +257,11 @@ entities:
version: 6
1,0:
ind: 1,0
- tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABHAAAAAABHAAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAC
+ tiles: DgAAAAAADgAAAAAAAwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAB
version: 6
1,1:
ind: 1,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAAABAAAAAADCQAAAAAACQAAAAADCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAACRwAAAAABRwAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAABAAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACBAAAAAAACQAAAAAACQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADRwAAAAAARwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAABAAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,2:
ind: 1,2
@@ -269,55 +269,55 @@ entities:
version: 6
2,-1:
ind: 2,-1
- tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAACDwAAAAABQAAAAAAAQAAAAAABQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAACQAAAAAABQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAADQAAAAAACDwAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAADDgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAQAAAAAABQAAAAAADDwAAAAACQAAAAAAAQAAAAAADDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAAADwAAAAACQAAAAAACQAAAAAABQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAAACAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: CQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAOQAAAAAAOQAAAAACOQAAAAADOQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAADOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABOQAAAAABOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAAGgAAAAAALwAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADGgAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAABDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAACLwAAAAABCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAAADwAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAB
+ tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAAOQAAAAAAOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAABLwAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAACDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAADCQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAABQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAAQAAAAAACQAAAAAACDwAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAC
version: 6
2,-3:
ind: 2,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAADIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAACMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAACLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: CQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: CQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAAACQAAAAADBAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACRwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAACDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAAABAAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABRwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: CQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADGgAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABGgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAADGgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAAGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACGgAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAADGgAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACGgAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAABGgAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAADGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAADSAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAACSAAAAAABSAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADSQAAAAAASQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAABSAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAACSAAAAAADSAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAASAAAAAABSAAAAAACSAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAACSQAAAAAASQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAACRgAAAAABGwAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAAARgAAAAADGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,1:
ind: 3,1
@@ -329,7 +329,7 @@ entities:
version: 6
5,-2:
ind: 5,-2
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAADDgAAAAAAQAAAAAAAQAAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACQAAAAAACLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
4,0:
ind: 4,0
@@ -341,7 +341,7 @@ entities:
version: 6
6,-2:
ind: 6,-2
- tiles: QAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,-6:
ind: 1,-6
@@ -349,15 +349,15 @@ entities:
version: 6
4,-3:
ind: 4,-3
- tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAADgAAAAAARwAAAAACMwAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAACDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAACMwAAAAAARwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAAAMwAAAAAADgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAADLAAAAAAASQAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAARwAAAAABMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAACRwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAADDgAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADLAAAAAAASQAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAABAAAAAABBAAAAAAEDgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAAECQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABDgAAAAAABAAAAAACBAAAAAADDgAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAACRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,2:
ind: -4,2
@@ -377,11 +377,11 @@ entities:
version: 6
0,-6:
ind: 0,-6
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADBAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABBAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAGIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
6,-3:
ind: 6,-3
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,1:
ind: -4,1
@@ -389,7 +389,7 @@ entities:
version: 6
5,-3:
ind: 5,-3
- tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
+ tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
version: 6
-6,-5:
ind: -6,-5
@@ -397,23 +397,23 @@ entities:
version: 6
3,-6:
ind: 3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACHAAAAAADSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAADSQAAAAACHAAAAAACHAAAAAACSgAAAAADSgAAAAABSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAABSQAAAAABSQAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADLgAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAACSgAAAAACSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAABSQAAAAAASQAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAACPAAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAABPAAAAAAELAAAAAAALgAAAAAALAAAAAAAPAAAAAAFIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFPAAAAAAFIwAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAFDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAABSgAAAAAADgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: PAAAAAACIwAAAAABDgAAAAAALAAAAAAAPAAAAAACDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABRwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAABPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAACPAAAAAACLAAAAAAALgAAAAAALAAAAAAAPAAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABPAAAAAAEIwAAAAACRwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-6:
ind: 4,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAAIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAADPAAAAAAEDgAAAAAAIwAAAAACIwAAAAABDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGIwAAAAACDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAAIwAAAAACPAAAAAAEDgAAAAAAIwAAAAABIwAAAAABDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-4:
ind: 5,-4
@@ -425,7 +425,7 @@ entities:
version: 6
0,-7:
ind: 0,-7
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
1,-7:
ind: 1,-7
@@ -433,11 +433,11 @@ entities:
version: 6
-3,-6:
ind: -3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-5:
ind: -4,-5
@@ -627,12 +627,7 @@ entities:
decals:
4120: -2,-41
12339: -6,-37
- - node:
- zIndex: 2
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 12350: -4,-42
+ 20088: -4,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -641,19 +636,13 @@ entities:
4135: -13,-37
17687: -38,-53
17780: 33,0
- 19536: -8,-42
+ 20079: -8,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
4127: -2,-42
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 19588: -8,-45
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -695,12 +684,6 @@ entities:
id: BrickTileDarkLineE
decals:
12341: -6,-38
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 1438: -5,-42
- 1439: -6,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -721,13 +704,15 @@ entities:
19372: 13,26
19373: 12,26
19374: 11,26
- 19535: -7,-42
+ 20083: -7,-42
+ 20084: -6,-42
+ 20085: -5,-42
+ 20089: -8,-46
- node:
zIndex: 1
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 4128: -3,-42
19503: -36,-40
19506: -33,-40
19522: -35,-40
@@ -743,9 +728,10 @@ entities:
17783: 33,-3
17784: 33,-4
17960: 33,-2
- 19537: -8,-43
- 19538: -8,-44
19642: -13,-40
+ 20080: -8,-43
+ 20081: -8,-44
+ 20082: -8,-45
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -2021,7 +2007,7 @@ entities:
- node:
cleanable: True
zIndex: 5
- color: '#0000007F'
+ color: '#FFFFFF7F'
id: Dirt
decals:
1162: 21,-55
@@ -4940,7 +4926,6 @@ entities:
19016: 16,24
19017: 17,27
19018: 17,27
- 19019: 17,29
19020: 17,31
19021: 16,31
19022: 16,30
@@ -5180,8 +5165,6 @@ entities:
8487: -2,-38
8488: -2,-39
8489: -3,-41
- 8490: -3,-42
- 8491: -3,-42
8492: -4,-41
8496: 0,-45
8497: -1,-45
@@ -5818,7 +5801,6 @@ entities:
6358: -5,-35
6359: -4,-35
6360: -3,-41
- 6361: -3,-42
6372: 0,-29
6373: 0,-30
6374: 1,-30
@@ -6059,9 +6041,7 @@ entities:
12634: -20,-48
12635: -20,-43
12636: -15,-43
- 12637: -4,-42
12638: -5,-41
- 12645: -3,-42
12664: 10,-49
12665: 10,-54
12666: 9,-54
@@ -6318,7 +6298,6 @@ entities:
14963: 42,3
14964: 38,3
15011: -6,-41
- 15012: -4,-42
15013: -5,-40
15030: -13,12
15031: 14,12
@@ -10248,7 +10227,6 @@ entities:
13017: -9,-19
15857: -1,-20
15858: -1,-19
- 18586: 18,29
18587: 18,28
- node:
color: '#FFFFFFFF'
@@ -10323,6 +10301,7 @@ entities:
15128: -1,-51
18374: 19,-40
18415: 21,-44
+ 20074: -7,-43
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10441,7 +10420,6 @@ entities:
id: WoodTrimThinInnerSe
decals:
12111: 37,-12
- 19545: -8,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10464,9 +10442,6 @@ entities:
id: WoodTrimThinLineE
decals:
17677: -37,-55
- 19543: -8,-44
- 19544: -8,-43
- 19587: -8,-45
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10505,6 +10480,9 @@ entities:
18420: 18,-47
18421: 19,-47
18422: 20,-47
+ 20075: -6,-44
+ 20076: -5,-44
+ 20077: -4,-44
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10524,18 +10502,11 @@ entities:
12114: 37,-12
15109: -5,-43
17676: -38,-56
- 19546: -7,-42
- 19547: -6,-42
- 19548: -5,-42
- 19549: -4,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 12347: -6,-42
- 12348: -5,-42
- 12349: -4,-42
15132: 1,-54
15133: 2,-54
18378: 20,-42
@@ -11415,7 +11386,6 @@ entities:
19296: 32,18
19297: 16,19
19298: 11,22
- 19299: 17,29
- node:
cleanable: True
zIndex: 5
@@ -11924,7 +11894,7 @@ entities:
0: 7645
-5,-4:
0: 52431
- 2: 256
+ 1: 256
-4,-3:
0: 53727
-5,-3:
@@ -11939,7 +11909,7 @@ entities:
0: 65437
-4,0:
0: 13243
- 3: 2048
+ 2: 2048
-3,-4:
0: 65501
-3,-3:
@@ -11950,8 +11920,8 @@ entities:
0: 53247
-3,0:
0: 15
- 3: 13056
- 2: 3072
+ 2: 13056
+ 1: 3072
-3,-5:
0: 36863
-2,-4:
@@ -11964,7 +11934,7 @@ entities:
0: 65535
-2,0:
0: 15
- 2: 3840
+ 1: 3840
-2,-5:
0: 36349
-1,-4:
@@ -11977,7 +11947,7 @@ entities:
0: 65535
-1,0:
0: 15
- 2: 3840
+ 1: 3840
0,-4:
0: 65523
0,-3:
@@ -12012,23 +11982,23 @@ entities:
0: 56793
-2,-8:
0: 61495
- 1: 136
+ 3: 136
-2,-7:
0: 8176
-2,-6:
0: 64988
-2,-9:
0: 13299
- 1: 32768
+ 3: 32768
-1,-8:
- 1: 51
+ 3: 51
0: 63500
-1,-6:
0: 65535
-1,-5:
0: 4095
-1,-9:
- 1: 12288
+ 3: 12288
0: 35059
-1,-7:
0: 3822
@@ -12067,7 +12037,7 @@ entities:
-2,-12:
0: 64927
-2,-11:
- 0: 65503
+ 0: 65535
-2,-10:
0: 32767
-2,-13:
@@ -12089,11 +12059,11 @@ entities:
0,-9:
0: 48056
-4,-16:
- 2: 17663
+ 1: 17663
-5,-16:
- 2: 255
+ 1: 255
-4,-15:
- 2: 100
+ 1: 100
0: 45056
-5,-15:
0: 65024
@@ -12104,9 +12074,9 @@ entities:
-5,-13:
0: 53759
-4,-17:
- 2: 17663
+ 1: 17663
-3,-16:
- 2: 17
+ 1: 17
0: 52428
-3,-15:
0: 47308
@@ -12114,63 +12084,63 @@ entities:
0: 35775
-3,-17:
0: 52360
- 2: 19
+ 1: 19
-2,-16:
0: 13175
- 2: 32768
+ 1: 32768
-2,-15:
0: 64435
-2,-14:
0: 65339
-2,-17:
0: 13119
- 2: 2048
+ 1: 2048
-1,-15:
0: 65328
- 2: 8
+ 1: 8
-1,-14:
0: 65295
-1,-16:
- 2: 59392
+ 1: 59392
0,-15:
- 2: 15
+ 1: 15
0: 65280
0,-14:
0: 65295
0,-13:
0: 65535
-4,-18:
- 2: 59592
+ 1: 59592
-5,-18:
- 2: 40960
+ 1: 40960
-5,-17:
- 2: 255
+ 1: 255
-4,-20:
- 2: 51400
+ 1: 51400
-4,-21:
- 2: 51404
+ 1: 51404
-4,-19:
- 2: 51400
+ 1: 51400
-3,-18:
- 2: 12288
+ 1: 12288
0: 34952
-3,-21:
- 2: 18575
+ 1: 18575
-3,-20:
0: 2176
-3,-19:
0: 34952
-2,-20:
0: 4913
- 2: 34816
+ 1: 34816
-2,-19:
0: 15347
-2,-18:
0: 45875
- 2: 136
+ 1: 136
-2,-21:
0: 4096
- 2: 17203
+ 1: 17203
-1,-19:
0: 16
-1,-17:
@@ -12179,7 +12149,7 @@ entities:
0: 43688
-4,1:
0: 62259
- 3: 128
+ 2: 128
-5,1:
0: 43690
-4,2:
@@ -12193,14 +12163,14 @@ entities:
-4,4:
0: 21759
-3,1:
- 3: 513
- 2: 8208
+ 2: 513
+ 1: 8208
-3,2:
0: 65280
- 2: 8
+ 1: 8
-3,3:
0: 13119
- 2: 32768
+ 1: 32768
-3,4:
0: 47283
-2,1:
@@ -12208,37 +12178,37 @@ entities:
5: 1092
-2,2:
0: 65280
- 2: 10
+ 1: 10
-2,3:
0: 13
- 2: 61696
+ 1: 61696
-1,1:
- 3: 1365
+ 2: 1365
-1,2:
0: 65280
- 2: 10
+ 1: 10
-1,3:
0: 15
- 2: 5120
+ 1: 5120
-2,4:
- 2: 8
+ 1: 8
0: 16176
-1,4:
0: 61420
0,0:
0: 15
- 2: 3328
- 3: 512
+ 1: 3328
+ 2: 512
0,1:
6: 273
- 3: 3276
+ 2: 3276
0,2:
0: 65280
- 2: 6
- 3: 8
+ 1: 6
+ 2: 8
0,3:
0: 19663
- 2: 256
+ 1: 256
-5,4:
0: 62395
-4,5:
@@ -12246,29 +12216,29 @@ entities:
-5,5:
0: 8079
-4,6:
- 2: 50272
+ 1: 50272
-3,5:
0: 8099
-3,6:
0: 119
- 2: 53248
+ 1: 53248
-3,7:
- 2: 4401
+ 1: 4401
-3,8:
- 2: 4401
+ 1: 4401
-2,5:
0: 13104
- 2: 2184
+ 1: 2184
-2,6:
0: 63
- 2: 6144
+ 1: 6144
-1,6:
0: 3311
- 2: 4096
+ 1: 4096
-1,5:
0: 61038
-1,7:
- 2: 2
+ 1: 2
0,4:
0: 65535
0,5:
@@ -12277,29 +12247,29 @@ entities:
0: 36863
-8,-4:
0: 15
- 2: 768
+ 1: 768
-9,-4:
0: 26239
-8,-3:
0: 44782
-9,-3:
0: 34958
- 2: 12288
+ 1: 12288
-8,-2:
0: 65034
-9,-2:
0: 64904
- 2: 3
+ 1: 3
-8,-1:
0: 60942
-9,-1:
0: 35037
- 2: 12288
+ 1: 12288
-8,0:
0: 26190
-7,-4:
0: 17479
- 2: 256
+ 1: 256
-7,-3:
0: 65535
-7,-2:
@@ -12312,7 +12282,7 @@ entities:
0: 65359
-6,-4:
0: 15
- 2: 2304
+ 1: 2304
-6,-3:
0: 53727
-6,-2:
@@ -12322,7 +12292,8 @@ entities:
-6,-5:
0: 64511
-6,0:
- 0: 60931
+ 0: 59907
+ 7: 1024
-8,-8:
0: 65535
-8,-9:
@@ -12405,28 +12376,28 @@ entities:
0: 65262
-8,-17:
0: 24576
- 2: 206
+ 1: 206
-7,-15:
- 2: 256
+ 1: 256
-7,-16:
- 2: 238
+ 1: 238
-7,-14:
0: 58470
-6,-16:
- 2: 17663
+ 1: 17663
-6,-14:
0: 48043
-6,-17:
- 2: 17663
+ 1: 17663
-6,-15:
- 2: 196
+ 1: 196
0: 32768
-8,-20:
0: 1
- 2: 512
+ 1: 512
-8,-21:
0: 4096
- 2: 32
+ 1: 32
-9,-20:
0: 61423
-9,-19:
@@ -12434,26 +12405,26 @@ entities:
-9,-18:
0: 61423
-8,-18:
- 2: 40960
+ 1: 40960
-9,-17:
0: 65519
-7,-17:
- 2: 511
+ 1: 511
-7,-18:
- 2: 40960
+ 1: 40960
-6,-18:
- 2: 40960
+ 1: 40960
-9,0:
0: 59528
- 2: 34
+ 1: 34
-8,1:
0: 6
- 2: 24576
+ 1: 24576
-9,1:
0: 52462
- 2: 4096
+ 1: 4096
-8,2:
- 2: 2
+ 1: 2
0: 61056
-9,2:
0: 60668
@@ -12487,115 +12458,115 @@ entities:
0: 62990
-8,6:
0: 7
- 2: 1792
+ 1: 1792
-9,6:
- 2: 52288
+ 1: 52288
-8,7:
- 2: 4224
+ 1: 4224
-8,8:
- 2: 18163
+ 1: 18163
-9,7:
- 2: 64716
+ 1: 64716
-7,5:
0: 26159
-7,6:
- 2: 4368
+ 1: 4368
-7,7:
- 2: 4369
+ 1: 4369
-7,8:
- 2: 55569
+ 1: 55569
-6,5:
0: 3903
-6,6:
- 2: 16454
+ 1: 16454
-6,7:
- 2: 2
+ 1: 2
0: 35968
-6,8:
- 2: 4978
+ 1: 4978
-5,6:
0: 4369
- 2: 16452
+ 1: 16452
-5,7:
0: 14128
- 2: 8
+ 1: 8
-5,8:
0: 1
- 2: 2248
+ 1: 2248
-9,8:
- 2: 15
+ 1: 15
-8,9:
- 2: 8
+ 1: 8
-7,9:
- 2: 19038
+ 1: 19038
-7,10:
- 2: 136
+ 1: 136
-6,9:
- 2: 61440
+ 1: 61440
-6,10:
- 2: 116
+ 1: 116
-5,9:
- 2: 61440
+ 1: 61440
-5,10:
- 2: 196
+ 1: 196
-4,8:
- 2: 29456
+ 1: 29456
-4,9:
- 2: 23118
+ 1: 23118
-4,10:
- 2: 50
+ 1: 50
-12,-4:
- 2: 3712
- 3: 57344
+ 1: 3712
+ 2: 57344
-13,-4:
0: 48896
- 3: 7
- 2: 8
+ 2: 7
+ 1: 8
-12,-3:
0: 1
- 2: 62126
+ 1: 62126
-13,-3:
0: 11
- 3: 59136
- 2: 6144
+ 2: 59136
+ 1: 6144
-12,-2:
- 3: 59185
- 2: 2254
+ 2: 59185
+ 1: 2254
-13,-2:
- 3: 140
- 2: 2114
+ 2: 140
+ 1: 2114
-12,-1:
- 3: 140
- 2: 34816
+ 2: 140
+ 1: 34816
-11,-4:
- 2: 1841
- 3: 61440
+ 1: 1841
+ 2: 61440
-11,-3:
- 2: 61759
+ 1: 61759
-11,-2:
- 2: 5
+ 1: 5
0: 36352
-12,0:
- 2: 35562
+ 1: 35562
-11,-5:
- 2: 8048
+ 1: 8048
-11,-1:
0: 34958
- 2: 8704
+ 1: 8704
-10,-4:
0: 59647
- 3: 4096
+ 2: 4096
-10,-3:
- 2: 61633
+ 1: 61633
-10,-2:
0: 65280
- 2: 12
+ 1: 12
-10,-1:
0: 13311
- 2: 32768
+ 1: 32768
-10,0:
0: 13105
- 2: 34816
+ 1: 34816
-12,-8:
0: 64991
-12,-9:
@@ -12606,17 +12577,17 @@ entities:
0: 56349
-13,-7:
0: 51404
- 2: 17
+ 1: 17
-12,-6:
0: 52701
-13,-6:
0: 3838
-12,-5:
- 3: 305
- 2: 4800
+ 2: 305
+ 1: 4800
-13,-5:
- 3: 60552
- 2: 4672
+ 2: 60552
+ 1: 4672
-11,-8:
0: 65535
-11,-7:
@@ -12633,7 +12604,7 @@ entities:
0: 61695
-10,-5:
0: 3087
- 2: 256
+ 1: 256
-10,-9:
0: 65287
-12,-12:
@@ -12644,7 +12615,7 @@ entities:
0: 61058
-12,-11:
0: 4367
- 2: 1024
+ 1: 1024
-13,-11:
0: 34958
-12,-10:
@@ -12653,7 +12624,7 @@ entities:
0: 49080
-13,-9:
0: 52424
- 2: 272
+ 1: 272
-11,-10:
0: 65399
-11,-13:
@@ -12662,7 +12633,7 @@ entities:
0: 61152
-11,-11:
0: 14
- 2: 1024
+ 1: 1024
-10,-12:
0: 32738
-10,-11:
@@ -12672,7 +12643,7 @@ entities:
-10,-13:
0: 65294
-12,-15:
- 2: 3
+ 1: 3
0: 30464
-12,-14:
0: 30576
@@ -12682,173 +12653,174 @@ entities:
0: 60629
-11,-15:
0: 7936
- 2: 10
+ 1: 10
-11,-14:
0: 56799
-10,-15:
0: 3968
- 2: 2
+ 1: 2
-10,-14:
0: 61166
-10,-16:
- 2: 16384
+ 1: 16384
-10,-20:
- 2: 4
+ 1: 4
0: 3072
-10,-21:
- 2: 16512
+ 1: 17536
-10,-19:
0: 12
- 2: 1024
+ 1: 1024
-10,-18:
- 2: 4
+ 1: 4
0: 3072
-10,-17:
0: 12
+ 1: 1024
-9,-21:
0: 64170
-12,1:
- 2: 65416
+ 1: 65416
-13,1:
- 2: 65392
+ 1: 65392
-12,2:
- 3: 3840
- 2: 61440
+ 2: 3840
+ 1: 61440
-13,2:
- 3: 43008
- 2: 21026
+ 2: 43008
+ 1: 21026
-12,3:
- 3: 3855
- 2: 61440
+ 2: 3855
+ 1: 61440
-13,3:
- 3: 43016
- 2: 21026
+ 2: 43016
+ 1: 21026
-12,4:
- 3: 3855
- 2: 61440
+ 2: 3855
+ 1: 61440
-11,1:
- 2: 63265
+ 1: 63265
0: 8
-11,3:
- 2: 34560
- 3: 2048
+ 1: 34560
+ 2: 2048
-11,0:
0: 52416
-10,1:
0: 51
- 2: 47104
- 3: 16384
+ 1: 47104
+ 2: 16384
-10,3:
- 3: 49408
- 2: 4096
+ 2: 49408
+ 1: 4096
0: 140
-11,4:
- 2: 15
+ 1: 15
-10,2:
- 2: 290
+ 1: 290
0: 32960
-10,4:
- 2: 8471
- 3: 3816
+ 1: 8471
+ 2: 3816
-13,4:
- 3: 43016
- 2: 21026
+ 2: 43016
+ 1: 21026
-12,5:
- 3: 8207
- 2: 53760
+ 2: 8207
+ 1: 53760
-13,5:
- 3: 8200
- 2: 53794
+ 2: 8200
+ 1: 53794
-12,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
-12,7:
- 3: 85
- 2: 61986
+ 2: 85
+ 1: 61986
-12,8:
- 2: 127
+ 1: 127
-13,7:
- 2: 61986
- 3: 85
+ 1: 61986
+ 2: 85
-11,5:
- 2: 61952
+ 1: 61952
-11,7:
- 2: 61440
+ 1: 61440
-11,8:
- 2: 15
+ 1: 15
-11,6:
- 2: 2
+ 1: 2
-10,5:
- 2: 5760
+ 1: 5760
0: 57344
-10,7:
- 2: 61440
+ 1: 61440
-10,8:
- 2: 15
+ 1: 15
-10,6:
- 2: 6
+ 1: 6
-13,8:
- 2: 127
+ 1: 127
-16,-4:
0: 65327
-16,-5:
0: 61440
- 2: 145
+ 1: 145
-16,-3:
0: 65327
-17,-4:
0: 62578
-16,-2:
- 2: 240
+ 1: 240
-16,-1:
- 2: 35071
+ 1: 35071
-17,-1:
- 2: 255
+ 1: 255
-15,-1:
- 2: 9215
+ 1: 9215
-16,0:
- 2: 34952
+ 1: 34952
-15,-4:
0: 24576
- 2: 12
+ 1: 12
-15,-3:
- 2: 60416
+ 1: 60416
-15,-2:
- 2: 55720
+ 1: 55720
-15,-5:
- 2: 59561
+ 1: 59561
-15,0:
- 2: 8995
+ 1: 8995
-14,-4:
0: 65280
- 2: 14
+ 1: 14
-14,-3:
0: 15
- 2: 43776
+ 1: 43776
-14,-2:
- 2: 32682
+ 1: 32682
-14,-1:
- 2: 23
+ 1: 23
-14,-5:
- 2: 43695
+ 1: 43695
-16,-8:
- 2: 10098
+ 1: 10098
-16,-7:
- 2: 8995
+ 1: 8995
-16,-6:
- 2: 4083
+ 1: 4083
-17,-6:
- 2: 36848
+ 1: 36848
-17,-5:
- 2: 72
+ 1: 72
-16,-9:
- 2: 12848
+ 1: 12848
-15,-8:
0: 32631
-15,-6:
- 2: 14196
+ 1: 14196
-15,-7:
- 2: 10240
+ 1: 10240
-14,-8:
0: 30711
-14,-7:
@@ -12856,105 +12828,105 @@ entities:
-14,-6:
0: 4095
-16,-12:
- 2: 16369
+ 1: 16369
-16,-13:
- 2: 4369
- 3: 8738
+ 1: 4369
+ 2: 8738
-17,-12:
- 2: 49137
+ 1: 49137
-16,-11:
- 2: 12850
+ 1: 12850
-16,-10:
- 2: 5272
- 3: 49668
+ 1: 5272
+ 2: 49668
-15,-12:
- 2: 4083
+ 1: 4083
-15,-10:
- 2: 39248
- 3: 160
+ 1: 39248
+ 2: 160
-15,-13:
- 2: 4352
- 3: 8208
+ 1: 4352
+ 2: 8208
0: 8
-14,-12:
- 2: 3888
+ 1: 3888
0: 8
-14,-10:
- 3: 816
- 2: 1
+ 2: 816
+ 1: 1
0: 34944
-15,-9:
- 2: 8
+ 1: 8
-14,-9:
- 2: 273
- 3: 2
+ 1: 273
+ 2: 2
-14,-13:
0: 52428
-16,-16:
- 2: 319
+ 1: 319
-16,-17:
- 2: 12288
+ 1: 12288
-17,-16:
- 2: 20991
- 3: 8192
+ 1: 20991
+ 2: 8192
-16,-15:
0: 287
- 3: 4096
- 2: 8192
+ 2: 4096
+ 1: 8192
-16,-14:
- 3: 12337
- 2: 450
+ 2: 12337
+ 1: 450
-17,-15:
- 2: 33045
- 3: 12834
+ 1: 33045
+ 2: 12834
-17,-14:
- 2: 361
- 3: 45200
+ 1: 361
+ 2: 45200
-17,-13:
- 3: 43690
- 2: 4369
+ 2: 43690
+ 1: 4369
-15,-16:
- 2: 15
+ 1: 15
0: 57344
-15,-15:
0: 239
- 2: 4096
+ 1: 4096
-15,-14:
- 2: 1
+ 1: 1
0: 61120
-14,-16:
- 2: 63
+ 1: 63
0: 53248
-14,-15:
0: 3295
- 2: 4096
+ 1: 4096
-14,-14:
0: 57308
-13,-16:
- 2: 33843
+ 1: 33843
0: 4096
-13,-15:
0: 22387
-20,-4:
- 2: 52428
+ 1: 52428
-20,-5:
- 2: 52424
+ 1: 52424
-20,-3:
- 2: 52428
+ 1: 52428
-20,-2:
- 2: 2252
+ 1: 2252
-19,-4:
- 2: 29184
+ 1: 29184
-19,-3:
- 2: 31744
+ 1: 31744
-19,-2:
- 2: 29596
+ 1: 29596
-19,-1:
- 2: 206
+ 1: 206
-18,-2:
- 2: 39188
+ 1: 39188
-18,-1:
- 2: 255
+ 1: 255
-18,-4:
0: 25792
-18,-3:
@@ -12962,104 +12934,104 @@ entities:
-17,-3:
0: 628
-17,-2:
- 2: 34928
+ 1: 34928
-19,-5:
- 2: 31891
+ 1: 31891
-19,-6:
- 2: 32448
+ 1: 32448
-18,-6:
- 2: 40944
+ 1: 40944
-18,-5:
- 2: 1113
+ 1: 1113
-21,-16:
- 2: 52460
+ 1: 52460
-21,-17:
- 2: 57344
+ 1: 57344
-21,-15:
- 2: 52428
+ 1: 52428
-21,-14:
- 2: 52428
+ 1: 52428
-21,-13:
- 2: 50252
+ 1: 50252
-21,-12:
- 2: 61164
+ 1: 61164
-20,-16:
- 2: 159
- 3: 32768
+ 1: 159
+ 2: 32768
-20,-14:
- 2: 722
- 3: 32800
+ 1: 722
+ 2: 32800
-20,-17:
- 2: 32768
+ 1: 32768
-19,-16:
- 2: 4607
- 3: 40960
+ 1: 4607
+ 2: 40960
-20,-15:
- 3: 34952
+ 2: 34952
-19,-15:
- 2: 273
- 3: 47786
+ 1: 273
+ 2: 47786
-19,-14:
- 3: 45072
- 2: 481
+ 2: 45072
+ 1: 481
-20,-13:
- 3: 34952
+ 2: 34952
-19,-13:
- 2: 4369
- 3: 43690
+ 1: 4369
+ 2: 43690
-19,-17:
- 2: 45056
+ 1: 45056
-19,-12:
- 2: 49137
+ 1: 49137
-18,-16:
- 2: 4607
- 3: 40960
+ 1: 4607
+ 2: 40960
-18,-15:
- 2: 273
- 3: 47786
+ 1: 273
+ 2: 47786
-18,-14:
- 3: 45072
- 2: 481
+ 2: 45072
+ 1: 481
-18,-13:
- 2: 4369
- 3: 43690
+ 1: 4369
+ 2: 43690
-18,-17:
- 2: 45056
+ 1: 45056
-18,-12:
- 2: 49073
+ 1: 49073
-17,-17:
- 2: 45056
+ 1: 45056
1,-4:
0: 1136
- 2: 57344
+ 1: 57344
1,-2:
0: 61440
- 3: 238
+ 2: 238
1,-1:
0: 65535
1,-5:
0: 65535
1,-3:
- 2: 226
- 3: 57344
+ 1: 226
+ 2: 57344
1,0:
0: 15
- 2: 20224
+ 1: 20224
2,-4:
0: 119
- 2: 28672
+ 1: 28672
2,-3:
- 2: 25173
+ 1: 25173
2,-2:
0: 61568
- 2: 100
+ 1: 100
2,-1:
0: 32631
2,-5:
0: 65535
2,0:
0: 2063
- 2: 1792
+ 1: 1792
3,-4:
0: 4090
3,-3:
@@ -13143,9 +13115,9 @@ entities:
4,-9:
0: 16175
0,-16:
- 2: 43520
+ 1: 43520
1,-16:
- 2: 45056
+ 1: 45056
1,-15:
0: 65248
1,-14:
@@ -13172,63 +13144,63 @@ entities:
0: 2240
1,-17:
0: 12
- 2: 2048
+ 1: 2048
1,-18:
0: 32768
- 2: 136
+ 1: 136
1,-20:
- 2: 34816
+ 1: 34816
2,-19:
0: 61182
2,-21:
- 2: 7918
+ 1: 7918
0: 16384
2,-20:
0: 20196
2,-18:
0: 61166
3,-21:
- 2: 39167
+ 1: 39167
3,-18:
- 2: 58600
+ 1: 58600
3,-20:
- 2: 34952
+ 1: 34952
4,-20:
- 2: 4112
+ 1: 4112
3,-19:
- 2: 34952
+ 1: 34952
4,-19:
- 2: 4112
+ 1: 4112
4,-18:
- 2: 62960
- 3: 2560
+ 1: 62960
+ 2: 2560
1,1:
- 3: 16657
- 2: 1028
+ 2: 16657
+ 1: 1028
1,2:
0: 65280
- 3: 4
- 2: 8
+ 2: 4
+ 1: 8
1,3:
0: 14207
1,4:
0: 65535
2,1:
- 3: 1911
+ 2: 1911
2,2:
0: 65280
- 2: 4
+ 1: 4
2,3:
0: 49359
- 2: 256
+ 1: 256
2,4:
0: 65535
3,1:
- 2: 4113
+ 1: 4113
0: 52416
3,2:
0: 65484
- 2: 1
+ 1: 1
3,3:
0: 63679
3,4:
@@ -13261,25 +13233,25 @@ entities:
0: 30719
3,7:
0: 7
- 2: 17408
- 3: 32768
+ 1: 17408
+ 2: 32768
3,8:
- 2: 36452
- 3: 136
+ 1: 36452
+ 2: 136
4,4:
0: 47568
4,5:
0: 16369
4,6:
0: 13107
- 2: 8
+ 1: 8
4,7:
- 0: 887
- 3: 12288
- 2: 16384
+ 0: 823
+ 2: 12288
+ 1: 16384
4,8:
- 3: 307
- 2: 16068
+ 2: 307
+ 1: 16068
5,-4:
0: 44987
5,-3:
@@ -13326,7 +13298,7 @@ entities:
0: 15291
5,-8:
0: 13311
- 2: 32768
+ 1: 32768
5,-7:
0: 32627
5,-6:
@@ -13335,9 +13307,9 @@ entities:
0: 7974
6,-8:
0: 35067
- 2: 4096
+ 1: 4096
6,-7:
- 2: 1
+ 1: 1
0: 65416
6,-6:
0: 65520
@@ -13387,7 +13359,7 @@ entities:
0: 12275
7,-13:
0: 4113
- 2: 50176
+ 1: 50176
8,-12:
0: 65520
8,-11:
@@ -13407,50 +13379,50 @@ entities:
6,-14:
0: 15295
6,-16:
- 2: 32768
+ 1: 32768
7,-16:
- 2: 14476
- 3: 32768
+ 1: 14476
+ 2: 32768
7,-15:
0: 64432
7,-14:
0: 53247
7,-17:
- 2: 19596
+ 1: 19596
8,-16:
- 3: 4096
+ 2: 4096
8,-14:
0: 3838
8,-13:
- 2: 36906
+ 1: 36906
4,-21:
- 2: 4112
+ 1: 4112
5,-18:
- 2: 62974
- 3: 2048
+ 1: 62974
+ 2: 2048
5,-19:
- 2: 51200
+ 1: 51200
6,-19:
- 2: 4990
+ 1: 4990
6,-18:
- 2: 62960
- 3: 512
+ 1: 62960
+ 2: 512
6,-20:
- 2: 51200
+ 1: 51200
7,-20:
- 2: 65530
- 3: 4
+ 1: 65530
+ 2: 4
7,-19:
- 2: 17487
+ 1: 17487
7,-18:
- 2: 30068
- 3: 512
+ 1: 30068
+ 2: 512
7,-21:
- 2: 64256
+ 1: 64256
8,-20:
- 2: 29456
+ 1: 29456
8,-19:
- 2: 2255
+ 1: 2255
5,1:
0: 65522
5,2:
@@ -13488,7 +13460,7 @@ entities:
6,5:
0: 36848
6,6:
- 2: 2
+ 1: 2
0: 34952
6,7:
0: 140
@@ -13496,17 +13468,17 @@ entities:
0: 40952
7,6:
0: 221
- 2: 24576
+ 1: 24576
7,7:
0: 1
- 2: 2
+ 1: 2
8,4:
0: 65523
8,5:
0: 4369
8,6:
0: 3327
- 2: 4096
+ 1: 4096
9,-4:
0: 30583
9,-3:
@@ -13521,7 +13493,7 @@ entities:
0: 65339
10,-4:
0: 49425
- 2: 192
+ 1: 192
10,-3:
0: 8191
10,-2:
@@ -13534,7 +13506,7 @@ entities:
0: 48682
11,-1:
0: 59
- 2: 12288
+ 1: 12288
11,-4:
0: 59946
11,-3:
@@ -13543,13 +13515,13 @@ entities:
0: 61175
12,-4:
0: 4367
- 2: 52224
+ 1: 52224
12,-3:
0: 4353
- 2: 1028
+ 1: 1028
12,-2:
0: 4353
- 2: 52420
+ 1: 52420
9,-8:
0: 60943
9,-7:
@@ -13566,9 +13538,9 @@ entities:
0: 47291
10,-7:
0: 14
- 2: 25600
+ 1: 25600
10,-5:
- 2: 33376
+ 1: 33376
11,-8:
0: 25328
11,-7:
@@ -13579,7 +13551,7 @@ entities:
0: 58976
12,-8:
0: 4415
- 2: 51200
+ 1: 51200
12,-7:
0: 65489
12,-6:
@@ -13593,25 +13565,25 @@ entities:
9,-10:
0: 61408
9,-13:
- 2: 4096
+ 1: 4096
10,-12:
0: 4368
10,-10:
0: 48952
10,-13:
- 2: 4368
+ 1: 4368
0: 140
10,-11:
- 2: 8736
+ 1: 8736
11,-11:
0: 21776
11,-10:
0: 28455
11,-12:
- 2: 5456
+ 1: 5456
12,-12:
0: 13107
- 2: 32768
+ 1: 32768
12,-11:
0: 56785
12,-10:
@@ -13619,27 +13591,27 @@ entities:
12,-9:
0: 16157
8,-15:
- 2: 1634
+ 1: 1634
9,-14:
0: 61439
9,-15:
- 2: 17
+ 1: 17
0: 60620
9,-16:
0: 52364
9,-17:
0: 51336
- 2: 32
+ 1: 32
10,-16:
0: 56704
- 2: 2
+ 1: 2
10,-15:
0: 57309
10,-14:
0: 57297
10,-17:
- 3: 34816
- 2: 576
+ 2: 34816
+ 1: 576
11,-16:
0: 65520
11,-15:
@@ -13649,8 +13621,8 @@ entities:
11,-13:
0: 127
11,-17:
- 3: 62208
- 2: 3104
+ 2: 62208
+ 1: 3104
12,-16:
0: 56712
12,-15:
@@ -13660,36 +13632,36 @@ entities:
12,-13:
0: 47935
9,-19:
- 2: 62736
- 3: 2082
+ 1: 62736
+ 2: 2082
9,-20:
- 3: 3136
+ 2: 3136
9,-18:
- 2: 2126
+ 1: 2126
10,-20:
- 2: 1792
+ 1: 1792
10,-18:
- 2: 25862
+ 1: 25862
11,-20:
- 3: 13056
- 2: 50304
+ 2: 13056
+ 1: 50304
11,-19:
- 3: 30583
- 2: 8
+ 2: 30583
+ 1: 8
11,-18:
- 3: 375
- 2: 17920
+ 2: 375
+ 1: 17920
11,-21:
- 2: 6513
- 3: 142
+ 1: 6513
+ 2: 142
12,-20:
- 3: 13107
+ 2: 13107
12,-19:
- 2: 5633
- 3: 24610
+ 1: 5633
+ 2: 24610
12,-18:
- 2: 17425
- 3: 8366
+ 1: 17425
+ 2: 8366
9,1:
0: 8083
9,2:
@@ -13698,7 +13670,7 @@ entities:
0: 65339
10,1:
0: 9010
- 2: 2176
+ 1: 2176
10,2:
0: 56575
10,3:
@@ -13708,38 +13680,38 @@ entities:
11,0:
0: 32624
11,1:
- 2: 16
+ 1: 16
0: 57344
11,2:
0: 65535
11,3:
0: 271
12,0:
- 2: 51393
+ 1: 51393
0: 768
- 3: 1024
+ 2: 1024
12,1:
- 2: 49665
+ 1: 49665
12,2:
0: 30577
12,3:
0: 7
- 2: 17408
+ 1: 17408
9,6:
0: 119
- 2: 8192
+ 1: 8192
9,5:
0: 28398
10,4:
0: 62256
- 2: 128
+ 1: 128
10,5:
0: 511
- 2: 49152
+ 1: 49152
10,6:
- 2: 3
+ 1: 3
11,4:
- 2: 80
+ 1: 80
0: 61440
11,5:
0: 44799
@@ -13747,661 +13719,661 @@ entities:
0: 170
12,4:
0: 61440
- 2: 68
+ 1: 68
12,5:
0: 241
- 2: 24576
+ 1: 24576
12,-1:
- 2: 4
+ 1: 4
13,-4:
0: 1
- 2: 64
+ 1: 64
13,-2:
- 2: 4080
+ 1: 4080
13,-5:
0: 62451
14,-2:
- 2: 20478
+ 1: 20478
14,-5:
0: 12336
14,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
14,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
15,-2:
- 2: 20478
+ 1: 20478
15,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
15,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
16,-2:
- 2: 20478
+ 1: 20478
13,-8:
0: 3
- 2: 17476
+ 1: 17476
13,-7:
0: 62448
13,-6:
0: 65523
13,-9:
- 2: 16388
+ 1: 16388
0: 257
14,-7:
0: 12336
14,-6:
- 2: 8224
+ 1: 8224
13,-12:
- 2: 64512
+ 1: 64512
13,-11:
0: 65520
13,-10:
0: 4607
- 2: 49152
+ 1: 49152
13,-13:
0: 13075
- 2: 2176
+ 1: 2176
14,-12:
- 2: 36864
+ 1: 36864
0: 238
14,-11:
0: 4368
- 3: 19656
- 2: 32768
+ 2: 19656
+ 1: 32768
14,-10:
0: 17
- 3: 2188
- 2: 64
+ 2: 2188
+ 1: 64
14,-13:
0: 58606
15,-11:
- 3: 401
- 2: 4710
+ 2: 401
+ 1: 4710
15,-10:
- 3: 48
- 2: 3784
+ 2: 48
+ 1: 3784
15,-12:
- 2: 8712
+ 1: 8712
15,-13:
- 2: 52832
+ 1: 52832
16,-12:
- 2: 8435
- 3: 35328
+ 1: 8435
+ 2: 35328
16,-11:
- 3: 10937
- 2: 36864
+ 2: 10937
+ 1: 36864
0: 1024
16,-10:
- 3: 383
- 2: 2176
+ 2: 383
+ 1: 2176
12,-17:
0: 34880
- 2: 162
+ 1: 162
13,-16:
0: 4353
- 2: 17408
+ 1: 17408
13,-15:
0: 12561
- 2: 2116
+ 1: 2116
13,-14:
0: 48123
13,-17:
0: 4096
- 3: 16
- 2: 230
+ 2: 16
+ 1: 230
14,-14:
0: 65535
14,-16:
- 2: 28
+ 1: 28
0: 8192
14,-17:
- 2: 4096
- 3: 2
+ 1: 4096
+ 2: 2
14,-15:
0: 57890
15,-16:
- 2: 32775
- 3: 2176
+ 1: 32775
+ 2: 2176
15,-14:
0: 10016
15,-15:
- 2: 28360
+ 1: 28360
15,-17:
- 2: 34944
+ 1: 34944
16,-16:
- 3: 61105
- 2: 14
+ 2: 61105
+ 1: 14
16,-15:
- 3: 119
+ 2: 119
16,-13:
- 2: 4098
+ 1: 4098
12,-21:
- 2: 20480
- 3: 8977
+ 1: 20480
+ 2: 8977
13,-18:
- 3: 8448
- 2: 4096
+ 2: 8448
+ 1: 4096
14,-19:
- 2: 14540
+ 1: 14540
14,-18:
- 2: 21789
- 3: 2
+ 1: 21789
+ 2: 2
14,-20:
- 2: 60416
- 3: 192
+ 1: 60416
+ 2: 192
15,-19:
- 3: 57102
- 2: 8192
+ 2: 57102
+ 1: 8192
15,-18:
- 3: 19
- 2: 32780
+ 2: 19
+ 1: 32780
15,-21:
- 3: 7680
+ 2: 7680
0: 64
15,-20:
- 3: 3686
+ 2: 3686
16,-20:
- 3: 63235
- 2: 2216
+ 2: 63235
+ 1: 2216
16,-19:
- 3: 48031
+ 2: 48031
16,-18:
- 3: 139
- 2: 31744
+ 2: 139
+ 1: 31744
16,-17:
- 3: 49022
- 2: 16384
+ 2: 49022
+ 1: 16384
13,0:
- 2: 20288
+ 1: 20288
13,2:
- 2: 65280
+ 1: 65280
14,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
14,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
14,3:
- 2: 14
+ 1: 14
15,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
15,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
15,3:
- 2: 14
+ 1: 14
16,0:
- 2: 19264
- 3: 1038
+ 1: 19264
+ 2: 1038
16,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
12,6:
- 2: 2
+ 1: 2
16,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
17,-2:
- 2: 20478
+ 1: 20478
17,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
17,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
17,-3:
- 2: 32768
+ 1: 32768
18,-3:
- 2: 14316
+ 1: 14316
18,-2:
- 2: 59185
+ 1: 59185
18,-1:
- 2: 34956
+ 1: 34956
18,-4:
- 2: 32768
+ 1: 32768
19,-4:
- 2: 14316
+ 1: 14316
19,-3:
- 2: 1
+ 1: 1
19,-1:
- 2: 4407
+ 1: 4407
18,0:
- 2: 44456
- 3: 512
+ 1: 44456
+ 2: 512
19,0:
- 2: 13105
+ 1: 13105
19,-2:
- 2: 60544
+ 1: 60544
19,-5:
- 2: 32896
+ 1: 32896
20,-2:
- 2: 311
+ 1: 311
20,-7:
- 3: 24576
+ 2: 24576
19,-7:
- 2: 32768
+ 1: 32768
20,-6:
- 2: 16912
- 3: 36078
+ 1: 16912
+ 2: 36078
19,-6:
- 2: 200
+ 1: 200
20,-5:
- 2: 784
- 3: 60552
+ 1: 784
+ 2: 60552
20,-4:
- 3: 18022
+ 2: 18022
21,-6:
- 3: 18367
- 2: 2048
+ 2: 18367
+ 1: 2048
21,-5:
- 3: 55735
- 2: 8
+ 2: 55735
+ 1: 8
21,-8:
- 2: 546
- 3: 34952
+ 1: 546
+ 2: 34952
21,-7:
- 3: 34958
- 2: 512
+ 2: 34958
+ 1: 512
21,-4:
- 3: 31612
+ 2: 31612
21,-9:
- 3: 36352
- 2: 231
+ 2: 36352
+ 1: 231
22,-8:
- 3: 57339
- 2: 4
+ 2: 57339
+ 1: 4
22,-7:
- 3: 4271
- 2: 57600
+ 2: 4271
+ 1: 57600
22,-6:
- 3: 60621
- 2: 16
+ 2: 60621
+ 1: 16
22,-5:
- 2: 1
- 3: 65534
+ 1: 1
+ 2: 65534
22,-9:
- 3: 40908
- 2: 16434
+ 2: 40908
+ 1: 16434
22,-4:
- 3: 15031
- 2: 8
+ 2: 15031
+ 1: 8
23,-8:
- 3: 65295
+ 2: 65295
23,-7:
- 2: 13056
- 3: 52462
+ 1: 13056
+ 2: 52462
23,-6:
- 3: 34511
- 2: 2096
+ 2: 34511
+ 1: 2096
23,-5:
- 3: 52215
- 2: 12288
+ 2: 52215
+ 1: 12288
0: 1024
23,-9:
- 3: 60943
+ 2: 60943
0: 144
23,-4:
- 3: 4
- 2: 336
+ 2: 4
+ 1: 336
24,-8:
- 3: 4899
+ 2: 4899
24,-7:
- 3: 4371
+ 2: 4371
24,-6:
- 3: 275
- 2: 4640
+ 2: 275
+ 1: 4640
16,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
16,3:
- 2: 14
+ 1: 14
17,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
17,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
17,3:
- 2: 14
+ 1: 14
18,2:
- 2: 65416
+ 1: 65416
18,1:
- 2: 34952
+ 1: 34952
19,1:
- 2: 4369
+ 1: 4369
19,2:
- 2: 13073
+ 1: 13073
18,3:
- 2: 8
+ 1: 8
19,3:
- 2: 3
+ 1: 3
24,-9:
- 3: 12545
+ 2: 12545
0: 16
4,-24:
- 2: 13107
+ 1: 13107
4,-25:
- 2: 4096
+ 1: 4096
3,-24:
- 2: 224
- 3: 12567
+ 1: 224
+ 2: 12567
4,-23:
- 2: 4915
+ 1: 4915
3,-23:
- 3: 4415
- 2: 34816
+ 2: 4415
+ 1: 34816
4,-22:
- 2: 4369
+ 1: 4369
3,-22:
- 2: 35016
- 3: 1
+ 1: 35016
+ 2: 1
8,-21:
- 2: 4352
+ 1: 4352
17,-12:
- 3: 53248
- 2: 11980
+ 2: 53248
+ 1: 11980
17,-11:
- 3: 40129
- 2: 24588
+ 2: 40129
+ 1: 24588
17,-10:
- 2: 199
+ 1: 199
17,-13:
- 2: 17476
+ 1: 17476
18,-12:
- 3: 61426
- 2: 4096
+ 2: 61426
+ 1: 4096
18,-11:
- 3: 30591
+ 2: 30591
18,-10:
- 2: 112
+ 1: 112
18,-13:
- 2: 51336
+ 1: 51336
19,-12:
- 3: 65520
+ 2: 65520
19,-11:
- 3: 32766
- 2: 32768
+ 2: 32766
+ 1: 32768
19,-13:
- 2: 4096
+ 1: 4096
19,-10:
- 3: 2
+ 2: 2
20,-12:
- 3: 4352
- 2: 8940
+ 2: 4352
+ 1: 8940
20,-11:
- 3: 32784
- 2: 14790
+ 2: 32784
+ 1: 14790
11,-23:
- 3: 49152
+ 2: 49152
11,-22:
- 3: 43148
- 2: 1088
+ 2: 43148
+ 1: 1088
12,-23:
- 3: 4096
+ 2: 4096
12,-22:
- 3: 273
+ 2: 273
-4,-24:
- 3: 238
- 2: 19456
+ 2: 238
+ 1: 19456
-4,-25:
- 3: 57344
+ 2: 57344
-4,-23:
- 2: 52292
- 3: 128
+ 1: 52292
+ 2: 128
-4,-22:
- 2: 52428
+ 1: 52428
-3,-24:
- 2: 487
- 3: 63000
+ 1: 487
+ 2: 63000
-3,-23:
- 3: 51071
- 2: 4096
+ 2: 51071
+ 1: 4096
-3,-25:
- 2: 11840
- 3: 49152
+ 1: 11840
+ 2: 49152
-3,-22:
- 3: 4
- 2: 34816
+ 2: 4
+ 1: 34816
-2,-24:
- 3: 49147
+ 2: 49147
-2,-23:
- 3: 49416
- 2: 13024
+ 2: 49416
+ 1: 13024
-2,-22:
- 2: 13106
- 3: 68
+ 1: 13106
+ 2: 68
-2,-25:
- 3: 34816
- 2: 640
+ 2: 34816
+ 1: 640
-1,-24:
- 3: 65535
+ 2: 65535
-1,-23:
- 2: 248
- 3: 39426
+ 1: 248
+ 2: 39426
-1,-22:
- 2: 48
- 3: 32974
+ 1: 48
+ 2: 32974
-1,-25:
- 3: 7492
- 2: 178
+ 2: 7492
+ 1: 178
0,-24:
- 3: 30481
- 2: 35054
+ 2: 30481
+ 1: 35054
0,-23:
- 2: 58
- 3: 57284
+ 1: 58
+ 2: 57284
0,-22:
- 3: 29439
+ 2: 29439
-16,8:
- 2: 204
+ 1: 204
-16,7:
- 2: 51336
+ 1: 51336
-15,8:
- 2: 31
+ 1: 31
-15,7:
- 2: 61713
+ 1: 61713
-14,8:
- 2: 127
+ 1: 127
-14,7:
- 2: 61986
- 3: 85
+ 1: 61986
+ 2: 85
-3,9:
- 2: 18
+ 1: 18
-16,2:
- 2: 52360
+ 1: 52360
-16,3:
- 2: 52364
+ 1: 52364
-16,4:
- 2: 52364
+ 1: 52364
-16,1:
- 2: 34952
+ 1: 34952
-15,1:
- 2: 65315
+ 1: 65315
-15,2:
- 2: 61713
- 3: 2048
+ 1: 61713
+ 2: 2048
-15,3:
- 2: 61713
- 3: 2056
+ 1: 61713
+ 2: 2056
-15,4:
- 2: 61713
- 3: 2056
+ 1: 61713
+ 2: 2056
-14,1:
- 2: 65280
+ 1: 65280
-14,2:
- 3: 36608
- 2: 28672
+ 2: 36608
+ 1: 28672
-14,3:
- 3: 36623
- 2: 28672
+ 2: 36623
+ 1: 28672
-14,4:
- 3: 36623
- 2: 28672
+ 2: 36623
+ 1: 28672
0,-21:
- 3: 2
+ 2: 2
0,-25:
- 2: 43679
- 3: 256
+ 1: 43679
+ 2: 256
1,-24:
- 2: 547
- 3: 60620
+ 1: 547
+ 2: 60620
1,-23:
- 3: 52730
+ 2: 52730
1,-22:
- 2: 96
+ 1: 96
1,-25:
- 2: 8449
- 3: 50910
+ 1: 8449
+ 2: 50910
2,-24:
- 3: 61438
+ 2: 61438
2,-23:
- 3: 32552
+ 2: 32552
2,-22:
- 3: 231
- 2: 60928
+ 2: 231
+ 1: 60928
2,-25:
- 3: 24576
- 2: 3329
+ 2: 24576
+ 1: 3329
24,-10:
- 3: 4096
+ 2: 4096
23,-10:
- 2: 52851
- 3: 12288
+ 1: 52851
+ 2: 12288
-16,5:
- 2: 52364
+ 1: 52364
-16,6:
- 2: 34956
+ 1: 34956
-15,5:
- 2: 46353
- 3: 16392
+ 1: 46353
+ 2: 16392
-15,6:
- 2: 4373
+ 1: 4373
-14,5:
- 3: 8207
- 2: 53760
+ 2: 8207
+ 1: 53760
-14,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
-13,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
20,-13:
- 2: 12850
- 3: 257
+ 1: 12850
+ 2: 257
20,-10:
- 2: 35879
- 3: 8
+ 1: 35879
+ 2: 8
21,-12:
- 2: 52851
+ 1: 52851
21,-11:
- 2: 264
- 3: 4096
+ 1: 264
+ 2: 4096
21,-10:
- 3: 33
- 2: 29124
+ 2: 33
+ 1: 29124
22,-12:
- 2: 4096
+ 1: 4096
22,-11:
- 2: 52851
+ 1: 52851
22,-10:
- 2: 52792
+ 1: 52792
23,-11:
- 2: 4096
+ 1: 4096
16,-21:
- 3: 48058
+ 2: 48058
16,-14:
- 2: 2
+ 1: 2
17,-16:
- 2: 1
- 3: 65534
+ 1: 1
+ 2: 65534
17,-15:
- 3: 34021
- 2: 25360
+ 2: 34021
+ 1: 25360
17,-17:
- 3: 65505
+ 2: 65505
17,-14:
- 2: 17612
+ 1: 17612
18,-16:
- 3: 62463
- 2: 3072
+ 2: 62463
+ 1: 3072
18,-15:
- 3: 45055
- 2: 20480
+ 2: 45055
+ 1: 20480
18,-14:
- 2: 35226
+ 1: 35226
18,-17:
- 3: 63482
+ 2: 63482
19,-16:
- 2: 4352
+ 1: 4352
19,-15:
- 3: 273
+ 2: 273
0: 4096
- 2: 25088
+ 1: 25088
19,-14:
- 2: 2671
- 3: 128
+ 1: 2671
+ 2: 128
20,-14:
- 2: 12816
- 3: 256
+ 1: 12816
+ 2: 256
17,-20:
- 3: 34989
- 2: 22032
+ 2: 34989
+ 1: 22032
17,-19:
- 2: 34055
- 3: 2240
+ 1: 34055
+ 2: 2240
17,-18:
- 2: 28417
- 3: 16
+ 1: 28417
+ 2: 16
17,-21:
- 3: 56817
- 2: 4
+ 2: 56817
+ 1: 4
18,-20:
- 3: 65527
+ 2: 65527
18,-19:
- 3: 56784
+ 2: 56784
18,-18:
- 2: 1999
- 3: 61440
+ 1: 1999
+ 2: 61440
18,-21:
- 3: 12544
+ 2: 12544
19,-19:
- 3: 4384
+ 2: 4384
19,-18:
- 2: 4097
- 3: 34
+ 1: 4097
+ 2: 34
19,-17:
- 2: 256
+ 1: 256
16,-22:
- 2: 3168
- 3: 32768
+ 1: 3168
+ 2: 32768
17,-22:
- 3: 12288
+ 2: 12288
20,-3:
- 2: 60544
- 3: 8
+ 1: 60544
+ 2: 8
21,-3:
- 3: 127
- 2: 256
+ 2: 127
+ 1: 256
22,-3:
- 3: 37
+ 2: 37
-1,-26:
- 2: 24576
+ 1: 24576
0,-26:
- 2: 52352
+ 1: 52352
1,-26:
- 2: 4672
- 3: 60416
+ 1: 4672
+ 2: 60416
2,-26:
- 3: 29440
- 2: 35856
+ 2: 29440
+ 1: 35856
3,-25:
- 2: 768
+ 1: 768
-20,-12:
- 2: 36848
+ 1: 36848
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -14419,10 +14391,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ immutable: True
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 0
- 0
- 0
- 0
@@ -14434,7 +14406,7 @@ entities:
- 0
- 0
- volume: 2500
- immutable: True
+ temperature: 293.15
moles:
- 0
- 0
@@ -14449,10 +14421,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ temperature: 235
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -14508,21 +14480,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- type: NavMap
- type: Joint
joints:
- docking287: !type:WeldJoint
- bodyB: 2
- bodyA: 22984
- id: docking287
- localAnchorB: 19,29.5
- localAnchorA: 20,29.5
+ docking284: !type:WeldJoint
+ bodyB: 23224
+ bodyA: 2
+ id: docking284
+ localAnchorB: 20,28.5
+ localAnchorA: 19,28.5
damping: 33.95499
stiffness: 304.7793
- - uid: 22984
+ - uid: 23224
components:
- type: MetaData
name: grid
@@ -14533,7 +14520,7 @@ entities:
chunks:
1,1:
ind: 1,1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -14566,14 +14553,14 @@ entities:
- type: NavMap
- type: Joint
joints:
- docking287: !type:WeldJoint
- bodyB: 2
- bodyA: 22984
- id: docking287
- localAnchorB: 19,29.5
- localAnchorA: 20,29.5
- damping: 33.954987
- stiffness: 304.77927
+ docking284: !type:WeldJoint
+ bodyB: 23224
+ bodyA: 2
+ id: docking284
+ localAnchorB: 20,28.5
+ localAnchorA: 19,28.5
+ damping: 33.95499
+ stiffness: 304.7793
- proto: AcousticGuitarInstrument
entities:
- uid: 10313
@@ -14595,6 +14582,13 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 8291
+ - uid: 22750
+ components:
+ - type: Transform
+ parent: 3686
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 3686
- proto: ActionToggleLight
entities:
- uid: 121
@@ -14723,6 +14717,7 @@ entities:
- 13955
- 13168
- 14030
+ - 1809
- uid: 81
components:
- type: Transform
@@ -15535,11 +15530,7 @@ entities:
- 23106
- 1809
- 20277
- - 15168
- - 15169
- - 15170
- - 15166
- - 20173
+ - 13168
- 15860
- 20393
- 6322
@@ -15604,10 +15595,7 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 15170
- - 15169
- - 15168
- - 15166
+ - 1809
- 11385
- 11465
- 11259
@@ -16547,7 +16535,6 @@ entities:
- uid: 255
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 41.5,14.5
parent: 2
- uid: 285
@@ -16568,7 +16555,6 @@ entities:
- uid: 986
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,17.5
parent: 2
- uid: 2083
@@ -16754,6 +16740,17 @@ entities:
parent: 2
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23150:
+ - DoorStatus: DoorBolt
+ 22563:
+ - DoorStatus: DoorBolt
- uid: 1479
components:
- type: Transform
@@ -16789,31 +16786,15 @@ entities:
linkedPorts:
23144:
- DoorStatus: DoorBolt
- - uid: 10382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,0.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 5
- - type: DeviceLinkSource
- linkedPorts:
- 22563:
- - DoorStatus: DoorBolt
- 23150:
- - DoorStatus: DoorBolt
- uid: 22563
components:
- type: Transform
pos: 12.5,3.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 4
+ invokeCounter: 6
- type: DeviceLinkSource
linkedPorts:
- 10382:
- - DoorStatus: DoorBolt
23150:
- DoorStatus: Open
- uid: 23144
@@ -16834,13 +16815,11 @@ entities:
pos: 11.5,2.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 5
- type: DeviceLinkSource
linkedPorts:
22563:
- DoorStatus: Open
- 10382:
- - DoorStatus: DoorBolt
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 1067
@@ -16862,7 +16841,7 @@ entities:
pos: 17.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -16874,7 +16853,7 @@ entities:
pos: 17.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16898,7 +16877,7 @@ entities:
pos: 16.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16910,7 +16889,7 @@ entities:
pos: 16.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -17065,7 +17044,7 @@ entities:
pos: 27.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
938:
@@ -17096,8 +17075,8 @@ entities:
linkedPorts:
21958:
- DoorStatus: DoorBolt
- 294:
- - DoorStatus: DoorBolt
+ 13412:
+ - DoorStatus: InputB
- uid: 3999
components:
- type: Transform
@@ -17311,8 +17290,8 @@ entities:
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 294:
- - DoorStatus: DoorBolt
+ 13412:
+ - DoorStatus: InputA
938:
- DoorStatus: DoorBolt
- uid: 22090
@@ -17516,10 +17495,15 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,28.5
parent: 2
+ - type: Door
+ changeAirtight: False
+ - type: Docking
+ dockJointId: docking284
+ dockedWith: 23225
- type: DeviceLinkSource
- linkedPorts:
- 5002:
- - DoorStatus: InputB
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- type: DeviceLinkSink
invokeCounter: 2
- uid: 6115
@@ -17576,41 +17560,21 @@ entities:
- DockStatus: InputA
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 21962
+ - uid: 23225
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,29.5
- parent: 22984
+ pos: 20.5,28.5
+ parent: 23224
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking287
- dockedWith: 22009
+ dockJointId: docking284
+ dockedWith: 5486
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
DockStatus: True
- - uid: 22009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,29.5
- parent: 2
- - type: Door
- changeAirtight: False
- - type: Docking
- dockJointId: docking287
- dockedWith: 21962
- - type: DeviceLinkSource
- linkedPorts:
- 5002:
- - DoorStatus: InputA
- lastSignals:
- DoorStatus: False
- DockStatus: True
- - type: DeviceLinkSink
- invokeCounter: 2
- proto: AirlockFreezerLocked
entities:
- uid: 2608
@@ -18090,7 +18054,6 @@ entities:
- uid: 141
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-31.5
parent: 2
- uid: 3301
@@ -18120,7 +18083,6 @@ entities:
- uid: 260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-31.5
parent: 2
- uid: 3485
@@ -18512,7 +18474,6 @@ entities:
- uid: 22100
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,-1.5
parent: 2
- proto: AirlockMaintRnDLocked
@@ -18789,6 +18750,11 @@ entities:
- type: Transform
pos: 39.5,-43.5
parent: 2
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 39.5,-31.5
+ parent: 2
- uid: 3925
components:
- type: Transform
@@ -18814,13 +18780,6 @@ entities:
- type: Transform
pos: 26.5,-30.5
parent: 2
-- proto: AirlockScienceLocked
- entities:
- - uid: 83
- components:
- - type: Transform
- pos: 39.5,-31.5
- parent: 2
- proto: AirlockSecurityGlassLocked
entities:
- uid: 318
@@ -19048,6 +19007,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 14795
+ - 15139
+ - 58
- uid: 2591
components:
- type: Transform
@@ -19245,6 +19206,7 @@ entities:
deviceLists:
- 15139
- 58
+ - 14795
- uid: 13418
components:
- type: Transform
@@ -20660,7 +20622,7 @@ entities:
- uid: 15664
components:
- type: Transform
- pos: -3.5428128,-42.34056
+ pos: -6.6169634,-43.162365
parent: 2
- uid: 18985
components:
@@ -20799,6 +20761,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-53.5
parent: 2
+ - uid: 21796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,28.5
+ parent: 2
- uid: 21943
components:
- type: Transform
@@ -26868,11 +26836,6 @@ entities:
- type: Transform
pos: 16.5,32.5
parent: 2
- - uid: 22750
- components:
- - type: Transform
- pos: 20.5,29.5
- parent: 22984
- uid: 22803
components:
- type: Transform
@@ -27343,6 +27306,11 @@ entities:
- type: Transform
pos: 32.5,-60.5
parent: 2
+ - uid: 23226
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 23224
- proto: AtmosFixFreezerMarker
entities:
- uid: 7764
@@ -27985,6 +27953,11 @@ entities:
- type: Transform
pos: 7.5,5.5
parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 32.5,-58.5
+ parent: 2
- uid: 2954
components:
- type: Transform
@@ -28024,20 +27997,15 @@ entities:
- uid: 8141
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: 6.5,29.5
parent: 2
- uid: 9057
components:
- type: Transform
- rot: -1.5707963267948966 rad
+ rot: 1.5707963267948966 rad
pos: 2.5,29.5
parent: 2
- - uid: 9113
- components:
- - type: Transform
- pos: 32.5,-58.5
- parent: 2
- uid: 12822
components:
- type: Transform
@@ -28377,7 +28345,7 @@ entities:
- uid: 462
components:
- type: Transform
- pos: -27.73392,13.654132
+ pos: -27.699253,13.781265
parent: 2
- proto: BoxFlare
entities:
@@ -28391,7 +28359,7 @@ entities:
- uid: 3955
components:
- type: Transform
- pos: -24.289831,13.800506
+ pos: -27.009739,15.621929
parent: 2
- proto: BoxFolderBlack
entities:
@@ -28419,11 +28387,6 @@ entities:
parent: 2
- proto: BoxFolderClipboard
entities:
- - uid: 627
- components:
- - type: Transform
- pos: -27.573792,6.6655574
- parent: 2
- uid: 4370
components:
- type: Transform
@@ -28488,7 +28451,7 @@ entities:
- uid: 92
components:
- type: Transform
- pos: -24.623165,13.57118
+ pos: -27.519772,6.606838
parent: 2
- proto: BoxInflatable
entities:
@@ -28733,7 +28696,7 @@ entities:
- uid: 15039
components:
- type: Transform
- pos: -0.3603983,-45.15794
+ pos: -5.3761764,-45.357563
parent: 2
- uid: 17548
components:
@@ -43096,11 +43059,6 @@ entities:
- type: Transform
pos: -22.5,20.5
parent: 2
- - uid: 1314
- components:
- - type: Transform
- pos: -14.5,11.5
- parent: 2
- uid: 1315
components:
- type: Transform
@@ -43129,7 +43087,7 @@ entities:
- uid: 1409
components:
- type: Transform
- pos: -15.5,11.5
+ pos: -32.5,8.5
parent: 2
- uid: 1436
components:
@@ -43154,7 +43112,7 @@ entities:
- uid: 1633
components:
- type: Transform
- pos: 25.5,-39.5
+ pos: -32.5,9.5
parent: 2
- uid: 1652
components:
@@ -43429,7 +43387,7 @@ entities:
- uid: 2508
components:
- type: Transform
- pos: 38.5,-31.5
+ pos: 33.5,-54.5
parent: 2
- uid: 2510
components:
@@ -43439,7 +43397,7 @@ entities:
- uid: 2555
components:
- type: Transform
- pos: 39.5,-31.5
+ pos: 15.5,-56.5
parent: 2
- uid: 2570
components:
@@ -43474,37 +43432,37 @@ entities:
- uid: 2627
components:
- type: Transform
- pos: -15.5,4.5
+ pos: 43.5,-31.5
parent: 2
- uid: 2628
components:
- type: Transform
- pos: -15.5,5.5
+ pos: -32.5,1.5
parent: 2
- uid: 2629
components:
- type: Transform
- pos: -15.5,6.5
+ pos: -32.5,2.5
parent: 2
- uid: 2630
components:
- type: Transform
- pos: -15.5,7.5
+ pos: -32.5,3.5
parent: 2
- uid: 2631
components:
- type: Transform
- pos: -15.5,8.5
+ pos: -32.5,4.5
parent: 2
- uid: 2632
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -32.5,5.5
parent: 2
- uid: 2633
components:
- type: Transform
- pos: -15.5,10.5
+ pos: -32.5,6.5
parent: 2
- uid: 2634
components:
@@ -43519,32 +43477,32 @@ entities:
- uid: 2643
components:
- type: Transform
- pos: -15.5,-2.5
+ pos: -32.5,7.5
parent: 2
- uid: 2644
components:
- type: Transform
- pos: -15.5,-3.5
+ pos: -32.5,-5.5
parent: 2
- uid: 2645
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: -32.5,-6.5
parent: 2
- uid: 2646
components:
- type: Transform
- pos: -16.5,-4.5
+ pos: -32.5,-7.5
parent: 2
- uid: 2647
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: -32.5,-8.5
parent: 2
- uid: 2648
components:
- type: Transform
- pos: -16.5,-6.5
+ pos: -32.5,-9.5
parent: 2
- uid: 2651
components:
@@ -43554,12 +43512,12 @@ entities:
- uid: 2652
components:
- type: Transform
- pos: 40.5,-31.5
+ pos: -32.5,-10.5
parent: 2
- uid: 2666
components:
- type: Transform
- pos: 27.5,-39.5
+ pos: 42.5,-31.5
parent: 2
- uid: 2668
components:
@@ -43569,7 +43527,7 @@ entities:
- uid: 2677
components:
- type: Transform
- pos: 37.5,-31.5
+ pos: 32.5,-54.5
parent: 2
- uid: 2680
components:
@@ -43759,7 +43717,7 @@ entities:
- uid: 3125
components:
- type: Transform
- pos: 34.5,-37.5
+ pos: 16.5,-56.5
parent: 2
- uid: 3154
components:
@@ -43799,17 +43757,17 @@ entities:
- uid: 3476
components:
- type: Transform
- pos: 28.5,-37.5
+ pos: 24.5,-55.5
parent: 2
- uid: 3514
components:
- type: Transform
- pos: 32.5,-37.5
+ pos: 29.5,-55.5
parent: 2
- uid: 3560
components:
- type: Transform
- pos: 30.5,-37.5
+ pos: 26.5,-55.5
parent: 2
- uid: 3565
components:
@@ -43829,7 +43787,7 @@ entities:
- uid: 3622
components:
- type: Transform
- pos: 27.5,-37.5
+ pos: 28.5,-55.5
parent: 2
- uid: 3660
components:
@@ -43839,7 +43797,7 @@ entities:
- uid: 3681
components:
- type: Transform
- pos: 27.5,-38.5
+ pos: 30.5,-54.5
parent: 2
- uid: 3890
components:
@@ -44049,17 +44007,17 @@ entities:
- uid: 4308
components:
- type: Transform
- pos: 29.5,-37.5
+ pos: 31.5,-54.5
parent: 2
- uid: 4309
components:
- type: Transform
- pos: 31.5,-37.5
+ pos: 30.5,-55.5
parent: 2
- uid: 4310
components:
- type: Transform
- pos: 33.5,-37.5
+ pos: 27.5,-55.5
parent: 2
- uid: 4322
components:
@@ -44244,7 +44202,7 @@ entities:
- uid: 5853
components:
- type: Transform
- pos: 23.5,7.5
+ pos: 25.5,-55.5
parent: 2
- uid: 5879
components:
@@ -44294,7 +44252,7 @@ entities:
- uid: 5964
components:
- type: Transform
- pos: 31.5,-0.5
+ pos: 22.5,6.5
parent: 2
- uid: 6006
components:
@@ -44304,7 +44262,7 @@ entities:
- uid: 6026
components:
- type: Transform
- pos: 31.5,-1.5
+ pos: -30.5,17.5
parent: 2
- uid: 6038
components:
@@ -44529,7 +44487,7 @@ entities:
- uid: 6659
components:
- type: Transform
- pos: 31.5,-2.5
+ pos: -30.5,18.5
parent: 2
- uid: 6703
components:
@@ -44564,7 +44522,7 @@ entities:
- uid: 6959
components:
- type: Transform
- pos: -15.5,1.5
+ pos: -30.5,19.5
parent: 2
- uid: 6973
components:
@@ -44634,12 +44592,12 @@ entities:
- uid: 7133
components:
- type: Transform
- pos: 21.5,7.5
+ pos: -32.5,-1.5
parent: 2
- uid: 7141
components:
- type: Transform
- pos: 24.5,7.5
+ pos: 21.5,7.5
parent: 2
- uid: 7152
components:
@@ -44699,7 +44657,7 @@ entities:
- uid: 7595
components:
- type: Transform
- pos: -15.5,0.5
+ pos: 23.5,6.5
parent: 2
- uid: 7604
components:
@@ -44709,7 +44667,7 @@ entities:
- uid: 7695
components:
- type: Transform
- pos: 22.5,7.5
+ pos: -32.5,-2.5
parent: 2
- uid: 7728
components:
@@ -44764,7 +44722,7 @@ entities:
- uid: 8034
components:
- type: Transform
- pos: -15.5,2.5
+ pos: 21.5,6.5
parent: 2
- uid: 8048
components:
@@ -44914,17 +44872,17 @@ entities:
- uid: 8686
components:
- type: Transform
- pos: 31.5,7.5
+ pos: 30.5,6.5
parent: 2
- uid: 8691
components:
- type: Transform
- pos: 29.5,7.5
+ pos: 28.5,6.5
parent: 2
- uid: 8692
components:
- type: Transform
- pos: 30.5,7.5
+ pos: 29.5,6.5
parent: 2
- uid: 8709
components:
@@ -45129,7 +45087,7 @@ entities:
- uid: 8883
components:
- type: Transform
- pos: -15.5,3.5
+ pos: -32.5,-0.5
parent: 2
- uid: 8914
components:
@@ -45716,11 +45674,6 @@ entities:
- type: Transform
pos: 7.5,-25.5
parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: 31.5,-8.5
- parent: 2
- uid: 9657
components:
- type: Transform
@@ -45829,7 +45782,7 @@ entities:
- uid: 10168
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 27.5,-14.5
parent: 2
- uid: 10176
components:
@@ -45924,32 +45877,32 @@ entities:
- uid: 10268
components:
- type: Transform
- pos: 30.5,-21.5
+ pos: 28.5,-14.5
parent: 2
- uid: 10269
components:
- type: Transform
- pos: 29.5,-21.5
+ pos: 29.5,-14.5
parent: 2
- uid: 10270
components:
- type: Transform
- pos: 28.5,-21.5
+ pos: 30.5,-14.5
parent: 2
- uid: 10271
components:
- type: Transform
- pos: 27.5,-21.5
+ pos: -32.5,10.5
parent: 2
- uid: 10272
components:
- type: Transform
- pos: 26.5,-21.5
+ pos: -32.5,12.5
parent: 2
- uid: 10273
components:
- type: Transform
- pos: 24.5,-21.5
+ pos: -32.5,11.5
parent: 2
- uid: 10274
components:
@@ -46004,7 +45957,7 @@ entities:
- uid: 10284
components:
- type: Transform
- pos: 25.5,-21.5
+ pos: 26.5,-14.5
parent: 2
- uid: 10285
components:
@@ -46039,23 +45992,28 @@ entities:
- uid: 10308
components:
- type: Transform
- pos: 31.5,-21.5
+ pos: 25.5,-14.5
parent: 2
- uid: 10309
components:
- type: Transform
- pos: 31.5,-20.5
+ pos: 24.5,-14.5
parent: 2
- uid: 10310
components:
- type: Transform
- pos: 31.5,-19.5
+ pos: 27.5,6.5
parent: 2
- uid: 10311
components:
- type: Transform
pos: 31.5,-18.5
parent: 2
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 34.5,-54.5
+ parent: 2
- uid: 10437
components:
- type: Transform
@@ -46079,7 +46037,7 @@ entities:
- uid: 10683
components:
- type: Transform
- pos: 28.5,7.5
+ pos: 17.5,-56.5
parent: 2
- uid: 10716
components:
@@ -46109,7 +46067,7 @@ entities:
- uid: 11177
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: 26.5,6.5
parent: 2
- uid: 11179
components:
@@ -46194,12 +46152,12 @@ entities:
- uid: 11415
components:
- type: Transform
- pos: 26.5,-39.5
+ pos: -33.5,-14.5
parent: 2
- uid: 11417
components:
- type: Transform
- pos: 36.5,-31.5
+ pos: -33.5,-13.5
parent: 2
- uid: 11418
components:
@@ -46359,7 +46317,7 @@ entities:
- uid: 12560
components:
- type: Transform
- pos: 27.5,7.5
+ pos: -33.5,-12.5
parent: 2
- uid: 12669
components:
@@ -46374,27 +46332,22 @@ entities:
- uid: 12893
components:
- type: Transform
- pos: -16.5,-11.5
+ pos: -33.5,-11.5
parent: 2
- uid: 12894
components:
- type: Transform
- pos: -16.5,-10.5
+ pos: -32.5,-11.5
parent: 2
- uid: 12895
components:
- type: Transform
- pos: -16.5,-9.5
+ pos: 24.5,6.5
parent: 2
- uid: 12896
components:
- type: Transform
- pos: -16.5,-8.5
- parent: 2
- - uid: 12897
- components:
- - type: Transform
- pos: -16.5,-7.5
+ pos: 25.5,6.5
parent: 2
- uid: 12985
components:
@@ -46471,21 +46424,11 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 2
- - uid: 13742
- components:
- - type: Transform
- pos: 25.5,7.5
- parent: 2
- uid: 13760
components:
- type: Transform
pos: -27.5,-41.5
parent: 2
- - uid: 13763
- components:
- - type: Transform
- pos: 26.5,7.5
- parent: 2
- uid: 13786
components:
- type: Transform
@@ -46551,25 +46494,20 @@ entities:
- type: Transform
pos: 31.5,-17.5
parent: 2
- - uid: 14791
- components:
- - type: Transform
- pos: 31.5,-7.5
- parent: 2
- uid: 14793
components:
- type: Transform
- pos: 31.5,-6.5
+ pos: 24.5,-56.5
parent: 2
- uid: 14794
components:
- type: Transform
- pos: 31.5,-5.5
+ pos: 23.5,-56.5
parent: 2
- uid: 14796
components:
- type: Transform
- pos: 31.5,-4.5
+ pos: 22.5,-56.5
parent: 2
- uid: 15145
components:
@@ -46954,17 +46892,12 @@ entities:
- uid: 17747
components:
- type: Transform
- pos: 34.5,-36.5
- parent: 2
- - uid: 17748
- components:
- - type: Transform
- pos: 34.5,-35.5
+ pos: 21.5,-56.5
parent: 2
- uid: 17749
components:
- type: Transform
- pos: 34.5,-34.5
+ pos: 19.5,-56.5
parent: 2
- uid: 17759
components:
@@ -47049,12 +46982,12 @@ entities:
- uid: 17836
components:
- type: Transform
- pos: 34.5,-33.5
+ pos: 18.5,-56.5
parent: 2
- uid: 17838
components:
- type: Transform
- pos: 34.5,-32.5
+ pos: -32.5,-3.5
parent: 2
- uid: 17839
components:
@@ -47079,12 +47012,12 @@ entities:
- uid: 17871
components:
- type: Transform
- pos: 34.5,-31.5
+ pos: -32.5,-4.5
parent: 2
- uid: 17884
components:
- type: Transform
- pos: 35.5,-31.5
+ pos: -30.5,16.5
parent: 2
- uid: 17887
components:
@@ -47156,6 +47089,11 @@ entities:
- type: Transform
pos: -28.5,22.5
parent: 2
+ - uid: 18021
+ components:
+ - type: Transform
+ pos: -30.5,15.5
+ parent: 2
- uid: 18128
components:
- type: Transform
@@ -47359,12 +47297,12 @@ entities:
- uid: 18904
components:
- type: Transform
- pos: -15.5,-0.5
+ pos: -30.5,14.5
parent: 2
- uid: 18905
components:
- type: Transform
- pos: -15.5,-1.5
+ pos: -31.5,14.5
parent: 2
- uid: 18918
components:
@@ -47541,6 +47479,11 @@ entities:
- type: Transform
pos: -16.5,-55.5
parent: 2
+ - uid: 20768
+ components:
+ - type: Transform
+ pos: -32.5,14.5
+ parent: 2
- uid: 20807
components:
- type: Transform
@@ -47804,32 +47747,27 @@ entities:
- uid: 21793
components:
- type: Transform
- pos: 31.5,0.5
+ pos: -32.5,13.5
parent: 2
- uid: 21794
components:
- type: Transform
- pos: 31.5,1.5
+ pos: -32.5,0.5
parent: 2
- uid: 21795
components:
- type: Transform
- pos: 31.5,2.5
- parent: 2
- - uid: 21796
- components:
- - type: Transform
- pos: 31.5,3.5
+ pos: 20.5,-56.5
parent: 2
- uid: 21797
components:
- type: Transform
- pos: 31.5,4.5
+ pos: 35.5,-54.5
parent: 2
- uid: 21798
components:
- type: Transform
- pos: 31.5,5.5
+ pos: 36.5,-54.5
parent: 2
- uid: 21799
components:
@@ -47921,6 +47859,406 @@ entities:
- type: Transform
pos: -29.5,-17.5
parent: 2
+ - uid: 22755
+ components:
+ - type: Transform
+ pos: 37.5,-54.5
+ parent: 2
+ - uid: 23227
+ components:
+ - type: Transform
+ pos: 37.5,-53.5
+ parent: 2
+ - uid: 23228
+ components:
+ - type: Transform
+ pos: 38.5,-53.5
+ parent: 2
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: 39.5,-53.5
+ parent: 2
+ - uid: 23230
+ components:
+ - type: Transform
+ pos: 40.5,-53.5
+ parent: 2
+ - uid: 23231
+ components:
+ - type: Transform
+ pos: 41.5,-53.5
+ parent: 2
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: 42.5,-53.5
+ parent: 2
+ - uid: 23233
+ components:
+ - type: Transform
+ pos: 43.5,-53.5
+ parent: 2
+ - uid: 23234
+ components:
+ - type: Transform
+ pos: 44.5,-53.5
+ parent: 2
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: 44.5,-52.5
+ parent: 2
+ - uid: 23236
+ components:
+ - type: Transform
+ pos: 45.5,-52.5
+ parent: 2
+ - uid: 23237
+ components:
+ - type: Transform
+ pos: 46.5,-52.5
+ parent: 2
+ - uid: 23238
+ components:
+ - type: Transform
+ pos: 47.5,-52.5
+ parent: 2
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: 48.5,-52.5
+ parent: 2
+ - uid: 23240
+ components:
+ - type: Transform
+ pos: 48.5,-51.5
+ parent: 2
+ - uid: 23241
+ components:
+ - type: Transform
+ pos: 48.5,-50.5
+ parent: 2
+ - uid: 23242
+ components:
+ - type: Transform
+ pos: 48.5,-49.5
+ parent: 2
+ - uid: 23243
+ components:
+ - type: Transform
+ pos: 48.5,-48.5
+ parent: 2
+ - uid: 23244
+ components:
+ - type: Transform
+ pos: 48.5,-47.5
+ parent: 2
+ - uid: 23245
+ components:
+ - type: Transform
+ pos: 48.5,-46.5
+ parent: 2
+ - uid: 23246
+ components:
+ - type: Transform
+ pos: 48.5,-45.5
+ parent: 2
+ - uid: 23247
+ components:
+ - type: Transform
+ pos: 48.5,-44.5
+ parent: 2
+ - uid: 23248
+ components:
+ - type: Transform
+ pos: 48.5,-43.5
+ parent: 2
+ - uid: 23249
+ components:
+ - type: Transform
+ pos: 48.5,-42.5
+ parent: 2
+ - uid: 23250
+ components:
+ - type: Transform
+ pos: 48.5,-41.5
+ parent: 2
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 48.5,-40.5
+ parent: 2
+ - uid: 23252
+ components:
+ - type: Transform
+ pos: 48.5,-39.5
+ parent: 2
+ - uid: 23253
+ components:
+ - type: Transform
+ pos: 48.5,-38.5
+ parent: 2
+ - uid: 23254
+ components:
+ - type: Transform
+ pos: 48.5,-37.5
+ parent: 2
+ - uid: 23255
+ components:
+ - type: Transform
+ pos: 43.5,-30.5
+ parent: 2
+ - uid: 23256
+ components:
+ - type: Transform
+ pos: 44.5,-30.5
+ parent: 2
+ - uid: 23257
+ components:
+ - type: Transform
+ pos: 45.5,-30.5
+ parent: 2
+ - uid: 23258
+ components:
+ - type: Transform
+ pos: 46.5,-30.5
+ parent: 2
+ - uid: 23259
+ components:
+ - type: Transform
+ pos: 47.5,-30.5
+ parent: 2
+ - uid: 23260
+ components:
+ - type: Transform
+ pos: 48.5,-30.5
+ parent: 2
+ - uid: 23261
+ components:
+ - type: Transform
+ pos: 48.5,-31.5
+ parent: 2
+ - uid: 23262
+ components:
+ - type: Transform
+ pos: 48.5,-32.5
+ parent: 2
+ - uid: 23263
+ components:
+ - type: Transform
+ pos: 48.5,-33.5
+ parent: 2
+ - uid: 23264
+ components:
+ - type: Transform
+ pos: 48.5,-34.5
+ parent: 2
+ - uid: 23265
+ components:
+ - type: Transform
+ pos: 48.5,-35.5
+ parent: 2
+ - uid: 23266
+ components:
+ - type: Transform
+ pos: 48.5,-36.5
+ parent: 2
+ - uid: 23267
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 2
+ - uid: 23268
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 2
+ - uid: 23269
+ components:
+ - type: Transform
+ pos: 41.5,-0.5
+ parent: 2
+ - uid: 23270
+ components:
+ - type: Transform
+ pos: 41.5,-1.5
+ parent: 2
+ - uid: 23271
+ components:
+ - type: Transform
+ pos: 41.5,-2.5
+ parent: 2
+ - uid: 23272
+ components:
+ - type: Transform
+ pos: 41.5,-3.5
+ parent: 2
+ - uid: 23273
+ components:
+ - type: Transform
+ pos: 41.5,-4.5
+ parent: 2
+ - uid: 23274
+ components:
+ - type: Transform
+ pos: 42.5,-4.5
+ parent: 2
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: 43.5,-4.5
+ parent: 2
+ - uid: 23276
+ components:
+ - type: Transform
+ pos: 44.5,-4.5
+ parent: 2
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: 45.5,-4.5
+ parent: 2
+ - uid: 23278
+ components:
+ - type: Transform
+ pos: 45.5,-5.5
+ parent: 2
+ - uid: 23279
+ components:
+ - type: Transform
+ pos: 45.5,-6.5
+ parent: 2
+ - uid: 23280
+ components:
+ - type: Transform
+ pos: 45.5,-7.5
+ parent: 2
+ - uid: 23281
+ components:
+ - type: Transform
+ pos: 45.5,-8.5
+ parent: 2
+ - uid: 23282
+ components:
+ - type: Transform
+ pos: 45.5,-9.5
+ parent: 2
+ - uid: 23283
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
+ - uid: 23284
+ components:
+ - type: Transform
+ pos: 45.5,-11.5
+ parent: 2
+ - uid: 23285
+ components:
+ - type: Transform
+ pos: 45.5,-12.5
+ parent: 2
+ - uid: 23286
+ components:
+ - type: Transform
+ pos: 45.5,-13.5
+ parent: 2
+ - uid: 23287
+ components:
+ - type: Transform
+ pos: 45.5,-14.5
+ parent: 2
+ - uid: 23288
+ components:
+ - type: Transform
+ pos: 45.5,-15.5
+ parent: 2
+ - uid: 23289
+ components:
+ - type: Transform
+ pos: 45.5,-16.5
+ parent: 2
+ - uid: 23290
+ components:
+ - type: Transform
+ pos: 45.5,-17.5
+ parent: 2
+ - uid: 23291
+ components:
+ - type: Transform
+ pos: 45.5,-18.5
+ parent: 2
+ - uid: 23292
+ components:
+ - type: Transform
+ pos: 45.5,-19.5
+ parent: 2
+ - uid: 23293
+ components:
+ - type: Transform
+ pos: 45.5,-20.5
+ parent: 2
+ - uid: 23294
+ components:
+ - type: Transform
+ pos: 45.5,-21.5
+ parent: 2
+ - uid: 23295
+ components:
+ - type: Transform
+ pos: 45.5,-22.5
+ parent: 2
+ - uid: 23296
+ components:
+ - type: Transform
+ pos: 45.5,-23.5
+ parent: 2
+ - uid: 23297
+ components:
+ - type: Transform
+ pos: 45.5,-24.5
+ parent: 2
+ - uid: 23298
+ components:
+ - type: Transform
+ pos: 45.5,-25.5
+ parent: 2
+ - uid: 23299
+ components:
+ - type: Transform
+ pos: 46.5,-25.5
+ parent: 2
+ - uid: 23300
+ components:
+ - type: Transform
+ pos: 47.5,-25.5
+ parent: 2
+ - uid: 23301
+ components:
+ - type: Transform
+ pos: 48.5,-25.5
+ parent: 2
+ - uid: 23302
+ components:
+ - type: Transform
+ pos: 48.5,-26.5
+ parent: 2
+ - uid: 23303
+ components:
+ - type: Transform
+ pos: 48.5,-27.5
+ parent: 2
+ - uid: 23304
+ components:
+ - type: Transform
+ pos: 48.5,-28.5
+ parent: 2
+ - uid: 23305
+ components:
+ - type: Transform
+ pos: 48.5,-29.5
+ parent: 2
- proto: CableHVStack
entities:
- uid: 3391
@@ -49875,6 +50213,11 @@ entities:
- type: Transform
pos: 45.5,-10.5
parent: 2
+ - uid: 8264
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
- uid: 8274
components:
- type: Transform
@@ -52565,11 +52908,6 @@ entities:
- type: Transform
pos: -15.5,4.5
parent: 2
- - uid: 18021
- components:
- - type: Transform
- pos: -15.5,3.5
- parent: 2
- uid: 18022
components:
- type: Transform
@@ -54482,7 +54820,6 @@ entities:
- uid: 6740
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-38.5
parent: 2
- uid: 7109
@@ -54493,13 +54830,11 @@ entities:
- uid: 7409
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-39.5
parent: 2
- uid: 7523
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-39.5
parent: 2
- uid: 8343
@@ -54510,31 +54845,26 @@ entities:
- uid: 10183
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-38.5
parent: 2
- uid: 10258
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-39.5
parent: 2
- uid: 11302
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-38.5
parent: 2
- uid: 14970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-38.5
parent: 2
- uid: 15873
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,-39.5
parent: 2
- uid: 16208
@@ -54545,7 +54875,6 @@ entities:
- uid: 18384
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-38.5
parent: 2
- uid: 18507
@@ -54556,7 +54885,6 @@ entities:
- uid: 18590
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-39.5
parent: 2
- uid: 18777
@@ -54587,13 +54915,11 @@ entities:
- uid: 21873
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-39.5
parent: 2
- uid: 22177
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,-38.5
parent: 2
- proto: CarpetBlack
@@ -54601,97 +54927,81 @@ entities:
- uid: 8406
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 7.5,-33.5
parent: 2
- uid: 9986
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-38.5
parent: 2
- uid: 10141
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 6.5,-33.5
parent: 2
- uid: 10184
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-33.5
parent: 2
- uid: 10495
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-38.5
parent: 2
- uid: 13687
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-37.5
parent: 2
- uid: 13688
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-37.5
parent: 2
- uid: 13689
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 7.5,-34.5
parent: 2
- uid: 13690
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 6.5,-34.5
parent: 2
- uid: 13692
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-34.5
parent: 2
- uid: 14813
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,11.5
parent: 2
- uid: 14819
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,12.5
parent: 2
- uid: 14820
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,11.5
parent: 2
- uid: 14879
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,12.5
parent: 2
- uid: 15304
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,10.5
parent: 2
- uid: 15329
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,10.5
parent: 2
- proto: CarpetBlue
@@ -54699,31 +55009,26 @@ entities:
- uid: 16
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-46.5
parent: 2
- uid: 157
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,19.5
parent: 2
- uid: 158
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,18.5
parent: 2
- uid: 297
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-46.5
parent: 2
- uid: 362
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-47.5
parent: 2
- uid: 1286
@@ -54734,7 +55039,6 @@ entities:
- uid: 1690
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-45.5
parent: 2
- uid: 1742
@@ -54745,31 +55049,26 @@ entities:
- uid: 2525
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-45.5
parent: 2
- uid: 2567
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-47.5
parent: 2
- uid: 3068
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-46.5
parent: 2
- uid: 3123
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-46.5
parent: 2
- uid: 3130
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-44.5
parent: 2
- uid: 3171
@@ -54780,79 +55079,66 @@ entities:
- uid: 4783
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-47.5
parent: 2
- uid: 4797
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-44.5
parent: 2
- uid: 4948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-45.5
parent: 2
- uid: 4963
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-44.5
parent: 2
- uid: 4967
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-44.5
parent: 2
- uid: 4971
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-44.5
parent: 2
- uid: 5013
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-45.5
parent: 2
- uid: 5213
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-46.5
parent: 2
- uid: 5243
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-47.5
parent: 2
- uid: 5750
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-47.5
parent: 2
- uid: 5751
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-45.5
parent: 2
- uid: 6182
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,19.5
parent: 2
- uid: 6378
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,18.5
parent: 2
- uid: 9699
@@ -54873,25 +55159,21 @@ entities:
- uid: 9964
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-50.5
parent: 2
- uid: 9965
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-51.5
parent: 2
- uid: 9966
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-51.5
parent: 2
- uid: 9967
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-50.5
parent: 2
- uid: 14003
@@ -54902,13 +55184,11 @@ entities:
- uid: 20248
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-50.5
parent: 2
- uid: 20249
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-51.5
parent: 2
- uid: 20820
@@ -55069,49 +55349,41 @@ entities:
- uid: 419
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-53.5
parent: 2
- uid: 3188
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-51.5
parent: 2
- uid: 4109
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-56.5
parent: 2
- uid: 4668
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-54.5
parent: 2
- uid: 4756
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-51.5
parent: 2
- uid: 4757
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-53.5
parent: 2
- uid: 4776
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-54.5
parent: 2
- uid: 4787
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-56.5
parent: 2
- uid: 5042
@@ -55244,13 +55516,11 @@ entities:
- uid: 7504
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,-30.5
parent: 2
- uid: 7509
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,-29.5
parent: 2
- uid: 9468
@@ -55356,13 +55626,11 @@ entities:
- uid: 9989
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,-29.5
parent: 2
- uid: 10442
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,-30.5
parent: 2
- uid: 11973
@@ -55378,13 +55646,11 @@ entities:
- uid: 13698
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-29.5
parent: 2
- uid: 13699
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-30.5
parent: 2
- uid: 14847
@@ -55407,25 +55673,21 @@ entities:
- uid: 3197
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-53.5
parent: 2
- uid: 3334
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,11.5
parent: 2
- uid: 3335
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,12.5
parent: 2
- uid: 3563
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-51.5
parent: 2
- uid: 3901
@@ -55441,19 +55703,16 @@ entities:
- uid: 6530
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-51.5
parent: 2
- uid: 7304
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,3.5
parent: 2
- uid: 7339
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,3.5
parent: 2
- uid: 8591
@@ -55469,55 +55728,46 @@ entities:
- uid: 10590
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-52.5
parent: 2
- uid: 10593
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-53.5
parent: 2
- uid: 10959
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-52.5
parent: 2
- uid: 10960
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-52.5
parent: 2
- uid: 10961
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-53.5
parent: 2
- uid: 10962
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
- uid: 10967
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-52.5
parent: 2
- uid: 11005
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-53.5
parent: 2
- uid: 11832
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-51.5
parent: 2
- uid: 15859
@@ -55575,19 +55825,16 @@ entities:
- uid: 1048
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,-34.5
parent: 2
- uid: 1323
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,-35.5
parent: 2
- uid: 1404
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,-34.5
parent: 2
- uid: 1565
@@ -55598,7 +55845,6 @@ entities:
- uid: 1637
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,-33.5
parent: 2
- uid: 10403
@@ -55649,7 +55895,6 @@ entities:
- uid: 18852
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-35.5
parent: 2
- uid: 22523
@@ -55667,85 +55912,71 @@ entities:
- uid: 3661
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-36.5
parent: 2
- uid: 3731
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-35.5
parent: 2
- uid: 3742
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-38.5
parent: 2
- uid: 3746
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-39.5
parent: 2
- uid: 3764
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-36.5
parent: 2
- uid: 3767
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-38.5
parent: 2
- uid: 3769
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-35.5
parent: 2
- uid: 3770
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-39.5
parent: 2
- uid: 3771
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-37.5
parent: 2
- uid: 3772
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-37.5
parent: 2
- uid: 7235
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-48.5
parent: 2
- uid: 7329
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-48.5
parent: 2
- uid: 7650
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-46.5
parent: 2
- uid: 7677
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-47.5
parent: 2
- uid: 9332
@@ -55756,49 +55987,41 @@ entities:
- uid: 9988
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-34.5
parent: 2
- uid: 10261
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-46.5
parent: 2
- uid: 10487
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-48.5
parent: 2
- uid: 13682
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-47.5
parent: 2
- uid: 13684
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-47.5
parent: 2
- uid: 13685
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-46.5
parent: 2
- uid: 13696
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-35.5
parent: 2
- uid: 13697
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-35.5
parent: 2
- uid: 14940
@@ -55809,7 +56032,6 @@ entities:
- uid: 17581
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-34.5
parent: 2
- uid: 18844
@@ -56295,12 +56517,6 @@ entities:
- type: Transform
pos: 14.5,-62.5
parent: 2
- - uid: 1263
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-3.5
- parent: 2
- uid: 1269
components:
- type: Transform
@@ -60468,6 +60684,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 42.5,14.5
parent: 2
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 23.5,-3.5
+ parent: 2
- proto: CelloInstrument
entities:
- uid: 5831
@@ -62795,15 +63016,10 @@ entities:
- uid: 3621
components:
- type: Transform
- pos: 7.5706596,-16.44566
+ pos: 7.6282854,-16.45392
parent: 2
- proto: ClothingHandsGlovesColorYellowBudget
entities:
- - uid: 14105
- components:
- - type: Transform
- pos: -53.26527,-23.38064
- parent: 2
- uid: 18092
components:
- type: Transform
@@ -62976,11 +63192,6 @@ entities:
- type: Transform
pos: -9.481663,24.584553
parent: 2
- - uid: 20267
- components:
- - type: Transform
- pos: -27.292542,6.769797
- parent: 2
- proto: ClothingHeadHatStrawHat
entities:
- uid: 1731
@@ -63023,6 +63234,18 @@ entities:
- type: Transform
pos: 71.56463,-77.43635
parent: 2
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: -20.651012,5.6188574
+ parent: 2
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: -20.400887,5.5041943
+ parent: 2
- proto: ClothingMaskBreath
entities:
- uid: 4372
@@ -63162,6 +63385,18 @@ entities:
- type: Transform
pos: 27.65064,-12.475961
parent: 2
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -21.27595,6.6553745
+ parent: 2
+ - uid: 8729
+ components:
+ - type: Transform
+ pos: -21.263597,6.5225677
+ parent: 2
- proto: ClothingOuterArmorRiot
entities:
- uid: 6250
@@ -63277,13 +63512,6 @@ entities:
priority: 0
component: Armor
title: null
-- proto: ClothingOuterSanta
- entities:
- - uid: 20268
- components:
- - type: Transform
- pos: -27.584208,6.675982
- parent: 2
- proto: ClothingOuterWinterBar
entities:
- uid: 7386
@@ -64747,6 +64975,11 @@ entities:
- type: Transform
pos: 48.5,-13.5
parent: 2
+ - uid: 12142
+ components:
+ - type: Transform
+ pos: -8.5,21.5
+ parent: 2
- uid: 15729
components:
- type: Transform
@@ -64967,6 +65200,13 @@ entities:
- type: Transform
pos: 28.5,-0.5
parent: 2
+- proto: CrateTechBoardRandom
+ entities:
+ - uid: 12128
+ components:
+ - type: Transform
+ pos: -34.5,17.5
+ parent: 2
- proto: CrateTrashCart
entities:
- uid: 9291
@@ -65529,6 +65769,16 @@ entities:
parent: 2
- proto: DefaultStationBeaconEscapePod
entities:
+ - uid: 9644
+ components:
+ - type: Transform
+ pos: -56.5,-53.5
+ parent: 2
+ - uid: 14791
+ components:
+ - type: Transform
+ pos: 61.5,-53.5
+ parent: 2
- uid: 22039
components:
- type: Transform
@@ -66188,6 +66438,12 @@ entities:
- type: Transform
pos: -33.5,-22.5
parent: 2
+ - uid: 15166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-45.5
+ parent: 2
- uid: 15356
components:
- type: Transform
@@ -67043,6 +67299,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.5,-36.5
parent: 2
+ - uid: 3717
+ components:
+ - type: Transform
+ pos: -1.5,-47.5
+ parent: 2
- uid: 3724
components:
- type: Transform
@@ -68592,12 +68853,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-48.5
parent: 2
- - uid: 12142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-48.5
- parent: 2
- uid: 12143
components:
- type: Transform
@@ -69182,6 +69437,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-15.5
parent: 2
+ - uid: 15169
+ components:
+ - type: Transform
+ pos: -1.5,-46.5
+ parent: 2
- uid: 15348
components:
- type: Transform
@@ -70650,6 +70910,15 @@ entities:
- type: DisposalRouter
tags:
- Botany
+ - uid: 3473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-48.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Bar
- uid: 8351
components:
- type: Transform
@@ -70879,6 +71148,9 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,-58.5
parent: 2
+ - type: MailingUnit
+ tag: Trash
+ targetList: []
- uid: 3659
components:
- type: Transform
@@ -71012,6 +71284,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 40.5,8.5
parent: 2
+ - uid: 9113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-45.5
+ parent: 2
- uid: 9790
components:
- type: Transform
@@ -71887,6 +72165,11 @@ entities:
- type: Transform
pos: -6.7736864,17.657902
parent: 2
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: -20.434305,10.842014
+ parent: 2
- proto: DrinkShotGlass
entities:
- uid: 6
@@ -72170,6 +72453,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,-2.5
parent: 2
+ - type: Battery
+ startingCharge: 30000
- uid: 11124
components:
- type: Transform
@@ -73292,10 +73577,6 @@ entities:
- 16320
- 16319
- 16318
- - 15170
- - 15169
- - 15168
- - 15166
- 15150
- 15164
- 15165
@@ -73982,7 +74263,6 @@ entities:
- uid: 2011
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74059,7 +74339,6 @@ entities:
- uid: 2704
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 24.5,-45.5
parent: 2
- uid: 2919
@@ -74087,7 +74366,6 @@ entities:
- uid: 4519
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -22.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74100,7 +74378,6 @@ entities:
- uid: 4559
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74113,7 +74390,6 @@ entities:
- uid: 4961
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74126,7 +74402,6 @@ entities:
- uid: 4976
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -34.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74139,7 +74414,6 @@ entities:
- uid: 5024
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -33.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74162,7 +74436,6 @@ entities:
- uid: 5390
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,11.5
parent: 2
- type: DeviceNetwork
@@ -74174,7 +74447,6 @@ entities:
- uid: 5395
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,18.5
parent: 2
- type: DeviceNetwork
@@ -74183,7 +74455,6 @@ entities:
- uid: 5417
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 2.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74194,7 +74465,6 @@ entities:
- uid: 5420
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74204,7 +74474,6 @@ entities:
- uid: 5421
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,20.5
parent: 2
- type: DeviceNetwork
@@ -74214,7 +74483,6 @@ entities:
- uid: 5467
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,10.5
parent: 2
- type: DeviceNetwork
@@ -74252,7 +74520,6 @@ entities:
- uid: 6558
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -34.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74287,7 +74554,6 @@ entities:
- uid: 8436
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -33.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74300,7 +74566,6 @@ entities:
- uid: 8446
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74427,7 +74692,6 @@ entities:
- uid: 11233
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,22.5
parent: 2
- type: DeviceNetwork
@@ -74437,7 +74701,6 @@ entities:
- uid: 12056
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 2
- type: DeviceNetwork
@@ -74447,7 +74710,6 @@ entities:
- uid: 12057
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74458,7 +74720,6 @@ entities:
- uid: 12058
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -2.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74468,7 +74729,6 @@ entities:
- uid: 12062
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 4.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74478,7 +74738,6 @@ entities:
- uid: 12068
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74489,7 +74748,6 @@ entities:
- uid: 12246
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,25.5
parent: 2
- type: DeviceNetwork
@@ -74499,7 +74757,6 @@ entities:
- uid: 12247
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 5.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74509,7 +74766,6 @@ entities:
- uid: 12294
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -1.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74519,25 +74775,21 @@ entities:
- uid: 12296
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,24.5
parent: 2
- uid: 12629
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-10.5
parent: 2
- uid: 13120
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,20.5
parent: 2
- uid: 13236
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,22.5
parent: 2
- type: DeviceNetwork
@@ -74548,7 +74800,6 @@ entities:
- uid: 13367
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74568,7 +74819,6 @@ entities:
- uid: 14308
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -74578,7 +74828,6 @@ entities:
- uid: 14329
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-35.5
parent: 2
- type: DeviceNetwork
@@ -74588,7 +74837,6 @@ entities:
- uid: 14368
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -15.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74600,7 +74848,6 @@ entities:
- uid: 14382
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74612,7 +74859,6 @@ entities:
- uid: 14931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -46.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74622,7 +74868,6 @@ entities:
- uid: 14941
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -46.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74632,7 +74877,6 @@ entities:
- uid: 14945
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74643,7 +74887,6 @@ entities:
- uid: 14946
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-33.5
parent: 2
- type: DeviceNetwork
@@ -74654,7 +74897,6 @@ entities:
- uid: 14947
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74665,7 +74907,6 @@ entities:
- uid: 14948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-26.5
parent: 2
- type: DeviceNetwork
@@ -74676,7 +74917,6 @@ entities:
- uid: 14949
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74690,7 +74930,6 @@ entities:
- uid: 14950
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74704,7 +74943,6 @@ entities:
- uid: 14951
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74718,7 +74956,6 @@ entities:
- uid: 14952
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74732,13 +74969,11 @@ entities:
- uid: 15035
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,-19.5
parent: 2
- uid: 15044
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,-20.5
parent: 2
- uid: 15143
@@ -74816,50 +75051,9 @@ entities:
- 15163
- 15139
- 17576
- - uid: 15166
- components:
- - type: Transform
- pos: -6.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15168
- components:
- - type: Transform
- pos: -5.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15169
- components:
- - type: Transform
- pos: -4.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15170
- components:
- - type: Transform
- pos: -3.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- uid: 15171
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 32.5,-54.5
parent: 2
- type: DeviceNetwork
@@ -74868,7 +75062,6 @@ entities:
- uid: 15172
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 26.5,-55.5
parent: 2
- type: DeviceNetwork
@@ -74877,7 +75070,6 @@ entities:
- uid: 15181
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 21.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74888,7 +75080,6 @@ entities:
- uid: 15182
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74899,7 +75090,6 @@ entities:
- uid: 15183
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 19.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74910,7 +75100,6 @@ entities:
- uid: 15192
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 11.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74923,7 +75112,6 @@ entities:
- uid: 15193
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74936,7 +75124,6 @@ entities:
- uid: 15194
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74987,7 +75174,6 @@ entities:
- uid: 15206
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -74998,7 +75184,6 @@ entities:
- uid: 15207
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75009,7 +75194,6 @@ entities:
- uid: 15208
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75020,7 +75204,6 @@ entities:
- uid: 15209
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75031,7 +75214,6 @@ entities:
- uid: 15210
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75043,7 +75225,6 @@ entities:
- uid: 15211
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75055,7 +75236,6 @@ entities:
- uid: 15212
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75066,7 +75246,6 @@ entities:
- uid: 15213
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75077,7 +75256,6 @@ entities:
- uid: 15214
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75088,7 +75266,6 @@ entities:
- uid: 15220
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75100,7 +75277,6 @@ entities:
- uid: 15221
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75112,7 +75288,6 @@ entities:
- uid: 15222
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75124,7 +75299,6 @@ entities:
- uid: 15223
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75135,7 +75309,6 @@ entities:
- uid: 15224
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75146,7 +75319,6 @@ entities:
- uid: 15225
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 35.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75184,7 +75356,6 @@ entities:
- uid: 15273
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75196,7 +75367,6 @@ entities:
- uid: 15274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75208,7 +75378,6 @@ entities:
- uid: 15275
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75220,7 +75389,6 @@ entities:
- uid: 15301
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
- type: DeviceNetwork
@@ -75230,7 +75398,6 @@ entities:
- uid: 15302
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- type: DeviceNetwork
@@ -75240,13 +75407,11 @@ entities:
- uid: 15315
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-4.5
parent: 2
- uid: 15323
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-12.5
parent: 2
- type: DeviceNetwork
@@ -75255,7 +75420,6 @@ entities:
- uid: 15324
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-11.5
parent: 2
- type: DeviceNetwork
@@ -75264,7 +75428,6 @@ entities:
- uid: 15337
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -75276,7 +75439,6 @@ entities:
- uid: 15338
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-38.5
parent: 2
- type: DeviceNetwork
@@ -75288,19 +75450,16 @@ entities:
- uid: 15354
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -4.5,-28.5
parent: 2
- uid: 15355
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 3.5,-32.5
parent: 2
- uid: 15393
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75312,7 +75471,6 @@ entities:
- uid: 15394
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75324,7 +75482,6 @@ entities:
- uid: 15395
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75336,7 +75493,6 @@ entities:
- uid: 15396
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75348,7 +75504,6 @@ entities:
- uid: 15429
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75360,7 +75515,6 @@ entities:
- uid: 15430
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 33.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75372,7 +75526,6 @@ entities:
- uid: 15431
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
parent: 2
- type: DeviceNetwork
@@ -75391,7 +75544,6 @@ entities:
- uid: 15625
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -20.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75403,7 +75555,6 @@ entities:
- uid: 15626
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -19.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75434,7 +75585,6 @@ entities:
- uid: 15672
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -17.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75499,7 +75649,6 @@ entities:
- uid: 16318
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-42.5
parent: 2
- type: DeviceNetwork
@@ -75511,7 +75660,6 @@ entities:
- uid: 16319
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-41.5
parent: 2
- type: DeviceNetwork
@@ -75523,7 +75671,6 @@ entities:
- uid: 16320
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-40.5
parent: 2
- type: DeviceNetwork
@@ -75591,7 +75738,6 @@ entities:
- uid: 18877
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 17.5,12.5
parent: 2
- type: DeviceNetwork
@@ -75601,7 +75747,6 @@ entities:
- uid: 18878
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 16.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75611,7 +75756,6 @@ entities:
- uid: 18879
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75621,7 +75765,6 @@ entities:
- uid: 19001
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -16.5,4.5
parent: 2
- type: DeviceNetwork
@@ -75633,7 +75776,6 @@ entities:
- uid: 19006
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -16.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75645,7 +75787,6 @@ entities:
- uid: 19008
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -15.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75654,14 +75795,6 @@ entities:
- 19009
- 15391
- 10102
- - uid: 20173
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14795
- uid: 20277
components:
- type: Transform
@@ -75711,7 +75844,6 @@ entities:
- uid: 21847
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,21.5
parent: 2
- type: DeviceNetwork
@@ -77323,13 +77455,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 8729
- components:
- - type: Transform
- pos: -34.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 8789
components:
- type: Transform
@@ -77337,14 +77462,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9286
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 9449
components:
- type: Transform
@@ -79876,14 +79993,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2599
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 2602
components:
- type: Transform
@@ -81924,13 +82033,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 8264
- components:
- - type: Transform
- pos: 34.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 8269
components:
- type: Transform
@@ -82280,6 +82382,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 9286
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9335
components:
- type: Transform
@@ -83150,6 +83259,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10900
+ components:
+ - type: Transform
+ pos: -34.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: -34.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 10943
components:
- type: Transform
@@ -87616,6 +87739,8 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,-36.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 14491
components:
- type: Transform
@@ -90332,6 +90457,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17748
+ components:
+ - type: Transform
+ pos: 34.5,-32.5
+ parent: 2
- uid: 17878
components:
- type: Transform
@@ -91740,6 +91870,41 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23218
+ components:
+ - type: Transform
+ pos: -34.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23219
+ components:
+ - type: Transform
+ pos: -34.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23221
+ components:
+ - type: Transform
+ pos: -34.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: -34.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- proto: GasPipeTJunction
entities:
- uid: 129
@@ -93008,6 +93173,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13613
components:
- type: Transform
@@ -93583,6 +93750,8 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 17362
components:
- type: Transform
@@ -93864,6 +94033,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- proto: GasPort
entities:
- uid: 122
@@ -94248,6 +94425,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 666
components:
- type: Transform
@@ -96241,6 +96420,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9627
components:
- type: Transform
@@ -97914,13 +98095,11 @@ entities:
- uid: 264
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,27.5
parent: 2
- uid: 265
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,27.5
parent: 2
- uid: 283
@@ -97941,7 +98120,6 @@ entities:
- uid: 309
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
- uid: 310
@@ -98127,7 +98305,6 @@ entities:
- uid: 882
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-35.5
parent: 2
- uid: 891
@@ -98213,7 +98390,6 @@ entities:
- uid: 1164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-48.5
parent: 2
- uid: 1169
@@ -98239,7 +98415,6 @@ entities:
- uid: 1257
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-46.5
parent: 2
- uid: 1265
@@ -98265,7 +98440,6 @@ entities:
- uid: 1318
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 1322
@@ -98281,7 +98455,6 @@ entities:
- uid: 1339
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1357
@@ -98642,7 +98815,6 @@ entities:
- uid: 3146
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,29.5
parent: 2
- uid: 3187
@@ -100118,7 +100290,6 @@ entities:
- uid: 8080
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,-69.5
parent: 2
- uid: 8081
@@ -100754,7 +100925,6 @@ entities:
- uid: 10237
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-37.5
parent: 2
- uid: 10314
@@ -101100,7 +101270,6 @@ entities:
- uid: 11006
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
- uid: 11011
@@ -101391,13 +101560,11 @@ entities:
- uid: 12453
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-38.5
parent: 2
- uid: 12482
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-36.5
parent: 2
- uid: 12506
@@ -101613,7 +101780,6 @@ entities:
- uid: 13039
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 13085
@@ -101709,7 +101875,6 @@ entities:
- uid: 13351
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 13387
@@ -102630,7 +102795,6 @@ entities:
- uid: 16987
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-45.5
parent: 2
- uid: 17004
@@ -103661,7 +103825,6 @@ entities:
- uid: 18473
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 84.5,-10.5
parent: 2
- uid: 18485
@@ -103722,7 +103885,6 @@ entities:
- uid: 18520
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 97.5,-31.5
parent: 2
- uid: 18533
@@ -105178,7 +105340,6 @@ entities:
- uid: 21811
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21882
@@ -105254,37 +105415,31 @@ entities:
- uid: 22019
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,28.5
parent: 2
- uid: 22030
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,13.5
parent: 2
- uid: 22095
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
- uid: 22126
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,29.5
parent: 2
- uid: 22136
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,27.5
parent: 2
- uid: 22345
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-8.5
parent: 2
- uid: 22834
@@ -105305,19 +105460,16 @@ entities:
- uid: 22908
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 94.5,-14.5
parent: 2
- uid: 23068
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-7.5
parent: 2
- uid: 23114
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-30.5
parent: 2
- proto: GrilleBroken
@@ -106313,7 +106465,6 @@ entities:
- uid: 753
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,6.5
parent: 2
- uid: 2868
@@ -106544,7 +106695,6 @@ entities:
- uid: 17191
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -60.5,6.5
parent: 2
- uid: 17305
@@ -106819,6 +106969,36 @@ entities:
- type: Transform
pos: -21.5,2.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ 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:
+ - 21962
+ - 21619
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GunSafeLaserCarbine
entities:
- uid: 19954
@@ -107427,7 +107607,7 @@ entities:
- uid: 14409
components:
- type: Transform
- pos: -27.084833,15.678647
+ pos: -27.478722,15.819984
parent: 2
- proto: HospitalCurtainsOpen
entities:
@@ -108316,14 +108496,6 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 16020:
- - Pressed: Toggle
- 11462:
- - Pressed: Toggle
- 11461:
- - Pressed: Toggle
- 11459:
- - Pressed: Toggle
6345:
- Pressed: Toggle
2759:
@@ -108332,8 +108504,6 @@ entities:
- Pressed: Toggle
16090:
- Pressed: Toggle
- 3717:
- - Pressed: Toggle
- proto: LockableButtonCaptain
entities:
- uid: 195
@@ -108612,28 +108782,6 @@ entities:
- Pressed: Toggle
16037:
- Pressed: Toggle
-- proto: LockableButtonJanitor
- entities:
- - uid: 4890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-57.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 18130:
- - Pressed: Toggle
- - uid: 5722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-57.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 9113:
- - Pressed: Toggle
- proto: LockableButtonKitchen
entities:
- uid: 16023
@@ -108963,12 +109111,14 @@ entities:
- Pressed: Toggle
527:
- Pressed: Toggle
- 7944:
+ 20173:
- Pressed: Toggle
17722:
- Pressed: Toggle
1053:
- Pressed: Toggle
+ 4890:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 1929
@@ -109365,24 +109515,18 @@ entities:
parent: 2
- proto: LogicGateOr
entities:
- - uid: 5002
+ - uid: 13412
components:
- type: Transform
anchored: True
- rot: 3.141592653589793 rad
- pos: 17.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,27.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 1722:
- - Output: DoorBolt
- 21849:
- - Output: DoorBolt
- 1756:
- - Output: DoorBolt
- 20665:
+ 294:
- Output: DoorBolt
- type: Physics
canCollide: False
@@ -109395,7 +109539,7 @@ entities:
pos: 16.5,27.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
21849:
@@ -109404,8 +109548,6 @@ entities:
- Output: DoorBolt
5486:
- Output: DoorBolt
- 22009:
- - Output: DoorBolt
- type: Physics
canCollide: False
bodyType: Static
@@ -109417,15 +109559,13 @@ entities:
pos: 16.5,29.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
20665:
- Output: DoorBolt
1756:
- Output: DoorBolt
- 22009:
- - Output: DoorBolt
5486:
- Output: DoorBolt
- type: Physics
@@ -110088,6 +110228,11 @@ entities:
- type: Transform
pos: -41.5,-43.5
parent: 2
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: -66.5,-15.5
+ parent: 2
- uid: 20662
components:
- type: Transform
@@ -110220,6 +110365,13 @@ entities:
- type: Configuration
config:
tag: Engineering
+ - uid: 11461
+ components:
+ - type: Transform
+ pos: -0.5,-45.5
+ parent: 2
+ - type: MailingUnit
+ tag: Bar
- uid: 12581
components:
- type: Transform
@@ -110612,6 +110764,28 @@ entities:
- type: Transform
pos: 39.5,21.5
parent: 2
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: -53.5,-23.5
+ parent: 2
+ - uid: 23057
+ components:
+ - type: Transform
+ pos: 21.5,-16.5
+ parent: 2
+ - uid: 23204
+ components:
+ - type: Transform
+ pos: 45.5,-27.5
+ parent: 2
+ - uid: 23206
+ components:
+ - type: Transform
+ pos: -52.5,-49.5
+ parent: 2
- proto: MaintenancePlantSpawner
entities:
- uid: 510
@@ -111314,11 +111488,6 @@ entities:
parent: 2
- type: TimedSpawner
intervalSeconds: 720
- - uid: 12128
- components:
- - type: Transform
- pos: 24.5,-2.5
- parent: 2
- uid: 16089
components:
- type: Transform
@@ -111355,6 +111524,11 @@ entities:
- type: TimedSpawner
intervalSeconds: 600
chance: 0.2
+ - uid: 23208
+ components:
+ - type: Transform
+ pos: 19.5,-3.5
+ parent: 2
- proto: Multitool
entities:
- uid: 3370
@@ -111857,6 +112031,7 @@ entities:
===================================================
- type: Contraband
+ allowedJobs: []
allowedDepartments:
- Security
severity: Syndicate
@@ -113428,6 +113603,12 @@ entities:
- type: Transform
pos: -22.5,17.5
parent: 2
+ - uid: 1263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-74.5
+ parent: 2
- uid: 1804
components:
- type: Transform
@@ -113649,12 +113830,6 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,2.5
parent: 2
- - uid: 7944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-41.5
- parent: 2
- uid: 8420
components:
- type: Transform
@@ -114792,6 +114967,12 @@ entities:
- type: Transform
pos: -64.5,-19.5
parent: 2
+ - uid: 10902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-65.5
+ parent: 2
- uid: 12821
components:
- type: Transform
@@ -114875,6 +115056,11 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,31.5
parent: 2
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -36.5,-82.5
+ parent: 2
- proto: PoweredSmallLight
entities:
- uid: 233
@@ -115751,6 +115937,12 @@ entities:
- type: Transform
pos: 7.5,2.5
parent: 2
+ - uid: 23205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,5.5
+ parent: 2
- proto: PoweredSmallLightEmpty
entities:
- uid: 9504
@@ -115832,16 +116024,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-47.5
parent: 2
- - uid: 6121
+ - uid: 4890
components:
- type: Transform
- pos: 42.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-42.5
parent: 2
- - uid: 6943
+ - uid: 6121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-45.5
+ pos: 42.5,12.5
parent: 2
- uid: 7335
components:
@@ -115988,17 +116180,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
- - uid: 17606
+ - uid: 17723
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-26.5
parent: 2
- - uid: 17723
+ - uid: 20173
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-26.5
+ pos: -6.5,-44.5
+ parent: 2
+ - uid: 20268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-53.5
parent: 2
- uid: 20501
components:
@@ -116260,12 +116458,6 @@ entities:
- type: Transform
pos: -23.5,15.5
parent: 2
- - uid: 2504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-45.5
- parent: 2
- uid: 2681
components:
- type: Transform
@@ -117119,7 +117311,7 @@ entities:
- uid: 15855
components:
- type: Transform
- pos: -0.66263175,-45.283024
+ pos: -4.4382114,-46.323513
parent: 2
- uid: 20693
components:
@@ -117960,11 +118152,6 @@ entities:
- type: Transform
pos: 27.5,-50.5
parent: 2
- - uid: 20125
- components:
- - type: Transform
- pos: -34.5,17.5
- parent: 2
- uid: 22807
components:
- type: Transform
@@ -118019,6 +118206,11 @@ entities:
- type: Transform
pos: -4.5,-42.5
parent: 2
+ - uid: 11462
+ components:
+ - type: Transform
+ pos: -6.5,-42.5
+ parent: 2
- uid: 14990
components:
- type: Transform
@@ -118560,25 +118752,21 @@ entities:
- uid: 20608
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -42.5,-4.5
parent: 2
- uid: 20609
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,0.5
parent: 2
- uid: 20610
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-6.5
parent: 2
- uid: 20611
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,5.5
parent: 2
- uid: 22651
@@ -118736,7 +118924,6 @@ entities:
- uid: 14507
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,13.5
parent: 2
- uid: 15128
@@ -118752,7 +118939,6 @@ entities:
- uid: 16119
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-36.5
parent: 2
- uid: 16123
@@ -118803,7 +118989,6 @@ entities:
- uid: 16974
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-4.5
parent: 2
- uid: 17024
@@ -118844,37 +119029,31 @@ entities:
- uid: 20251
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -21.5,-53.5
parent: 2
- uid: 20252
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,-51.5
parent: 2
- uid: 20557
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,18.5
parent: 2
- uid: 20586
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -22.5,18.5
parent: 2
- uid: 20607
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-1.5
parent: 2
- uid: 21260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,-5.5
parent: 2
- uid: 22654
@@ -119010,13 +119189,11 @@ entities:
- uid: 22726
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-2.5
parent: 2
- uid: 22727
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,6.5
parent: 2
- proto: RandomSmokables
@@ -119036,6 +119213,11 @@ entities:
- type: Transform
pos: -27.887064,-45.89555
parent: 2
+ - uid: 15170
+ components:
+ - type: Transform
+ pos: -6.4363174,-43.468136
+ parent: 2
- uid: 18968
components:
- type: Transform
@@ -119076,11 +119258,6 @@ entities:
- type: Transform
pos: -53.675484,-50.3226
parent: 2
- - uid: 22755
- components:
- - type: Transform
- pos: -3.8056746,-42.44955
- parent: 2
- uid: 22756
components:
- type: Transform
@@ -119106,7 +119283,6 @@ entities:
- uid: 12936
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-5.5
parent: 2
- proto: RandomSoap
@@ -119226,7 +119402,6 @@ entities:
- uid: 10972
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 50.5,-9.5
parent: 2
- uid: 11191
@@ -119242,7 +119417,6 @@ entities:
- uid: 15871
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -23.5,-47.5
parent: 2
- uid: 15919
@@ -119662,6 +119836,38 @@ entities:
- type: Transform
pos: 18.5,-20.5
parent: 2
+- proto: RandomVendingClothing
+ entities:
+ - uid: 12612
+ components:
+ - type: Transform
+ pos: -35.5,-62.5
+ parent: 2
+ - uid: 16189
+ components:
+ - type: Transform
+ pos: -20.5,-25.5
+ parent: 2
+ - uid: 16581
+ components:
+ - type: Transform
+ pos: 13.5,-24.5
+ parent: 2
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: 13.5,-26.5
+ parent: 2
+ - uid: 20125
+ components:
+ - type: Transform
+ pos: 13.5,-25.5
+ parent: 2
+ - uid: 20267
+ components:
+ - type: Transform
+ pos: 48.5,-15.5
+ parent: 2
- proto: RandomVendingDrinks
entities:
- uid: 6102
@@ -119676,11 +119882,6 @@ entities:
parent: 2
- proto: RandomVendingSnacks
entities:
- - uid: 1739
- components:
- - type: Transform
- pos: -35.5,-62.5
- parent: 2
- uid: 2604
components:
- type: Transform
@@ -120094,7 +120295,6 @@ entities:
- uid: 196
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 211
@@ -120500,7 +120700,6 @@ entities:
- uid: 1712
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,28.5
parent: 2
- uid: 1747
@@ -120511,7 +120710,6 @@ entities:
- uid: 1800
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,27.5
parent: 2
- uid: 1832
@@ -120527,7 +120725,6 @@ entities:
- uid: 1891
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,13.5
parent: 2
- uid: 1900
@@ -120543,7 +120740,6 @@ entities:
- uid: 1916
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1958
@@ -120569,7 +120765,6 @@ entities:
- uid: 2329
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 2352
@@ -120865,7 +121060,6 @@ entities:
- uid: 4494
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
- uid: 4577
@@ -120916,7 +121110,6 @@ entities:
- uid: 4745
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 51.5,20.5
parent: 2
- uid: 4754
@@ -121112,13 +121305,11 @@ entities:
- uid: 5490
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,24.5
parent: 2
- uid: 5508
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,23.5
parent: 2
- uid: 5527
@@ -121224,13 +121415,11 @@ entities:
- uid: 5867
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 50.5,20.5
parent: 2
- uid: 5871
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 49.5,20.5
parent: 2
- uid: 5889
@@ -121726,7 +121915,6 @@ entities:
- uid: 8571
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,25.5
parent: 2
- uid: 8583
@@ -122562,7 +122750,6 @@ entities:
- uid: 13341
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 13369
@@ -123038,7 +123225,6 @@ entities:
- uid: 21838
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21867
@@ -123089,13 +123275,11 @@ entities:
- uid: 21930
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
- uid: 21931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
- uid: 21942
@@ -123111,19 +123295,16 @@ entities:
- uid: 22011
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,27.5
parent: 2
- uid: 22012
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,29.5
parent: 2
- uid: 22050
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,27.5
parent: 2
- uid: 22052
@@ -123134,19 +123315,16 @@ entities:
- uid: 22080
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,29.5
parent: 2
- uid: 22595
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-8.5
parent: 2
- uid: 22596
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-7.5
parent: 2
- proto: RemoteSignaller
@@ -123238,7 +123416,7 @@ entities:
- uid: 8291
components:
- type: Transform
- pos: -21.461847,6.590386
+ pos: -21.73,6.5
parent: 2
- type: Blocking
blockingToggleActionEntity: 5100
@@ -123253,15 +123431,23 @@ entities:
- uid: 632
components:
- type: Transform
- pos: -21.709589,6.6321044
+ pos: -21.73,6.63
parent: 2
- proto: RiotShield
entities:
- uid: 3686
components:
- type: Transform
- pos: -21.211723,6.5486903
+ pos: -21.71,6.432082
parent: 2
+ - type: Blocking
+ blockingToggleActionEntity: 22750
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22750
- proto: RobocopCircuitBoard
entities:
- uid: 16469
@@ -123754,10 +123940,10 @@ entities:
- type: Transform
pos: -37.7531,-24.421627
parent: 2
- - uid: 21619
+ - uid: 17606
components:
- type: Transform
- pos: -57.542072,-58.42012
+ pos: -57.49946,-58.450542
parent: 2
- proto: SheetGlass1
entities:
@@ -123950,6 +124136,13 @@ entities:
- type: Transform
pos: 44.497368,9.486668
parent: 2
+- proto: SheetUGlass
+ entities:
+ - uid: 22984
+ components:
+ - type: Transform
+ pos: 26.5036,-16.527693
+ parent: 2
- proto: SheetUranium
entities:
- uid: 13030
@@ -124048,12 +124241,6 @@ entities:
- type: Transform
pos: -3.5,-46.5
parent: 2
- - uid: 3717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-44.5
- parent: 2
- uid: 4048
components:
- type: Transform
@@ -124153,24 +124340,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-18.5
parent: 2
- - uid: 11459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-43.5
- parent: 2
- - uid: 11461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-42.5
- parent: 2
- - uid: 11462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-42.5
- parent: 2
- uid: 11943
components:
- type: Transform
@@ -124246,12 +124415,6 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,-45.5
parent: 2
- - uid: 16020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-42.5
- parent: 2
- uid: 16025
components:
- type: Transform
@@ -125025,6 +125188,26 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,9.3
parent: 2
+- proto: SignDirectionalEscapePod
+ entities:
+ - uid: 12897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 2
+ - uid: 13742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,21.5
+ parent: 2
+ - uid: 13763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-55.5
+ parent: 2
- proto: SignDirectionalEvac
entities:
- uid: 31
@@ -127280,19 +127463,16 @@ entities:
- uid: 17321
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,15.5
parent: 2
- uid: 17322
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -16.5,15.5
parent: 2
- uid: 17325
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,13.5
parent: 2
- proto: SpawnMobButterfly
@@ -127300,13 +127480,11 @@ entities:
- uid: 788
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,30.5
parent: 2
- uid: 3007
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,30.5
parent: 2
- uid: 3376
@@ -127317,13 +127495,11 @@ entities:
- uid: 17326
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -16.5,17.5
parent: 2
- uid: 17327
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,17.5
parent: 2
- proto: SpawnMobCatException
@@ -127432,7 +127608,6 @@ entities:
- uid: 61
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-53.5
parent: 2
- proto: SpawnMobReindeerDoe
@@ -127440,7 +127615,6 @@ entities:
- uid: 10952
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-53.5
parent: 2
- proto: SpawnMobShiva
@@ -127881,21 +128055,11 @@ entities:
- type: Transform
pos: 50.5,-22.5
parent: 2
- - uid: 16187
- components:
- - type: Transform
- pos: 17.5,-48.5
- parent: 2
- uid: 16188
components:
- type: Transform
pos: 17.5,-49.5
parent: 2
- - uid: 16189
- components:
- - type: Transform
- pos: 19.5,-50.5
- parent: 2
- uid: 16190
components:
- type: Transform
@@ -128094,6 +128258,11 @@ entities:
- type: Transform
pos: -25.5,16.5
parent: 2
+ - uid: 15168
+ components:
+ - type: Transform
+ pos: -22.5,16.5
+ parent: 2
- proto: SpawnPointServiceWorker
entities:
- uid: 22779
@@ -128425,6 +128594,11 @@ entities:
- type: Transform
pos: -25.5,-39.5
parent: 2
+ - uid: 14729
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
- uid: 16663
components:
- type: Transform
@@ -128440,11 +128614,6 @@ entities:
- type: Transform
pos: -13.5,1.5
parent: 2
- - uid: 16672
- components:
- - type: Transform
- pos: 13.5,9.5
- parent: 2
- uid: 16674
components:
- type: Transform
@@ -128612,11 +128781,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-43.5
parent: 2
- - uid: 3473
- components:
- - type: Transform
- pos: -4.5,-41.5
- parent: 2
- uid: 3609
components:
- type: Transform
@@ -128628,6 +128792,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,-28.5
parent: 2
+ - uid: 5722
+ components:
+ - type: Transform
+ pos: -4.5,-41.5
+ parent: 2
- uid: 6696
components:
- type: Transform
@@ -128669,6 +128838,11 @@ entities:
- type: Transform
pos: -0.5,24.5
parent: 2
+ - uid: 11459
+ components:
+ - type: Transform
+ pos: -6.5,-41.5
+ parent: 2
- uid: 11867
components:
- type: Transform
@@ -128715,6 +128889,12 @@ entities:
- type: Transform
pos: 73.5,-61.5
parent: 2
+ - uid: 16020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-42.5
+ parent: 2
- uid: 16213
components:
- type: Transform
@@ -130054,7 +130234,6 @@ entities:
- uid: 71
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 13.5,-59.5
parent: 2
- uid: 270
@@ -130070,13 +130249,11 @@ entities:
- uid: 380
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -30.5,3.5
parent: 2
- uid: 388
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,2.5
parent: 2
- uid: 389
@@ -130122,19 +130299,16 @@ entities:
- uid: 732
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -33.5,-37.5
parent: 2
- uid: 1091
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,22.5
parent: 2
- uid: 1134
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-54.5
parent: 2
- uid: 1503
@@ -130145,7 +130319,6 @@ entities:
- uid: 1670
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 19.5,15.5
parent: 2
- uid: 1674
@@ -130161,19 +130334,16 @@ entities:
- uid: 1761
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -42.5,-27.5
parent: 2
- uid: 1829
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-16.5
parent: 2
- uid: 1834
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
- uid: 1956
@@ -130194,19 +130364,16 @@ entities:
- uid: 2358
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 18.5,15.5
parent: 2
- uid: 2581
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,0.5
parent: 2
- uid: 2924
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-24.5
parent: 2
- uid: 3037
@@ -130217,7 +130384,6 @@ entities:
- uid: 3111
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -5.5,-23.5
parent: 2
- uid: 3191
@@ -130238,7 +130404,6 @@ entities:
- uid: 3263
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 1.5,-33.5
parent: 2
- uid: 3275
@@ -130264,13 +130429,11 @@ entities:
- uid: 3358
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -14.5,-24.5
parent: 2
- uid: 3366
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-24.5
parent: 2
- uid: 3424
@@ -130326,7 +130489,6 @@ entities:
- uid: 4209
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-38.5
parent: 2
- uid: 4241
@@ -130342,13 +130504,11 @@ entities:
- uid: 4252
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-37.5
parent: 2
- uid: 4274
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 18.5,-26.5
parent: 2
- uid: 4291
@@ -130359,7 +130519,6 @@ entities:
- uid: 4317
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-27.5
parent: 2
- uid: 4326
@@ -130370,13 +130529,11 @@ entities:
- uid: 4349
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 38.5,-27.5
parent: 2
- uid: 4367
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-29.5
parent: 2
- uid: 4460
@@ -130392,13 +130549,11 @@ entities:
- uid: 4500
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,-41.5
parent: 2
- uid: 4562
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-28.5
parent: 2
- uid: 4588
@@ -130409,7 +130564,6 @@ entities:
- uid: 4762
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-19.5
parent: 2
- uid: 4807
@@ -130420,13 +130574,11 @@ entities:
- uid: 5196
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-29.5
parent: 2
- uid: 5207
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -18.5,-22.5
parent: 2
- uid: 5446
@@ -130442,7 +130594,6 @@ entities:
- uid: 5610
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,21.5
parent: 2
- uid: 5943
@@ -130453,7 +130604,6 @@ entities:
- uid: 6653
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-15.5
parent: 2
- uid: 6677
@@ -130464,13 +130614,11 @@ entities:
- uid: 6722
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-38.5
parent: 2
- uid: 6762
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-30.5
parent: 2
- uid: 6818
@@ -130486,73 +130634,61 @@ entities:
- uid: 7002
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -45.5,-29.5
parent: 2
- uid: 7097
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 14.5,0.5
parent: 2
- uid: 7176
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-19.5
parent: 2
- uid: 7617
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-6.5
parent: 2
- uid: 7626
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,-6.5
parent: 2
- uid: 7629
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-25.5
parent: 2
- uid: 8538
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-14.5
parent: 2
- uid: 8599
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 44.5,-2.5
parent: 2
- uid: 8852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,22.5
parent: 2
- uid: 8881
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 6.5,-19.5
parent: 2
- uid: 9130
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,23.5
parent: 2
- uid: 9275
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-16.5
parent: 2
- uid: 9288
@@ -130573,7 +130709,6 @@ entities:
- uid: 9380
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-16.5
parent: 2
- uid: 9515
@@ -130584,13 +130719,11 @@ entities:
- uid: 9963
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -36.5,-2.5
parent: 2
- uid: 10191
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 11.5,-16.5
parent: 2
- uid: 10236
@@ -130601,7 +130734,6 @@ entities:
- uid: 10439
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -26.5,15.5
parent: 2
- uid: 10489
@@ -130612,19 +130744,16 @@ entities:
- uid: 10492
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -52.5,-51.5
parent: 2
- uid: 10533
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -44.5,-27.5
parent: 2
- uid: 10551
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-36.5
parent: 2
- uid: 10915
@@ -130635,25 +130764,21 @@ entities:
- uid: 11244
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -27.5,15.5
parent: 2
- uid: 11338
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-36.5
parent: 2
- uid: 11416
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-27.5
parent: 2
- uid: 11437
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -53.5,-51.5
parent: 2
- uid: 11843
@@ -130664,19 +130789,16 @@ entities:
- uid: 11976
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -28.5,-7.5
parent: 2
- uid: 12036
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-37.5
parent: 2
- uid: 12152
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,3.5
parent: 2
- uid: 12338
@@ -130687,7 +130809,6 @@ entities:
- uid: 12384
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -44.5,-29.5
parent: 2
- uid: 12429
@@ -130698,7 +130819,6 @@ entities:
- uid: 12538
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 24.5,8.5
parent: 2
- uid: 12647
@@ -130709,7 +130829,6 @@ entities:
- uid: 12668
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,-12.5
parent: 2
- uid: 12748
@@ -130720,37 +130839,31 @@ entities:
- uid: 12855
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-46.5
parent: 2
- uid: 12918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-30.5
parent: 2
- uid: 12933
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-29.5
parent: 2
- uid: 12934
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-28.5
parent: 2
- uid: 12938
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-27.5
parent: 2
- uid: 12939
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-28.5
parent: 2
- uid: 12983
@@ -130761,7 +130874,6 @@ entities:
- uid: 13061
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-18.5
parent: 2
- uid: 13194
@@ -130777,13 +130889,11 @@ entities:
- uid: 13551
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 48.5,-24.5
parent: 2
- uid: 13749
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-24.5
parent: 2
- uid: 13894
@@ -130849,13 +130959,11 @@ entities:
- uid: 15376
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,-23.5
parent: 2
- uid: 15405
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-23.5
parent: 2
- uid: 15610
@@ -130871,25 +130979,21 @@ entities:
- uid: 16409
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -63.5,-15.5
parent: 2
- uid: 16416
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -63.5,-16.5
parent: 2
- uid: 16459
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -60.5,-16.5
parent: 2
- uid: 16460
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -61.5,-16.5
parent: 2
- uid: 16587
@@ -130905,13 +131009,11 @@ entities:
- uid: 16879
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-2.5
parent: 2
- uid: 17003
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 31.5,-75.5
parent: 2
- uid: 17258
@@ -131012,7 +131114,6 @@ entities:
- uid: 20661
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -7.5,-6.5
parent: 2
- uid: 20681
@@ -131028,13 +131129,11 @@ entities:
- uid: 21398
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,-15.5
parent: 2
- uid: 21420
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -20.5,-15.5
parent: 2
- uid: 21445
@@ -131050,7 +131149,6 @@ entities:
- uid: 21757
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 21.5,4.5
parent: 2
- uid: 22111
@@ -131118,7 +131216,6 @@ entities:
- uid: 749
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-26.5
parent: 2
- uid: 773
@@ -131129,13 +131226,11 @@ entities:
- uid: 2169
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
- uid: 2262
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- uid: 3272
@@ -131166,7 +131261,6 @@ entities:
- uid: 4193
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-23.5
parent: 2
- uid: 4227
@@ -131182,7 +131276,6 @@ entities:
- uid: 4596
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-33.5
parent: 2
- uid: 6371
@@ -131203,7 +131296,6 @@ entities:
- uid: 11265
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-33.5
parent: 2
- uid: 11322
@@ -131214,7 +131306,6 @@ entities:
- uid: 11331
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-33.5
parent: 2
- uid: 11453
@@ -131225,7 +131316,6 @@ entities:
- uid: 12009
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-26.5
parent: 2
- uid: 12596
@@ -131248,25 +131338,21 @@ entities:
- uid: 3545
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
- uid: 3546
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -5.5,-42.5
parent: 2
- uid: 3547
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,-42.5
parent: 2
- uid: 6062
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -36.5,-53.5
parent: 2
- uid: 6147
@@ -131304,10 +131390,14 @@ entities:
- type: Transform
pos: 46.5,11.5
parent: 2
+ - uid: 7944
+ components:
+ - type: Transform
+ pos: -6.5,-42.5
+ parent: 2
- uid: 9397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -2.5,-46.5
parent: 2
- uid: 11865
@@ -131323,7 +131413,6 @@ entities:
- uid: 14611
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-46.5
parent: 2
- uid: 14721
@@ -131359,13 +131448,11 @@ entities:
- uid: 17970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-46.5
parent: 2
- uid: 20188
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-46.5
parent: 2
- proto: TableFancyBlack
@@ -131629,7 +131716,6 @@ entities:
- uid: 6734
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,-33.5
parent: 2
- proto: TableReinforced
@@ -131637,7 +131723,6 @@ entities:
- uid: 164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-15.5
parent: 2
- uid: 443
@@ -131663,7 +131748,6 @@ entities:
- uid: 851
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,22.5
parent: 2
- uid: 853
@@ -131679,13 +131763,11 @@ entities:
- uid: 1362
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,16.5
parent: 2
- uid: 1363
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,16.5
parent: 2
- uid: 1906
@@ -131726,13 +131808,11 @@ entities:
- uid: 3843
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,20.5
parent: 2
- uid: 4874
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-16.5
parent: 2
- uid: 4926
@@ -131753,7 +131833,6 @@ entities:
- uid: 5363
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,18.5
parent: 2
- uid: 7540
@@ -131784,19 +131863,16 @@ entities:
- uid: 14294
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,22.5
parent: 2
- uid: 18466
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 88.5,-28.5
parent: 2
- uid: 18467
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 87.5,-28.5
parent: 2
- uid: 20675
@@ -131807,13 +131883,11 @@ entities:
- uid: 21969
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
- uid: 22644
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 42.5,15.5
parent: 2
- proto: TableReinforcedGlass
@@ -131821,31 +131895,26 @@ entities:
- uid: 2080
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-86.5
parent: 2
- uid: 10045
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
parent: 2
- uid: 10197
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 73.5,-40.5
parent: 2
- uid: 10726
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 74.5,-41.5
parent: 2
- uid: 12824
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-87.5
parent: 2
- proto: TableWood
@@ -132432,6 +132501,23 @@ entities:
- type: Transform
pos: 19.270489,-6.2979584
parent: 2
+- proto: TearGasGrenade
+ entities:
+ - uid: 23210
+ components:
+ - type: Transform
+ pos: -24.68567,13.724779
+ parent: 2
+ - uid: 23211
+ components:
+ - type: Transform
+ pos: -24.331327,13.724779
+ parent: 2
+ - uid: 23212
+ components:
+ - type: Transform
+ pos: -24.508497,13.651812
+ parent: 2
- proto: TegCenter
entities:
- uid: 2237
@@ -132479,11 +132565,6 @@ entities:
- type: Transform
pos: -11.5,-53.5
parent: 2
- - uid: 16581
- components:
- - type: Transform
- pos: -66.5,-15.5
- parent: 2
- proto: TelecomServerFilledCommon
entities:
- uid: 13181
@@ -132629,19 +132710,16 @@ entities:
- uid: 7780
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-35.5
parent: 2
- uid: 7781
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-37.5
parent: 2
- uid: 9883
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-45.5
parent: 2
- uid: 11969
@@ -132662,13 +132740,11 @@ entities:
- uid: 12023
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-38.5
parent: 2
- uid: 12043
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-36.5
parent: 2
- uid: 12073
@@ -132699,13 +132775,11 @@ entities:
- uid: 21437
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,-41.5
parent: 2
- uid: 22593
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-30.5
parent: 2
- proto: ToiletDirtyWater
@@ -133238,6 +133312,19 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
+ - uid: 6943
+ components:
+ - type: Transform
+ pos: 31.5,-57.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2504:
+ - Right: Open
+ - Middle: Close
+ 18130:
+ - Left: Open
+ - Middle: Close
- uid: 11941
components:
- type: Transform
@@ -133519,11 +133606,6 @@ entities:
- type: Transform
pos: 8.5,-62.5
parent: 2
- - uid: 14729
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- uid: 22762
components:
- type: Transform
@@ -133531,11 +133613,6 @@ entities:
parent: 2
- proto: VendingMachineClothing
entities:
- - uid: 10901
- components:
- - type: Transform
- pos: 13.5,-25.5
- parent: 2
- uid: 11490
components:
- type: Transform
@@ -133782,13 +133859,6 @@ entities:
- type: Transform
pos: 15.5,25.5
parent: 2
-- proto: VendingMachineTheater
- entities:
- - uid: 10900
- components:
- - type: Transform
- pos: 13.5,-24.5
- parent: 2
- proto: VendingMachineVendomat
entities:
- uid: 2412
@@ -133808,18 +133878,6 @@ entities:
- type: Transform
pos: -53.5,-31.5
parent: 2
-- proto: VendingMachineWinter
- entities:
- - uid: 10902
- components:
- - type: Transform
- pos: 13.5,-26.5
- parent: 2
- - uid: 12612
- components:
- - type: Transform
- pos: 48.5,-15.5
- parent: 2
- proto: VendingMachineYouTool
entities:
- uid: 3385
@@ -133991,7 +134049,6 @@ entities:
- uid: 217
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,10.5
parent: 2
- uid: 222
@@ -134542,7 +134599,6 @@ entities:
- uid: 1037
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,19.5
parent: 2
- uid: 1042
@@ -134563,7 +134619,6 @@ entities:
- uid: 1070
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,18.5
parent: 2
- uid: 1084
@@ -134599,13 +134654,11 @@ entities:
- uid: 1110
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,18.5
parent: 2
- uid: 1112
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,17.5
parent: 2
- uid: 1114
@@ -134666,13 +134719,11 @@ entities:
- uid: 1151
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-51.5
parent: 2
- uid: 1153
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-54.5
parent: 2
- uid: 1162
@@ -135198,7 +135249,6 @@ entities:
- uid: 2351
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 33.5,27.5
parent: 2
- uid: 2353
@@ -135214,7 +135264,6 @@ entities:
- uid: 2389
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 36.5,27.5
parent: 2
- uid: 2413
@@ -135740,7 +135789,6 @@ entities:
- uid: 3825
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 25.5,17.5
parent: 2
- uid: 3826
@@ -136248,6 +136296,11 @@ entities:
- type: Transform
pos: -48.5,-59.5
parent: 2
+ - uid: 5002
+ components:
+ - type: Transform
+ pos: 18.5,29.5
+ parent: 2
- uid: 5009
components:
- type: Transform
@@ -136346,7 +136399,6 @@ entities:
- uid: 5176
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,27.5
parent: 2
- uid: 5185
@@ -136782,7 +136834,6 @@ entities:
- uid: 5886
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 48.5,25.5
parent: 2
- uid: 5900
@@ -137293,7 +137344,6 @@ entities:
- uid: 6948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 41.5,15.5
parent: 2
- uid: 6949
@@ -137789,7 +137839,6 @@ entities:
- uid: 8507
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,18.5
parent: 2
- uid: 8541
@@ -137945,7 +137994,6 @@ entities:
- uid: 8853
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 48.5,24.5
parent: 2
- uid: 8861
@@ -138106,7 +138154,6 @@ entities:
- uid: 9602
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,17.5
parent: 2
- uid: 9609
@@ -138332,7 +138379,6 @@ entities:
- uid: 10423
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-55.5
parent: 2
- uid: 10428
@@ -138533,7 +138579,6 @@ entities:
- uid: 11216
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,30.5
parent: 2
- uid: 11239
@@ -138679,7 +138724,6 @@ entities:
- uid: 11892
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-33.5
parent: 2
- uid: 11894
@@ -138705,7 +138749,6 @@ entities:
- uid: 12022
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 45.5,14.5
parent: 2
- uid: 12026
@@ -139031,7 +139074,6 @@ entities:
- uid: 12784
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-54.5
parent: 2
- uid: 12787
@@ -139077,7 +139119,6 @@ entities:
- uid: 12852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-54.5
parent: 2
- uid: 12873
@@ -139843,13 +139884,11 @@ entities:
- uid: 16055
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-54.5
parent: 2
- uid: 16072
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 47.5,18.5
parent: 2
- uid: 16080
@@ -140100,7 +140139,6 @@ entities:
- uid: 17459
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 50.5,13.5
parent: 2
- uid: 17461
@@ -140141,7 +140179,6 @@ entities:
- uid: 17817
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-51.5
parent: 2
- uid: 17849
@@ -140232,7 +140269,6 @@ entities:
- uid: 18409
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 44.5,23.5
parent: 2
- uid: 18523
@@ -140268,7 +140304,6 @@ entities:
- uid: 19229
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-55.5
parent: 2
- uid: 19240
@@ -140299,7 +140334,6 @@ entities:
- uid: 19264
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-57.5
parent: 2
- uid: 19398
@@ -140385,7 +140419,6 @@ entities:
- uid: 20663
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,26.5
parent: 2
- uid: 20670
@@ -140406,7 +140439,6 @@ entities:
- uid: 21785
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 44.5,25.5
parent: 2
- uid: 21807
@@ -140437,7 +140469,6 @@ entities:
- uid: 21886
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
- uid: 21891
@@ -140463,7 +140494,6 @@ entities:
- uid: 22013
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -36.5,10.5
parent: 2
- uid: 22015
@@ -140474,13 +140504,11 @@ entities:
- uid: 22025
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-50.5
parent: 2
- uid: 22038
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,30.5
parent: 2
- uid: 22081
@@ -140496,7 +140524,6 @@ entities:
- uid: 22086
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -34.5,10.5
parent: 2
- uid: 22089
@@ -140532,13 +140559,11 @@ entities:
- uid: 22184
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
- uid: 22639
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 45.5,15.5
parent: 2
- proto: WallReinforcedRust
@@ -140616,7 +140641,6 @@ entities:
- uid: 1118
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-54.5
parent: 2
- uid: 1158
@@ -140647,7 +140671,6 @@ entities:
- uid: 2805
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-87.5
parent: 2
- uid: 3008
@@ -140693,37 +140716,31 @@ entities:
- uid: 3261
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-85.5
parent: 2
- uid: 3300
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-87.5
parent: 2
- uid: 3306
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-68.5
parent: 2
- uid: 3309
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -31.5,-66.5
parent: 2
- uid: 3318
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-59.5
parent: 2
- uid: 3323
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,-68.5
parent: 2
- uid: 3339
@@ -140744,31 +140761,26 @@ entities:
- uid: 3415
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-65.5
parent: 2
- uid: 3423
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -17.5,-68.5
parent: 2
- uid: 3429
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-86.5
parent: 2
- uid: 3447
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-86.5
parent: 2
- uid: 3573
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-72.5
parent: 2
- uid: 3719
@@ -140784,13 +140796,11 @@ entities:
- uid: 3812
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-71.5
parent: 2
- uid: 3828
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,-79.5
parent: 2
- uid: 3845
@@ -140801,13 +140811,11 @@ entities:
- uid: 3862
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-59.5
parent: 2
- uid: 4164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-58.5
parent: 2
- uid: 4352
@@ -140833,31 +140841,26 @@ entities:
- uid: 4852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-88.5
parent: 2
- uid: 4885
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-86.5
parent: 2
- uid: 4908
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-75.5
parent: 2
- uid: 4918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-81.5
parent: 2
- uid: 4925
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -13.5,-73.5
parent: 2
- uid: 4974
@@ -140868,13 +140871,11 @@ entities:
- uid: 5101
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -13.5,-79.5
parent: 2
- uid: 5114
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-60.5
parent: 2
- uid: 5146
@@ -140985,7 +140986,6 @@ entities:
- uid: 5774
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-85.5
parent: 2
- uid: 5775
@@ -141036,7 +141036,6 @@ entities:
- uid: 5866
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 13.5,-86.5
parent: 2
- uid: 5881
@@ -141047,13 +141046,11 @@ entities:
- uid: 5888
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-76.5
parent: 2
- uid: 5892
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 13.5,-88.5
parent: 2
- uid: 5898
@@ -141069,7 +141066,6 @@ entities:
- uid: 6085
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-65.5
parent: 2
- uid: 6099
@@ -141085,7 +141081,6 @@ entities:
- uid: 6161
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-91.5
parent: 2
- uid: 6179
@@ -141096,7 +141091,6 @@ entities:
- uid: 6186
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-73.5
parent: 2
- uid: 6223
@@ -141147,31 +141141,26 @@ entities:
- uid: 6321
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-73.5
parent: 2
- uid: 6324
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-75.5
parent: 2
- uid: 6325
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,-90.5
parent: 2
- uid: 6352
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-76.5
parent: 2
- uid: 6353
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-76.5
parent: 2
- uid: 6369
@@ -141187,19 +141176,16 @@ entities:
- uid: 6397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-58.5
parent: 2
- uid: 6407
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-80.5
parent: 2
- uid: 6428
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-79.5
parent: 2
- uid: 6476
@@ -141210,7 +141196,6 @@ entities:
- uid: 6510
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-76.5
parent: 2
- uid: 6604
@@ -141291,7 +141276,6 @@ entities:
- uid: 7087
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-76.5
parent: 2
- uid: 7107
@@ -141317,7 +141301,6 @@ entities:
- uid: 7175
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-66.5
parent: 2
- uid: 7210
@@ -141343,7 +141326,6 @@ entities:
- uid: 7286
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-61.5
parent: 2
- uid: 7298
@@ -141354,7 +141336,6 @@ entities:
- uid: 7315
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-72.5
parent: 2
- uid: 7318
@@ -141365,7 +141346,6 @@ entities:
- uid: 7320
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-79.5
parent: 2
- uid: 7326
@@ -141401,13 +141381,11 @@ entities:
- uid: 7505
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-69.5
parent: 2
- uid: 7507
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-66.5
parent: 2
- uid: 7572
@@ -141423,7 +141401,6 @@ entities:
- uid: 7612
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-68.5
parent: 2
- uid: 7633
@@ -141554,7 +141531,6 @@ entities:
- uid: 8041
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-96.5
parent: 2
- uid: 8042
@@ -141570,7 +141546,6 @@ entities:
- uid: 8051
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,-89.5
parent: 2
- uid: 8089
@@ -141686,7 +141661,6 @@ entities:
- uid: 8725
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-49.5
parent: 2
- uid: 8737
@@ -141877,7 +141851,6 @@ entities:
- uid: 10925
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-64.5
parent: 2
- uid: 10978
@@ -141948,13 +141921,11 @@ entities:
- uid: 11082
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-21.5
parent: 2
- uid: 11109
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,-59.5
parent: 2
- uid: 11165
@@ -141965,43 +141936,36 @@ entities:
- uid: 11266
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -58.5,-39.5
parent: 2
- uid: 11291
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-43.5
parent: 2
- uid: 11292
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-16.5
parent: 2
- uid: 11297
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,-45.5
parent: 2
- uid: 11332
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,-47.5
parent: 2
- uid: 11455
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-45.5
parent: 2
- uid: 11498
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-70.5
parent: 2
- uid: 11554
@@ -142012,31 +141976,26 @@ entities:
- uid: 11572
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-70.5
parent: 2
- uid: 11620
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-66.5
parent: 2
- uid: 11622
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-24.5
parent: 2
- uid: 11629
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-17.5
parent: 2
- uid: 11825
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-81.5
parent: 2
- uid: 11875
@@ -142087,7 +142046,6 @@ entities:
- uid: 11903
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -30.5,-39.5
parent: 2
- uid: 11927
@@ -142103,13 +142061,11 @@ entities:
- uid: 11965
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-57.5
parent: 2
- uid: 12004
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-56.5
parent: 2
- uid: 12118
@@ -142125,7 +142081,6 @@ entities:
- uid: 12207
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-65.5
parent: 2
- uid: 12224
@@ -142136,37 +142091,31 @@ entities:
- uid: 12227
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-65.5
parent: 2
- uid: 12240
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-13.5
parent: 2
- uid: 12315
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-12.5
parent: 2
- uid: 12316
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-16.5
parent: 2
- uid: 12317
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-81.5
parent: 2
- uid: 12318
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-81.5
parent: 2
- uid: 12321
@@ -142177,7 +142126,6 @@ entities:
- uid: 12342
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-82.5
parent: 2
- uid: 12353
@@ -142188,7 +142136,6 @@ entities:
- uid: 12362
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-59.5
parent: 2
- uid: 12365
@@ -142199,7 +142146,6 @@ entities:
- uid: 12390
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-20.5
parent: 2
- uid: 12441
@@ -142210,13 +142156,11 @@ entities:
- uid: 12478
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-35.5
parent: 2
- uid: 12480
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -61.5,-35.5
parent: 2
- uid: 12486
@@ -142237,13 +142181,11 @@ entities:
- uid: 12565
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-50.5
parent: 2
- uid: 12570
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-20.5
parent: 2
- uid: 12601
@@ -142254,7 +142196,6 @@ entities:
- uid: 12616
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-60.5
parent: 2
- uid: 12622
@@ -142265,7 +142206,6 @@ entities:
- uid: 12625
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -47.5,-58.5
parent: 2
- uid: 12648
@@ -142301,25 +142241,21 @@ entities:
- uid: 12691
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
parent: 2
- uid: 12717
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
parent: 2
- uid: 12724
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-39.5
parent: 2
- uid: 12780
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-61.5
parent: 2
- uid: 12799
@@ -142340,7 +142276,6 @@ entities:
- uid: 12811
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-54.5
parent: 2
- uid: 12812
@@ -142356,7 +142291,6 @@ entities:
- uid: 12859
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -49.5,-60.5
parent: 2
- uid: 12902
@@ -142382,7 +142316,6 @@ entities:
- uid: 13211
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-61.5
parent: 2
- uid: 13223
@@ -142403,7 +142336,6 @@ entities:
- uid: 13229
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-11.5
parent: 2
- uid: 13250
@@ -142419,79 +142351,66 @@ entities:
- uid: 13407
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-58.5
parent: 2
- uid: 13409
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-58.5
parent: 2
- uid: 13650
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,-56.5
parent: 2
- uid: 13667
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -11.5,-57.5
parent: 2
- uid: 13671
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-57.5
parent: 2
- uid: 13674
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-17.5
parent: 2
- uid: 13704
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -57.5,-24.5
parent: 2
- uid: 13706
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-24.5
parent: 2
- uid: 13723
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-21.5
parent: 2
- uid: 13724
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-22.5
parent: 2
- uid: 13725
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-47.5
parent: 2
- uid: 13773
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-60.5
parent: 2
- uid: 13813
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-50.5
parent: 2
- uid: 13866
@@ -142507,145 +142426,121 @@ entities:
- uid: 13887
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-30.5
parent: 2
- uid: 13890
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-57.5
parent: 2
- uid: 13900
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-60.5
parent: 2
- uid: 13901
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-20.5
parent: 2
- uid: 13903
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-39.5
parent: 2
- uid: 13907
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-34.5
parent: 2
- uid: 13908
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-58.5
parent: 2
- uid: 13914
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-39.5
parent: 2
- uid: 13922
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-21.5
parent: 2
- uid: 13975
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-60.5
parent: 2
- uid: 14094
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-21.5
parent: 2
- uid: 14095
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-24.5
parent: 2
- uid: 14098
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-59.5
parent: 2
- uid: 14099
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-36.5
parent: 2
- uid: 14100
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-39.5
parent: 2
- uid: 14101
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-39.5
parent: 2
- uid: 14102
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-20.5
parent: 2
- uid: 14104
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-18.5
parent: 2
- uid: 14131
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-37.5
parent: 2
- uid: 14132
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-39.5
parent: 2
- uid: 14133
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-27.5
parent: 2
- uid: 14137
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-32.5
parent: 2
- uid: 14150
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-26.5
parent: 2
- uid: 14151
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-32.5
parent: 2
- uid: 14190
@@ -142656,25 +142551,21 @@ entities:
- uid: 14279
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-27.5
parent: 2
- uid: 14280
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -57.5,-20.5
parent: 2
- uid: 14365
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-42.5
parent: 2
- uid: 14399
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-45.5
parent: 2
- uid: 14413
@@ -142705,19 +142596,16 @@ entities:
- uid: 14811
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-44.5
parent: 2
- uid: 14816
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-43.5
parent: 2
- uid: 14906
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-47.5
parent: 2
- uid: 14908
@@ -142728,19 +142616,16 @@ entities:
- uid: 14917
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -48.5,-47.5
parent: 2
- uid: 14922
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -47.5,-47.5
parent: 2
- uid: 14932
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-46.5
parent: 2
- uid: 14942
@@ -142761,7 +142646,6 @@ entities:
- uid: 15015
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-54.5
parent: 2
- uid: 15023
@@ -142777,13 +142661,11 @@ entities:
- uid: 15142
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-42.5
parent: 2
- uid: 15204
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-26.5
parent: 2
- uid: 15265
@@ -142809,49 +142691,41 @@ entities:
- uid: 15444
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-36.5
parent: 2
- uid: 15445
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-38.5
parent: 2
- uid: 15446
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-35.5
parent: 2
- uid: 15447
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -11.5,-52.5
parent: 2
- uid: 15448
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-57.5
parent: 2
- uid: 15449
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-57.5
parent: 2
- uid: 15450
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-49.5
parent: 2
- uid: 15457
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -64.5,-59.5
parent: 2
- uid: 15476
@@ -143497,25 +143371,21 @@ entities:
- uid: 22594
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-33.5
parent: 2
- uid: 23036
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,7.5
parent: 2
- uid: 23037
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
- uid: 23112
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-32.5
parent: 2
- uid: 23145
@@ -143823,7 +143693,6 @@ entities:
- uid: 1812
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -25.5,-44.5
parent: 2
- uid: 1823
@@ -144649,7 +144518,6 @@ entities:
- uid: 5425
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,16.5
parent: 2
- uid: 5513
@@ -145060,7 +144928,6 @@ entities:
- uid: 6300
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-42.5
parent: 2
- uid: 6339
@@ -145086,7 +144953,6 @@ entities:
- uid: 6365
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
- uid: 6429
@@ -145907,7 +145773,6 @@ entities:
- uid: 10707
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -54.5,-54.5
parent: 2
- uid: 10722
@@ -147150,11 +147015,6 @@ entities:
- type: Transform
pos: 29.5,9.5
parent: 2
- - uid: 20768
- components:
- - type: Transform
- pos: -6.5,-42.5
- parent: 2
- uid: 20787
components:
- type: Transform
@@ -147168,7 +147028,6 @@ entities:
- uid: 21900
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,4.5
parent: 2
- uid: 21967
@@ -147179,7 +147038,6 @@ entities:
- uid: 21997
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -54.5,-52.5
parent: 2
- uid: 22002
@@ -147190,7 +147048,6 @@ entities:
- uid: 22003
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-8.5
parent: 2
- uid: 22005
@@ -147278,7 +147135,6 @@ entities:
- uid: 3838
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-58.5
parent: 2
- uid: 4867
@@ -147299,7 +147155,6 @@ entities:
- uid: 5657
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-59.5
parent: 2
- uid: 6053
@@ -147330,31 +147185,26 @@ entities:
- uid: 9295
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,-41.5
parent: 2
- uid: 9522
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 48.5,-10.5
parent: 2
- uid: 9556
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 47.5,-14.5
parent: 2
- uid: 9677
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-35.5
parent: 2
- uid: 9678
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 2.5,-46.5
parent: 2
- uid: 9708
@@ -147365,7 +147215,6 @@ entities:
- uid: 9862
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,15.5
parent: 2
- uid: 9896
@@ -147391,7 +147240,6 @@ entities:
- uid: 9938
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-58.5
parent: 2
- uid: 9992
@@ -147422,25 +147270,21 @@ entities:
- uid: 10061
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-30.5
parent: 2
- uid: 10065
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-54.5
parent: 2
- uid: 10133
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,-48.5
parent: 2
- uid: 10188
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,5.5
parent: 2
- uid: 10389
@@ -147456,7 +147300,6 @@ entities:
- uid: 10571
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -17.5,-31.5
parent: 2
- uid: 10627
@@ -147487,7 +147330,6 @@ entities:
- uid: 10706
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -18.5,-31.5
parent: 2
- uid: 10711
@@ -147528,7 +147370,6 @@ entities:
- uid: 10914
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,9.5
parent: 2
- uid: 11001
@@ -147539,7 +147380,6 @@ entities:
- uid: 11074
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-38.5
parent: 2
- uid: 11118
@@ -147580,7 +147420,6 @@ entities:
- uid: 11287
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 30.5,20.5
parent: 2
- uid: 11310
@@ -147596,7 +147435,6 @@ entities:
- uid: 11439
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-45.5
parent: 2
- uid: 11523
@@ -147607,13 +147445,11 @@ entities:
- uid: 11609
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-43.5
parent: 2
- uid: 11621
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,11.5
parent: 2
- uid: 11634
@@ -147644,7 +147480,6 @@ entities:
- uid: 11766
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,-35.5
parent: 2
- uid: 11795
@@ -147655,7 +147490,6 @@ entities:
- uid: 11805
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-57.5
parent: 2
- uid: 11841
@@ -147671,7 +147505,6 @@ entities:
- uid: 11931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -19.5,-31.5
parent: 2
- uid: 11932
@@ -147742,7 +147575,6 @@ entities:
- uid: 12132
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-40.5
parent: 2
- uid: 12202
@@ -147798,13 +147630,11 @@ entities:
- uid: 12541
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-46.5
parent: 2
- uid: 12551
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,-43.5
parent: 2
- uid: 12603
@@ -147815,7 +147645,6 @@ entities:
- uid: 12628
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 29.5,24.5
parent: 2
- uid: 12722
@@ -147826,43 +147655,36 @@ entities:
- uid: 12735
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,-0.5
parent: 2
- uid: 12751
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 39.5,-0.5
parent: 2
- uid: 12771
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,-0.5
parent: 2
- uid: 12825
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-55.5
parent: 2
- uid: 12853
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 46.5,-3.5
parent: 2
- uid: 13191
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-43.5
parent: 2
- uid: 13199
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,0.5
parent: 2
- uid: 13221
@@ -147873,55 +147695,46 @@ entities:
- uid: 13268
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,5.5
parent: 2
- uid: 13274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 46.5,-9.5
parent: 2
- uid: 13287
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,4.5
parent: 2
- uid: 13289
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 25.5,-57.5
parent: 2
- uid: 13392
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,9.5
parent: 2
- uid: 13397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-0.5
parent: 2
- uid: 13401
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,-0.5
parent: 2
- uid: 13404
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,4.5
parent: 2
- uid: 13663
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,3.5
parent: 2
- uid: 13735
@@ -147937,7 +147750,6 @@ entities:
- uid: 13740
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 24.5,4.5
parent: 2
- uid: 13762
@@ -147973,7 +147785,6 @@ entities:
- uid: 13892
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 36.5,16.5
parent: 2
- uid: 14209
@@ -147989,7 +147800,6 @@ entities:
- uid: 14348
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,3.5
parent: 2
- uid: 14479
@@ -148015,7 +147825,6 @@ entities:
- uid: 14833
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-42.5
parent: 2
- uid: 15144
@@ -148026,7 +147835,6 @@ entities:
- uid: 15154
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-44.5
parent: 2
- uid: 15283
@@ -148062,7 +147870,6 @@ entities:
- uid: 15606
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-45.5
parent: 2
- uid: 15663
@@ -148083,7 +147890,6 @@ entities:
- uid: 15878
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,11.5
parent: 2
- uid: 15906
@@ -148109,13 +147915,11 @@ entities:
- uid: 16704
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -41.5,-34.5
parent: 2
- uid: 16894
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-23.5
parent: 2
- uid: 16937
@@ -148126,7 +147930,6 @@ entities:
- uid: 17073
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,10.5
parent: 2
- uid: 17120
@@ -148162,7 +147965,6 @@ entities:
- uid: 18065
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
- uid: 18190
@@ -148203,13 +148005,11 @@ entities:
- uid: 18552
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-34.5
parent: 2
- uid: 18622
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,-34.5
parent: 2
- uid: 18967
@@ -148220,7 +148020,6 @@ entities:
- uid: 18970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 29.5,20.5
parent: 2
- uid: 18974
@@ -148231,43 +148030,36 @@ entities:
- uid: 19147
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,16.5
parent: 2
- uid: 19222
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,14.5
parent: 2
- uid: 19246
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,15.5
parent: 2
- uid: 19257
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-42.5
parent: 2
- uid: 19260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-45.5
parent: 2
- uid: 19266
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-46.5
parent: 2
- uid: 19274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,5.5
parent: 2
- uid: 19348
@@ -148283,19 +148075,16 @@ entities:
- uid: 19916
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-46.5
parent: 2
- uid: 19918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-61.5
parent: 2
- uid: 19919
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-58.5
parent: 2
- uid: 19959
@@ -148311,73 +148100,61 @@ entities:
- uid: 20221
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-46.5
parent: 2
- uid: 20279
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-45.5
parent: 2
- uid: 20767
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -41.5,-25.5
parent: 2
- uid: 21223
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-29.5
parent: 2
- uid: 21271
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,16.5
parent: 2
- uid: 21297
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-25.5
parent: 2
- uid: 21311
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-25.5
parent: 2
- uid: 21312
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-23.5
parent: 2
- uid: 21314
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -45.5,-33.5
parent: 2
- uid: 21389
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-34.5
parent: 2
- uid: 21395
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-31.5
parent: 2
- uid: 21438
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,16.5
parent: 2
- uid: 21859
@@ -148388,25 +148165,21 @@ entities:
- uid: 21963
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-11.5
parent: 2
- uid: 21968
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-9.5
parent: 2
- uid: 21996
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-10.5
parent: 2
- uid: 22022
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,-45.5
parent: 2
- uid: 22054
@@ -148742,6 +148515,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-53.5
parent: 2
+- proto: WeaponDisabler
+ entities:
+ - uid: 21619
+ components:
+ - type: Transform
+ parent: 2207
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 21962
+ components:
+ - type: Transform
+ parent: 2207
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22009
+ components:
+ - type: Transform
+ pos: -24.54724,13.558739
+ parent: 2
- proto: WeaponSubMachineGunWt550
entities:
- uid: 14803
@@ -148749,6 +148543,28 @@ entities:
- type: Transform
pos: -21.319635,10.6595335
parent: 2
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 23214
+ components:
+ - type: Transform
+ pos: -65.5,-14.5
+ parent: 2
+ - uid: 23215
+ components:
+ - type: Transform
+ pos: -69.5,-14.5
+ parent: 2
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: -69.5,-10.5
+ parent: 2
+ - uid: 23217
+ components:
+ - type: Transform
+ pos: -65.5,-10.5
+ parent: 2
- proto: WeaponWaterPistol
entities:
- uid: 1138
diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml
index 86dac99313c6..c41d2540488a 100644
--- a/Resources/Maps/bagel.yml
+++ b/Resources/Maps/bagel.yml
@@ -77,99 +77,99 @@ entities:
chunks:
0,-1:
ind: 0,-1
- tiles: XQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAB
+ tiles: XQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADHwAAAAADHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAACHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: XQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABZAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADMwAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADMwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABJAAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAC
+ tiles: XQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACZAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACMwAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACMwAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADJAAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAADTQAAAAADTQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAC
version: 6
0,0:
ind: 0,0
- tiles: HwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAADLwAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAACLwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAADXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABHwAAAAACDAAAAAACDAAAAAACDAAAAAABHwAAAAACLwAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAACLwAAAAADfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABTQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAC
+ tiles: HwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACLwAAAAAALwAAAAABfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABLwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACHwAAAAABDAAAAAACDAAAAAAADAAAAAAAHwAAAAACLwAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAAALwAAAAAAfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAB
version: 6
-1,0:
ind: -1,0
- tiles: XQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAACXQAAAAACfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAACHwAAAAADbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABTQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABTQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAAD
+ tiles: XQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADTQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: XQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAABegAAAAAAegAAAAAAegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAADgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAADgAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAACXQAAAAABXQAAAAACfgAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAC
+ tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAADgAAAAADegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAADgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABXQAAAAACXQAAAAADfgAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACTQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAATQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABTQAAAAAAXQAAAAABTQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAADfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACTQAAAAACXQAAAAABTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
version: 6
0,-3:
ind: 0,-3
- tiles: XQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAegAAAAACegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAADXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: egAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAABegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAACfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAACegAAAAACegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAPAAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACTQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACTQAAAAACTQAAAAADfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAACcAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAADDgAAAAABDgAAAAABDgAAAAABDgAAAAADDgAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADHwAAAAAAHwAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAADegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAACDgAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAADegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAA
+ tiles: egAAAAACegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAPAAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAcAAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAABcAAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAABHwAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABEQAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAACXQAAAAACfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAACcAAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAADHwAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: XQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAACEQAAAAAAHwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAEQAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACTQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABcAAAAAABdAAAAAACdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAACfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAdAAAAAABVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAADEQAAAAAAHwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATQAAAAAATQAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdAAAAAABdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACcAAAAAADdAAAAAAAdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAACdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAdAAAAAADVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAADfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABTQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADTQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAAAHwAAAAADHwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADHwAAAAACTQAAAAACTQAAAAADLgAAAAAALgAAAAAATgAAAAAALgAAAAAALgAAAAAATQAAAAADTQAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAADHwAAAAABTQAAAAACTQAAAAADHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABLgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAC
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAFfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABTQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAADHwAAAAACHwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAADTQAAAAABTQAAAAADLgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAATQAAAAACTQAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAABTQAAAAABTQAAAAAAHwAAAAADLgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAACLgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: XQAAAAAAXQAAAAADHwAAAAADLgAAAAAALgAAAAAATgAAAAACLgAAAAAALgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADTQAAAAACTQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAATQAAAAAAHwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAAD
+ tiles: XQAAAAAAXQAAAAABHwAAAAAALgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAXQAAAAAATQAAAAACTQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATQAAAAACHwAAAAABHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: HwAAAAADHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADTQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAAHwAAAAABfgAAAAAAHwAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADEQAAAAAAHwAAAAADfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAACfgAAAAAAHwAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAACfgAAAAAAHwAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAAB
+ tiles: HwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACTQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAABfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABfgAAAAAADAAAAAAADAAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABHwAAAAADDAAAAAADDAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADfgAAAAAAfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACHwAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAADDAAAAAADDAAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACfgAAAAAADAAAAAABDAAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: HwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAeQAAAAAAeQAAAAABfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADHwAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAAAKAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABHwAAAAAAXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAACaAAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAD
+ tiles: HwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAeQAAAAACeQAAAAACfgAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAABHwAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAACXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACKAAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAHwAAAAABXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAB
+ tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAATQAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: fgAAAAAAfAAAAAACfAAAAAADegAAAAACegAAAAAAegAAAAABfAAAAAADfAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAABXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADXQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAADKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAA
+ tiles: fgAAAAAAfAAAAAABfAAAAAACegAAAAAAegAAAAADegAAAAAAfAAAAAAAfAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADXQAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAC
version: 6
2,-3:
ind: 2,-3
- tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAADTQAAAAACTQAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACcAAAAAAA
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAcAAAAAADeQAAAAABcAAAAAACcAAAAAAAcAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAABcAAAAAADXQAAAAABXQAAAAABXQAAAAACHwAAAAACXQAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAcAAAAAADcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADdQAAAAACXQAAAAACXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAADeQAAAAADcAAAAAAAcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADcAAAAAACcAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAdQAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAeQAAAAADeQAAAAACeQAAAAADcAAAAAAAcAAAAAADcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAKAAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAADcAAAAAACcAAAAAAAHwAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAABeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAcAAAAAABeQAAAAADeQAAAAACeQAAAAACeQAAAAABeQAAAAACeQAAAAABeQAAAAACeQAAAAAAcAAAAAADXQAAAAACcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADeQAAAAACeQAAAAAAcAAAAAADcAAAAAACeQAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAABeQAAAAADeQAAAAABcAAAAAADfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAA
+ tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAACcAAAAAABeQAAAAADcAAAAAADcAAAAAABcAAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAADcAAAAAABXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAABXQAAAAABXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAABcAAAAAACdQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACcAAAAAACcAAAAAABeQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADcAAAAAABcAAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABfgAAAAAAKAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAACeQAAAAABcAAAAAABfgAAAAAAHwAAAAACfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAADfgAAAAAAXQAAAAACcAAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABeQAAAAABeQAAAAAAeQAAAAABcAAAAAAAXQAAAAABcAAAAAAAeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADeQAAAAADeQAAAAAAcAAAAAABcAAAAAABeQAAAAADcAAAAAABcAAAAAACcAAAAAACcAAAAAACeQAAAAADeQAAAAADeQAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAADeQAAAAADcAAAAAACfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAD
version: 6
3,-3:
ind: 3,-3
- tiles: fgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACQAAAAAAAegAAAAACegAAAAAAegAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAADegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAADegAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADQAAAAAAAegAAAAAAegAAAAADegAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAACegAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: cAAAAAACcAAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAADcAAAAAADeQAAAAACcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAADdQAAAAABcAAAAAADeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAADeQAAAAADcAAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAABcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAABKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: cAAAAAABcAAAAAACcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAACcAAAAAABeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAABeQAAAAADcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAABcAAAAAABeQAAAAAAcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAACKAAAAAACKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAABTQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: fgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABcAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADHwAAAAADcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAeQAAAAADcAAAAAADfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAABcAAAAAACfgAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACcAAAAAAAeQAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAC
+ tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAABcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAAAcAAAAAACfgAAAAAAcAAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: cAAAAAAAfgAAAAAAcAAAAAADAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cAAAAAABfgAAAAAAcAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -197,11 +197,11 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAABLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADLwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAALwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACLwAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAALwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACLwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAAALwAAAAAD
version: 6
-4,-2:
ind: -4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -213,7 +213,7 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAADHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAAALwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAKAAAAAADHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAKAAAAAADKAAAAAABKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAAAHwAAAAADLwAAAAABHwAAAAACLwAAAAACHwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAOAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADKAAAAAADHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAABKAAAAAABKAAAAAADKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
version: 6
-4,-3:
ind: -4,-3
@@ -221,15 +221,15 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: XQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAD
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAC
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
version: 6
-1,-6:
ind: -1,-6
@@ -237,23 +237,23 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABXQAAAAADXQAAAAAAXQAAAAABBwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAABXQAAAAACXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACXQAAAAACXQAAAAAAXQAAAAADBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAACXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAADXQAAAAABXQAAAAADXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAADXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: XQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAADTQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAATgAAAAADXQAAAAACbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA
+ tiles: XQAAAAADXQAAAAAAHwAAAAADegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABTQAAAAABTQAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATgAAAAABXQAAAAADbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: XQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
version: 6
0,-6:
ind: 0,-6
@@ -261,15 +261,15 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAADXQAAAAADDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAACXQAAAAAAXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAAAXQAAAAADDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAABXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDAAAAAAD
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAACXQAAAAABXQAAAAABDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIXQAAAAAAXQAAAAABXQAAAAACDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAACXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADDAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: XQAAAAAAXQAAAAACfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADTQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAAAfgAAAAAATQAAAAAATQAAAAACfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: fgAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAJgAAAAADLwAAAAACLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJgAAAAADLwAAAAABLwAAAAABLwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACTQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAABLwAAAAAALwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJgAAAAACLwAAAAABLwAAAAABLwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
@@ -285,27 +285,27 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAABegAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAATgAAAAADXQAAAAADTgAAAAACXQAAAAADTgAAAAACXQAAAAACTgAAAAAAXQAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
+ tiles: aAAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABegAAAAABegAAAAAAegAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABTgAAAAADXQAAAAABTgAAAAACXQAAAAAATgAAAAADXQAAAAABTgAAAAAAXQAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAABXQAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAATgAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAABegAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAACegAAAAABegAAAAABegAAAAACegAAAAACHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAABHwAAAAAAIwAAAAABHwAAAAADIwAAAAACfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABHwAAAAABfgAAAAAAIwAAAAADHwAAAAADIwAAAAADfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACTgAAAAABXQAAAAAATgAAAAADXQAAAAABTgAAAAABXQAAAAADTgAAAAACXQAAAAAATgAAAAADXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACegAAAAADHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAACIwAAAAACHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAIwAAAAAAHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABTgAAAAADXQAAAAAATgAAAAAAXQAAAAADTgAAAAADXQAAAAAATgAAAAAAXQAAAAABTgAAAAADXQAAAAADTgAAAAAAXQAAAAADTgAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAATQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: fgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADTwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
+ tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABTwAAAAAABQAAAAADfgAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
version: 6
-1,3:
ind: -1,3
@@ -313,7 +313,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: TwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACTwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -333,23 +333,23 @@ entities:
version: 6
0,2:
ind: 0,2
- tiles: bAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
2,-5:
ind: 2,-5
@@ -405,11 +405,11 @@ entities:
version: 6
-6,1:
ind: -6,1
- tiles: HwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAACOAAAAAAAOAAAAAAAIwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -417,23 +417,23 @@ entities:
version: 6
-7,0:
ind: -7,0
- tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADJAAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAJAAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAD
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAABIwAAAAAAIwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAACOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADIwAAAAAAIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAD
+ tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAIwAAAAACIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
@@ -445,7 +445,7 @@ entities:
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
@@ -465,11 +465,11 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: XQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -477,11 +477,11 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -938,17 +938,6 @@ entities:
decals:
3292: -20,41
3295: -13,39
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 3738: -7,46
- 3739: -7,47
- 3740: -7,48
- 3741: 7,46
- 3742: 7,47
- 3743: 7,48
- node:
color: '#FFFFFFFF'
id: Bot
@@ -1047,7 +1036,6 @@ entities:
3808: 45,1
3809: 47,17
3810: 47,18
- 3896: -13,11
3941: -5,17
3979: -56,13
3980: -54,13
@@ -1060,6 +1048,7 @@ entities:
5095: -20,5
5096: -25,5
5227: -25,-12
+ 5352: -14,11
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1145,12 +1134,6 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 3774: 7,34
- 3775: 7,35
- 3776: 7,36
- 3777: 8,36
- 3778: 8,34
- 3779: 8,35
5067: -29,-1
5068: -29,0
5083: -29,-2
@@ -1248,7 +1231,6 @@ entities:
decals:
3008: 21,1
3019: 23,1
- 3773: 6,37
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
@@ -1262,9 +1244,6 @@ entities:
2959: -115,13
3011: 23,0
3275: 37,18
- 3770: 6,34
- 3771: 6,35
- 3772: 6,36
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -2848,6 +2827,8 @@ entities:
5128: -19,-18
5129: -19,-22
5130: -21,-22
+ 5350: 3,34
+ 5351: 0,30
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -5525,11 +5506,11 @@ entities:
decals:
718: -30,34
861: -12,2
- 1363: -2,31
3342: -19,40
3749: -8,29
3881: -114,30
3895: -15,2
+ 5348: -2,32
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5541,11 +5522,11 @@ entities:
id: WarnCornerSmallNW
decals:
841: -8,2
- 1362: 2,31
3330: -27,38
3341: -15,40
3748: -5,29
3880: -110,30
+ 5349: 2,32
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5559,8 +5540,8 @@ entities:
1050: -2,-78
3340: -19,42
3894: -15,4
- 4923: -2,36
5082: -29,-2
+ 5347: -2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5573,12 +5554,12 @@ entities:
decals:
727: -30,36
1049: 2,-78
- 1360: 2,36
2544: 40,-35
3329: -27,40
3339: -15,42
3963: -54,6
5075: -25,-2
+ 5346: 2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5633,10 +5614,6 @@ entities:
862: -12,3
863: -12,4
864: -12,5
- 1353: -2,32
- 1354: -2,33
- 1355: -2,34
- 1356: -2,35
1748: -37,-18
1759: -15,22
1763: 17,6
@@ -5650,9 +5627,6 @@ entities:
2268: -3,26
2269: -3,22
2845: 45,-16
- 3041: 3,34
- 3042: 3,35
- 3043: 3,36
3148: 56,15
3149: 56,14
3150: 56,13
@@ -5665,6 +5639,10 @@ entities:
4886: -2,23
5267: -31,-13
5268: -22,-13
+ 5339: -2,36
+ 5340: -2,35
+ 5341: -2,34
+ 5342: -2,33
- node:
color: '#52B4E996'
id: WarnLineGreyscaleE
@@ -5898,9 +5876,6 @@ entities:
1046: 0,-78
1047: 1,-78
1048: -1,-78
- 1357: -1,36
- 1358: 0,36
- 1359: 1,36
1746: -27,-25
1749: -40,-2
1753: -36,7
@@ -5936,6 +5911,9 @@ entities:
5073: -27,-2
5074: -26,-2
5090: -18,7
+ 5336: 1,37
+ 5337: 0,37
+ 5338: -1,37
- node:
color: '#DE3A3A96'
id: WarnLineS
@@ -5956,10 +5934,6 @@ entities:
1051: -20,-56
1052: -20,-55
1053: -20,-54
- 1349: 2,32
- 1350: 2,33
- 1351: 2,34
- 1352: 2,35
1747: -39,-18
1760: -17,22
1762: 15,6
@@ -5982,10 +5956,12 @@ entities:
4098: 15,-22
4212: -18,33
4887: 2,23
- 4921: -3,35
- 4922: -3,36
5266: -32,-13
5269: -23,-13
+ 5332: 2,33
+ 5333: 2,34
+ 5334: 2,35
+ 5335: 2,36
- node:
color: '#DE3A3A96'
id: WarnLineW
@@ -6011,9 +5987,6 @@ entities:
745: -62,40
746: -63,40
747: -64,40
- 1346: -1,31
- 1347: 0,31
- 1348: 1,31
1536: -58,2
1537: -59,2
1538: -60,2
@@ -6051,7 +6024,6 @@ entities:
3747: -6,29
3764: 4,37
3765: 5,37
- 3766: 6,37
3767: -4,37
3768: -5,37
3769: -6,37
@@ -6071,6 +6043,10 @@ entities:
5308: -35,-15
5309: -34,-15
5310: -33,-15
+ 5330: 6,37
+ 5343: -1,32
+ 5344: 0,32
+ 5345: 1,32
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -6143,28 +6119,49 @@ entities:
id: WoodTrimThinCornerNe
decals:
3580: -12,-51
+ 5353: -12,15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
3579: -15,-51
+ 5354: -8,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 5356: -12,19
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 5355: -8,19
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 5373: -13,15
+ 5374: -12,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
decals:
- 1207: -7,14
+ 5375: -8,14
+ 5376: -7,15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSe
decals:
- 1197: -12,19
3695: 10,-27
+ 5371: -12,20
+ 5372: -13,19
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
decals:
827: -23,-27
- 1202: -7,19
+ 5369: -7,19
+ 5370: -8,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
@@ -6187,10 +6184,6 @@ entities:
820: -24,-30
821: -24,-29
822: -24,-28
- 1193: -12,15
- 1194: -12,16
- 1195: -12,17
- 1196: -12,18
2023: -24,-27
2048: -46,-16
2324: 24,-21
@@ -6203,6 +6196,9 @@ entities:
3692: 10,-29
3693: 10,-28
3844: 26,-16
+ 5357: -13,16
+ 5358: -13,17
+ 5359: -13,18
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -6213,17 +6209,8 @@ entities:
824: -25,-28
825: -26,-28
826: -27,-28
- 1186: -7,19
- 1187: -8,19
- 1188: -9,19
- 1189: -10,19
- 1190: -11,19
- 1191: -12,19
1192: -13,19
1208: -8,14
- 1209: -9,14
- 1210: -10,14
- 1211: -11,14
1279: 17,-38
1280: 16,-38
1281: 18,-38
@@ -6250,6 +6237,9 @@ entities:
5053: -22,-2
5054: -21,-2
5055: -20,-2
+ 5363: -11,14
+ 5364: -10,14
+ 5365: -9,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -6259,10 +6249,6 @@ entities:
797: -5,-3
798: -7,-3
799: -8,-3
- 1198: -11,19
- 1199: -10,19
- 1200: -9,19
- 1201: -8,19
2046: -47,-16
2047: -46,-16
2053: -41,7
@@ -6285,6 +6271,9 @@ entities:
5049: -23,1
5050: -22,1
5051: -21,1
+ 5366: -11,20
+ 5367: -10,20
+ 5368: -9,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -6302,11 +6291,10 @@ entities:
778: -23,21
794: -6,-5
811: -42,8
- 1203: -7,18
- 1204: -7,17
- 1205: -7,16
- 1206: -7,15
3584: -15,-52
+ 5360: -7,16
+ 5361: -7,17
+ 5362: -7,18
- node:
cleanable: True
color: '#474F52FF'
@@ -6624,12 +6612,12 @@ entities:
-5,1:
0: 63675
-4,2:
- 0: 62463
+ 0: 29695
-5,2:
0: 35071
1: 12288
-4,3:
- 0: 46079
+ 0: 45943
-5,3:
0: 47240
1: 48
@@ -6640,9 +6628,9 @@ entities:
-3,1:
0: 61695
-3,2:
- 0: 58623
+ 0: 62719
-3,3:
- 0: 65262
+ 0: 65535
-3,4:
0: 65535
-2,1:
@@ -7879,7 +7867,7 @@ entities:
-3,7:
0: 46079
-3,8:
- 0: 48027
+ 0: 15259
-2,5:
0: 37819
-2,6:
@@ -7887,7 +7875,7 @@ entities:
-2,7:
0: 61695
-2,8:
- 0: 46079
+ 0: 4095
-1,5:
0: 64511
-1,6:
@@ -7895,7 +7883,7 @@ entities:
-1,7:
0: 53503
-1,8:
- 0: 64733
+ 0: 52701
0,4:
0: 65520
0,5:
@@ -7939,7 +7927,7 @@ entities:
1,7:
0: 65535
1,8:
- 0: 65295
+ 0: 30479
2,4:
0: 63344
2,5:
@@ -7952,8 +7940,8 @@ entities:
0: 4369
1: 19524
2,8:
- 0: 4353
- 1: 52292
+ 0: 30465
+ 1: 4
3,5:
0: 34955
1: 8960
@@ -8374,23 +8362,23 @@ entities:
0,14:
1: 65456
-3,9:
- 0: 15283
+ 0: 15291
-3,10:
0: 13115
1: 34944
-2,9:
- 0: 7672
+ 0: 7677
-2,10:
0: 4433
1: 57902
-1,9:
- 0: 287
+ 0: 511
1: 49152
-1,10:
1: 61727
0,9:
- 0: 15
- 1: 28928
+ 0: 255
+ 1: 28672
0,10:
1: 61727
0,11:
@@ -8523,15 +8511,15 @@ entities:
-5,16:
1: 30068
1,9:
- 0: 1919
+ 0: 2039
1,10:
1: 63903
0: 64
2,9:
- 0: 4097
- 1: 43916
+ 0: 4915
+ 1: 34944
2,10:
- 0: 4369
+ 0: 4371
1: 43680
3,9:
1: 65255
@@ -9486,8 +9474,8 @@ entities:
id: docking43669
localAnchorB: -47.5,-40
localAnchorA: 0.5,0
- damping: 1560.5498
- stiffness: 14007.463
+ damping: 1560.5565
+ stiffness: 14007.522
- proto: AcousticGuitarInstrument
entities:
- uid: 6610
@@ -9609,6 +9597,17 @@ entities:
- 157
- 779
- 778
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 11525
+ - 13248
+ - 21646
- uid: 1960
components:
- type: Transform
@@ -10332,18 +10331,6 @@ entities:
- 6593
- 6785
- 6661
- - uid: 21645
- components:
- - type: Transform
- pos: -8.5,23.5
- parent: 60
- - type: DeviceList
- devices:
- - 21646
- - 14318
- - 14312
- - 14303
- - 14302
- uid: 21647
components:
- type: Transform
@@ -11216,6 +11203,11 @@ entities:
parent: 60
- proto: AirlockEngineeringGlassLocked
entities:
+ - uid: 4260
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 60
- uid: 5859
components:
- type: MetaData
@@ -11381,12 +11373,6 @@ entities:
- type: Transform
pos: 3.5,24.5
parent: 60
- - uid: 18549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,3.5
- parent: 60
- proto: AirlockExternalAtmosphericsLocked
entities:
- uid: 12194
@@ -11437,6 +11423,28 @@ entities:
linkedPorts:
23569:
- DoorStatus: DoorBolt
+ - uid: 23701
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23702:
+ - DoorStatus: DoorBolt
+ - uid: 23702
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23701:
+ - DoorStatus: DoorBolt
- proto: AirlockExternalGlass
entities:
- uid: 97
@@ -13981,6 +13989,9 @@ entities:
- type: Transform
pos: -7.5,13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
- uid: 21648
components:
- type: Transform
@@ -14325,6 +14336,14 @@ entities:
currentReceiving: 69.9903
currentSupply: 70
supplyRampPosition: 0.00969696
+ - uid: 4526
+ components:
+ - type: MetaData
+ name: Library APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,14.5
+ parent: 60
- uid: 5093
components:
- type: MetaData
@@ -14567,13 +14586,6 @@ entities:
- type: Transform
pos: -24.5,-2.5
parent: 60
- - uid: 14328
- components:
- - type: MetaData
- name: Library APC
- - type: Transform
- pos: -13.5,14.5
- parent: 60
- uid: 14552
components:
- type: MetaData
@@ -16495,6 +16507,16 @@ entities:
- type: Transform
pos: -1.5,4.5
parent: 60
+ - uid: 14167
+ components:
+ - type: Transform
+ pos: -17.5,-16.5
+ parent: 60
+ - uid: 16425
+ components:
+ - type: Transform
+ pos: -17.5,-14.5
+ parent: 60
- proto: BlastDoorWindowsOpen
entities:
- uid: 21780
@@ -16581,34 +16603,6 @@ entities:
- 0
- type: Foldable
folded: True
-- proto: BookAtmosAirAlarms
- entities:
- - uid: 23700
- components:
- - type: Transform
- pos: -11.637694,22.589413
- parent: 60
-- proto: BookAtmosDistro
- entities:
- - uid: 23702
- components:
- - type: Transform
- pos: -6.590819,15.667539
- parent: 60
-- proto: BookAtmosVentsMore
- entities:
- - uid: 23701
- components:
- - type: Transform
- pos: -11.418944,22.495663
- parent: 60
-- proto: BookAtmosWaste
- entities:
- - uid: 23703
- components:
- - type: Transform
- pos: -6.434569,15.495664
- parent: 60
- proto: BookRandomStory
entities:
- uid: 23696
@@ -16616,11 +16610,6 @@ entities:
- type: Transform
pos: -7.5117726,20.590528
parent: 60
- - uid: 23697
- components:
- - type: Transform
- pos: -12.548856,19.605753
- parent: 60
- proto: BooksBag
entities:
- uid: 23695
@@ -16640,6 +16629,16 @@ entities:
- type: Transform
pos: -7.5,-14.5
parent: 60
+ - uid: 14161
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 60
+ - uid: 14441
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 60
- proto: BookshelfFilled
entities:
- uid: 655
@@ -16647,80 +16646,70 @@ entities:
- type: Transform
pos: -5.5,-7.5
parent: 60
- - uid: 4526
- components:
- - type: Transform
- pos: -6.5,18.5
- parent: 60
- - uid: 4527
+ - uid: 4794
components:
- type: Transform
- pos: -6.5,16.5
+ pos: -6.5,14.5
parent: 60
- uid: 6577
components:
- type: Transform
pos: -6.5,22.5
parent: 60
- - uid: 14124
+ - uid: 9009
components:
- type: Transform
- pos: -6.5,17.5
+ pos: -10.5,20.5
parent: 60
- - uid: 14126
+ - uid: 9040
components:
- type: Transform
pos: -6.5,12.5
parent: 60
- - uid: 14131
- components:
- - type: Transform
- pos: -7.5,12.5
- parent: 60
- - uid: 14137
+ - uid: 11522
components:
- type: Transform
- pos: -6.5,14.5
+ pos: -11.5,20.5
parent: 60
- - uid: 14138
+ - uid: 14155
components:
- type: Transform
pos: -7.5,14.5
parent: 60
- - uid: 14139
+ - uid: 14171
components:
- type: Transform
- pos: -12.5,20.5
+ pos: -11.5,22.5
parent: 60
- - uid: 14141
+ - uid: 14173
components:
- type: Transform
- pos: -10.5,12.5
+ pos: -11.5,13.5
parent: 60
- - uid: 14144
+ - uid: 14303
components:
- type: Transform
- pos: -10.5,14.5
+ pos: -11.5,11.5
parent: 60
- - uid: 14145
+ - uid: 16091
components:
- type: Transform
- pos: -12.5,21.5
+ pos: -10.5,22.5
parent: 60
- - uid: 14146
+ - uid: 16418
components:
- type: Transform
- pos: -12.5,18.5
+ pos: -12.5,22.5
parent: 60
- - uid: 14175
+ - uid: 16436
components:
- type: Transform
- pos: -10.5,22.5
+ pos: -7.5,12.5
parent: 60
- - uid: 14178
+ - uid: 16438
components:
- type: Transform
- pos: -12.5,22.5
+ pos: -12.5,20.5
parent: 60
- uid: 17652
components:
@@ -17296,6 +17285,12 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-21.5
parent: 60
+ - uid: 16403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,31.5
+ parent: 60
- uid: 19838
components:
- type: Transform
@@ -17360,12 +17355,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-30.5
parent: 60
- - uid: 25396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 60
- uid: 25397
components:
- type: Transform
@@ -25425,6 +25414,11 @@ entities:
- type: Transform
pos: 51.5,15.5
parent: 60
+ - uid: 13266
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
- uid: 13271
components:
- type: Transform
@@ -26390,6 +26384,11 @@ entities:
- type: Transform
pos: -10.5,-14.5
parent: 60
+ - uid: 13828
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
- uid: 13892
components:
- type: Transform
@@ -26415,6 +26414,11 @@ entities:
- type: Transform
pos: -62.5,27.5
parent: 60
+ - uid: 14131
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
- uid: 14227
components:
- type: Transform
@@ -26840,6 +26844,11 @@ entities:
- type: Transform
pos: -1.5,9.5
parent: 60
+ - uid: 14436
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 60
- uid: 14453
components:
- type: Transform
@@ -27155,11 +27164,6 @@ entities:
- type: Transform
pos: -23.5,46.5
parent: 60
- - uid: 14911
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 14912
components:
- type: Transform
@@ -27548,7 +27552,7 @@ entities:
- uid: 16361
components:
- type: Transform
- pos: -3.5,35.5
+ pos: 6.5,37.5
parent: 60
- uid: 16366
components:
@@ -27560,15 +27564,15 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
- - uid: 16401
+ - uid: 16377
components:
- type: Transform
- pos: -7.5,33.5
+ pos: 5.5,37.5
parent: 60
- - uid: 16407
+ - uid: 16401
components:
- type: Transform
- pos: -2.5,35.5
+ pos: -7.5,33.5
parent: 60
- uid: 16412
components:
@@ -28915,11 +28919,6 @@ entities:
- type: Transform
pos: -29.5,47.5
parent: 60
- - uid: 17258
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- uid: 17320
components:
- type: Transform
@@ -31155,6 +31154,21 @@ entities:
- type: Transform
pos: -26.5,-3.5
parent: 60
+ - uid: 22450
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 60
+ - uid: 22452
+ components:
+ - type: Transform
+ pos: 8.5,37.5
+ parent: 60
+ - uid: 22453
+ components:
+ - type: Transform
+ pos: 8.5,38.5
+ parent: 60
- uid: 22548
components:
- type: Transform
@@ -32385,6 +32399,16 @@ entities:
- type: Transform
pos: -62.5,40.5
parent: 60
+ - uid: 23697
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 60
+ - uid: 23700
+ components:
+ - type: Transform
+ pos: 8.5,40.5
+ parent: 60
- uid: 23723
components:
- type: Transform
@@ -32455,6 +32479,26 @@ entities:
- type: Transform
pos: 18.5,20.5
parent: 60
+ - uid: 23897
+ components:
+ - type: Transform
+ pos: 9.5,37.5
+ parent: 60
+ - uid: 23898
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 60
+ - uid: 23899
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 60
+ - uid: 23900
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 60
- uid: 24381
components:
- type: Transform
@@ -33307,6 +33351,11 @@ entities:
- type: Transform
pos: 22.165026,21.61817
parent: 60
+ - uid: 23903
+ components:
+ - type: Transform
+ pos: 6.5304193,34.55674
+ parent: 60
- proto: CableApcStack1
entities:
- uid: 4580
@@ -38216,11 +38265,56 @@ entities:
- type: Transform
pos: -112.5,31.5
parent: 60
+ - uid: 13831
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
+ - uid: 13958
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
- uid: 13972
components:
- type: Transform
pos: -21.5,4.5
parent: 60
+ - uid: 14001
+ components:
+ - type: Transform
+ pos: -0.5,35.5
+ parent: 60
+ - uid: 14002
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 60
+ - uid: 14121
+ components:
+ - type: Transform
+ pos: -1.5,36.5
+ parent: 60
+ - uid: 14125
+ components:
+ - type: Transform
+ pos: -1.5,35.5
+ parent: 60
+ - uid: 14126
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
+ - uid: 14134
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 60
- uid: 14212
components:
- type: Transform
@@ -38231,6 +38325,16 @@ entities:
- type: Transform
pos: -10.5,24.5
parent: 60
+ - uid: 14523
+ components:
+ - type: Transform
+ pos: 6.5,37.5
+ parent: 60
+ - uid: 14911
+ components:
+ - type: Transform
+ pos: 5.5,37.5
+ parent: 60
- uid: 15124
components:
- type: Transform
@@ -38371,11 +38475,6 @@ entities:
- type: Transform
pos: 3.5,35.5
parent: 60
- - uid: 15523
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 15706
components:
- type: Transform
@@ -39896,16 +39995,6 @@ entities:
- type: Transform
pos: 3.5,34.5
parent: 60
- - uid: 16347
- components:
- - type: Transform
- pos: 2.5,34.5
- parent: 60
- - uid: 16348
- components:
- - type: Transform
- pos: 1.5,34.5
- parent: 60
- uid: 16350
components:
- type: Transform
@@ -39936,31 +40025,6 @@ entities:
- type: Transform
pos: 0.5,28.5
parent: 60
- - uid: 16356
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 60
- - uid: 16357
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 60
- - uid: 16359
- components:
- - type: Transform
- pos: -1.5,35.5
- parent: 60
- - uid: 16360
- components:
- - type: Transform
- pos: -3.5,35.5
- parent: 60
- - uid: 16394
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- uid: 16456
components:
- type: Transform
@@ -39981,11 +40045,6 @@ entities:
- type: Transform
pos: 6.5,38.5
parent: 60
- - uid: 16528
- components:
- - type: Transform
- pos: -2.5,35.5
- parent: 60
- uid: 16678
components:
- type: Transform
@@ -40106,21 +40165,6 @@ entities:
- type: Transform
pos: 10.5,57.5
parent: 60
- - uid: 17108
- components:
- - type: Transform
- pos: 8.5,47.5
- parent: 60
- - uid: 17109
- components:
- - type: Transform
- pos: 9.5,47.5
- parent: 60
- - uid: 17110
- components:
- - type: Transform
- pos: 10.5,47.5
- parent: 60
- uid: 17111
components:
- type: Transform
@@ -40246,11 +40290,6 @@ entities:
- type: Transform
pos: -9.5,56.5
parent: 60
- - uid: 17153
- components:
- - type: Transform
- pos: 10.5,37.5
- parent: 60
- uid: 17467
components:
- type: Transform
@@ -46180,6 +46219,11 @@ entities:
- type: Transform
pos: 51.5,14.5
parent: 60
+ - uid: 13269
+ components:
+ - type: Transform
+ pos: -1.5,36.5
+ parent: 60
- uid: 13274
components:
- type: Transform
@@ -46440,16 +46484,51 @@ entities:
- type: Transform
pos: -11.5,-16.5
parent: 60
+ - uid: 13829
+ components:
+ - type: Transform
+ pos: -0.5,35.5
+ parent: 60
+ - uid: 13982
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
- uid: 13983
components:
- type: Transform
pos: -19.5,-1.5
parent: 60
+ - uid: 13987
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
- uid: 14055
components:
- type: Transform
pos: -19.5,-0.5
parent: 60
+ - uid: 14091
+ components:
+ - type: Transform
+ pos: -1.5,35.5
+ parent: 60
+ - uid: 14120
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
+ - uid: 14122
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 60
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
- uid: 14224
components:
- type: Transform
@@ -47025,11 +47104,6 @@ entities:
- type: Transform
pos: -6.5,41.5
parent: 60
- - uid: 16362
- components:
- - type: Transform
- pos: -3.5,35.5
- parent: 60
- uid: 16372
components:
- type: Transform
@@ -47055,36 +47129,6 @@ entities:
- type: Transform
pos: 2.5,34.5
parent: 60
- - uid: 16388
- components:
- - type: Transform
- pos: 1.5,34.5
- parent: 60
- - uid: 16389
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 60
- - uid: 16390
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 60
- - uid: 16391
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 60
- - uid: 16395
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- - uid: 16422
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 16435
components:
- type: Transform
@@ -47095,21 +47139,11 @@ entities:
- type: Transform
pos: 2.5,33.5
parent: 60
- - uid: 16449
- components:
- - type: Transform
- pos: -2.5,35.5
- parent: 60
- uid: 16504
components:
- type: Transform
pos: 5.5,34.5
parent: 60
- - uid: 16529
- components:
- - type: Transform
- pos: -1.5,35.5
- parent: 60
- uid: 16686
components:
- type: Transform
@@ -49581,78 +49615,6 @@ entities:
- type: Transform
pos: 3.5,-3.5
parent: 7536
- - uid: 14163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,20.5
- parent: 60
- - uid: 14164
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,21.5
- parent: 60
- - uid: 14165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,20.5
- parent: 60
- - uid: 14166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,21.5
- parent: 60
- - uid: 14167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,20.5
- parent: 60
- - uid: 14168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,21.5
- parent: 60
- - uid: 14169
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,11.5
- parent: 60
- - uid: 14170
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,12.5
- parent: 60
- - uid: 14171
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,13.5
- parent: 60
- - uid: 14172
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,11.5
- parent: 60
- - uid: 14173
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,12.5
- parent: 60
- - uid: 14174
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,13.5
- parent: 60
- uid: 14485
components:
- type: Transform
@@ -49718,6 +49680,113 @@ entities:
- type: Transform
pos: -25.5,-28.5
parent: 60
+- proto: CarpetBlack
+ entities:
+ - uid: 4527
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 60
+ - uid: 13095
+ components:
+ - type: Transform
+ pos: -11.5,16.5
+ parent: 60
+ - uid: 14135
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 60
+ - uid: 14136
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 60
+ - uid: 14137
+ components:
+ - type: Transform
+ pos: -8.5,17.5
+ parent: 60
+ - uid: 14138
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 60
+ - uid: 14141
+ components:
+ - type: Transform
+ pos: -8.5,18.5
+ parent: 60
+ - uid: 14144
+ components:
+ - type: Transform
+ pos: -9.5,16.5
+ parent: 60
+ - uid: 14145
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 60
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 60
+ - uid: 14170
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 60
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 60
+ - uid: 14216
+ components:
+ - type: Transform
+ pos: -10.5,18.5
+ parent: 60
+ - uid: 14218
+ components:
+ - type: Transform
+ pos: -10.5,19.5
+ parent: 60
+ - uid: 14326
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 60
+ - uid: 14510
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 60
+ - uid: 16307
+ components:
+ - type: Transform
+ pos: -10.5,16.5
+ parent: 60
+ - uid: 16360
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 60
+ - uid: 16419
+ components:
+ - type: Transform
+ pos: -9.5,19.5
+ parent: 60
+ - uid: 16437
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 60
+ - uid: 17110
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 60
- proto: CarpetBlue
entities:
- uid: 17643
@@ -49987,96 +50056,6 @@ entities:
- type: Transform
pos: 21.5,-37.5
parent: 60
- - uid: 14147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,15.5
- parent: 60
- - uid: 14148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,16.5
- parent: 60
- - uid: 14149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,17.5
- parent: 60
- - uid: 14150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,18.5
- parent: 60
- - uid: 14151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 60
- - uid: 14152
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,16.5
- parent: 60
- - uid: 14154
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,18.5
- parent: 60
- - uid: 14155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,15.5
- parent: 60
- - uid: 14156
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,16.5
- parent: 60
- - uid: 14157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,17.5
- parent: 60
- - uid: 14158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,18.5
- parent: 60
- - uid: 14159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,15.5
- parent: 60
- - uid: 14160
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,16.5
- parent: 60
- - uid: 14161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,17.5
- parent: 60
- - uid: 14162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,18.5
- parent: 60
- uid: 14188
components:
- type: Transform
@@ -50089,12 +50068,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,25.5
parent: 60
- - uid: 14326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,17.5
- parent: 60
- uid: 17207
components:
- type: Transform
@@ -53651,6 +53624,11 @@ entities:
- type: Transform
pos: 53.5,4.5
parent: 60
+ - uid: 13569
+ components:
+ - type: Transform
+ pos: 0.5,34.5
+ parent: 60
- uid: 13574
components:
- type: Transform
@@ -53716,6 +53694,11 @@ entities:
- type: Transform
pos: -60.5,-5.5
parent: 60
+ - uid: 14133
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
- uid: 14390
components:
- type: Transform
@@ -54016,6 +53999,31 @@ entities:
- type: Transform
pos: -81.5,17.5
parent: 60
+ - uid: 16439
+ components:
+ - type: Transform
+ pos: -6.5,46.5
+ parent: 60
+ - uid: 16449
+ components:
+ - type: Transform
+ pos: -6.5,48.5
+ parent: 60
+ - uid: 16500
+ components:
+ - type: Transform
+ pos: -6.5,47.5
+ parent: 60
+ - uid: 16505
+ components:
+ - type: Transform
+ pos: 7.5,48.5
+ parent: 60
+ - uid: 16508
+ components:
+ - type: Transform
+ pos: 7.5,47.5
+ parent: 60
- uid: 17685
components:
- type: Transform
@@ -56058,6 +56066,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -75.5,22.5
parent: 60
+ - uid: 21645
+ components:
+ - type: Transform
+ pos: 7.5,46.5
+ parent: 60
- uid: 21792
components:
- type: Transform
@@ -57598,6 +57611,11 @@ entities:
- type: Transform
pos: -7.5,21.5
parent: 60
+ - uid: 14319
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 60
- uid: 14727
components:
- type: Transform
@@ -57989,41 +58007,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.4897,-38.423878
parent: 60
- - uid: 14118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,17.5
- parent: 60
- - uid: 14119
+ - uid: 14154
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,16.5
- parent: 60
- - uid: 14121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,15.5
+ pos: -11.5321455,21.501402
parent: 60
- - uid: 14134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 60
- - uid: 14135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,16.5
- parent: 60
- - uid: 14136
+ - uid: 14159
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,17.5
+ pos: -11.474271,12.4426365
parent: 60
- uid: 14187
components:
@@ -58037,17 +58031,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-31.5
parent: 60
- - uid: 14440
- components:
- - type: Transform
- pos: -11.5,21.5
- parent: 60
- - uid: 14441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,11.5
- parent: 60
- uid: 14522
components:
- type: Transform
@@ -59979,6 +59962,13 @@ entities:
- type: Transform
pos: -30.497168,-20.40541
parent: 60
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 14118
+ components:
+ - type: Transform
+ pos: -14.449867,32.546978
+ parent: 60
- proto: ClothingBeltUtilityFilled
entities:
- uid: 5284
@@ -60281,7 +60271,7 @@ entities:
- uid: 24258
components:
- type: Transform
- pos: 12.042968,35.99082
+ pos: 12.34339,35.974167
parent: 60
- uid: 24259
components:
@@ -60596,6 +60586,20 @@ entities:
- type: Transform
pos: 56.480446,-3.47641
parent: 60
+- proto: ClothingMaskBlushingClown
+ entities:
+ - uid: 12225
+ components:
+ - type: Transform
+ pos: 22.039051,-11.200508
+ parent: 60
+- proto: ClothingMaskBlushingMime
+ entities:
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 27.273426,-11.294258
+ parent: 60
- proto: ClothingMaskBreath
entities:
- uid: 9502
@@ -60692,20 +60696,6 @@ entities:
- type: Transform
pos: 50.52941,-44.450947
parent: 60
-- proto: ClothingMaskSexyClown
- entities:
- - uid: 12225
- components:
- - type: Transform
- pos: 22.039051,-11.200508
- parent: 60
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 4261
- components:
- - type: Transform
- pos: 27.273426,-11.294258
- parent: 60
- proto: ClothingMaskSterile
entities:
- uid: 59
@@ -60756,27 +60746,6 @@ entities:
- type: Transform
pos: -38.4609,19.6876
parent: 60
-- proto: ClothingNeckIntersexPin
- entities:
- - uid: 24088
- components:
- - type: Transform
- pos: -12.770909,19.336336
- parent: 60
-- proto: ClothingNeckLesbianPin
- entities:
- - uid: 24086
- components:
- - type: Transform
- pos: -10.308835,13.564301
- parent: 60
-- proto: ClothingNeckLGBTPin
- entities:
- - uid: 7174
- components:
- - type: Transform
- pos: -11.221505,22.789167
- parent: 60
- proto: ClothingNeckMantleHOP
entities:
- uid: 5207
@@ -60795,13 +60764,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingNeckNonBinaryPin
- entities:
- - uid: 13569
- components:
- - type: Transform
- pos: -6.8039737,15.288539
- parent: 60
- proto: ClothingNeckScarfStripedBlue
entities:
- uid: 7862
@@ -60869,13 +60831,6 @@ entities:
- type: Transform
pos: -63.651737,-1.4881696
parent: 60
-- proto: ClothingNeckTransPin
- entities:
- - uid: 5166
- components:
- - type: Transform
- pos: -8.970711,16.51249
- parent: 60
- proto: ClothingOuterApron
entities:
- uid: 8027
@@ -61402,6 +61357,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-37.5
parent: 60
+ - uid: 5166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,16.5
+ parent: 60
+ - uid: 5542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,15.5
+ parent: 60
- uid: 5844
components:
- type: Transform
@@ -61463,6 +61430,24 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-8.5
parent: 60
+ - uid: 11477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,18.5
+ parent: 60
+ - uid: 11529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,16.5
+ parent: 60
+ - uid: 11687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,15.5
+ parent: 60
- uid: 12715
components:
- type: Transform
@@ -61475,16 +61460,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-37.5
parent: 60
- - uid: 14117
+ - uid: 14172
components:
- type: Transform
- pos: -9.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,15.5
+ parent: 60
+ - uid: 14327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,18.5
+ parent: 60
+ - uid: 14328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,17.5
parent: 60
- uid: 14525
components:
- type: Transform
pos: -25.5,20.5
parent: 60
+ - uid: 16434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,17.5
+ parent: 60
- uid: 17357
components:
- type: Transform
@@ -63305,6 +63309,32 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,21.5
parent: 60
+- proto: CurtainsGreenOpen
+ entities:
+ - uid: 5409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,15.5
+ parent: 60
+ - uid: 9142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,10.5
+ parent: 60
+ - uid: 11018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,10.5
+ parent: 60
+ - uid: 14175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,17.5
+ parent: 60
- proto: CurtainsRedOpen
entities:
- uid: 23090
@@ -63343,35 +63373,19 @@ entities:
parent: 7536
- proto: d20Dice
entities:
- - uid: 14217
+ - uid: 14149
components:
- type: Transform
- pos: -8.428826,17.002214
+ rot: -1.5707963267948966 rad
+ pos: -8.975064,16.881664
parent: 60
- proto: d6Dice
entities:
- - uid: 14219
- components:
- - type: Transform
- pos: -9.018627,17.160591
- parent: 60
- - uid: 14220
- components:
- - type: Transform
- pos: -8.967095,16.960144
- parent: 60
- uid: 17897
components:
- type: Transform
pos: -8.719646,-50.56693
parent: 60
-- proto: d8Dice
- entities:
- - uid: 14218
- components:
- - type: Transform
- pos: -9.631951,17.08034
- parent: 60
- proto: DawInstrumentMachineCircuitboard
entities:
- uid: 6277
@@ -64217,11 +64231,6 @@ entities:
- type: Transform
pos: -16.5,8.5
parent: 60
- - uid: 14433
- components:
- - type: Transform
- pos: -12.5,16.5
- parent: 60
- uid: 14634
components:
- type: Transform
@@ -64615,11 +64624,6 @@ entities:
- type: Transform
pos: -15.5,11.5
parent: 60
- - uid: 14097
- components:
- - type: Transform
- pos: -15.5,16.5
- parent: 60
- uid: 14635
components:
- type: Transform
@@ -67216,12 +67220,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,11.5
parent: 60
- - uid: 14091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,11.5
- parent: 60
- uid: 14093
components:
- type: Transform
@@ -67277,17 +67275,11 @@ entities:
- type: Transform
pos: -15.5,23.5
parent: 60
- - uid: 14434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,16.5
- parent: 60
- - uid: 14435
+ - uid: 14178
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,16.5
parent: 60
- uid: 14636
components:
@@ -68310,23 +68302,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -28.5,11.5
parent: 60
- - uid: 14092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,11.5
- parent: 60
- uid: 14143
components:
- type: Transform
pos: -43.5,-3.5
parent: 60
- - uid: 14432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,15.5
- parent: 60
- uid: 15793
components:
- type: Transform
@@ -68367,6 +68347,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-13.5
parent: 60
+ - uid: 21339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,11.5
+ parent: 60
- uid: 21353
components:
- type: Transform
@@ -68586,16 +68572,6 @@ entities:
- type: Transform
pos: 7.5,10.5
parent: 60
- - uid: 13982
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 60
- - uid: 14176
- components:
- - type: Transform
- pos: -12.5,15.5
- parent: 60
- uid: 14546
components:
- type: Transform
@@ -68641,6 +68617,11 @@ entities:
- type: Transform
pos: 47.5,14.5
parent: 60
+ - uid: 21362
+ components:
+ - type: Transform
+ pos: -13.5,11.5
+ parent: 60
- uid: 21402
components:
- type: Transform
@@ -69477,16 +69458,6 @@ entities:
- type: Transform
pos: -7.5,31.5
parent: 60
- - uid: 24122
- components:
- - type: Transform
- pos: -8.5,37.5
- parent: 60
- - uid: 24175
- components:
- - type: Transform
- pos: -8.5,38.5
- parent: 60
- proto: EncryptionKeyCargo
entities:
- uid: 19039
@@ -69660,6 +69631,11 @@ entities:
- type: Transform
pos: 46.5,16.5
parent: 60
+ - uid: 14158
+ components:
+ - type: Transform
+ pos: -12.5,12.5
+ parent: 60
- uid: 17230
components:
- type: Transform
@@ -69690,11 +69666,6 @@ entities:
- type: Transform
pos: 3.5,25.5
parent: 60
- - uid: 18496
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 60
- uid: 19871
components:
- type: Transform
@@ -69911,11 +69882,6 @@ entities:
- type: Transform
pos: -36.5,-34.5
parent: 60
- - uid: 11018
- components:
- - type: Transform
- pos: -8.5,16.5
- parent: 60
- proto: filingCabinetDrawerRandom
entities:
- uid: 1942
@@ -70604,12 +70570,6 @@ entities:
- 6593
- 6785
- 6661
- - uid: 21644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,13.5
- parent: 60
- uid: 21650
components:
- type: Transform
@@ -75130,6 +75090,22 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 14217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 14219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 14260
components:
- type: Transform
@@ -86129,6 +86105,22 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 14176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 14181
components:
- type: Transform
@@ -86654,10 +86646,11 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 14319
+ - uid: 14318
components:
- type: Transform
- pos: -9.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,17.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
@@ -93766,14 +93759,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 1229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 1259
components:
- type: Transform
@@ -95282,26 +95267,26 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 14293
+ - uid: 14295
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,17.5
+ pos: -9.5,17.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14295
+ - uid: 14308
components:
- type: Transform
- pos: -9.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,14.5
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14308
+ - uid: 14312
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,14.5
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
@@ -97956,6 +97941,16 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 13248
+ components:
+ - type: Transform
+ pos: -11.5,15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 13536
components:
- type: Transform
@@ -97993,13 +97988,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 14303
- components:
- - type: Transform
- pos: -11.5,18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0335FCFF'
- uid: 14325
components:
- type: Transform
@@ -99414,6 +99402,16 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 11525
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 12001
components:
- type: Transform
@@ -99518,21 +99516,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-13.5
parent: 60
- - uid: 14312
- components:
- - type: Transform
- pos: -11.5,16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 14318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 14503
components:
- type: Transform
@@ -101552,11 +101535,6 @@ entities:
- type: Transform
pos: -19.5,-52.5
parent: 60
- - uid: 4794
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- uid: 4860
components:
- type: Transform
@@ -103088,11 +103066,6 @@ entities:
- type: Transform
pos: -6.5,3.5
parent: 60
- - uid: 11522
- components:
- - type: Transform
- pos: -1.5,37.5
- parent: 60
- uid: 11699
components:
- type: Transform
@@ -103783,6 +103756,21 @@ entities:
- type: Transform
pos: -13.5,17.5
parent: 60
+ - uid: 14117
+ components:
+ - type: Transform
+ pos: -5.5,35.5
+ parent: 60
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 2.5,38.5
+ parent: 60
+ - uid: 14434
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 60
- uid: 14442
components:
- type: Transform
@@ -104348,30 +104336,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 1.5,30.5
parent: 60
- - uid: 16377
+ - uid: 16356
components:
- type: Transform
- pos: -0.5,37.5
+ pos: 7.5,34.5
parent: 60
- - uid: 16378
+ - uid: 16362
components:
- type: Transform
- pos: 38.5,17.5
+ pos: 1.5,38.5
parent: 60
- - uid: 16397
+ - uid: 16370
components:
- type: Transform
- pos: -19.5,35.5
+ pos: -0.5,38.5
parent: 60
- - uid: 16433
+ - uid: 16378
components:
- type: Transform
- pos: 0.5,37.5
+ pos: 38.5,17.5
parent: 60
- - uid: 16434
+ - uid: 16392
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -1.5,38.5
+ parent: 60
+ - uid: 16397
+ components:
+ - type: Transform
+ pos: -19.5,35.5
parent: 60
- uid: 16623
components:
@@ -105054,6 +105047,11 @@ entities:
- type: Transform
pos: 15.5,-80.5
parent: 60
+ - uid: 18496
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 60
- uid: 18512
components:
- type: Transform
@@ -107924,6 +107922,11 @@ entities:
- type: Transform
pos: 37.5,30.5
parent: 60
+ - uid: 23905
+ components:
+ - type: Transform
+ pos: -3.5,35.5
+ parent: 60
- uid: 23944
components:
- type: Transform
@@ -109806,10 +109809,10 @@ entities:
parent: 60
- proto: HolopadServiceLibrary
entities:
- - uid: 24049
+ - uid: 14151
components:
- type: Transform
- pos: -8.5,18.5
+ pos: -9.5,19.5
parent: 60
- proto: HolopadServiceNewsroom
entities:
@@ -110170,16 +110173,16 @@ entities:
parent: 60
- proto: IntercomEngineering
entities:
- - uid: 6286
+ - uid: 9473
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,18.5
+ pos: 2.5,12.5
parent: 60
- - uid: 9473
+ - uid: 14440
components:
- type: Transform
- pos: 2.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,16.5
parent: 60
- uid: 23847
components:
@@ -110574,10 +110577,15 @@ entities:
- type: Transform
pos: -8.397732,20.931147
parent: 60
- - uid: 14437
+ - uid: 14163
+ components:
+ - type: Transform
+ pos: -8.599271,11.8332615
+ parent: 60
+ - uid: 14215
components:
- type: Transform
- pos: -10.617271,13.996219
+ pos: -12.5790205,21.938902
parent: 60
- uid: 17683
components:
@@ -112756,10 +112764,10 @@ entities:
parent: 60
- proto: PaintingPersistenceOfMemory
entities:
- - uid: 18852
+ - uid: 14162
components:
- type: Transform
- pos: -11.5,14.5
+ pos: -5.5,17.5
parent: 60
- proto: PaintingPrayerHands
entities:
@@ -113029,16 +113037,6 @@ entities:
- type: Transform
pos: -6.5813313,20.579428
parent: 60
- - uid: 14215
- components:
- - type: Transform
- pos: -8.515039,16.595964
- parent: 60
- - uid: 14216
- components:
- - type: Transform
- pos: -9.030664,17.502214
- parent: 60
- uid: 17389
components:
- type: Transform
@@ -113224,59 +113222,59 @@ entities:
parent: 60
- proto: ParticleAcceleratorControlBox
entities:
- - uid: 5542
+ - uid: 16390
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,33.5
+ pos: 1.5,34.5
parent: 60
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 16403
+ - uid: 15521
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,35.5
+ pos: 0.5,36.5
parent: 60
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 16349
+ - uid: 15522
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,35.5
+ pos: -0.5,36.5
parent: 60
- proto: ParticleAcceleratorEmitterStarboardUnfinished
entities:
- - uid: 16402
+ - uid: 14514
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,35.5
+ pos: 1.5,36.5
parent: 60
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 16405
+ - uid: 15520
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,32.5
+ pos: 0.5,33.5
parent: 60
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 15520
+ - uid: 16420
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,33.5
+ pos: 0.5,34.5
parent: 60
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 16404
+ - uid: 15523
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,34.5
+ pos: 0.5,35.5
parent: 60
- proto: PartRodMetal
entities:
@@ -113335,6 +113333,11 @@ entities:
- type: Transform
pos: 68.478806,-13.493814
parent: 60
+ - uid: 23913
+ components:
+ - type: Transform
+ pos: -8.4650955,36.5825
+ parent: 60
- uid: 24781
components:
- type: Transform
@@ -113451,10 +113454,10 @@ entities:
- type: Transform
pos: -113.45662,13.529887
parent: 60
- - uid: 14211
+ - uid: 14165
components:
- type: Transform
- pos: -10.48097,11.426869
+ pos: -11.458646,12.4738865
parent: 60
- uid: 18573
components:
@@ -113546,10 +113549,10 @@ entities:
- type: Transform
pos: -25.5,35.5
parent: 60
- - uid: 16418
+ - uid: 21644
components:
- type: Transform
- pos: -6.5,33.5
+ pos: -5.5,34.5
parent: 60
- proto: PlasmaOre1
entities:
@@ -113660,6 +113663,26 @@ entities:
- type: Transform
pos: -17.5,26.5
parent: 60
+ - uid: 14152
+ components:
+ - type: Transform
+ pos: 55.5,4.5
+ parent: 60
+ - uid: 14160
+ components:
+ - type: Transform
+ pos: 51.5,4.5
+ parent: 60
+ - uid: 14166
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 60
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 52.5,4.5
+ parent: 60
- uid: 18799
components:
- type: Transform
@@ -114540,10 +114563,10 @@ entities:
parent: 60
- proto: PosterLegitNTTGC
entities:
- - uid: 17250
+ - uid: 14157
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -12.5,14.5
parent: 60
- proto: PosterLegitPDAAd
entities:
@@ -114910,15 +114933,15 @@ entities:
parent: 60
- proto: PottedPlant24
entities:
- - uid: 19961
+ - uid: 14156
components:
- type: Transform
- pos: -20.580471,15.2164345
+ pos: -6.5,15.5
parent: 60
- - uid: 21362
+ - uid: 19961
components:
- type: Transform
- pos: -11.5,15.5
+ pos: -20.580471,15.2164345
parent: 60
- proto: PottedPlant26
entities:
@@ -116636,14 +116659,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 14228
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,13.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 14734
components:
- type: Transform
@@ -116887,22 +116902,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,33.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 16538
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,33.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 17018
components:
- type: Transform
@@ -117668,6 +117667,12 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 16357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,40.5
+ parent: 60
- uid: 20978
components:
- type: Transform
@@ -118047,11 +118052,29 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,33.5
parent: 60
- - uid: 16344
+ - uid: 16348
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 60
+ - uid: 16349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,33.5
+ parent: 60
+ - uid: 16359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,36.5
+ parent: 60
+ - uid: 16423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,36.5
parent: 60
- uid: 16679
components:
@@ -118237,18 +118260,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,17.5
parent: 60
- - uid: 22450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,35.5
- parent: 60
- - uid: 22453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,38.5
- parent: 60
- uid: 22466
components:
- type: Transform
@@ -118317,6 +118328,12 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 23901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,36.5
+ parent: 60
- uid: 24138
components:
- type: Transform
@@ -118760,6 +118777,11 @@ entities:
- type: Transform
pos: 45.5,-1.5
parent: 60
+ - uid: 14119
+ components:
+ - type: Transform
+ pos: -14.5,32.5
+ parent: 60
- uid: 15158
components:
- type: Transform
@@ -118775,6 +118797,16 @@ entities:
- type: Transform
pos: 4.5,23.5
parent: 60
+ - uid: 16528
+ components:
+ - type: Transform
+ pos: 10.5,34.5
+ parent: 60
+ - uid: 16538
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 60
- uid: 17155
components:
- type: Transform
@@ -118860,6 +118892,11 @@ entities:
- type: Transform
pos: -32.5,38.5
parent: 60
+ - uid: 23912
+ components:
+ - type: Transform
+ pos: -8.5,36.5
+ parent: 60
- uid: 24161
components:
- type: Transform
@@ -119866,10 +119903,12 @@ entities:
- type: Transform
pos: 10.5,-26.5
parent: 60
- - uid: 14002
+- proto: RandomVendingClothing
+ entities:
+ - uid: 17141
components:
- type: Transform
- pos: -12.5,12.5
+ pos: -39.5,19.5
parent: 60
- proto: RandomVendingDrinks
entities:
@@ -119898,6 +119937,11 @@ entities:
- type: Transform
pos: -37.5,26.5
parent: 60
+ - uid: 21066
+ components:
+ - type: Transform
+ pos: -13.5,13.5
+ parent: 60
- uid: 23916
components:
- type: Transform
@@ -120268,6 +120312,16 @@ entities:
- type: Transform
pos: -19.5,47.5
parent: 60
+ - uid: 18644
+ components:
+ - type: Transform
+ pos: -5.5,35.5
+ parent: 60
+ - uid: 21013
+ components:
+ - type: Transform
+ pos: -3.5,35.5
+ parent: 60
- uid: 23455
components:
- type: Transform
@@ -122506,11 +122560,6 @@ entities:
- type: Transform
pos: -6.5,4.5
parent: 60
- - uid: 11687
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- uid: 11701
components:
- type: Transform
@@ -123282,6 +123331,16 @@ entities:
- type: Transform
pos: 1.5,12.5
parent: 60
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 60
+ - uid: 14435
+ components:
+ - type: Transform
+ pos: 1.5,38.5
+ parent: 60
- uid: 14524
components:
- type: Transform
@@ -123703,10 +123762,10 @@ entities:
- type: Transform
pos: 6.5,39.5
parent: 60
- - uid: 16174
+ - uid: 16369
components:
- type: Transform
- pos: -1.5,37.5
+ pos: 0.5,38.5
parent: 60
- uid: 16371
components:
@@ -123728,35 +123787,30 @@ entities:
- type: Transform
pos: -2.5,39.5
parent: 60
- - uid: 16426
- components:
- - type: Transform
- pos: -3.5,39.5
- parent: 60
- - uid: 16427
+ - uid: 16394
components:
- type: Transform
- pos: -4.5,39.5
+ pos: -0.5,38.5
parent: 60
- - uid: 16431
+ - uid: 16395
components:
- type: Transform
- pos: -5.5,39.5
+ pos: -1.5,38.5
parent: 60
- - uid: 16437
+ - uid: 16426
components:
- type: Transform
- pos: -0.5,37.5
+ pos: -3.5,39.5
parent: 60
- - uid: 16438
+ - uid: 16427
components:
- type: Transform
- pos: 0.5,37.5
+ pos: -4.5,39.5
parent: 60
- - uid: 16439
+ - uid: 16431
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -5.5,39.5
parent: 60
- uid: 16509
components:
@@ -123778,6 +123832,11 @@ entities:
- type: Transform
pos: -56.5,17.5
parent: 60
+ - uid: 17108
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 60
- uid: 17145
components:
- type: Transform
@@ -124079,6 +124138,11 @@ entities:
- type: Transform
pos: -9.5,-5.5
parent: 60
+ - uid: 18643
+ components:
+ - type: Transform
+ pos: 2.5,38.5
+ parent: 60
- uid: 18679
components:
- type: Transform
@@ -125024,6 +125088,11 @@ entities:
- type: Transform
pos: 20.606422,21.831692
parent: 60
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 2.4679193,31.291115
+ parent: 60
- proto: SecurityTechFab
entities:
- uid: 5836
@@ -125754,40 +125823,15 @@ entities:
parent: 60
- proto: ShuttersRadiationOpen
entities:
- - uid: 16369
- components:
- - type: Transform
- pos: -0.5,30.5
- parent: 60
- - uid: 16398
+ - uid: 16388
components:
- type: Transform
pos: 1.5,30.5
parent: 60
- - uid: 18610
- components:
- - type: Transform
- pos: 1.5,37.5
- parent: 60
- - uid: 18611
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- - uid: 18643
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 60
- - uid: 18644
- components:
- - type: Transform
- pos: -0.5,37.5
- parent: 60
- - uid: 18706
+ - uid: 16389
components:
- type: Transform
- pos: -1.5,37.5
+ pos: -0.5,30.5
parent: 60
- proto: ShuttersWindow
entities:
@@ -126163,18 +126207,6 @@ entities:
- Pressed: Toggle
21334:
- Pressed: Toggle
- - uid: 4260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,30.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16542:
- - Pressed: Toggle
- 16541:
- - Pressed: Toggle
- uid: 9571
components:
- type: Transform
@@ -126212,19 +126244,6 @@ entities:
- Pressed: Toggle
4679:
- Pressed: Toggle
- - uid: 11477
- components:
- - type: Transform
- pos: 9.5,22.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6524:
- - Pressed: Toggle
- 6526:
- - Pressed: Toggle
- 6522:
- - Pressed: Toggle
- uid: 11678
components:
- type: Transform
@@ -126237,18 +126256,6 @@ entities:
- Pressed: Toggle
19158:
- Pressed: Toggle
- - uid: 13095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,20.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16058:
- - Pressed: Toggle
- 15575:
- - Pressed: Toggle
- uid: 13575
components:
- type: Transform
@@ -126284,7 +126291,7 @@ entities:
- type: DeviceLinkSource
linkedPorts:
14444:
- - Pressed: Toggle
+ - Pressed: DoorBolt
- uid: 14549
components:
- type: Transform
@@ -126352,18 +126359,6 @@ entities:
- Pressed: Toggle
2506:
- Pressed: Toggle
- - uid: 16370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16369:
- - Pressed: Toggle
- 16398:
- - Pressed: Toggle
- uid: 16396
components:
- type: Transform
@@ -126378,17 +126373,6 @@ entities:
- Pressed: Toggle
327:
- Pressed: Toggle
- - uid: 18295
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16541:
- - Pressed: Toggle
- 16542:
- - Pressed: Toggle
- uid: 20425
components:
- type: MetaData
@@ -126412,23 +126396,6 @@ entities:
linkedPorts:
17460:
- Pressed: DoorBolt
- - uid: 20989
- components:
- - type: Transform
- pos: 3.2670698,37.543144
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 18611:
- - Pressed: Toggle
- 18610:
- - Pressed: Toggle
- 18643:
- - Pressed: Toggle
- 18644:
- - Pressed: Toggle
- 18706:
- - Pressed: Toggle
- uid: 21386
components:
- type: MetaData
@@ -126908,6 +126875,104 @@ entities:
12021:
- On: Open
- Off: Close
+ - uid: 13256
+ components:
+ - type: MetaData
+ name: Radiation Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,31.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16389:
+ - On: Open
+ - Off: Close
+ 16388:
+ - On: Open
+ - Off: Close
+ - uid: 16398
+ components:
+ - type: MetaData
+ name: Secure Storage Blast Doors
+ - type: Transform
+ pos: -4.5,30.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16541:
+ - On: Open
+ - Off: Close
+ 16542:
+ - On: Open
+ - Off: Close
+ - uid: 16399
+ components:
+ - type: MetaData
+ name: CE Office Window Shutters
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6524:
+ - On: Open
+ - Off: Close
+ 6526:
+ - On: Open
+ - Off: Close
+ 6522:
+ - On: Open
+ - Off: Close
+ - uid: 16402
+ components:
+ - type: MetaData
+ name: CE Bedroom Window Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16058:
+ - On: Open
+ - Off: Close
+ 15575:
+ - On: Open
+ - Off: Close
+ - uid: 16404
+ components:
+ - type: MetaData
+ name: Secure Storage Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,30.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16542:
+ - On: Open
+ - Off: Close
+ 16541:
+ - On: Open
+ - Off: Close
+ - uid: 16433
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-15.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16425:
+ - On: Open
+ - Off: Close
+ 14167:
+ - On: Open
+ - Off: Close
- uid: 17957
components:
- type: MetaData
@@ -128222,6 +128287,11 @@ entities:
- type: Transform
pos: -60.5,39.5
parent: 60
+ - uid: 23906
+ components:
+ - type: Transform
+ pos: -2.5,34.5
+ parent: 60
- proto: SignPlaque
entities:
- uid: 2894
@@ -128693,10 +128763,10 @@ entities:
parent: 60
- proto: SingularityGenerator
entities:
- - uid: 16399
+ - uid: 18611
components:
- type: Transform
- pos: -6.5,35.5
+ pos: -6.5,34.5
parent: 60
- proto: Sink
entities:
@@ -128857,11 +128927,6 @@ entities:
parent: 60
- proto: SMESBasic
entities:
- - uid: 5409
- components:
- - type: Transform
- pos: -4.5,33.5
- parent: 60
- uid: 6999
components:
- type: Transform
@@ -128890,9 +128955,16 @@ entities:
parent: 60
- uid: 16153
components:
+ - type: MetaData
+ name: Particle Accelerator SMES
- type: Transform
pos: 4.5,34.5
parent: 60
+ - uid: 16407
+ components:
+ - type: Transform
+ pos: -3.5,34.5
+ parent: 60
- uid: 17674
components:
- type: Transform
@@ -131099,23 +131171,6 @@ entities:
- type: Transform
pos: 5.5,-46.5
parent: 60
-- proto: SpacemenFigureSpawner
- entities:
- - uid: 14510
- components:
- - type: Transform
- pos: -9.5,17.5
- parent: 60
- - uid: 14514
- components:
- - type: Transform
- pos: -8.5,17.5
- parent: 60
- - uid: 14523
- components:
- - type: Transform
- pos: -9.5,16.5
- parent: 60
- proto: SpaceVillainArcadeFilled
entities:
- uid: 5301
@@ -131225,10 +131280,10 @@ entities:
- type: Transform
pos: 29.5,-40.5
parent: 60
- - uid: 13987
+ - uid: 14169
components:
- type: Transform
- pos: -9.5,13.5
+ pos: -11.5,19.5
parent: 60
- uid: 19721
components:
@@ -131258,10 +131313,10 @@ entities:
parent: 60
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 14210
+ - uid: 14150
components:
- type: Transform
- pos: -10.5,19.5
+ pos: -9.5,21.5
parent: 60
- proto: SpawnMobSmile
entities:
@@ -132150,6 +132205,11 @@ entities:
rot: 3.141592653589793 rad
pos: -34.5,-16.5
parent: 60
+ - uid: 14432
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 60
- uid: 14541
components:
- type: Transform
@@ -132190,11 +132250,6 @@ entities:
rot: 3.141592653589793 rad
pos: -45.5,-8.5
parent: 60
- - uid: 22452
- components:
- - type: Transform
- pos: 1.482888,34.64684
- parent: 60
- uid: 25283
components:
- type: Transform
@@ -132545,6 +132600,8 @@ entities:
parent: 60
- uid: 16374
components:
+ - type: MetaData
+ name: Particle Accelerator Substation
- type: Transform
pos: 5.5,34.5
parent: 60
@@ -132613,10 +132670,10 @@ entities:
parent: 60
- proto: SuitStorageEngi
entities:
- - uid: 16420
+ - uid: 16421
components:
- type: Transform
- pos: -8.5,35.5
+ pos: -7.5,34.5
parent: 60
- uid: 19452
components:
@@ -133101,6 +133158,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Anchor Room
+ - uid: 14220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,38.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock Left
- uid: 15449
components:
- type: Transform
@@ -133166,11 +133234,11 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: TEG
- - uid: 16423
+ - uid: 16422
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,36.5
+ pos: 2.5,37.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
@@ -133307,6 +133375,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Circuitry
+ - uid: 23703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,36.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock Right
- uid: 24273
components:
- type: Transform
@@ -133988,17 +134067,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hallway Cargo
- - uid: 24764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,38.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Singulo Cage Airlock
- uid: 24765
components:
- type: Transform
@@ -136068,6 +136136,12 @@ entities:
- type: Transform
pos: 26.5,-11.5
parent: 60
+ - uid: 23902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,34.5
+ parent: 60
- uid: 24017
components:
- type: Transform
@@ -136140,36 +136214,64 @@ entities:
- type: Transform
pos: 20.5,-37.5
parent: 60
+ - uid: 6286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,17.5
+ parent: 60
+ - uid: 7174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,18.5
+ parent: 60
+ - uid: 7229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,16.5
+ parent: 60
- uid: 7493
components:
- type: Transform
pos: 19.5,-29.5
parent: 60
- - uid: 14120
+ - uid: 14139
components:
- type: Transform
- pos: -8.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,18.5
parent: 60
- - uid: 14122
+ - uid: 14142
components:
- type: Transform
- pos: -9.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,17.5
parent: 60
- - uid: 14133
+ - uid: 14146
components:
- type: Transform
- pos: -8.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,16.5
parent: 60
- - uid: 14327
+ - uid: 14148
components:
- type: Transform
- pos: -9.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,17.5
parent: 60
- uid: 15673
components:
- type: Transform
pos: 19.5,-30.5
parent: 60
+ - uid: 16344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,16.5
+ parent: 60
- uid: 17818
components:
- type: Transform
@@ -136212,6 +136314,11 @@ entities:
- type: Transform
pos: -34.5,-7.5
parent: 60
+ - uid: 14211
+ components:
+ - type: Transform
+ pos: -12.5,21.5
+ parent: 60
- proto: TableFancyOrange
entities:
- uid: 8682
@@ -137132,11 +137239,6 @@ entities:
- type: Transform
pos: -10.5,-28.5
parent: 60
- - uid: 9040
- components:
- - type: Transform
- pos: -12.5,19.5
- parent: 60
- uid: 11692
components:
- type: Transform
@@ -137177,15 +137279,10 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 60
- - uid: 14125
- components:
- - type: Transform
- pos: -6.5,15.5
- parent: 60
- - uid: 14142
+ - uid: 14164
components:
- type: Transform
- pos: -11.5,22.5
+ pos: -8.5,11.5
parent: 60
- uid: 14177
components:
@@ -137202,11 +137299,6 @@ entities:
- type: Transform
pos: -8.5,25.5
parent: 60
- - uid: 14436
- components:
- - type: Transform
- pos: -10.5,13.5
- parent: 60
- uid: 17372
components:
- type: Transform
@@ -137523,82 +137615,66 @@ entities:
- type: Transform
pos: 21.522934,4.467383
parent: 60
-- proto: TeslaCoil
+- proto: TeslaCoilFlatpack
entities:
- - uid: 13248
+ - uid: 14097
components:
- type: Transform
- pos: -6.5,46.5
+ pos: 10.348119,34.754375
parent: 60
- - uid: 13256
+ - uid: 23907
components:
- type: Transform
- pos: 7.5,46.5
+ pos: 10.660619,34.754375
parent: 60
- - uid: 13266
+ - uid: 23908
components:
- type: Transform
- pos: 7.5,47.5
+ pos: 10.348119,34.566875
parent: 60
- - uid: 13269
+ - uid: 23909
components:
- type: Transform
- pos: 7.5,48.5
+ pos: 10.644994,34.566875
parent: 60
- - uid: 16406
+ - uid: 23910
components:
- type: Transform
- pos: -6.5,47.5
+ pos: 10.363744,34.379375
parent: 60
- - uid: 16421
+ - uid: 23911
components:
- type: Transform
- pos: -6.5,48.5
+ pos: 10.629369,34.379375
parent: 60
- proto: TeslaGenerator
entities:
- - uid: 24770
+ - uid: 16391
components:
- type: Transform
- pos: -6.5,34.5
+ pos: -4.5,33.5
parent: 60
-- proto: TeslaGroundingRod
+- proto: TeslaGroundingRodFlatpack
entities:
- - uid: 21013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,36.5
- parent: 60
- - uid: 21021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,35.5
- parent: 60
- - uid: 21026
+ - uid: 16529
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,34.5
+ pos: 10.346966,35.715775
parent: 60
- - uid: 21066
+ - uid: 16536
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,34.5
+ pos: 10.721966,35.340775
parent: 60
- - uid: 21339
+ - uid: 16537
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,35.5
+ pos: 10.362591,35.340775
parent: 60
- - uid: 21343
+ - uid: 17109
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,36.5
+ pos: 10.714586,35.715775
parent: 60
- proto: Thruster
entities:
@@ -138549,10 +138625,10 @@ entities:
parent: 60
- proto: VendingMachineGames
entities:
- - uid: 14001
+ - uid: 14168
components:
- type: Transform
- pos: -12.5,13.5
+ pos: -6.5,19.5
parent: 60
- proto: VendingMachineGeneDrobe
entities:
@@ -138750,13 +138826,6 @@ entities:
- type: Transform
pos: 52.5,-31.5
parent: 60
-- proto: VendingMachineWinter
- entities:
- - uid: 9009
- components:
- - type: Transform
- pos: -39.5,19.5
- parent: 60
- proto: VendingMachineYouTool
entities:
- uid: 6624
@@ -143360,11 +143429,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,-51.5
parent: 60
- - uid: 7229
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 60
- uid: 7254
components:
- type: Transform
@@ -143966,11 +144030,6 @@ entities:
- type: Transform
pos: -45.5,-11.5
parent: 60
- - uid: 9142
- components:
- - type: Transform
- pos: -5.5,34.5
- parent: 60
- uid: 9143
components:
- type: Transform
@@ -144326,16 +144385,6 @@ entities:
- type: Transform
pos: -64.5,-4.5
parent: 60
- - uid: 11525
- components:
- - type: Transform
- pos: 9.5,34.5
- parent: 60
- - uid: 11529
- components:
- - type: Transform
- pos: 9.5,36.5
- parent: 60
- uid: 11535
components:
- type: Transform
@@ -145969,16 +146018,6 @@ entities:
- type: Transform
pos: -17.5,49.5
parent: 60
- - uid: 15521
- components:
- - type: Transform
- pos: 8.5,37.5
- parent: 60
- - uid: 15522
- components:
- - type: Transform
- pos: 7.5,37.5
- parent: 60
- uid: 15538
components:
- type: Transform
@@ -146124,11 +146163,6 @@ entities:
- type: Transform
pos: 9.5,23.5
parent: 60
- - uid: 16091
- components:
- - type: Transform
- pos: -3.5,34.5
- parent: 60
- uid: 16110
components:
- type: Transform
@@ -146190,20 +146224,21 @@ entities:
- type: Transform
pos: -40.5,22.5
parent: 60
- - uid: 16307
+ - uid: 16368
components:
- type: Transform
- pos: -5.5,35.5
+ pos: -8.5,39.5
parent: 60
- - uid: 16368
+ - uid: 16405
components:
- type: Transform
- pos: -8.5,39.5
+ pos: 7.5,38.5
parent: 60
- - uid: 16392
+ - uid: 16406
components:
- type: Transform
- pos: -5.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,35.5
parent: 60
- uid: 16413
components:
@@ -146223,33 +146258,17 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,33.5
parent: 60
- - uid: 16419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,37.5
- parent: 60
- uid: 16424
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-62.5
parent: 60
- - uid: 16425
- components:
- - type: Transform
- pos: -4.5,34.5
- parent: 60
- uid: 16432
components:
- type: Transform
pos: -6.5,39.5
parent: 60
- - uid: 16436
- components:
- - type: Transform
- pos: -8.5,36.5
- parent: 60
- uid: 16457
components:
- type: Transform
@@ -146465,36 +146484,16 @@ entities:
- type: Transform
pos: 10.5,37.5
parent: 60
- - uid: 16500
- components:
- - type: Transform
- pos: 9.5,37.5
- parent: 60
- uid: 16501
components:
- type: Transform
pos: 7.5,39.5
parent: 60
- - uid: 16505
- components:
- - type: Transform
- pos: 3.5,37.5
- parent: 60
- uid: 16507
components:
- type: Transform
pos: -6.5,36.5
parent: 60
- - uid: 16508
- components:
- - type: Transform
- pos: -7.5,36.5
- parent: 60
- - uid: 16536
- components:
- - type: Transform
- pos: 7.5,38.5
- parent: 60
- uid: 16981
components:
- type: Transform
@@ -146560,11 +146559,6 @@ entities:
- type: Transform
pos: -10.5,56.5
parent: 60
- - uid: 17141
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 60
- uid: 17142
components:
- type: Transform
@@ -146595,6 +146589,11 @@ entities:
- type: Transform
pos: -8.5,44.5
parent: 60
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 11.5,34.5
+ parent: 60
- uid: 17170
components:
- type: Transform
@@ -146610,6 +146609,21 @@ entities:
- type: Transform
pos: -27.5,58.5
parent: 60
+ - uid: 17250
+ components:
+ - type: Transform
+ pos: -8.5,35.5
+ parent: 60
+ - uid: 17258
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 60
+ - uid: 17271
+ components:
+ - type: Transform
+ pos: 7.5,36.5
+ parent: 60
- uid: 17291
components:
- type: Transform
@@ -147338,6 +147352,12 @@ entities:
- type: Transform
pos: -3.5,-8.5
parent: 60
+ - uid: 18295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,33.5
+ parent: 60
- uid: 18371
components:
- type: Transform
@@ -147378,6 +147398,11 @@ entities:
- type: Transform
pos: -35.5,1.5
parent: 60
+ - uid: 18549
+ components:
+ - type: Transform
+ pos: -4.5,35.5
+ parent: 60
- uid: 18552
components:
- type: Transform
@@ -147388,6 +147413,11 @@ entities:
- type: Transform
pos: 32.5,26.5
parent: 60
+ - uid: 18610
+ components:
+ - type: Transform
+ pos: -2.5,35.5
+ parent: 60
- uid: 18642
components:
- type: Transform
@@ -147410,6 +147440,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -29.5,-21.5
parent: 60
+ - uid: 18706
+ components:
+ - type: Transform
+ pos: -7.5,35.5
+ parent: 60
- uid: 18767
components:
- type: Transform
@@ -147446,6 +147481,12 @@ entities:
- type: Transform
pos: 28.5,4.5
parent: 60
+ - uid: 18852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,36.5
+ parent: 60
- uid: 18856
components:
- type: Transform
@@ -147744,12 +147785,29 @@ entities:
- type: Transform
pos: -27.5,59.5
parent: 60
+ - uid: 20989
+ components:
+ - type: Transform
+ pos: 11.5,35.5
+ parent: 60
- uid: 21011
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,-21.5
parent: 60
+ - uid: 21021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,36.5
+ parent: 60
+ - uid: 21026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,39.5
+ parent: 60
- uid: 21041
components:
- type: Transform
@@ -152418,26 +152476,11 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,13.5
parent: 60
- - uid: 13828
- components:
- - type: Transform
- pos: -11.5,13.5
- parent: 60
- - uid: 13829
- components:
- - type: Transform
- pos: -11.5,12.5
- parent: 60
- uid: 13830
components:
- type: Transform
pos: -13.5,10.5
parent: 60
- - uid: 13831
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 60
- uid: 13832
components:
- type: Transform
@@ -152578,11 +152621,6 @@ entities:
- type: Transform
pos: -12.5,14.5
parent: 60
- - uid: 13958
- components:
- - type: Transform
- pos: -11.5,14.5
- parent: 60
- uid: 14006
components:
- type: Transform
@@ -152618,6 +152656,11 @@ entities:
- type: Transform
pos: 39.5,1.5
parent: 60
+ - uid: 14293
+ components:
+ - type: Transform
+ pos: -12.5,13.5
+ parent: 60
- uid: 14451
components:
- type: Transform
@@ -152727,6 +152770,11 @@ entities:
- type: Transform
pos: -19.5,31.5
parent: 60
+ - uid: 16347
+ components:
+ - type: Transform
+ pos: -12.5,12.5
+ parent: 60
- uid: 16363
components:
- type: Transform
@@ -153197,6 +153245,11 @@ entities:
- type: Transform
pos: 46.5,-15.5
parent: 60
+ - uid: 21343
+ components:
+ - type: Transform
+ pos: -12.5,11.5
+ parent: 60
- uid: 21447
components:
- type: Transform
@@ -154326,10 +154379,10 @@ entities:
- type: Transform
pos: -32.5,32.5
parent: 60
- - uid: 17271
+ - uid: 16174
components:
- type: Transform
- pos: -5.5,33.5
+ pos: -4.5,34.5
parent: 60
- uid: 19720
components:
diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml
index 086a883fea7a..b2d3563ea16a 100644
--- a/Resources/Maps/box.yml
+++ b/Resources/Maps/box.yml
@@ -152,7 +152,7 @@ entities:
version: 6
-1,1:
ind: -1,1
- tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
+ tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
1,1:
ind: 1,1
@@ -160,15 +160,15 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
+ tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
version: 6
0,2:
ind: 0,2
- tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
@@ -428,7 +428,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -513,6 +513,7 @@ entities:
3453: 2,-62
3454: 2,-61
3455: 2,-60
+ 6265: 74,-42
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -537,6 +538,7 @@ entities:
3249: -23,-27
3456: 8,-64
3457: 8,-63
+ 6264: 74,-40
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -561,7 +563,6 @@ entities:
280: 10,39
281: 10,40
282: 10,41
- 283: 6,41
284: 8,37
285: 8,38
286: 8,39
@@ -679,12 +680,12 @@ entities:
3448: 1,-60
3449: 9,-64
3450: 9,-63
- 3519: -10,31
3520: -7,31
3547: -10,29
3639: 60,-51
3640: 59,-51
3642: 57,-51
+ 6270: -7,32
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -762,11 +763,6 @@ entities:
6019: -2,-22
6226: -26,-75
6227: -24,-77
- - node:
- color: '#FFFFFFFF'
- id: Box
- decals:
- 3546: -7,32
- node:
color: '#FFFFFFFF'
id: BoxGreyscale
@@ -1203,6 +1199,11 @@ entities:
id: BrickTileWhiteCornerSe
decals:
2247: -15,-51
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 6283: -13,22
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSe
@@ -1247,7 +1248,7 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
decals:
- 3529: -15,26
+ 6284: -15,22
- node:
color: '#EFB34196'
id: BrickTileWhiteCornerSw
@@ -1282,6 +1283,11 @@ entities:
id: BrickTileWhiteInnerSe
decals:
1521: -10,8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 6279: -13,26
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerSw
@@ -1354,6 +1360,9 @@ entities:
3533: -5,31
3534: -5,32
3535: -5,29
+ 6280: -13,25
+ 6281: -13,24
+ 6282: -13,23
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
@@ -1561,7 +1570,6 @@ entities:
2081: 0,26
2082: -8,26
2083: -12,26
- 2084: -13,26
2085: 1,26
2086: 2,26
2087: 3,26
@@ -1573,6 +1581,7 @@ entities:
3563: -13,34
3564: -14,34
3565: -16,34
+ 6286: -14,22
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
@@ -1664,6 +1673,9 @@ entities:
3543: -6,30
3544: -6,31
3545: -6,32
+ 6276: -15,26
+ 6277: -15,25
+ 6278: -15,24
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -3235,10 +3247,8 @@ entities:
4860: 80,-53
4861: 73,-57
4862: 74,-58
- 4863: 78,-47
4864: 74,-47
4865: 77,-46
- 4866: 78,-45
4867: 76,-45
4868: 72,-45
4924: 78,-14
@@ -3911,7 +3921,6 @@ entities:
4653: -1,32
4654: -5,30
4655: -6,32
- 4656: -9,32
4657: -5,27
4658: -8,27
4659: -12,26
@@ -4798,7 +4807,6 @@ entities:
id: HalfTileOverlayGreyscale180
decals:
18: 9,23
- 25: -14,22
55: 9,30
56: 10,30
57: 11,30
@@ -5057,9 +5065,6 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
15: 10,23
- 19: -13,24
- 20: -13,23
- 21: -13,22
35: 19,35
36: 19,36
186: -20,-31
@@ -5354,7 +5359,6 @@ entities:
decals:
5: 1,28
6: 6,28
- 22: -15,24
28: 4,23
39: 19,36
40: 18,35
@@ -5665,7 +5669,6 @@ entities:
decals:
13: 10,24
16: 8,23
- 24: -15,22
29: 6,24
33: 8,30
184: -20,-30
@@ -5983,8 +5986,6 @@ entities:
decals:
12: 8,24
17: 10,23
- 23: -15,22
- 26: -13,22
27: 4,24
47: 11,35
51: 6,33
@@ -6763,11 +6764,13 @@ entities:
id: WarnCornerNE
decals:
3515: 23,19
+ 6266: 78,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
3516: 25,19
+ 6267: 68,-45
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -6780,6 +6783,7 @@ entities:
decals:
1615: 21,-21
3517: 25,17
+ 6268: 68,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
@@ -6862,6 +6866,7 @@ entities:
1536: -13,6
1663: 51,-17
2317: -73,8
+ 6275: 2,36
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -6920,7 +6925,6 @@ entities:
661: 74,-36
662: 74,-35
663: 74,-34
- 725: 78,-47
726: 78,-48
762: 41,-54
763: 41,-53
@@ -6940,6 +6944,8 @@ entities:
2477: 8,-48
3510: -13,-62
3514: 23,18
+ 6271: 2,34
+ 6272: 2,35
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7101,7 +7107,6 @@ entities:
2093: 4,26
3521: -9,34
3522: -8,34
- 3530: -14,26
3566: -15,34
- node:
color: '#EFB34196'
@@ -7142,6 +7147,11 @@ entities:
6155: -7,-76
6156: -6,-76
6157: -5,-76
+ - node:
+ color: '#DE3A3A96'
+ id: WarnLineGreyscaleW
+ decals:
+ 6285: -15,23
- node:
color: '#EFB34196'
id: WarnLineGreyscaleW
@@ -7204,7 +7214,6 @@ entities:
694: 59,-24
705: 70,-19
706: 71,-19
- 715: 68,-47
755: 39,-54
756: 41,-54
881: 69,-19
@@ -7240,6 +7249,8 @@ entities:
2602: -1,-79
2603: -2,-79
2604: -3,-79
+ 6273: 4,36
+ 6274: 3,36
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7282,8 +7293,6 @@ entities:
707: 72,-20
708: 72,-21
711: 68,-46
- 712: 68,-47
- 713: 68,-45
759: 39,-54
760: 39,-53
761: 39,-52
@@ -7357,7 +7366,6 @@ entities:
703: 62,-20
704: 63,-20
709: 70,-22
- 714: 68,-45
716: 70,-47
717: 71,-47
718: 72,-47
@@ -7366,7 +7374,6 @@ entities:
721: 75,-47
722: 76,-47
723: 77,-47
- 724: 78,-47
757: 41,-52
758: 39,-52
880: 69,-22
@@ -7728,7 +7735,8 @@ entities:
-5,0:
0: 39864
-4,0:
- 0: 43744
+ 0: 35552
+ 2: 8192
-4,1:
0: 60942
-5,1:
@@ -7809,7 +7817,7 @@ entities:
0: 61423
8,-1:
0: 12320
- 4: 34944
+ 3: 34944
-8,-4:
0: 30583
-8,-5:
@@ -7919,7 +7927,8 @@ entities:
5,-7:
0: 65399
5,-6:
- 0: 30579
+ 0: 30515
+ 4: 64
5,-9:
0: 30591
6,-8:
@@ -8017,7 +8026,7 @@ entities:
-9,3:
0: 15
1: 9472
- 3: 4608
+ 5: 4608
-8,4:
0: 13073
-7,1:
@@ -8142,7 +8151,7 @@ entities:
0: 45298
3,-13:
0: 61713
- 3: 204
+ 5: 204
4,-12:
0: 65535
4,-11:
@@ -8151,7 +8160,7 @@ entities:
0: 53744
4,-13:
0: 64716
- 3: 17
+ 5: 17
5,-12:
0: 30583
5,-11:
@@ -8162,30 +8171,30 @@ entities:
0: 30583
6,-12:
1: 4369
- 2: 204
- 3: 49152
+ 6: 204
+ 5: 49152
6,-11:
1: 61713
- 3: 204
+ 5: 204
6,-10:
0: 29424
6,-13:
1: 4369
- 2: 49152
- 3: 204
+ 6: 49152
+ 5: 204
7,-12:
- 2: 17
- 3: 4096
+ 6: 17
+ 5: 4096
1: 17476
7,-11:
- 3: 17
+ 5: 17
1: 29764
7,-10:
0: 61680
7,-13:
- 2: 4096
+ 6: 4096
1: 17476
- 3: 17
+ 5: 17
8,-12:
0: 7647
8,-11:
@@ -8221,7 +8230,7 @@ entities:
1: 8704
8,0:
0: 63523
- 4: 8
+ 3: 8
8,1:
0: 61440
8,2:
@@ -8241,7 +8250,9 @@ entities:
-1,7:
0: 61071
0,8:
- 0: 63231
+ 0: 26367
+ 7: 4096
+ 2: 32768
1,4:
0: 61680
1,5:
@@ -8251,7 +8262,8 @@ entities:
1,7:
0: 64911
1,8:
- 0: 53469
+ 0: 49373
+ 2: 4096
2,5:
0: 28799
2,6:
@@ -8294,19 +8306,22 @@ entities:
-3,6:
0: 65358
-3,7:
- 0: 56793
+ 0: 55769
+ 7: 1024
-3,8:
0: 65421
-2,5:
0: 57599
-2,6:
- 0: 65358
+ 0: 65356
+ 7: 2
-2,7:
0: 65533
-2,8:
0: 64991
-1,8:
- 0: 57582
+ 0: 206
+ 7: 57376
4,8:
0: 65535
5,4:
@@ -8371,19 +8386,24 @@ entities:
-2,12:
0: 65535
-1,9:
- 0: 61166
+ 0: 61038
+ 7: 128
-1,10:
1: 60928
- 3: 192
+ 5: 192
-1,11:
1: 14
0: 57344
-1,12:
0: 65518
0,9:
- 0: 65535
+ 0: 32655
+ 7: 16
+ 2: 32
+ 8: 64
+ 9: 32768
0,10:
- 3: 240
+ 5: 240
1: 65280
0,11:
1: 15
@@ -8391,15 +8411,16 @@ entities:
0,12:
0: 65535
1,9:
- 0: 56829
+ 0: 52733
+ 9: 4096
1,10:
1: 53504
- 3: 8192
+ 5: 8192
0: 204
1,11:
1: 19549
0: 4096
- 3: 34
+ 5: 34
1,12:
0: 4369
1: 17476
@@ -8467,7 +8488,7 @@ entities:
1: 34952
10,7:
1: 33249
- 3: 3598
+ 5: 3598
9,8:
1: 34952
10,3:
@@ -8479,10 +8500,10 @@ entities:
11,6:
1: 40844
11,7:
- 3: 771
+ 5: 771
1: 35064
10,8:
- 3: 3598
+ 5: 3598
1: 33249
11,5:
0: 34956
@@ -8498,29 +8519,29 @@ entities:
1: 20293
12,7:
1: 33008
- 3: 3598
+ 5: 3598
11,8:
1: 35064
- 3: 771
+ 5: 771
9,0:
- 4: 15
+ 3: 15
0: 65296
9,1:
0: 47232
9,2:
0: 48955
9,-1:
- 4: 65520
+ 3: 65520
0: 1
10,0:
- 4: 1
+ 3: 1
0: 65292
10,1:
0: 56789
10,2:
0: 64961
10,-1:
- 4: 4368
+ 3: 4368
0: 57548
11,0:
0: 30543
@@ -8646,7 +8667,7 @@ entities:
0: 65520
-10,4:
1: 3
- 3: 8
+ 5: 8
0: 60928
-13,4:
0: 61432
@@ -8657,24 +8678,24 @@ entities:
-12,6:
1: 44868
-12,7:
- 3: 3855
+ 5: 3855
1: 16624
-13,7:
1: 17652
- 3: 257
+ 5: 257
-12,8:
- 3: 3855
+ 5: 3855
1: 16624
-11,5:
0: 4095
-11,6:
1: 18210
-11,7:
- 3: 257
+ 5: 257
1: 18006
-11,8:
1: 18006
- 3: 257
+ 5: 257
-10,5:
0: 61182
-10,6:
@@ -8705,19 +8726,19 @@ entities:
-14,6:
1: 44953
-14,7:
- 3: 3855
+ 5: 3855
1: 16624
-14,3:
0: 65535
-14,8:
- 3: 3855
+ 5: 3855
1: 16624
-13,6:
1: 57600
0: 1092
-13,8:
1: 17652
- 3: 257
+ 5: 257
-16,0:
0: 55807
-16,-1:
@@ -8922,7 +8943,8 @@ entities:
9,-3:
0: 65407
9,-2:
- 0: 65535
+ 0: 57343
+ 7: 8192
9,-5:
0: 61166
10,-4:
@@ -8953,10 +8975,10 @@ entities:
13,6:
1: 40866
13,7:
- 3: 771
+ 5: 771
1: 36024
12,8:
- 3: 3598
+ 5: 3598
1: 33008
14,5:
0: 3
@@ -8965,7 +8987,7 @@ entities:
1: 310
13,8:
1: 36028
- 3: 771
+ 5: 771
15,5:
1: 304
16,4:
@@ -9004,17 +9026,17 @@ entities:
18,3:
0: 15
1: 3840
- 3: 4096
+ 5: 4096
19,0:
1: 61455
19,1:
1: 36608
19,2:
1: 742
- 3: 8192
+ 5: 8192
19,3:
1: 226
- 3: 32768
+ 5: 32768
20,0:
1: 61715
20,1:
@@ -9221,9 +9243,9 @@ entities:
3,-14:
0: 4415
1: 192
- 3: 49152
+ 5: 49152
3,-17:
- 5: 30576
+ 10: 30576
4,-16:
1: 240
0: 61440
@@ -9232,7 +9254,7 @@ entities:
4,-14:
0: 52463
1: 16
- 3: 4096
+ 5: 4096
8,-13:
0: 56605
9,-12:
@@ -9648,7 +9670,7 @@ entities:
0: 15
16,-20:
1: 16
- 3: 52454
+ 5: 52454
15,-20:
1: 44719
16,-19:
@@ -9663,60 +9685,60 @@ entities:
0: 234
1: 20480
16,-21:
- 3: 16384
+ 5: 16384
1: 15
17,-20:
1: 144
- 3: 14178
+ 5: 14178
17,-19:
- 3: 1
+ 5: 1
1: 63744
17,-18:
1: 153
0: 61440
17,-21:
1: 8207
- 3: 16384
+ 5: 16384
18,-20:
1: 9910
- 3: 2056
+ 5: 2056
18,-19:
1: 13990
- 3: 2056
+ 5: 2056
18,-18:
0: 4096
1: 17486
18,-21:
1: 9895
- 3: 2056
+ 5: 2056
19,-20:
- 3: 3855
+ 5: 3855
1: 8432
19,-19:
- 3: 3855
+ 5: 3855
1: 20720
19,-18:
1: 17487
19,-21:
1: 8432
- 3: 3855
+ 5: 3855
20,-20:
1: 8946
- 3: 2056
+ 5: 2056
20,-19:
1: 8946
- 3: 2056
+ 5: 2056
20,-18:
1: 1839
0: 8192
20,-21:
1: 8946
- 3: 2056
+ 5: 2056
21,-20:
- 3: 3855
+ 5: 3855
1: 8432
21,-19:
- 3: 3855
+ 5: 3855
1: 20720
21,-18:
1: 21855
@@ -9724,7 +9746,7 @@ entities:
1: 5621
21,-21:
1: 8432
- 3: 3855
+ 5: 3855
22,-20:
1: 8995
22,-19:
@@ -9753,7 +9775,7 @@ entities:
13,-18:
1: 17476
14,-20:
- 3: 16
+ 5: 16
14,-19:
1: 241
15,-21:
@@ -9790,7 +9812,7 @@ entities:
0: 65535
4,-21:
0: 65348
- 3: 1
+ 5: 1
3,-20:
0: 65535
4,-19:
@@ -9804,7 +9826,7 @@ entities:
0: 255
1: 49152
4,-17:
- 6: 30576
+ 11: 30576
5,-20:
0: 65535
5,-19:
@@ -9816,7 +9838,7 @@ entities:
0: 30576
5,-21:
0: 65280
- 3: 15
+ 5: 15
6,-20:
0: 30583
6,-19:
@@ -9848,15 +9870,15 @@ entities:
0: 30583
6,-15:
1: 4592
- 3: 49152
+ 5: 49152
6,-14:
1: 4369
- 3: 49356
+ 5: 49356
7,-15:
1: 17520
- 3: 4096
+ 5: 4096
7,-14:
- 3: 4113
+ 5: 4113
1: 17476
-4,-20:
0: 61440
@@ -9872,28 +9894,28 @@ entities:
0: 57297
-3,-20:
0: 28672
- 3: 76
+ 5: 76
-3,-19:
0: 30711
-3,-18:
0: 65520
-3,-21:
- 3: 52428
+ 5: 52428
1: 4353
-2,-20:
- 3: 15
+ 5: 15
0: 3840
-2,-19:
0: 65535
-2,-18:
0: 65535
-2,-21:
- 3: 61696
+ 5: 61696
1: 248
-1,-18:
0: 65534
-1,-21:
- 3: 61440
+ 5: 61440
1: 2296
-1,-20:
0: 61152
@@ -9901,7 +9923,7 @@ entities:
0: 36590
0,-20:
0: 15152
- 3: 8
+ 5: 8
0,-19:
0: 35771
0,-18:
@@ -9938,26 +9960,26 @@ entities:
1: 34824
-12,-16:
1: 20292
- 3: 10
+ 5: 10
-13,-16:
1: 20292
- 3: 10
+ 5: 10
-12,-15:
1: 17732
- 3: 43690
+ 5: 43690
-13,-15:
- 3: 43690
+ 5: 43690
1: 17732
-12,-14:
1: 49060
- 3: 10
+ 5: 10
-13,-14:
1: 65444
- 3: 10
+ 5: 10
-12,-13:
1: 62
-12,-17:
- 3: 43690
+ 5: 43690
1: 17732
-11,-16:
1: 8994
@@ -9982,7 +10004,7 @@ entities:
-13,-18:
1: 44800
-13,-17:
- 3: 43690
+ 5: 43690
1: 17732
-11,-18:
1: 8960
@@ -9991,10 +10013,10 @@ entities:
-9,-18:
1: 1811
0,-21:
- 3: 61440
+ 5: 61440
1: 248
1,-20:
- 3: 7
+ 5: 7
0: 1792
1,-19:
0: 65535
@@ -10003,7 +10025,7 @@ entities:
1,-17:
0: 4095
1,-21:
- 3: 64648
+ 5: 64648
1: 112
2,-20:
0: 43962
@@ -10012,17 +10034,17 @@ entities:
2,-18:
0: 46011
2,-21:
- 3: 13107
+ 5: 13107
0: 34816
1: 8
3,-21:
0: 65280
- 3: 14
+ 5: 14
0,-24:
- 3: 64512
+ 5: 64512
1: 136
-1,-24:
- 3: 61696
+ 5: 61696
1: 136
0,-23:
1: 35064
@@ -10031,32 +10053,32 @@ entities:
0,-22:
1: 35064
-1,-22:
- 3: 128
+ 5: 128
1: 34936
0,-25:
1: 36744
1,-24:
- 3: 62208
+ 5: 62208
1: 136
1,-23:
1: 112
- 3: 34956
+ 5: 34956
1,-22:
1: 112
- 3: 34952
+ 5: 34952
1,-25:
1: 36736
2,-23:
- 3: 13073
+ 5: 13073
1: 52224
2,-22:
- 3: 4369
+ 5: 4369
1: 36044
3,-23:
1: 61440
3,-22:
1: 15
- 3: 60928
+ 5: 60928
3,-24:
1: 35939
3,-25:
@@ -10067,7 +10089,7 @@ entities:
1: 64739
4,-22:
1: 15
- 3: 4352
+ 5: 4352
0: 58368
-4,-24:
1: 310
@@ -10084,25 +10106,25 @@ entities:
0: 4
-4,-21:
1: 65295
- 3: 112
+ 5: 112
-4,-25:
1: 51200
-3,-23:
1: 4352
- 3: 52462
+ 5: 52462
-3,-22:
1: 4112
- 3: 61132
+ 5: 61132
-3,-24:
- 3: 32768
+ 5: 32768
1: 136
-3,-25:
1: 36342
-2,-24:
- 3: 63232
+ 5: 63232
1: 136
-2,-23:
- 3: 1
+ 5: 1
1: 35064
-2,-22:
1: 35064
@@ -10114,7 +10136,7 @@ entities:
1: 61459
5,-22:
1: 15
- 3: 65280
+ 5: 65280
5,-24:
1: 62432
6,-24:
@@ -10151,24 +10173,24 @@ entities:
0: 2184
-15,-16:
1: 23391
- 3: 1024
+ 5: 1024
-15,-15:
1: 34959
-15,-17:
1: 34952
-14,-16:
1: 20292
- 3: 10
+ 5: 10
-14,-15:
1: 21588
- 3: 43690
+ 5: 43690
-15,-14:
1: 2184
-14,-14:
1: 36772
- 3: 10
+ 5: 10
-14,-17:
- 3: 43690
+ 5: 43690
1: 21588
-15,-18:
1: 34816
@@ -10179,23 +10201,23 @@ entities:
-15,10:
1: 12
-14,9:
- 3: 3855
+ 5: 3855
1: 41200
-14,10:
1: 15
-13,9:
- 3: 257
+ 5: 257
1: 17652
-13,10:
1: 62901
- 3: 64
+ 5: 64
-12,9:
1: 41200
- 3: 3855
+ 5: 3855
-12,10:
1: 4383
-11,9:
- 3: 257
+ 5: 257
1: 18006
-11,10:
1: 7
@@ -10213,7 +10235,8 @@ entities:
-3,14:
1: 3855
-2,13:
- 0: 15
+ 4: 1
+ 0: 14
1: 11776
-2,14:
1: 1831
@@ -10221,24 +10244,24 @@ entities:
1: 34952
10,9:
1: 16865
- 3: 3598
+ 5: 3598
9,10:
1: 8
10,10:
1: 15
11,9:
- 3: 771
+ 5: 771
1: 39160
11,10:
1: 60011
- 3: 128
+ 5: 128
12,9:
1: 16624
- 3: 3598
+ 5: 3598
12,10:
1: 12862
13,9:
- 3: 771
+ 5: 771
1: 40124
13,10:
1: 15
@@ -10256,7 +10279,7 @@ entities:
1: 32768
20,-22:
1: 10970
- 3: 32
+ 5: 32
19,-22:
1: 24456
21,-22:
@@ -10311,13 +10334,58 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
+ - 24.680622
+ - 92.84615
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
- 0
- 0
- 0
- - 6666.982
- 0
- 0
- 0
@@ -10332,6 +10400,21 @@ entities:
- 0
- 0
- 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
- 0
- 0
- 0
@@ -10342,10 +10425,25 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ temperature: 293.14923
moles:
- - 21.824879
- - 82.10312
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 19.950384
+ - 75.051445
- 0
- 0
- 0
@@ -10395,8 +10493,8 @@ entities:
id: docking46345
localAnchorB: -0.5,-1
localAnchorA: -66.5,22
- damping: 42.40074
- stiffness: 380.58823
+ damping: 42.400753
+ stiffness: 380.5883
- type: OccluderTree
- type: Shuttle
- type: RadiationGridResistance
@@ -11705,7 +11803,6 @@ entities:
- 7393
- 7390
- 7146
- - 9262
- 11605
- 11600
- 23935
@@ -11715,6 +11812,7 @@ entities:
- 25420
- 25422
- 25421
+ - 9291
- uid: 23899
components:
- type: MetaData
@@ -11734,7 +11832,6 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 9262
- 11605
- 11600
- 11377
@@ -12414,6 +12511,18 @@ entities:
- type: Transform
pos: 5.5,31.5
parent: 8364
+ - uid: 28244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,34.5
+ parent: 8364
+ - uid: 28245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,34.5
+ parent: 8364
- proto: AirlockAtmosphericsGlassLocked
entities:
- uid: 18739
@@ -12487,6 +12596,16 @@ entities:
parent: 8364
- proto: AirlockBrigGlassLocked
entities:
+ - uid: 389
+ components:
+ - type: Transform
+ pos: -8.5,28.5
+ parent: 8364
+ - uid: 3813
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 8364
- uid: 8544
components:
- type: Transform
@@ -12674,6 +12793,15 @@ entities:
- type: Transform
pos: 38.5,-39.5
parent: 8364
+- proto: AirlockCommandGlass
+ entities:
+ - uid: 4214
+ components:
+ - type: MetaData
+ name: EVA
+ - type: Transform
+ pos: -11.5,5.5
+ parent: 8364
- proto: AirlockCommandGlassLocked
entities:
- uid: 5514
@@ -13706,7 +13834,7 @@ entities:
pos: 24.5,16.5
parent: 8364
- type: Door
- secondsUntilStateChange: -74012.63
+ secondsUntilStateChange: -93654.52
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14096,15 +14224,6 @@ entities:
DockStatus: True
- type: Physics
canCollide: False
-- proto: AirlockHeadOfPersonnelGlassLocked
- entities:
- - uid: 12024
- components:
- - type: MetaData
- name: EVA Gear
- - type: Transform
- pos: -11.5,5.5
- parent: 8364
- proto: AirlockHeadOfPersonnelLocked
entities:
- uid: 5647
@@ -14833,11 +14952,6 @@ entities:
- type: Transform
pos: 42.5,-45.5
parent: 8364
- - uid: 12033
- components:
- - type: Transform
- pos: -13.5,4.5
- parent: 8364
- uid: 15102
components:
- type: Transform
@@ -15029,11 +15143,6 @@ entities:
- type: Transform
pos: 56.5,-19.5
parent: 8364
- - uid: 11980
- components:
- - type: Transform
- pos: -13.5,1.5
- parent: 8364
- uid: 20191
components:
- type: MetaData
@@ -15178,18 +15287,6 @@ entities:
- type: Transform
pos: 8.5,34.5
parent: 8364
- - uid: 8589
- components:
- - type: Transform
- pos: -8.5,28.5
- parent: 8364
- - uid: 8642
- components:
- - type: MetaData
- name: Evidence Storage
- - type: Transform
- pos: -13.5,25.5
- parent: 8364
- uid: 8643
components:
- type: MetaData
@@ -15218,11 +15315,6 @@ entities:
- type: Transform
pos: -4.5,34.5
parent: 8364
- - uid: 9380
- components:
- - type: Transform
- pos: -7.5,28.5
- parent: 8364
- uid: 9382
components:
- type: Transform
@@ -15278,6 +15370,20 @@ entities:
- type: Transform
pos: -23.5,-30.5
parent: 8364
+ - uid: 26257
+ components:
+ - type: MetaData
+ name: Holding Cell
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,25.5
+ parent: 8364
+ - type: Door
+ secondsUntilStateChange: -6911.021
+ state: Opening
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: True
- proto: AirlockSecurityLocked
entities:
- uid: 971
@@ -15965,6 +16071,9 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 7797
- uid: 23944
components:
- type: Transform
@@ -16542,6 +16651,8 @@ entities:
parent: 8364
- uid: 8620
components:
+ - type: MetaData
+ name: Interrigation APC
- type: Transform
rot: 1.5707963267948966 rad
pos: -16.5,30.5
@@ -16554,16 +16665,12 @@ entities:
parent: 8364
- uid: 8622
components:
+ - type: MetaData
+ name: HOS Office APC
- type: Transform
rot: 1.5707963267948966 rad
pos: 11.5,39.5
parent: 8364
- - uid: 8623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,38.5
- parent: 8364
- uid: 8634
components:
- type: Transform
@@ -16584,15 +16691,6 @@ entities:
currentReceiving: 120.00047
currentSupply: 120
supplyRampPosition: -0.00047302246
- - uid: 8822
- components:
- - type: MetaData
- name: Brig Control APC
- - type: Transform
- pos: -1.5,34.5
- parent: 8364
- - type: Battery
- startingCharge: 12000
- uid: 8944
components:
- type: Transform
@@ -16688,6 +16786,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-18.5
parent: 8364
+ - uid: 11965
+ components:
+ - type: MetaData
+ name: Warden's Office APC
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
- uid: 12020
components:
- type: MetaData
@@ -16818,6 +16923,14 @@ entities:
- type: PowerNetworkBattery
loadingNetworkDemand: 25
supplyRampPosition: 9.488577
+ - uid: 15128
+ components:
+ - type: MetaData
+ name: Security Lockers APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,36.5
+ parent: 8364
- uid: 15812
components:
- type: MetaData
@@ -18038,11 +18151,6 @@ entities:
- type: Transform
pos: 44.5,36.5
parent: 8364
- - uid: 4481
- components:
- - type: Transform
- pos: -0.5,41.5
- parent: 8364
- uid: 4482
components:
- type: Transform
@@ -18188,21 +18296,11 @@ entities:
- type: Transform
pos: 41.5,36.5
parent: 8364
- - uid: 4645
- components:
- - type: Transform
- pos: 1.5,41.5
- parent: 8364
- uid: 4648
components:
- type: Transform
pos: -47.5,34.5
parent: 8364
- - uid: 4650
- components:
- - type: Transform
- pos: -1.5,41.5
- parent: 8364
- uid: 4652
components:
- type: Transform
@@ -18338,11 +18436,6 @@ entities:
- type: Transform
pos: -43.5,34.5
parent: 8364
- - uid: 6419
- components:
- - type: Transform
- pos: 5.5,45.5
- parent: 8364
- uid: 6596
components:
- type: Transform
@@ -18573,21 +18666,6 @@ entities:
- type: Transform
pos: -48.5,-55.5
parent: 8364
- - uid: 22451
- components:
- - type: Transform
- pos: 3.5,41.5
- parent: 8364
- - uid: 22452
- components:
- - type: Transform
- pos: 5.5,43.5
- parent: 8364
- - uid: 22453
- components:
- - type: Transform
- pos: 5.5,44.5
- parent: 8364
- uid: 22454
components:
- type: Transform
@@ -18708,11 +18786,6 @@ entities:
- type: Transform
pos: -46.5,-56.5
parent: 8364
- - uid: 23135
- components:
- - type: Transform
- pos: 0.5,41.5
- parent: 8364
- uid: 23139
components:
- type: Transform
@@ -18753,11 +18826,6 @@ entities:
- type: Transform
pos: 84.5,-75.5
parent: 8364
- - uid: 23537
- components:
- - type: Transform
- pos: 2.5,41.5
- parent: 8364
- uid: 23538
components:
- type: Transform
@@ -20387,26 +20455,6 @@ entities:
- type: Transform
pos: 44.5,-58.5
parent: 8364
- - uid: 8630
- components:
- - type: Transform
- pos: -10.5,23.5
- parent: 8364
- - uid: 8631
- components:
- - type: Transform
- pos: -6.5,23.5
- parent: 8364
- - uid: 8632
- components:
- - type: Transform
- pos: -2.5,23.5
- parent: 8364
- - uid: 9361
- components:
- - type: Transform
- pos: -6.5,31.5
- parent: 8364
- uid: 10570
components:
- type: Transform
@@ -20442,15 +20490,15 @@ entities:
- type: Transform
pos: 71.5,-35.5
parent: 8364
- - uid: 21244
+ - uid: 21743
components:
- type: Transform
- pos: 15.5,41.5
+ pos: -30.5,-74.5
parent: 8364
- - uid: 21743
+ - uid: 21784
components:
- type: Transform
- pos: -30.5,-74.5
+ pos: 16.5,41.5
parent: 8364
- uid: 26349
components:
@@ -20472,6 +20520,21 @@ entities:
- type: Transform
pos: -20.5,48.5
parent: 8364
+ - uid: 26546
+ components:
+ - type: Transform
+ pos: -0.5,23.5
+ parent: 8364
+ - uid: 26603
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 8364
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: -8.5,23.5
+ parent: 8364
- proto: BedsheetCaptain
entities:
- uid: 5315
@@ -20520,10 +20583,10 @@ entities:
parent: 8364
- proto: BedsheetHOS
entities:
- - uid: 21245
+ - uid: 9287
components:
- type: Transform
- pos: 15.5,41.5
+ pos: 16.5,41.5
parent: 8364
- proto: BedsheetMedical
entities:
@@ -20537,6 +20600,11 @@ entities:
- type: Transform
pos: 30.5,-27.5
parent: 8364
+ - uid: 9245
+ components:
+ - type: Transform
+ pos: -6.5,32.5
+ parent: 8364
- uid: 9485
components:
- type: Transform
@@ -20572,6 +20640,12 @@ entities:
parent: 8364
- proto: BedsheetOrange
entities:
+ - uid: 7716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,23.5
+ parent: 8364
- uid: 26353
components:
- type: Transform
@@ -20587,6 +20661,18 @@ entities:
- type: Transform
pos: -21.5,40.5
parent: 8364
+ - uid: 28249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,23.5
+ parent: 8364
+ - uid: 28252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,23.5
+ parent: 8364
- proto: BedsheetQM
entities:
- uid: 5287
@@ -20655,23 +20741,6 @@ entities:
- type: Transform
pos: -17.5,48.5
parent: 8364
-- proto: BedsheetWhite
- entities:
- - uid: 8627
- components:
- - type: Transform
- pos: -10.5,23.5
- parent: 8364
- - uid: 8628
- components:
- - type: Transform
- pos: -6.5,23.5
- parent: 8364
- - uid: 8629
- components:
- - type: Transform
- pos: -2.5,23.5
- parent: 8364
- proto: BigBox
entities:
- uid: 2277
@@ -20779,7 +20848,7 @@ entities:
- type: Transform
pos: 5.5,-76.5
parent: 8364
- - uid: 9182
+ - uid: 6419
components:
- type: Transform
pos: 5.5,36.5
@@ -21222,12 +21291,12 @@ entities:
- uid: 18896
components:
- type: Transform
- pos: 22.5,-18.5
+ pos: 22.769361,-18.291506
parent: 8364
- uid: 18897
components:
- type: Transform
- pos: 22.5,-18.5
+ pos: 22.60287,-18.097406
parent: 8364
- uid: 19264
components:
@@ -21253,20 +21322,6 @@ entities:
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 12
- - uid: 9381
- components:
- - type: Transform
- pos: -0.63110375,35.29573
- parent: 8364
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- - uid: 9384
- components:
- - type: Transform
- pos: -0.28735375,35.29573
- parent: 8364
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxBodyBag
entities:
- uid: 2276
@@ -21309,15 +21364,10 @@ entities:
parent: 8364
- proto: BoxFlashbang
entities:
- - uid: 9345
- components:
- - type: Transform
- pos: 0.32543182,35.35921
- parent: 8364
- uid: 9388
components:
- type: Transform
- pos: -2.3561149,38.959312
+ pos: -2.28955,39.38977
parent: 8364
- uid: 9589
components:
@@ -21380,6 +21430,11 @@ entities:
- type: Transform
pos: -20.684553,-13.423042
parent: 8364
+ - uid: 8459
+ components:
+ - type: Transform
+ pos: 3.5576177,24.479216
+ parent: 8364
- proto: BoxFolderGrey
entities:
- uid: 1825
@@ -21402,28 +21457,45 @@ entities:
- uid: 8803
components:
- type: Transform
- pos: -11.5,32.5
- parent: 8364
- - uid: 9172
- components:
- - type: Transform
- pos: -14.5,22.5
- parent: 8364
- - uid: 9173
- components:
- - type: Transform
- pos: -14.5,22.5
- parent: 8364
- - uid: 9174
- components:
- - type: Transform
- pos: -14.5,22.5
+ pos: -11.686346,32.74469
parent: 8364
- - uid: 9230
+ - uid: 9384
components:
- type: Transform
- pos: -1.4970741,30.587648
- parent: 8364
+ pos: -1.2688226,30.437838
+ parent: 8364
+ - type: Storage
+ storedItems:
+ 9390:
+ position: 0,0
+ _rotation: South
+ 9453:
+ position: 1,0
+ _rotation: South
+ 9454:
+ position: 2,0
+ _rotation: South
+ 9507:
+ position: 3,0
+ _rotation: South
+ 9515:
+ position: 4,0
+ _rotation: South
+ 9516:
+ position: 0,1
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 9390
+ - 9453
+ - 9454
+ - 9507
+ - 9515
+ - 9516
- uid: 9404
components:
- type: Transform
@@ -21531,15 +21603,10 @@ entities:
- type: Transform
pos: 15.418736,30.571737
parent: 8364
- - uid: 9346
- components:
- - type: Transform
- pos: 0.7629318,35.499836
- parent: 8364
- uid: 9389
components:
- type: Transform
- pos: -2.7208788,39.167786
+ pos: -2.648925,39.67102
parent: 8364
- proto: BoxingBell
entities:
@@ -21563,13 +21630,26 @@ entities:
parent: 8364
- proto: BoxLethalshot
entities:
- - uid: 8929
+ - uid: 4645
components:
- type: Transform
- pos: -0.3215518,35.63938
+ pos: -1.2980705,35.389374
+ parent: 8364
+ - uid: 8641
+ components:
+ - type: Transform
+ pos: -1.6730705,35.712288
+ parent: 8364
+ - uid: 9229
+ components:
+ - type: Transform
+ pos: -1.7147372,35.399788
+ parent: 8364
+ - uid: 9233
+ components:
+ - type: Transform
+ pos: -1.2668205,35.701874
parent: 8364
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxLightbulb
entities:
- uid: 1999
@@ -21634,15 +21714,6 @@ entities:
- type: Transform
pos: -11.614725,-21.270159
parent: 8364
-- proto: BoxShotgunIncendiary
- entities:
- - uid: 9178
- components:
- - type: Transform
- pos: -0.6496768,35.60813
- parent: 8364
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxSterileMask
entities:
- uid: 5467
@@ -21660,7 +21731,7 @@ entities:
- uid: 7928
components:
- type: Transform
- pos: -6.5023327,30.526033
+ pos: -6.6457787,30.567604
parent: 8364
- uid: 19263
components:
@@ -21735,6 +21806,7 @@ entities:
linkedPorts:
8624:
- Start: Close
+ - Timer: AutoClose
- Timer: Open
- uid: 25829
components:
@@ -21745,6 +21817,7 @@ entities:
linkedPorts:
8625:
- Start: Close
+ - Timer: AutoClose
- Timer: Open
- uid: 26575
components:
@@ -21755,6 +21828,7 @@ entities:
linkedPorts:
8626:
- Start: Close
+ - Timer: AutoClose
- Timer: Open
- proto: Bucket
entities:
@@ -21836,6 +21910,26 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-82.5
parent: 8364
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 7677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,23.5
+ parent: 8364
+ - uid: 7779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4761214,38.22741
+ parent: 8364
+ - uid: 25742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.469177,38.803795
+ parent: 8364
- proto: ButtonFrameExit
entities:
- uid: 3810
@@ -21843,6 +21937,24 @@ entities:
- type: Transform
pos: 24.5,-21.5
parent: 8364
+- proto: ButtonFrameGrey
+ entities:
+ - uid: 7721
+ components:
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 8364
+ - uid: 8989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,40.5
+ parent: 8364
+ - uid: 22452
+ components:
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 8364
- proto: CableApcExtension
entities:
- uid: 49
@@ -24345,6 +24457,16 @@ entities:
- type: Transform
pos: 18.5,13.5
parent: 8364
+ - uid: 7661
+ components:
+ - type: Transform
+ pos: 10.5,36.5
+ parent: 8364
+ - uid: 7733
+ components:
+ - type: Transform
+ pos: 2.5,37.5
+ parent: 8364
- uid: 7743
components:
- type: Transform
@@ -24395,6 +24517,31 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 8364
+ - uid: 8446
+ components:
+ - type: Transform
+ pos: 26.5,-20.5
+ parent: 8364
+ - uid: 8447
+ components:
+ - type: Transform
+ pos: 26.5,-15.5
+ parent: 8364
+ - uid: 8448
+ components:
+ - type: Transform
+ pos: 26.5,-16.5
+ parent: 8364
+ - uid: 8449
+ components:
+ - type: Transform
+ pos: 26.5,-17.5
+ parent: 8364
+ - uid: 8450
+ components:
+ - type: Transform
+ pos: 26.5,-19.5
+ parent: 8364
- uid: 8481
components:
- type: Transform
@@ -24405,6 +24552,16 @@ entities:
- type: Transform
pos: 15.5,28.5
parent: 8364
+ - uid: 8546
+ components:
+ - type: Transform
+ pos: 4.5,37.5
+ parent: 8364
+ - uid: 8547
+ components:
+ - type: Transform
+ pos: 3.5,33.5
+ parent: 8364
- uid: 8557
components:
- type: Transform
@@ -24465,6 +24622,26 @@ entities:
- type: Transform
pos: 17.5,20.5
parent: 8364
+ - uid: 8589
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 8364
+ - uid: 8590
+ components:
+ - type: Transform
+ pos: -0.5,37.5
+ parent: 8364
+ - uid: 8623
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 8364
+ - uid: 8630
+ components:
+ - type: Transform
+ pos: -15.5,52.5
+ parent: 8364
- uid: 8636
components:
- type: Transform
@@ -24815,6 +24992,11 @@ entities:
- type: Transform
pos: -8.5,22.5
parent: 8364
+ - uid: 8751
+ components:
+ - type: Transform
+ pos: 1.5,37.5
+ parent: 8364
- uid: 8762
components:
- type: Transform
@@ -25140,50 +25322,15 @@ entities:
- type: Transform
pos: -20.5,23.5
parent: 8364
- - uid: 9283
- components:
- - type: Transform
- pos: 4.5,38.5
- parent: 8364
- - uid: 9284
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 8364
- - uid: 9285
- components:
- - type: Transform
- pos: 6.5,38.5
- parent: 8364
- - uid: 9286
- components:
- - type: Transform
- pos: 3.5,38.5
- parent: 8364
- - uid: 9287
+ - uid: 9268
components:
- type: Transform
- pos: 2.5,38.5
+ pos: 3.5,34.5
parent: 8364
- uid: 9288
components:
- type: Transform
- pos: 1.5,38.5
- parent: 8364
- - uid: 9289
- components:
- - type: Transform
- pos: 0.5,38.5
- parent: 8364
- - uid: 9290
- components:
- - type: Transform
- pos: -0.5,38.5
- parent: 8364
- - uid: 9291
- components:
- - type: Transform
- pos: -1.5,38.5
+ pos: -3.5,33.5
parent: 8364
- uid: 9292
components:
@@ -25200,11 +25347,6 @@ entities:
- type: Transform
pos: 0.5,37.5
parent: 8364
- - uid: 9295
- components:
- - type: Transform
- pos: 7.5,38.5
- parent: 8364
- uid: 9296
components:
- type: Transform
@@ -25355,16 +25497,6 @@ entities:
- type: Transform
pos: 19.5,35.5
parent: 8364
- - uid: 9334
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 8364
- - uid: 9335
- components:
- - type: Transform
- pos: -1.5,33.5
- parent: 8364
- uid: 9336
components:
- type: Transform
@@ -26170,51 +26302,6 @@ entities:
- type: Transform
pos: 8.5,41.5
parent: 8364
- - uid: 10056
- components:
- - type: Transform
- pos: 7.5,41.5
- parent: 8364
- - uid: 10057
- components:
- - type: Transform
- pos: 7.5,42.5
- parent: 8364
- - uid: 10058
- components:
- - type: Transform
- pos: 9.5,41.5
- parent: 8364
- - uid: 10059
- components:
- - type: Transform
- pos: 9.5,42.5
- parent: 8364
- - uid: 10060
- components:
- - type: Transform
- pos: 3.5,36.5
- parent: 8364
- - uid: 10061
- components:
- - type: Transform
- pos: 3.5,35.5
- parent: 8364
- - uid: 10062
- components:
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- - uid: 10063
- components:
- - type: Transform
- pos: 0.5,36.5
- parent: 8364
- - uid: 10064
- components:
- - type: Transform
- pos: 0.5,35.5
- parent: 8364
- uid: 10065
components:
- type: Transform
@@ -26315,16 +26402,6 @@ entities:
- type: Transform
pos: 3.5,22.5
parent: 8364
- - uid: 10086
- components:
- - type: Transform
- pos: 8.5,25.5
- parent: 8364
- - uid: 10087
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 8364
- uid: 10088
components:
- type: Transform
@@ -35650,6 +35727,11 @@ entities:
- type: Transform
pos: -21.5,-55.5
parent: 8364
+ - uid: 15960
+ components:
+ - type: Transform
+ pos: 34.5,-19.5
+ parent: 8364
- uid: 15984
components:
- type: Transform
@@ -37163,7 +37245,7 @@ entities:
- uid: 17287
components:
- type: Transform
- pos: -9.5,-69.5
+ pos: 34.5,-20.5
parent: 8364
- uid: 17288
components:
@@ -37820,11 +37902,6 @@ entities:
- type: Transform
pos: 39.5,-23.5
parent: 8364
- - uid: 17950
- components:
- - type: Transform
- pos: 39.5,-22.5
- parent: 8364
- uid: 17953
components:
- type: Transform
@@ -38965,31 +39042,6 @@ entities:
- type: Transform
pos: 26.5,-18.5
parent: 8364
- - uid: 18366
- components:
- - type: Transform
- pos: 25.5,-18.5
- parent: 8364
- - uid: 18367
- components:
- - type: Transform
- pos: 26.5,-17.5
- parent: 8364
- - uid: 18368
- components:
- - type: Transform
- pos: 26.5,-16.5
- parent: 8364
- - uid: 18369
- components:
- - type: Transform
- pos: 26.5,-15.5
- parent: 8364
- - uid: 18370
- components:
- - type: Transform
- pos: 25.5,-16.5
- parent: 8364
- uid: 18415
components:
- type: Transform
@@ -42950,26 +43002,6 @@ entities:
- type: Transform
pos: -11.5,49.5
parent: 8364
- - uid: 25742
- components:
- - type: Transform
- pos: -11.5,50.5
- parent: 8364
- - uid: 25743
- components:
- - type: Transform
- pos: -11.5,51.5
- parent: 8364
- - uid: 25744
- components:
- - type: Transform
- pos: -11.5,52.5
- parent: 8364
- - uid: 25747
- components:
- - type: Transform
- pos: -11.5,53.5
- parent: 8364
- uid: 25995
components:
- type: Transform
@@ -42990,11 +43022,6 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
- - uid: 26136
- components:
- - type: Transform
- pos: -15.5,51.5
- parent: 8364
- uid: 26137
components:
- type: Transform
@@ -51216,6 +51243,11 @@ entities:
- type: Transform
pos: -7.5,-61.5
parent: 8364
+ - uid: 3898
+ components:
+ - type: Transform
+ pos: 0.5,40.5
+ parent: 8364
- uid: 4030
components:
- type: Transform
@@ -51296,6 +51328,11 @@ entities:
- type: Transform
pos: -22.5,-72.5
parent: 8364
+ - uid: 5288
+ components:
+ - type: Transform
+ pos: 1.5,41.5
+ parent: 8364
- uid: 5313
components:
- type: Transform
@@ -52331,6 +52368,11 @@ entities:
- type: Transform
pos: 26.5,1.5
parent: 8364
+ - uid: 7340
+ components:
+ - type: Transform
+ pos: 10.5,36.5
+ parent: 8364
- uid: 7380
components:
- type: Transform
@@ -52356,6 +52398,11 @@ entities:
- type: Transform
pos: 17.5,30.5
parent: 8364
+ - uid: 7735
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 8364
- uid: 7786
components:
- type: Transform
@@ -52401,6 +52448,11 @@ entities:
- type: Transform
pos: 11.5,27.5
parent: 8364
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: -15.5,51.5
+ parent: 8364
- uid: 8485
components:
- type: Transform
@@ -52471,6 +52523,61 @@ entities:
- type: Transform
pos: 12.5,27.5
parent: 8364
+ - uid: 8553
+ components:
+ - type: Transform
+ pos: -15.5,52.5
+ parent: 8364
+ - uid: 8554
+ components:
+ - type: Transform
+ pos: -15.5,53.5
+ parent: 8364
+ - uid: 8555
+ components:
+ - type: Transform
+ pos: -15.5,54.5
+ parent: 8364
+ - uid: 8569
+ components:
+ - type: Transform
+ pos: -11.5,50.5
+ parent: 8364
+ - uid: 8592
+ components:
+ - type: Transform
+ pos: 3.5,34.5
+ parent: 8364
+ - uid: 8597
+ components:
+ - type: Transform
+ pos: -14.5,54.5
+ parent: 8364
+ - uid: 8606
+ components:
+ - type: Transform
+ pos: -12.5,54.5
+ parent: 8364
+ - uid: 8607
+ components:
+ - type: Transform
+ pos: -11.5,53.5
+ parent: 8364
+ - uid: 8610
+ components:
+ - type: Transform
+ pos: -11.5,54.5
+ parent: 8364
+ - uid: 8615
+ components:
+ - type: Transform
+ pos: -11.5,51.5
+ parent: 8364
+ - uid: 8632
+ components:
+ - type: Transform
+ pos: 9.5,42.5
+ parent: 8364
- uid: 8640
components:
- type: Transform
@@ -52551,20 +52658,25 @@ entities:
- type: Transform
pos: -4.5,28.5
parent: 8364
- - uid: 8823
+ - uid: 8750
components:
- type: Transform
- pos: 7.5,38.5
+ pos: 9.5,41.5
parent: 8364
- - uid: 8824
+ - uid: 8822
components:
- type: Transform
- pos: 6.5,38.5
+ pos: 1.5,36.5
parent: 8364
- - uid: 8825
+ - uid: 8823
components:
- type: Transform
- pos: 5.5,38.5
+ pos: 1.5,38.5
+ parent: 8364
+ - uid: 8824
+ components:
+ - type: Transform
+ pos: 1.5,39.5
parent: 8364
- uid: 8826
components:
@@ -52721,11 +52833,6 @@ entities:
- type: Transform
pos: -4.5,34.5
parent: 8364
- - uid: 8858
- components:
- - type: Transform
- pos: -5.5,34.5
- parent: 8364
- uid: 8859
components:
- type: Transform
@@ -52826,6 +52933,21 @@ entities:
- type: Transform
pos: -19.5,22.5
parent: 8364
+ - uid: 8929
+ components:
+ - type: Transform
+ pos: 0.5,34.5
+ parent: 8364
+ - uid: 9004
+ components:
+ - type: Transform
+ pos: -0.5,34.5
+ parent: 8364
+ - uid: 9046
+ components:
+ - type: Transform
+ pos: -16.5,39.5
+ parent: 8364
- uid: 9143
components:
- type: Transform
@@ -52866,30 +52988,15 @@ entities:
- type: Transform
pos: -19.5,23.5
parent: 8364
- - uid: 9207
- components:
- - type: Transform
- pos: 4.5,42.5
- parent: 8364
- - uid: 9208
- components:
- - type: Transform
- pos: 5.5,42.5
- parent: 8364
- - uid: 9209
- components:
- - type: Transform
- pos: 6.5,42.5
- parent: 8364
- uid: 9218
components:
- type: Transform
pos: 7.5,42.5
parent: 8364
- - uid: 9248
+ - uid: 9224
components:
- type: Transform
- pos: 3.5,42.5
+ pos: 1.5,37.5
parent: 8364
- uid: 9249
components:
@@ -52911,25 +53018,20 @@ entities:
- type: Transform
pos: 1.5,33.5
parent: 8364
- - uid: 9267
- components:
- - type: Transform
- pos: 0.5,33.5
- parent: 8364
- - uid: 9268
+ - uid: 9289
components:
- type: Transform
- pos: -0.5,33.5
+ pos: 3.5,33.5
parent: 8364
- - uid: 9269
+ - uid: 9346
components:
- type: Transform
- pos: -1.5,33.5
+ pos: 2.5,40.5
parent: 8364
- - uid: 9270
+ - uid: 9381
components:
- type: Transform
- pos: -1.5,34.5
+ pos: -0.5,40.5
parent: 8364
- uid: 9615
components:
@@ -53141,6 +53243,21 @@ entities:
- type: Transform
pos: 17.5,32.5
parent: 8364
+ - uid: 10061
+ components:
+ - type: Transform
+ pos: 1.5,34.5
+ parent: 8364
+ - uid: 10063
+ components:
+ - type: Transform
+ pos: -11.5,52.5
+ parent: 8364
+ - uid: 10064
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 8364
- uid: 10193
components:
- type: Transform
@@ -58096,11 +58213,6 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 8364
- - uid: 19886
- components:
- - type: Transform
- pos: -1.5,42.5
- parent: 8364
- uid: 19887
components:
- type: Transform
@@ -58116,11 +58228,6 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 8364
- - uid: 19890
- components:
- - type: Transform
- pos: -2.5,42.5
- parent: 8364
- uid: 19925
components:
- type: Transform
@@ -58136,11 +58243,6 @@ entities:
- type: Transform
pos: 8.5,41.5
parent: 8364
- - uid: 19928
- components:
- - type: Transform
- pos: 8.5,42.5
- parent: 8364
- uid: 20164
components:
- type: Transform
@@ -59426,6 +59528,11 @@ entities:
- type: Transform
pos: -0.5,-19.5
parent: 8364
+ - uid: 25005
+ components:
+ - type: Transform
+ pos: 1.5,40.5
+ parent: 8364
- uid: 25089
components:
- type: Transform
@@ -59981,60 +60088,10 @@ entities:
- type: Transform
pos: -11.5,49.5
parent: 8364
- - uid: 26251
- components:
- - type: Transform
- pos: -11.5,50.5
- parent: 8364
- - uid: 26252
- components:
- - type: Transform
- pos: -11.5,51.5
- parent: 8364
- - uid: 26253
- components:
- - type: Transform
- pos: -11.5,52.5
- parent: 8364
- - uid: 26254
- components:
- - type: Transform
- pos: -11.5,53.5
- parent: 8364
- - uid: 26255
- components:
- - type: Transform
- pos: -11.5,54.5
- parent: 8364
- - uid: 26256
- components:
- - type: Transform
- pos: -12.5,54.5
- parent: 8364
- - uid: 26257
- components:
- - type: Transform
- pos: -12.5,53.5
- parent: 8364
- - uid: 26258
- components:
- - type: Transform
- pos: -13.5,53.5
- parent: 8364
- uid: 26259
components:
- type: Transform
- pos: -14.5,53.5
- parent: 8364
- - uid: 26260
- components:
- - type: Transform
- pos: -14.5,54.5
- parent: 8364
- - uid: 26261
- components:
- - type: Transform
- pos: -15.5,54.5
+ pos: -16.5,38.5
parent: 8364
- uid: 26262
components:
@@ -60221,6 +60278,11 @@ entities:
- type: Transform
pos: -9.5,37.5
parent: 8364
+ - uid: 26456
+ components:
+ - type: Transform
+ pos: 7.5,41.5
+ parent: 8364
- uid: 26572
components:
- type: Transform
@@ -61223,7 +61285,7 @@ entities:
- type: Transform
pos: 12.5,24.5
parent: 8364
- - uid: 8989
+ - uid: 8611
components:
- type: Transform
pos: -15.5,51.5
@@ -66855,6 +66917,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -11.5,40.5
parent: 8364
+ - uid: 7798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,23.5
+ parent: 8364
- uid: 7978
components:
- type: Transform
@@ -66920,6 +66988,12 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,22.5
parent: 8364
+ - uid: 8436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,23.5
+ parent: 8364
- uid: 8617
components:
- type: Transform
@@ -66965,6 +67039,12 @@ entities:
- type: Transform
pos: 8.5,21.5
parent: 8364
+ - uid: 9248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,23.5
+ parent: 8364
- uid: 9414
components:
- type: Transform
@@ -67408,6 +67488,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,-63.5
parent: 8364
+ - uid: 25714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,41.5
+ parent: 8364
- uid: 26133
components:
- type: Transform
@@ -67454,12 +67540,6 @@ entities:
- type: Transform
pos: 1.5,50.5
parent: 8364
- - uid: 26577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,40.5
- parent: 8364
- uid: 26868
components:
- type: Transform
@@ -67915,6 +67995,11 @@ entities:
parent: 8364
- proto: ChairOfficeLight
entities:
+ - uid: 3480
+ components:
+ - type: Transform
+ pos: 18.604033,-17.353407
+ parent: 8364
- uid: 5220
components:
- type: Transform
@@ -67984,12 +68069,6 @@ entities:
- type: Transform
pos: -24.5,-70.5
parent: 8364
- - uid: 18614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-17.5
- parent: 8364
- uid: 18685
components:
- type: Transform
@@ -68405,10 +68484,10 @@ entities:
parent: 8364
- proto: ChemDispenser
entities:
- - uid: 18610
+ - uid: 3272
components:
- type: Transform
- pos: 18.5,-18.5
+ pos: 19.5,-16.5
parent: 8364
- uid: 18768
components:
@@ -68422,13 +68501,18 @@ entities:
parent: 8364
- proto: ChemistryHotplate
entities:
- - uid: 5920
+ - uid: 18903
components:
- type: Transform
- pos: 18.5,-17.5
+ pos: 21.5,-18.5
parent: 8364
- proto: ChemMaster
entities:
+ - uid: 3280
+ components:
+ - type: Transform
+ pos: 18.5,-16.5
+ parent: 8364
- uid: 18770
components:
- type: Transform
@@ -68439,11 +68523,6 @@ entities:
- type: Transform
pos: 22.5,-16.5
parent: 8364
- - uid: 18775
- components:
- - type: Transform
- pos: 18.5,-16.5
- parent: 8364
- proto: ChessBoard
entities:
- uid: 11671
@@ -68612,8 +68691,11 @@ entities:
- uid: 27286
components:
- type: Transform
+ anchored: True
pos: 10.5,40.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -68895,11 +68977,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 9197
- components:
- - type: Transform
- pos: -17.5,24.5
- parent: 8364
- uid: 9255
components:
- type: Transform
@@ -69783,29 +69860,6 @@ entities:
- type: Transform
pos: 63.5,-72.5
parent: 8364
- - uid: 26546
- components:
- - type: Transform
- pos: -22.5,51.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 27598
components:
- type: Transform
@@ -69828,6 +69882,11 @@ entities:
- type: Transform
pos: -3.5,-57.5
parent: 8364
+ - uid: 9119
+ components:
+ - type: Transform
+ pos: -17.5,24.5
+ parent: 8364
- uid: 20638
components:
- type: Transform
@@ -70281,8 +70340,11 @@ entities:
- uid: 9261
components:
- type: Transform
+ anchored: True
pos: 10.5,41.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -72124,20 +72186,25 @@ entities:
parent: 8364
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 9366
+ - uid: 9190
components:
- type: Transform
- pos: 2.689872,39.342834
+ pos: 2.7655263,39.62697
parent: 8364
- - uid: 9367
+ - uid: 9193
components:
- type: Transform
- pos: 2.689872,39.624084
+ pos: 2.7655263,39.512383
parent: 8364
- - uid: 9368
+ - uid: 9197
components:
- type: Transform
- pos: 2.689872,39.51471
+ pos: 2.7655263,39.366547
+ parent: 8364
+ - uid: 10062
+ components:
+ - type: Transform
+ pos: 2.7551093,39.762383
parent: 8364
- proto: ClothingHeadsetEngineering
entities:
@@ -72276,23 +72343,6 @@ entities:
- type: Transform
pos: -44.458595,14.399037
parent: 8364
-- proto: ClothingMaskGasSecurity
- entities:
- - uid: 9223
- components:
- - type: Transform
- pos: 4.830586,32.536835
- parent: 8364
- - uid: 9224
- components:
- - type: Transform
- pos: 4.547027,32.818085
- parent: 8364
- - uid: 9228
- components:
- - type: Transform
- pos: 4.656402,32.724335
- parent: 8364
- proto: ClothingMaskSterile
entities:
- uid: 17899
@@ -72421,54 +72471,59 @@ entities:
parent: 8364
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 9375
+ - uid: 9170
components:
- type: Transform
- pos: 0.54769325,39.79596
+ pos: 1.2759427,39.481133
parent: 8364
- - uid: 9376
+ - uid: 9178
components:
- type: Transform
- pos: 0.71956825,39.592834
+ pos: 1.2759427,39.59572
parent: 8364
- - uid: 9377
+ - uid: 21244
components:
- type: Transform
- pos: 0.81331825,39.405334
+ pos: 1.2759427,39.699883
parent: 8364
-- proto: ClothingOuterArmorReflective
- entities:
- - uid: 9372
+ - uid: 28242
components:
- type: Transform
- pos: 0.3043524,39.56628
+ pos: 1.2759427,39.37697
parent: 8364
- - uid: 9373
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 9483
components:
- type: Transform
- pos: 0.4762274,39.44128
+ pos: 1.6821928,39.418633
parent: 8364
- - uid: 9374
+ - uid: 28240
components:
- type: Transform
- pos: 0.6793524,39.28503
+ pos: 1.6926093,39.574883
parent: 8364
- proto: ClothingOuterArmorRiot
entities:
- - uid: 9369
+ - uid: 9166
components:
- type: Transform
- pos: 2.330497,39.530334
+ pos: 2.3384428,39.68947
parent: 8364
- - uid: 9370
+ - uid: 9167
components:
- type: Transform
- pos: 2.346122,39.38971
+ pos: 2.3384428,39.554047
parent: 8364
- - uid: 9371
+ - uid: 9216
components:
- type: Transform
- pos: 2.314872,39.67096
+ pos: 2.3488593,39.481133
+ parent: 8364
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: 2.3384428,39.366547
parent: 8364
- proto: ClothingOuterCardborg
entities:
@@ -72527,32 +72582,6 @@ entities:
- type: Transform
pos: 66.509186,-76.72045
parent: 8364
-- proto: ClothingOuterHardsuitSecurity
- entities:
- - uid: 4163
- components:
- - type: Transform
- pos: 0.37893665,35.52849
- parent: 8364
- - uid: 15129
- components:
- - type: Transform
- pos: 0.37893665,35.52849
- parent: 8364
- - uid: 20856
- components:
- - type: Transform
- parent: 11965
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 20857
- components:
- - type: Transform
- parent: 17151
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingOuterHoodieGrey
entities:
- uid: 21633
@@ -73363,11 +73392,6 @@ entities:
- type: Transform
pos: 39.5,-16.5
parent: 8364
- - uid: 8751
- components:
- - type: Transform
- pos: -9.5,32.5
- parent: 8364
- uid: 20882
components:
- type: Transform
@@ -73478,15 +73502,15 @@ entities:
parent: 8364
- proto: ComputerCriminalRecords
entities:
- - uid: 9075
+ - uid: 9181
components:
- type: Transform
- pos: -1.5,33.5
+ pos: 13.5,41.5
parent: 8364
- - uid: 9181
+ - uid: 9345
components:
- type: Transform
- pos: 13.5,41.5
+ pos: 4.5,28.5
parent: 8364
- uid: 9362
components:
@@ -73515,6 +73539,11 @@ entities:
- type: Transform
pos: -8.5,-6.5
parent: 8364
+ - uid: 21245
+ components:
+ - type: Transform
+ pos: 0.5,33.5
+ parent: 8364
- proto: ComputerFrame
entities:
- uid: 19878
@@ -73800,11 +73829,34 @@ entities:
- type: Transform
pos: -3.5,14.5
parent: 8364
+ - uid: 8780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,24.5
+ parent: 8364
+ - uid: 26251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,24.5
+ parent: 8364
+ - uid: 26252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,24.5
+ parent: 8364
- uid: 27653
components:
- type: Transform
pos: 10.5,-27.5
parent: 8364
+ - uid: 28241
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 8364
- proto: ContainmentFieldGenerator
entities:
- uid: 4552
@@ -74202,10 +74254,10 @@ entities:
parent: 8364
- proto: CrateContrabandStorageSecure
entities:
- - uid: 27489
+ - uid: 8629
components:
- type: Transform
- pos: -2.5,32.5
+ pos: 3.5,33.5
parent: 8364
- proto: CrateEmergencyRadiation
entities:
@@ -74730,6 +74782,13 @@ entities:
- type: Transform
pos: 2.5,-11.5
parent: 8364
+- proto: CrateMaterialRandom
+ entities:
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: -28.5,-51.5
+ parent: 8364
- proto: CrateMedicalScrubs
entities:
- uid: 16545
@@ -74756,6 +74815,24 @@ entities:
- type: Transform
pos: -9.5,30.5
parent: 8364
+ - 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
- uid: 19237
components:
- type: Transform
@@ -75090,6 +75167,14 @@ entities:
- type: Transform
pos: 29.484377,-32.156303
parent: 8364
+- proto: CurtainsRed
+ entities:
+ - uid: 4650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,41.5
+ parent: 8364
- proto: d20Dice
entities:
- uid: 6522
@@ -75565,15 +75650,20 @@ entities:
parent: 8364
- proto: DeployableBarrier
entities:
- - uid: 9566
+ - uid: 7678
components:
- type: Transform
- pos: 3.5,35.5
+ pos: -13.5,22.5
parent: 8364
- - uid: 9567
+ - uid: 7680
components:
- type: Transform
- pos: 4.5,35.5
+ pos: -12.5,22.5
+ parent: 8364
+ - uid: 25712
+ components:
+ - type: Transform
+ pos: -14.5,22.5
parent: 8364
- proto: DeskBell
entities:
@@ -75635,6 +75725,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.5,-35.5
parent: 8364
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: 19.5,-18.5
+ parent: 8364
- uid: 3724
components:
- type: Transform
@@ -75780,23 +75875,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,32.5
parent: 8364
- - uid: 9515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,31.5
- parent: 8364
- - uid: 9517
- components:
- - type: Transform
- pos: 6.5,31.5
- parent: 8364
- - uid: 9518
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,30.5
- parent: 8364
- uid: 9534
components:
- type: Transform
@@ -76727,6 +76805,12 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,5.5
parent: 8364
+ - uid: 9284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,30.5
+ parent: 8364
- uid: 9499
components:
- type: Transform
@@ -77895,11 +77979,43 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,26.5
parent: 8364
+ - uid: 8819
+ components:
+ - type: Transform
+ pos: 9.5,33.5
+ parent: 8364
+ - uid: 8820
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 8364
- uid: 9105
components:
- type: Transform
pos: -26.5,-17.5
parent: 8364
+ - uid: 9270
+ components:
+ - type: Transform
+ pos: 9.5,32.5
+ parent: 8364
+ - uid: 9283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,30.5
+ parent: 8364
+ - uid: 9285
+ components:
+ - type: Transform
+ pos: 9.5,31.5
+ parent: 8364
+ - uid: 9286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,30.5
+ parent: 8364
- uid: 9401
components:
- type: Transform
@@ -78031,12 +78147,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,30.5
parent: 8364
- - uid: 9507
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,30.5
- parent: 8364
- uid: 9508
components:
- type: Transform
@@ -78054,12 +78164,6 @@ entities:
- type: Transform
pos: 18.5,33.5
parent: 8364
- - uid: 9516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,31.5
- parent: 8364
- uid: 9520
components:
- type: Transform
@@ -80679,18 +80783,6 @@ entities:
- type: Transform
pos: 49.5,-43.5
parent: 8364
- - uid: 18920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-17.5
- parent: 8364
- - uid: 18921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-18.5
- parent: 8364
- uid: 18922
components:
- type: Transform
@@ -83694,21 +83786,26 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,-13.5
parent: 8364
+ - uid: 9075
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 8364
- uid: 9246
components:
- type: Transform
pos: -22.5,-15.5
parent: 8364
- - uid: 9481
+ - uid: 9269
components:
- type: Transform
- pos: 19.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,30.5
parent: 8364
- - uid: 9483
+ - uid: 9481
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,30.5
+ pos: 19.5,36.5
parent: 8364
- uid: 9559
components:
@@ -83824,6 +83921,12 @@ entities:
- type: Transform
pos: 41.5,-26.5
parent: 8364
+ - uid: 18606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-18.5
+ parent: 8364
- uid: 18654
components:
- type: Transform
@@ -83858,11 +83961,6 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-47.5
parent: 8364
- - uid: 18895
- components:
- - type: Transform
- pos: 19.5,-16.5
- parent: 8364
- uid: 19072
components:
- type: Transform
@@ -83986,6 +84084,11 @@ entities:
- type: Transform
pos: 4.5,-9.5
parent: 8364
+ - uid: 5920
+ components:
+ - type: Transform
+ pos: 18.5,-18.5
+ parent: 8364
- uid: 6117
components:
- type: Transform
@@ -84036,6 +84139,11 @@ entities:
- type: Transform
pos: 4.5,30.5
parent: 8364
+ - uid: 9262
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 8364
- uid: 9400
components:
- type: Transform
@@ -84146,11 +84254,6 @@ entities:
- type: Transform
pos: 43.5,-47.5
parent: 8364
- - uid: 18781
- components:
- - type: Transform
- pos: 19.5,-16.5
- parent: 8364
- uid: 19067
components:
- type: Transform
@@ -84238,11 +84341,6 @@ entities:
parent: 8364
- proto: DogBed
entities:
- - uid: 3280
- components:
- - type: Transform
- pos: 21.5,-18.5
- parent: 8364
- uid: 3812
components:
- type: Transform
@@ -84262,6 +84360,11 @@ entities:
- type: Transform
pos: 35.5,-38.5
parent: 8364
+ - uid: 18772
+ components:
+ - type: Transform
+ pos: 22.5,-22.5
+ parent: 8364
- uid: 22265
components:
- type: Transform
@@ -84343,10 +84446,10 @@ entities:
parent: 8364
- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 9238
+ - uid: 9377
components:
- type: Transform
- pos: 16.5,40.5
+ pos: 15.5,41.5
parent: 8364
- proto: DresserQuarterMasterFilled
entities:
@@ -84362,6 +84465,13 @@ entities:
- type: Transform
pos: 71.5,-33.5
parent: 8364
+- proto: DresserWardenFilled
+ entities:
+ - uid: 9257
+ components:
+ - type: Transform
+ pos: -1.5,33.5
+ parent: 8364
- proto: DrinkBeerBottleFull
entities:
- uid: 27600
@@ -84470,6 +84580,11 @@ entities:
parent: 8364
- proto: EmergencyLight
entities:
+ - uid: 9135
+ components:
+ - type: Transform
+ pos: 4.5,33.5
+ parent: 8364
- uid: 20300
components:
- type: Transform
@@ -84539,15 +84654,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 21326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,32.5
- parent: 8364
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 21409
components:
- type: Transform
@@ -85208,6 +85314,22 @@ entities:
- type: Transform
pos: 59.5,-19.5
parent: 8364
+- proto: ExplosivesSignMed
+ entities:
+ - uid: 18369
+ components:
+ - type: MetaData
+ desc: WARNING! Live minefield!
+ - type: Transform
+ pos: 5.5,46.5
+ parent: 8364
+ - uid: 28263
+ components:
+ - type: MetaData
+ desc: WARNING! Live minefield!
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 8364
- proto: ExtendedEmergencyOxygenTankFilled
entities:
- uid: 17647
@@ -85604,7 +85726,7 @@ entities:
pos: 12.5,41.5
parent: 8364
- type: FaxMachine
- name: HoS
+ name: HoS Office
- uid: 21237
components:
- type: Transform
@@ -85626,6 +85748,13 @@ entities:
parent: 8364
- type: FaxMachine
name: Medical
+ - uid: 28093
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 8364
+ - type: FaxMachine
+ name: Warden's Office
- proto: FaxMachineCaptain
entities:
- uid: 21189
@@ -85838,6 +85967,20 @@ entities:
- 14149
- 22663
- 19972
+ - uid: 7797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,18.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 11605
+ - 11600
+ - 11377
+ - 11603
+ - 23940
+ - 9291
- uid: 10714
components:
- type: Transform
@@ -86489,7 +86632,6 @@ entities:
- 7393
- 7390
- 7146
- - 9262
- 11605
- 11600
- 23935
@@ -86507,46 +86649,9 @@ entities:
- 7393
- 7390
- 7146
- - 9262
- 11605
- 11600
- 23935
- - uid: 23942
- components:
- - type: Transform
- pos: 0.5,22.5
- parent: 8364
- - type: DeviceList
- devices:
- - 9262
- - 11605
- - 11600
- - 11377
- - 11603
- - 23940
- - uid: 25233
- components:
- - type: Transform
- pos: -2.5,34.5
- parent: 8364
- - type: DeviceList
- devices:
- - 25040
- - 9219
- - 8930
- - 8934
- - uid: 25235
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,39.5
- parent: 8364
- - type: DeviceList
- devices:
- - 8930
- - 8934
- - 25236
- - 19934
- uid: 25807
components:
- type: Transform
@@ -87476,11 +87581,15 @@ entities:
- type: Transform
pos: -0.5,29.5
parent: 8364
- - uid: 9262
+ - uid: 9291
components:
- type: Transform
pos: -1.5,18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23898
+ - 7797
- uid: 9811
components:
- type: Transform
@@ -87568,6 +87677,9 @@ entities:
- type: Transform
pos: 1.5,22.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 7797
- uid: 11553
components:
- type: Transform
@@ -87583,11 +87695,17 @@ entities:
- type: Transform
pos: 0.5,18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 7797
- uid: 11603
components:
- type: Transform
pos: 2.5,22.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 7797
- uid: 11604
components:
- type: Transform
@@ -87598,6 +87716,9 @@ entities:
- type: Transform
pos: -0.5,18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 7797
- uid: 11719
components:
- type: Transform
@@ -87749,11 +87870,17 @@ entities:
- type: Transform
pos: 18.5,-13.5
parent: 8364
+ - type: Door
+ secondsUntilStateChange: -885.5329
+ state: Closing
- uid: 13388
components:
- type: Transform
pos: 18.5,-14.5
parent: 8364
+ - type: Door
+ secondsUntilStateChange: -921.2329
+ state: Closing
- uid: 13389
components:
- type: Transform
@@ -87920,7 +88047,7 @@ entities:
pos: -34.5,-14.5
parent: 8364
- type: Door
- secondsUntilStateChange: -68201.17
+ secondsUntilStateChange: -87843.06
state: Closing
- uid: 15010
components:
@@ -89335,11 +89462,6 @@ entities:
- type: Transform
pos: 15.5,27.5
parent: 8364
- - uid: 9411
- components:
- - type: Transform
- pos: 14.5,39.5
- parent: 8364
- proto: FoodBreadBaguette
entities:
- uid: 6669
@@ -93521,6 +93643,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-41.5
+ parent: 8364
+ - uid: 8452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-39.5
+ parent: 8364
- uid: 8531
components:
- type: Transform
@@ -107961,6 +108095,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25233
+ components:
+ - type: Transform
+ pos: 8.5,24.5
+ parent: 8364
- uid: 25247
components:
- type: Transform
@@ -109567,14 +109706,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25554
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25555
components:
- type: Transform
@@ -114527,6 +114658,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-39.5
+ parent: 8364
+ - uid: 8454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-41.5
+ parent: 8364
- uid: 9437
components:
- type: Transform
@@ -114670,18 +114813,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 25004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-41.5
- parent: 8364
- - uid: 25005
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-39.5
- parent: 8364
- uid: 26040
components:
- type: Transform
@@ -114867,22 +114998,6 @@ entities:
open: False
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-41.5
- parent: 8364
- - type: GasValve
- open: False
- - uid: 25003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-39.5
- parent: 8364
- - type: GasValve
- open: False
- proto: GasVentPump
entities:
- uid: 747
@@ -122250,12 +122365,12 @@ entities:
- uid: 4945
components:
- type: Transform
- pos: 4.5,42.5
+ pos: -1.5,41.5
parent: 8364
- uid: 4946
components:
- type: Transform
- pos: 3.5,42.5
+ pos: 0.5,41.5
parent: 8364
- uid: 4947
components:
@@ -122275,12 +122390,7 @@ entities:
- uid: 4951
components:
- type: Transform
- pos: -1.5,42.5
- parent: 8364
- - uid: 4952
- components:
- - type: Transform
- pos: -2.5,42.5
+ pos: 3.5,41.5
parent: 8364
- uid: 4957
components:
@@ -122854,6 +122964,11 @@ entities:
- type: Transform
pos: 29.5,-22.5
parent: 8364
+ - uid: 5606
+ components:
+ - type: Transform
+ pos: 2.5,41.5
+ parent: 8364
- uid: 5709
components:
- type: Transform
@@ -122874,6 +122989,11 @@ entities:
- type: Transform
pos: -0.5,-79.5
parent: 8364
+ - uid: 5791
+ components:
+ - type: Transform
+ pos: -0.5,41.5
+ parent: 8364
- uid: 5913
components:
- type: Transform
@@ -122889,6 +123009,11 @@ entities:
- type: Transform
pos: -6.5,-93.5
parent: 8364
+ - uid: 6253
+ components:
+ - type: Transform
+ pos: 1.5,41.5
+ parent: 8364
- uid: 6305
components:
- type: Transform
@@ -123260,11 +123385,6 @@ entities:
- type: Transform
pos: 6.5,34.5
parent: 8364
- - uid: 7716
- components:
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- uid: 7717
components:
- type: Transform
@@ -123285,11 +123405,6 @@ entities:
- type: Transform
pos: -0.5,34.5
parent: 8364
- - uid: 7721
- components:
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- uid: 7722
components:
- type: Transform
@@ -123380,11 +123495,6 @@ entities:
- type: Transform
pos: 8.5,25.5
parent: 8364
- - uid: 7779
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 8364
- uid: 7788
components:
- type: Transform
@@ -123837,6 +123947,11 @@ entities:
- type: Transform
pos: -6.5,-78.5
parent: 8364
+ - uid: 8614
+ components:
+ - type: Transform
+ pos: -11.5,54.5
+ parent: 8364
- uid: 8755
components:
- type: Transform
@@ -123847,6 +123962,11 @@ entities:
- type: Transform
pos: -6.5,38.5
parent: 8364
+ - uid: 8776
+ components:
+ - type: Transform
+ pos: -15.5,54.5
+ parent: 8364
- uid: 8786
components:
- type: Transform
@@ -123929,6 +124049,16 @@ entities:
- type: Transform
pos: -13.5,39.5
parent: 8364
+ - uid: 9169
+ components:
+ - type: Transform
+ pos: 5.5,45.5
+ parent: 8364
+ - uid: 9230
+ components:
+ - type: Transform
+ pos: -12.5,54.5
+ parent: 8364
- uid: 9332
components:
- type: Transform
@@ -123964,6 +124094,11 @@ entities:
- type: Transform
pos: 25.5,42.5
parent: 8364
+ - uid: 9567
+ components:
+ - type: Transform
+ pos: -14.5,54.5
+ parent: 8364
- uid: 9569
components:
- type: Transform
@@ -123979,6 +124114,12 @@ entities:
- type: Transform
pos: -18.5,21.5
parent: 8364
+ - uid: 10057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 8364
- uid: 10082
components:
- type: Transform
@@ -124060,16 +124201,6 @@ entities:
- type: Transform
pos: -9.5,2.5
parent: 8364
- - uid: 11607
- components:
- - type: Transform
- pos: -13.5,3.5
- parent: 8364
- - uid: 11608
- components:
- - type: Transform
- pos: -13.5,2.5
- parent: 8364
- uid: 11648
components:
- type: Transform
@@ -125300,6 +125431,11 @@ entities:
- type: Transform
pos: 0.5,42.5
parent: 8364
+ - uid: 25004
+ components:
+ - type: Transform
+ pos: -3.5,33.5
+ parent: 8364
- uid: 25230
components:
- type: Transform
@@ -125323,31 +125459,11 @@ entities:
- type: Transform
pos: -6.5,46.5
parent: 8364
- - uid: 25712
- components:
- - type: Transform
- pos: -14.5,54.5
- parent: 8364
- - uid: 25713
- components:
- - type: Transform
- pos: -15.5,54.5
- parent: 8364
- - uid: 25714
- components:
- - type: Transform
- pos: -12.5,54.5
- parent: 8364
- uid: 25721
components:
- type: Transform
pos: -8.5,46.5
parent: 8364
- - uid: 25726
- components:
- - type: Transform
- pos: -11.5,54.5
- parent: 8364
- uid: 25860
components:
- type: Transform
@@ -125914,6 +126030,51 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-24.5
parent: 8364
+ - uid: 28262
+ components:
+ - type: Transform
+ pos: 30.5,43.5
+ parent: 8364
+ - uid: 28268
+ components:
+ - type: Transform
+ pos: 30.5,42.5
+ parent: 8364
+ - uid: 28269
+ components:
+ - type: Transform
+ pos: 30.5,41.5
+ parent: 8364
+ - uid: 28270
+ components:
+ - type: Transform
+ pos: 30.5,40.5
+ parent: 8364
+ - uid: 28271
+ components:
+ - type: Transform
+ pos: 30.5,44.5
+ parent: 8364
+ - uid: 28272
+ components:
+ - type: Transform
+ pos: 30.5,45.5
+ parent: 8364
+ - uid: 28273
+ components:
+ - type: Transform
+ pos: 30.5,39.5
+ parent: 8364
+ - uid: 28274
+ components:
+ - type: Transform
+ pos: 27.5,45.5
+ parent: 8364
+ - uid: 28275
+ components:
+ - type: Transform
+ pos: 28.5,45.5
+ parent: 8364
- proto: GrilleBroken
entities:
- uid: 453
@@ -126016,6 +126177,17 @@ entities:
- type: Transform
pos: 88.5,-85.5
parent: 8364
+ - uid: 5767
+ components:
+ - type: Transform
+ pos: 5.5,43.5
+ parent: 8364
+ - uid: 9361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,44.5
+ parent: 8364
- uid: 11161
components:
- type: Transform
@@ -126148,44 +126320,110 @@ entities:
parent: 8364
- proto: GunSafeDisabler
entities:
- - uid: 6253
- components:
- - type: Transform
- pos: -0.5,39.5
- parent: 8364
- - uid: 15128
- components:
- - type: Transform
- pos: 3.5,33.5
- parent: 8364
-- proto: GunSafeLaserCarbine
- entities:
- - uid: 9236
+ - uid: 9207
components:
- type: Transform
+ anchored: True
pos: 1.5,37.5
parent: 8364
-- proto: GunSafeRifleLecter
+ - type: Physics
+ bodyType: Static
+- proto: GunSafePistolMk58
entities:
- - uid: 9177
+ - uid: 7751
components:
- type: Transform
- pos: 0.5,37.5
+ anchored: True
+ pos: 2.5,37.5
parent: 8364
-- proto: GunSafeShotgunKammerer
+ - type: Physics
+ bodyType: Static
+- proto: GunSafeRifleLecter
entities:
- - uid: 9170
+ - uid: 9373
components:
+ - type: MetaData
+ desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter combat rifles.
- type: Transform
+ anchored: True
pos: -0.5,37.5
parent: 8364
+ - type: Physics
+ bodyType: Static
+ - 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:
+ - 9376
+ - 9375
+ - 9374
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 9235
+ - uid: 9369
components:
+ - type: MetaData
+ desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns.
- type: Transform
- pos: 2.5,37.5
+ anchored: True
+ pos: 0.5,37.5
parent: 8364
+ - type: Physics
+ bodyType: Static
+ - 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:
+ - 9370
+ - 9371
+ - 9372
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GyroscopeUnanchored
entities:
- uid: 25012
@@ -126196,21 +126434,6 @@ entities:
parent: 8364
- proto: Handcuffs
entities:
- - uid: 8571
- components:
- - type: Transform
- pos: 10.5,24.5
- parent: 8364
- - uid: 8572
- components:
- - type: Transform
- pos: 10.5,24.5
- parent: 8364
- - uid: 8573
- components:
- - type: Transform
- pos: 10.5,24.5
- parent: 8364
- uid: 8591
components:
- type: Transform
@@ -126238,16 +126461,6 @@ entities:
- type: Transform
pos: 38.4924,-28.821447
parent: 8364
- - uid: 9175
- components:
- - type: Transform
- pos: -14.5,22.5
- parent: 8364
- - uid: 9229
- components:
- - type: Transform
- pos: 1.530674,30.52632
- parent: 8364
- uid: 9705
components:
- type: Transform
@@ -126268,15 +126481,15 @@ entities:
- type: Transform
pos: 42.78838,-16.408396
parent: 8364
- - uid: 18707
+ - uid: 18610
components:
- type: Transform
- pos: 11.49096,-33.114952
+ pos: 22.524746,-18.472406
parent: 8364
- - uid: 18903
+ - uid: 18707
components:
- type: Transform
- pos: 22.5,-18.5
+ pos: 11.49096,-33.114952
parent: 8364
- uid: 21393
components:
@@ -126684,10 +126897,10 @@ entities:
parent: 8364
- proto: HolopadSecurityArmory
entities:
- - uid: 28138
+ - uid: 7709
components:
- type: Transform
- pos: 1.5,38.5
+ pos: 3.5,37.5
parent: 8364
- proto: HolopadSecurityArrivalsCheckpoint
entities:
@@ -126740,10 +126953,10 @@ entities:
parent: 8364
- proto: HolopadSecurityFront
entities:
- - uid: 28093
+ - uid: 28247
components:
- type: Transform
- pos: 1.5,23.5
+ pos: 5.5,20.5
parent: 8364
- proto: HolopadSecurityInterrogation
entities:
@@ -127140,6 +127353,12 @@ entities:
parent: 8364
- proto: IntercomAll
entities:
+ - uid: 4481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-15.5
+ parent: 8364
- uid: 5526
components:
- type: Transform
@@ -127152,6 +127371,22 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 8364
+ - uid: 7752
+ components:
+ - type: Transform
+ pos: 3.5,-13.5
+ parent: 8364
+ - uid: 9366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-15.5
+ parent: 8364
+ - uid: 9367
+ components:
+ - type: Transform
+ pos: -4.5,-13.5
+ parent: 8364
- uid: 27818
components:
- type: Transform
@@ -127297,11 +127532,6 @@ entities:
parent: 8364
- proto: IntercomSecurity
entities:
- - uid: 9576
- components:
- - type: Transform
- pos: 4.5,29.5
- parent: 8364
- uid: 21091
components:
- type: Transform
@@ -127312,6 +127542,11 @@ entities:
- type: Transform
pos: -10.5,28.5
parent: 8364
+ - uid: 26256
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 8364
- proto: IntercomSupply
entities:
- uid: 6438
@@ -127367,6 +127602,18 @@ entities:
- type: Transform
pos: -12.493954,3.065948
parent: 8364
+- proto: JetpackSecurityFilled
+ entities:
+ - uid: 8572
+ components:
+ - type: Transform
+ pos: -0.68612957,39.73207
+ parent: 8364
+ - uid: 9182
+ components:
+ - type: Transform
+ pos: -0.38925457,39.51332
+ parent: 8364
- proto: Jukebox
entities:
- uid: 20632
@@ -127753,14 +128000,22 @@ entities:
parent: 8364
- proto: LandMineExplosive
entities:
+ - uid: 9359
+ components:
+ - type: Transform
+ anchored: True
+ pos: 4.5,44.5
+ parent: 8364
- uid: 27309
components:
- type: Transform
+ anchored: True
pos: -0.5,43.5
parent: 8364
- uid: 27313
components:
- type: Transform
+ anchored: True
pos: 2.5,43.5
parent: 8364
- proto: LandMineModular
@@ -127843,6 +128098,32 @@ entities:
- type: Transform
pos: -28.5095,-5.350807
parent: 8364
+- proto: LockableButtonArmory
+ entities:
+ - uid: 23135
+ components:
+ - type: MetaData
+ name: Open Armory
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.477743,38.812943
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6419:
+ - Pressed: Open
+ - uid: 25554
+ components:
+ - type: MetaData
+ name: Close Armory
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.4868402,38.244164
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6419:
+ - Pressed: Close
- proto: LockableButtonChiefMedicalOfficer
entities:
- uid: 3809
@@ -127997,63 +128278,31 @@ entities:
- 0
- proto: LockerChemistryFilled
entities:
- - uid: 18772
+ - uid: 18781
components:
- type: Transform
- pos: 22.5,-22.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerChiefEngineerFilled
- entities:
- - uid: 18402
- components:
- - type: Transform
- pos: -0.5,-62.5
- parent: 8364
-- proto: LockerChiefMedicalOfficerFilledHardsuit
- entities:
- - uid: 9237
- components:
- - type: Transform
- pos: 34.5,-43.5
- parent: 8364
-- proto: LockerDetectiveFilled
- entities:
- - uid: 9704
- components:
- - type: Transform
- pos: -8.5,15.5
+ pos: 22.5,-21.5
+ parent: 8364
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 18402
+ components:
+ - type: Transform
+ pos: -0.5,-62.5
+ parent: 8364
+- proto: LockerChiefMedicalOfficerFilledHardsuit
+ entities:
+ - uid: 9237
+ components:
+ - type: Transform
+ pos: 34.5,-43.5
+ parent: 8364
+- proto: LockerDetectiveFilled
+ entities:
+ - uid: 9704
+ components:
+ - type: Transform
+ pos: -8.5,15.5
parent: 8364
- type: EntityStorage
air:
@@ -128189,75 +128438,6 @@ entities:
- type: Transform
pos: -14.5,36.5
parent: 8364
- - uid: 8553
- components:
- - type: Transform
- pos: -12.5,24.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8554
- components:
- - type: Transform
- pos: -12.5,23.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8555
- components:
- - type: Transform
- pos: -12.5,22.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 8961
components:
- type: Transform
@@ -128304,29 +128484,6 @@ entities:
- 0
- 0
- 0
- - uid: 9118
- components:
- - type: Transform
- pos: 6.5,41.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 9356
components:
- type: Transform
@@ -128454,6 +128611,26 @@ entities:
- type: Transform
pos: 37.5,-4.5
parent: 8364
+ - 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: Pullable
+ prevFixedRotation: True
- uid: 8196
components:
- type: Transform
@@ -128519,8 +128696,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 5.001885
- - 18.816614
+ - 2.146141
+ - 8.073578
- 0
- 0
- 0
@@ -128593,8 +128770,11 @@ entities:
- uid: 9250
components:
- type: Transform
+ anchored: True
pos: 16.5,38.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -128736,6 +128916,13 @@ entities:
- 0
- 0
- 0
+ - uid: 25003
+ components:
+ - type: Transform
+ pos: -9.5,31.5
+ parent: 8364
+ - type: Lock
+ locked: False
- proto: LockerParamedicFilled
entities:
- uid: 27687
@@ -128932,18 +129119,27 @@ entities:
- uid: 8791
components:
- type: Transform
+ anchored: True
pos: 8.5,37.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- uid: 8811
components:
- type: Transform
+ anchored: True
pos: 8.5,38.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- uid: 9256
components:
- type: Transform
+ anchored: True
pos: 10.5,37.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -128979,8 +129175,11 @@ entities:
- uid: 9258
components:
- type: Transform
+ anchored: True
pos: 10.5,38.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129016,8 +129215,11 @@ entities:
- uid: 9259
components:
- type: Transform
+ anchored: True
pos: 10.5,39.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129090,8 +129292,11 @@ entities:
- uid: 27287
components:
- type: Transform
+ anchored: True
pos: 8.5,40.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129113,8 +129318,11 @@ entities:
- uid: 27288
components:
- type: Transform
+ anchored: True
pos: 8.5,39.5
parent: 8364
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
@@ -129263,6 +129471,13 @@ entities:
- type: Transform
pos: 43.5,-62.5
parent: 8364
+- proto: LootSpawnerMaterialsSurplus
+ entities:
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: -28.5,-52.5
+ parent: 8364
- proto: LootSpawnerMedicalClassy
entities:
- uid: 6393
@@ -129336,6 +129551,11 @@ entities:
- type: Transform
pos: 81.5,-23.5
parent: 8364
+ - uid: 18366
+ components:
+ - type: Transform
+ pos: 71.5,-28.5
+ parent: 8364
- uid: 22977
components:
- type: Transform
@@ -129479,22 +129699,54 @@ entities:
- type: Transform
pos: -43.5,-12.5
parent: 8364
+- proto: MagazinePistolSubMachineGun
+ entities:
+ - uid: 9371
+ components:
+ - type: Transform
+ parent: 9369
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 9372
+ components:
+ - type: Transform
+ parent: 9369
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- uid: 534
components:
- type: Transform
- pos: 16.383898,41.80004
+ pos: 14.262794,39.806297
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 30
- uid: 535
components:
- type: Transform
- pos: 16.383898,41.80004
+ pos: 14.247169,39.821922
parent: 8364
- type: BallisticAmmoProvider
unspawnedCount: 30
+- proto: MagazineRifle
+ entities:
+ - uid: 9374
+ components:
+ - type: Transform
+ parent: 9373
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 9376
+ components:
+ - type: Transform
+ parent: 9373
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: MailingUnit
entities:
- uid: 8179
@@ -129925,11 +130177,21 @@ entities:
- type: Transform
pos: 32.5,-36.5
parent: 8364
+ - uid: 5594
+ components:
+ - type: Transform
+ pos: -6.5,31.5
+ parent: 8364
- uid: 18648
components:
- type: Transform
pos: 30.5,-27.5
parent: 8364
+ - uid: 19933
+ components:
+ - type: Transform
+ pos: -6.5,32.5
+ parent: 8364
- proto: MedicalTechFab
entities:
- uid: 27390
@@ -129946,6 +130208,11 @@ entities:
parent: 8364
- proto: MedkitBruteFilled
entities:
+ - uid: 9118
+ components:
+ - type: Transform
+ pos: -6.4267135,29.876205
+ parent: 8364
- uid: 21717
components:
- type: Transform
@@ -129980,11 +130247,6 @@ entities:
parent: 8364
- proto: MedkitFilled
entities:
- - uid: 5606
- components:
- - type: Transform
- pos: 4.550616,-5.4263577
- parent: 8364
- uid: 6523
components:
- type: Transform
@@ -130000,11 +130262,6 @@ entities:
- type: Transform
pos: -6.5648327,29.651033
parent: 8364
- - uid: 9086
- components:
- - type: Transform
- pos: -2.4584026,39.71956
- parent: 8364
- uid: 12264
components:
- type: Transform
@@ -130030,7 +130287,7 @@ entities:
- uid: 7927
components:
- type: Transform
- pos: -6.3929577,29.432283
+ pos: -6.3642135,29.51683
parent: 8364
- proto: MedkitRadiationFilled
entities:
@@ -130824,11 +131081,6 @@ entities:
- type: Transform
pos: 19.5,-32.5
parent: 8364
- - uid: 8750
- components:
- - type: Transform
- pos: -9.5,31.5
- parent: 8364
- uid: 19015
components:
- type: Transform
@@ -131197,106 +131449,6 @@ entities:
- type: Transform
pos: 20.509228,6.5730886
parent: 8364
- - uid: 8446
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8447
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8448
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8449
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8450
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8451
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8452
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8453
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8454
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8455
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8456
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8457
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8458
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8459
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8460
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8598
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8599
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8600
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8601
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8602
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- uid: 8804
components:
- type: Transform
@@ -131312,12 +131464,7 @@ entities:
- uid: 8806
components:
- type: Transform
- pos: -11.291204,32.308414
- parent: 8364
- - uid: 9233
- components:
- - type: Transform
- pos: -0.5,29.5
+ pos: -11.519596,32.598755
parent: 8364
- uid: 9406
components:
@@ -131586,6 +131733,26 @@ entities:
- type: Transform
pos: -22.5,-13.5
parent: 8364
+ - uid: 8456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,24.5
+ parent: 8364
+ - uid: 8457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,24.5
+ parent: 8364
+- proto: PaperBin20
+ entities:
+ - uid: 8458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,32.5
+ parent: 8364
- proto: PaperBin5
entities:
- uid: 5319
@@ -131593,11 +131760,55 @@ entities:
- type: Transform
pos: 11.5,-34.5
parent: 8364
+ - uid: 8455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,19.5
+ parent: 8364
- uid: 17631
components:
- type: Transform
pos: 6.5,-56.5
parent: 8364
+- proto: PaperOffice
+ entities:
+ - uid: 9390
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
+ - uid: 9453
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
+ - uid: 9454
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
+ - uid: 9507
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
+ - uid: 9515
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
+ - uid: 9516
+ components:
+ - type: Transform
+ parent: 9384
+ - type: Physics
+ canCollide: False
- proto: ParchisBoard
entities:
- uid: 11673
@@ -131684,7 +131895,7 @@ entities:
- uid: 15961
components:
- type: Transform
- pos: -28.374622,-53.801064
+ pos: -28.49712,-53.537666
parent: 8364
- uid: 16698
components:
@@ -131777,27 +131988,22 @@ entities:
- uid: 8463
components:
- type: Transform
- pos: 12.5,19.5
+ pos: 12.507681,19.623228
parent: 8364
- uid: 8603
components:
- type: Transform
- pos: 3.5,24.5
+ pos: 3.370025,24.35413
parent: 8364
- uid: 8802
components:
- type: Transform
pos: -11.650579,32.527164
parent: 8364
- - uid: 9231
- components:
- - type: Transform
- pos: -1.2001991,30.822023
- parent: 8364
- uid: 9232
components:
- type: Transform
- pos: -0.5,29.5
+ pos: -1.6906976,30.406588
parent: 8364
- uid: 9727
components:
@@ -132107,6 +132313,20 @@ entities:
- type: Transform
pos: 7.5224895,-74.49767
parent: 8364
+- proto: PlasmaWindoorSecureArmoryLocked
+ entities:
+ - uid: 9517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,37.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26255:
+ - DoorStatus: Close
- proto: PlasticFlapsAirtightClear
entities:
- uid: 3067
@@ -132195,21 +132415,56 @@ entities:
parent: 8364
- proto: PortableFlasher
entities:
- - uid: 9166
+ - uid: 9267
components:
- type: Transform
- pos: -1.5,35.5
+ anchored: False
+ pos: -12.5,25.5
parent: 8364
- - uid: 9167
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 9380
components:
- type: Transform
- pos: -2.5,35.5
+ anchored: False
+ pos: -12.5,23.5
parent: 8364
- - uid: 9169
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 9518
components:
- type: Transform
+ anchored: False
pos: -2.5,36.5
parent: 8364
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 9566
+ components:
+ - type: Transform
+ anchored: False
+ pos: -2.5,35.5
+ parent: 8364
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 25713
+ components:
+ - type: Transform
+ anchored: False
+ pos: -12.5,24.5
+ parent: 8364
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
- proto: PortableGeneratorJrPacman
entities:
- uid: 6258
@@ -132867,11 +133122,6 @@ entities:
- type: Transform
pos: 34.5,-51.5
parent: 8364
- - uid: 5599
- components:
- - type: Transform
- pos: 12.5,37.5
- parent: 8364
- uid: 14510
components:
- type: Transform
@@ -133061,6 +133311,11 @@ entities:
- type: ContainerContainer
containers:
stash: !type:ContainerSlot {}
+ - uid: 8399
+ components:
+ - type: Transform
+ pos: 58.5,-1.5
+ parent: 8364
- uid: 11814
components:
- type: Transform
@@ -133106,6 +133361,16 @@ entities:
- type: Transform
pos: -58.5,-11.5
parent: 8364
+ - uid: 17950
+ components:
+ - type: Transform
+ pos: 65.5,-10.5
+ parent: 8364
+ - uid: 18367
+ components:
+ - type: Transform
+ pos: 53.5,-1.5
+ parent: 8364
- uid: 18618
components:
- type: Transform
@@ -133554,14 +133819,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-8.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 7014
components:
- type: Transform
@@ -135898,6 +136155,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 9576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,47.5
+ parent: 8364
- uid: 10007
components:
- type: Transform
@@ -135984,6 +136247,18 @@ entities:
powerLoad: 0
- proto: PoweredlightLED
entities:
+ - uid: 4952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,41.5
+ parent: 8364
+ - uid: 9175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,41.5
+ parent: 8364
- uid: 14468
components:
- type: Transform
@@ -136031,22 +136306,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27281
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,41.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,41.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- proto: PoweredlightSodium
entities:
- uid: 21778
@@ -137472,6 +137731,18 @@ entities:
powerLoad: 0
- proto: PoweredWarmSmallLight
entities:
+ - uid: 8460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-5.5
+ parent: 8364
+ - uid: 18368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-10.5
+ parent: 8364
- uid: 27930
components:
- type: Transform
@@ -137624,10 +137895,10 @@ entities:
- type: Transform
pos: 66.5,-64.5
parent: 8364
- - uid: 8570
+ - uid: 8779
components:
- type: Transform
- pos: 10.5,24.5
+ pos: 3.5,39.5
parent: 8364
- uid: 9002
components:
@@ -137639,11 +137910,6 @@ entities:
- type: Transform
pos: -8.5,53.5
parent: 8364
- - uid: 9190
- components:
- - type: Transform
- pos: 0.5,39.5
- parent: 8364
- uid: 9191
components:
- type: Transform
@@ -137654,15 +137920,10 @@ entities:
- type: Transform
pos: 2.5,39.5
parent: 8364
- - uid: 9193
- components:
- - type: Transform
- pos: 0.5,35.5
- parent: 8364
- - uid: 9194
+ - uid: 9231
components:
- type: Transform
- pos: -0.5,35.5
+ pos: -0.5,39.5
parent: 8364
- uid: 9364
components:
@@ -137689,6 +137950,11 @@ entities:
- type: Transform
pos: 25.5,25.5
parent: 8364
+ - uid: 10086
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 8364
- uid: 10274
components:
- type: Transform
@@ -137704,6 +137970,11 @@ entities:
- type: Transform
pos: 66.5,6.5
parent: 8364
+ - uid: 11608
+ components:
+ - type: Transform
+ pos: -1.5,35.5
+ parent: 8364
- uid: 11680
components:
- type: Transform
@@ -137999,6 +138270,11 @@ entities:
- type: Transform
pos: 72.5,-35.5
parent: 8364
+ - uid: 21326
+ components:
+ - type: Transform
+ pos: 0.5,39.5
+ parent: 8364
- uid: 21389
components:
- type: Transform
@@ -138182,11 +138458,6 @@ entities:
- type: Transform
pos: 9.443931,-54.34355
parent: 8364
- - uid: 8597
- components:
- - type: Transform
- pos: 3.5,23.5
- parent: 8364
- uid: 15394
components:
- type: Transform
@@ -139190,11 +139461,6 @@ entities:
- type: Transform
pos: -12.5,26.5
parent: 8364
- - uid: 9463
- components:
- - type: Transform
- pos: -1.5,23.5
- parent: 8364
- uid: 9474
components:
- type: Transform
@@ -139831,6 +140097,11 @@ entities:
- type: Transform
pos: 44.5,-54.5
parent: 8364
+ - uid: 5765
+ components:
+ - type: Transform
+ pos: 1.5,42.5
+ parent: 8364
- uid: 5799
components:
- type: Transform
@@ -139856,6 +140127,33 @@ entities:
- type: Transform
pos: -0.5,40.5
parent: 8364
+ - uid: 8761
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 8364
+ - uid: 8775
+ components:
+ - type: Transform
+ pos: -0.5,42.5
+ parent: 8364
+ - uid: 10059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,34.5
+ parent: 8364
+ - uid: 10060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,34.5
+ parent: 8364
+ - uid: 11607
+ components:
+ - type: Transform
+ pos: 2.5,42.5
+ parent: 8364
- uid: 15138
components:
- type: Transform
@@ -142788,6 +143086,12 @@ entities:
- type: Transform
pos: 11.5,40.5
parent: 8364
+ - uid: 7706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,33.5
+ parent: 8364
- uid: 7724
components:
- type: Transform
@@ -142828,21 +143132,6 @@ entities:
- type: Transform
pos: 5.5,32.5
parent: 8364
- - uid: 7733
- components:
- - type: Transform
- pos: 3.5,34.5
- parent: 8364
- - uid: 7734
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 8364
- - uid: 7735
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 8364
- uid: 7736
components:
- type: Transform
@@ -142913,16 +143202,6 @@ entities:
- type: Transform
pos: 5.5,25.5
parent: 8364
- - uid: 7751
- components:
- - type: Transform
- pos: 8.5,25.5
- parent: 8364
- - uid: 7752
- components:
- - type: Transform
- pos: 10.5,25.5
- parent: 8364
- uid: 7753
components:
- type: Transform
@@ -143385,6 +143664,11 @@ entities:
- type: Transform
pos: -13.5,39.5
parent: 8364
+ - uid: 8631
+ components:
+ - type: Transform
+ pos: -15.5,54.5
+ parent: 8364
- uid: 8656
components:
- type: Transform
@@ -143440,11 +143724,6 @@ entities:
- type: Transform
pos: -18.5,39.5
parent: 8364
- - uid: 9046
- components:
- - type: Transform
- pos: -15.5,54.5
- parent: 8364
- uid: 9047
components:
- type: Transform
@@ -143485,6 +143764,18 @@ entities:
- type: Transform
pos: -14.5,39.5
parent: 8364
+ - uid: 9236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,25.5
+ parent: 8364
+ - uid: 9238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,25.5
+ parent: 8364
- uid: 9399
components:
- type: Transform
@@ -143590,21 +143881,11 @@ entities:
- type: Transform
pos: 67.5,3.5
parent: 8364
- - uid: 11379
- components:
- - type: Transform
- pos: -13.5,3.5
- parent: 8364
- uid: 11590
components:
- type: Transform
pos: -9.5,2.5
parent: 8364
- - uid: 11592
- components:
- - type: Transform
- pos: -13.5,2.5
- parent: 8364
- uid: 11646
components:
- type: Transform
@@ -144467,17 +144748,71 @@ entities:
- type: Transform
pos: 51.721848,-23.02736
parent: 8364
+- proto: RiotBulletShield
+ entities:
+ - uid: 7681
+ components:
+ - type: Transform
+ pos: 0.21283889,39.394394
+ parent: 8364
+ - uid: 9194
+ components:
+ - type: Transform
+ pos: 0.22672784,39.679115
+ parent: 8364
+ - uid: 9209
+ components:
+ - type: Transform
+ pos: 0.2197833,39.57495
+ parent: 8364
+ - uid: 9383
+ components:
+ - type: Transform
+ pos: 0.2197833,39.47773
+ parent: 8364
+- proto: RiotLaserShield
+ entities:
+ - uid: 8627
+ components:
+ - type: Transform
+ pos: 0.7406167,39.408287
+ parent: 8364
+ - uid: 9290
+ components:
+ - type: Transform
+ pos: 0.73367226,39.581894
+ parent: 8364
+ - uid: 9335
+ components:
+ - type: Transform
+ pos: 0.73367226,39.69301
+ parent: 8364
+ - uid: 21786
+ components:
+ - type: Transform
+ pos: 0.73367226,39.498558
+ parent: 8364
- proto: RiotShield
entities:
- - uid: 9119
+ - uid: 9226
components:
- type: Transform
- pos: 0.2666831,39.43831
+ pos: 0.4975611,39.720787
parent: 8364
- - uid: 9135
+ - uid: 9228
+ components:
+ - type: Transform
+ pos: 0.4975611,39.616615
+ parent: 8364
+ - uid: 9334
+ components:
+ - type: Transform
+ pos: 0.4975611,39.519394
+ parent: 8364
+ - uid: 10058
components:
- type: Transform
- pos: 0.2510581,39.68831
+ pos: 0.4975611,39.394394
parent: 8364
- proto: RobocopCircuitBoard
entities:
@@ -144712,7 +145047,7 @@ entities:
parent: 8364
- proto: SecurityTechFab
entities:
- - uid: 9359
+ - uid: 9235
components:
- type: Transform
pos: -1.5,39.5
@@ -144821,11 +145156,6 @@ entities:
- type: Transform
pos: -23.474255,-5.524679
parent: 8364
- - uid: 15958
- components:
- - type: Transform
- pos: -28.687122,-52.44169
- parent: 8364
- uid: 16695
components:
- type: Transform
@@ -144885,6 +145215,11 @@ entities:
- type: Transform
pos: 57.348213,-49.249336
parent: 8364
+ - uid: 17152
+ components:
+ - type: Transform
+ pos: 22.10642,-18.301016
+ parent: 8364
- proto: SheetPlasteel
entities:
- uid: 4582
@@ -144919,11 +145254,6 @@ entities:
- type: Transform
pos: 69.50902,-26.620325
parent: 8364
- - uid: 8761
- components:
- - type: Transform
- pos: -2.4544196,39.606735
- parent: 8364
- uid: 19207
components:
- type: Transform
@@ -144936,11 +145266,6 @@ entities:
- type: Transform
pos: -65.35544,13.342238
parent: 8364
- - uid: 15959
- components:
- - type: Transform
- pos: -28.390247,-52.707314
- parent: 8364
- uid: 21445
components:
- type: Transform
@@ -144971,7 +145296,7 @@ entities:
- uid: 9316
components:
- type: Transform
- pos: -2.4700446,39.637985
+ pos: -2.430175,38.67102
parent: 8364
- uid: 11753
components:
@@ -145014,11 +145339,6 @@ entities:
- type: Transform
pos: -10.454543,-61.554474
parent: 8364
- - uid: 15960
- components:
- - type: Transform
- pos: -28.671497,-53.41044
- parent: 8364
- uid: 17672
components:
- type: Transform
@@ -145245,50 +145565,51 @@ entities:
- type: Transform
pos: 6.5,-23.5
parent: 8364
- - uid: 8606
+ - uid: 9639
components:
- type: Transform
- pos: 3.5,23.5
+ pos: -2.5,16.5
parent: 8364
- - uid: 8607
+ - uid: 9640
components:
- type: Transform
- pos: 3.5,24.5
+ pos: -2.5,15.5
parent: 8364
- - uid: 8614
+ - uid: 9641
components:
- type: Transform
- pos: 2.5,22.5
+ pos: -2.5,14.5
parent: 8364
- - uid: 8615
+ - uid: 9642
components:
- type: Transform
- pos: 1.5,22.5
+ pos: -5.5,18.5
parent: 8364
- - uid: 9639
+ - uid: 9923
components:
- type: Transform
- pos: -2.5,16.5
+ pos: 10.5,-32.5
parent: 8364
- - uid: 9640
+ - uid: 11980
components:
- type: Transform
- pos: -2.5,15.5
+ pos: -9.5,22.5
parent: 8364
- - uid: 9641
+ - uid: 12024
components:
- type: Transform
- pos: -2.5,14.5
+ pos: -10.5,22.5
parent: 8364
- - uid: 9642
+ - uid: 12030
components:
- type: Transform
- pos: -5.5,18.5
+ pos: 3.5,24.5
parent: 8364
- - uid: 9923
+ - uid: 12033
components:
- type: Transform
- pos: 10.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,23.5
parent: 8364
- uid: 14148
components:
@@ -145329,6 +145650,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -29.5,-25.5
parent: 8364
+ - uid: 17151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,22.5
+ parent: 8364
- uid: 17669
components:
- type: Transform
@@ -145345,6 +145672,12 @@ entities:
- type: Transform
pos: -0.5,-65.5
parent: 8364
+ - uid: 18370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,22.5
+ parent: 8364
- uid: 18406
components:
- type: Transform
@@ -145365,12 +145698,47 @@ entities:
- type: Transform
pos: 23.5,-19.5
parent: 8364
+ - uid: 19886
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 8364
+ - uid: 19890
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 8364
+ - uid: 19931
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 8364
+ - uid: 19959
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 8364
+ - uid: 19968
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 8364
+ - uid: 20152
+ components:
+ - type: Transform
+ pos: -6.5,22.5
+ parent: 8364
- uid: 22014
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 8364
+ - uid: 22451
+ components:
+ - type: Transform
+ pos: -8.5,22.5
+ parent: 8364
- uid: 22990
components:
- type: Transform
@@ -145490,71 +145858,34 @@ entities:
- type: Transform
pos: 12.5,23.5
parent: 8364
- - uid: 8775
- components:
- - type: Transform
- pos: -10.5,22.5
- parent: 8364
- - uid: 8776
- components:
- - type: Transform
- pos: -9.5,22.5
- parent: 8364
- - uid: 8777
- components:
- - type: Transform
- pos: -8.5,22.5
- parent: 8364
- - uid: 8778
- components:
- - type: Transform
- pos: -6.5,22.5
- parent: 8364
- - uid: 8779
- components:
- - type: Transform
- pos: -5.5,22.5
- parent: 8364
- - uid: 8780
- components:
- - type: Transform
- pos: -4.5,22.5
- parent: 8364
- - uid: 8781
- components:
- - type: Transform
- pos: -2.5,22.5
- parent: 8364
- - uid: 8782
- components:
- - type: Transform
- pos: -1.5,22.5
- parent: 8364
- - uid: 8783
- components:
- - type: Transform
- pos: -0.5,22.5
- parent: 8364
- uid: 10454
components:
- type: Transform
pos: 35.5,-10.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 10455
components:
- type: Transform
pos: 36.5,-10.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 10456
components:
- type: Transform
pos: 37.5,-10.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 10457
components:
- type: Transform
pos: 38.5,-10.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 20837
components:
- type: Transform
@@ -145875,27 +146206,6 @@ entities:
- Pressed: Toggle
10457:
- Pressed: Toggle
- - uid: 9936
- components:
- - type: Transform
- pos: 14.5,29.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 8650:
- - Pressed: Toggle
- 8649:
- - Pressed: Toggle
- 8648:
- - Pressed: Toggle
- 8647:
- - Pressed: Toggle
- 8646:
- - Pressed: Toggle
- 8645:
- - Pressed: Toggle
- 8644:
- - Pressed: Toggle
- uid: 11625
components:
- type: Transform
@@ -146003,50 +146313,6 @@ entities:
- Pressed: Toggle
20180:
- Pressed: Toggle
- - uid: 19931
- components:
- - type: Transform
- pos: 0.5,25.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 8783:
- - Pressed: Toggle
- 8782:
- - Pressed: Toggle
- 8781:
- - Pressed: Toggle
- 8780:
- - Pressed: Toggle
- 8779:
- - Pressed: Toggle
- 8778:
- - Pressed: Toggle
- 8777:
- - Pressed: Toggle
- 8776:
- - Pressed: Toggle
- 8775:
- - Pressed: Toggle
- 8615:
- - Pressed: Toggle
- 8614:
- - Pressed: Toggle
- 8606:
- - Pressed: Toggle
- 8607:
- - Pressed: Toggle
- - uid: 19933
- components:
- - type: Transform
- pos: -3.5,33.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 19930:
- - Pressed: Toggle
- 19932:
- - Pressed: Toggle
- uid: 20896
components:
- type: Transform
@@ -146197,32 +146463,6 @@ entities:
- Pressed: Toggle
- proto: SignalButtonDirectional
entities:
- - uid: 4213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,36.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 4494:
- - Pressed: Toggle
- 4495:
- - Pressed: Toggle
- - uid: 4214
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,36.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 3134:
- - Pressed: Toggle
- 4212:
- - Pressed: Toggle
- 6970:
- - Pressed: Toggle
- uid: 10732
components:
- type: MetaData
@@ -146309,13 +146549,24 @@ entities:
- Pressed: DoorBolt
- proto: SignalSwitch
entities:
- - uid: 8784
+ - uid: 9411
components:
- type: MetaData
- name: brig shutters switch
+ name: Perma Blast Doors
- type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,30.5
parent: 8364
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19930:
+ - On: Open
+ - Off: Close
+ 19932:
+ - On: Open
+ - Off: Close
- uid: 13247
components:
- type: MetaData
@@ -146323,6 +146574,127 @@ entities:
- type: Transform
pos: 10.8,3.5
parent: 8364
+- proto: SignalSwitchDirectional
+ entities:
+ - uid: 9142
+ components:
+ - type: MetaData
+ name: Shutters
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8650:
+ - On: Open
+ - Off: Close
+ 8649:
+ - On: Open
+ - Off: Close
+ 8648:
+ - On: Open
+ - Off: Close
+ 8647:
+ - On: Open
+ - Off: Close
+ 8646:
+ - On: Open
+ - Off: Close
+ 8645:
+ - On: Open
+ - Off: Close
+ 8644:
+ - On: Open
+ - Off: Close
+ - uid: 9368
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,40.5
+ parent: 8364
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6970:
+ - On: Open
+ - Off: Close
+ 4212:
+ - On: Open
+ - Off: Close
+ 3134:
+ - On: Open
+ - Off: Close
+ - uid: 11568
+ components:
+ - type: MetaData
+ name: Brig Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,23.5
+ parent: 8364
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12030:
+ - On: Open
+ - Off: Close
+ 12033:
+ - On: Open
+ - Off: Close
+ 17151:
+ - Off: Close
+ - On: Open
+ 18370:
+ - On: Open
+ - Off: Close
+ 19886:
+ - On: Open
+ - Off: Close
+ 19890:
+ - On: Open
+ - Off: Close
+ 19931:
+ - On: Open
+ - Off: Close
+ 19959:
+ - On: Open
+ - Off: Close
+ 19968:
+ - Off: Close
+ - On: Open
+ 20152:
+ - On: Open
+ - Off: Close
+ 22451:
+ - On: Open
+ - Off: Close
+ 11980:
+ - On: Open
+ - Off: Close
+ 12024:
+ - On: Open
+ - Off: Close
+ - uid: 15129
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ pos: 8.5,42.5
+ parent: 8364
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4495:
+ - On: Open
+ - Off: Close
+ 4494:
+ - On: Open
+ - Off: Close
- proto: SignAnomaly
entities:
- uid: 25994
@@ -146810,21 +147182,11 @@ entities:
- type: Transform
pos: -2.5,-60.5
parent: 8364
- - uid: 26456
- components:
- - type: Transform
- pos: 5.5,46.5
- parent: 8364
- uid: 26457
components:
- type: Transform
pos: -3.5,46.5
parent: 8364
- - uid: 26458
- components:
- - type: Transform
- pos: -25.5,46.5
- parent: 8364
- uid: 26459
components:
- type: Transform
@@ -147213,21 +147575,6 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-53.5
parent: 8364
- - uid: 8470
- components:
- - type: Transform
- pos: 11.5,28.5
- parent: 8364
- - uid: 8592
- components:
- - type: Transform
- pos: 7.5,22.5
- parent: 8364
- - uid: 9004
- components:
- - type: Transform
- pos: -3.5,43.5
- parent: 8364
- proto: SignSecureMed
entities:
- uid: 3806
@@ -147256,6 +147603,12 @@ entities:
- type: Transform
pos: 4.5,-64.5
parent: 8364
+ - uid: 19928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,22.5
+ parent: 8364
- uid: 20149
components:
- type: Transform
@@ -147556,11 +147909,6 @@ entities:
- type: Transform
pos: 31.5,1.5
parent: 8364
- - uid: 7340
- components:
- - type: Transform
- pos: -6.5,32.5
- parent: 8364
- uid: 13245
components:
- type: Transform
@@ -147679,6 +148027,12 @@ entities:
- type: Transform
pos: -36.5,-54.5
parent: 8364
+ - uid: 16331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-17.5
+ parent: 8364
- uid: 20883
components:
- type: Transform
@@ -149463,10 +149817,10 @@ entities:
parent: 8364
- proto: SpawnMobWalter
entities:
- - uid: 3480
+ - uid: 18775
components:
- type: Transform
- pos: 21.5,-18.5
+ pos: 22.5,-22.5
parent: 8364
- proto: SpawnPointAtmos
entities:
@@ -149581,20 +149935,20 @@ entities:
parent: 8364
- proto: SpawnPointChemist
entities:
- - uid: 18603
+ - uid: 1921
components:
- type: Transform
- pos: 20.5,-19.5
+ pos: 19.5,-17.5
parent: 8364
- - uid: 18606
+ - uid: 18383
components:
- type: Transform
- pos: 20.5,-18.5
+ pos: 21.5,-19.5
parent: 8364
- - uid: 18608
+ - uid: 18603
components:
- type: Transform
- pos: 20.5,-17.5
+ pos: 21.5,-17.5
parent: 8364
- proto: SpawnPointChiefEngineer
entities:
@@ -149901,33 +150255,28 @@ entities:
parent: 8364
- proto: SpawnPointSecurityCadet
entities:
- - uid: 9453
+ - uid: 5599
components:
- type: Transform
- pos: 7.5,39.5
+ pos: 8.5,36.5
parent: 8364
- - uid: 9454
+ - uid: 9177
components:
- type: Transform
- pos: 7.5,38.5
+ pos: 7.5,36.5
parent: 8364
- - uid: 11568
+ - uid: 9295
components:
- type: Transform
- pos: 7.5,37.5
+ pos: 9.5,36.5
parent: 8364
- - uid: 26603
+ - uid: 20856
components:
- type: Transform
- pos: 7.5,40.5
+ pos: 9.5,40.5
parent: 8364
- proto: SpawnPointSecurityOfficer
entities:
- - uid: 8590
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 8364
- uid: 8633
components:
- type: Transform
@@ -149943,6 +150292,26 @@ entities:
- type: Transform
pos: 9.5,37.5
parent: 8364
+ - uid: 19935
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 8364
+ - uid: 20159
+ components:
+ - type: Transform
+ pos: 7.5,38.5
+ parent: 8364
+ - uid: 20174
+ components:
+ - type: Transform
+ pos: 7.5,39.5
+ parent: 8364
+ - uid: 20857
+ components:
+ - type: Transform
+ pos: 7.5,40.5
+ parent: 8364
- proto: SpawnPointServiceWorker
entities:
- uid: 6948
@@ -150192,24 +150561,6 @@ entities:
parent: 8364
- proto: SteelBench
entities:
- - uid: 5765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,23.5
- parent: 8364
- - uid: 5767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,23.5
- parent: 8364
- - uid: 5791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,24.5
- parent: 8364
- uid: 7912
components:
- type: Transform
@@ -150228,6 +150579,30 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,32.5
parent: 8364
+ - uid: 9174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,24.5
+ parent: 8364
+ - uid: 9936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,23.5
+ parent: 8364
+ - uid: 10056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,23.5
+ parent: 8364
+ - uid: 23942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,24.5
+ parent: 8364
- proto: Stool
entities:
- uid: 377
@@ -150884,24 +151259,12 @@ entities:
- type: Transform
pos: 72.5,-34.5
parent: 8364
-- proto: SuitStorageEVAAlternate
- entities:
- - uid: 19959
- components:
- - type: Transform
- pos: -14.5,2.5
- parent: 8364
- - uid: 19968
- components:
- - type: Transform
- pos: -14.5,3.5
- parent: 8364
- proto: SuitStorageHOS
entities:
- - uid: 5288
+ - uid: 25002
components:
- type: Transform
- pos: 13.5,37.5
+ pos: 16.5,39.5
parent: 8364
- proto: SuitStorageSalv
entities:
@@ -150912,50 +151275,37 @@ entities:
parent: 8364
- proto: SuitStorageSec
entities:
- - uid: 3813
+ - uid: 4163
components:
- type: Transform
- pos: 0.5,33.5
+ pos: 0.5,35.5
parent: 8364
- - uid: 11965
+ - uid: 4213
components:
- type: Transform
- pos: 3.5,39.5
+ pos: -0.5,35.5
+ parent: 8364
+ - uid: 8783
+ components:
+ - type: Transform
+ pos: 3.5,35.5
+ parent: 8364
+ - uid: 8825
+ components:
+ - type: Transform
+ pos: 4.5,35.5
parent: 8364
- - 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:
- - 20856
- uid: 16531
components:
- type: Transform
pos: -8.5,3.5
parent: 8364
- - uid: 17151
+- proto: SuitStorageWarden
+ entities:
+ - uid: 11999
components:
- type: Transform
- pos: 4.5,39.5
+ pos: -2.5,33.5
parent: 8364
- type: EntityStorage
air:
@@ -150975,20 +151325,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 20857
-- proto: SuitStorageWarden
- entities:
- - uid: 11999
- components:
- - type: Transform
- pos: -2.5,33.5
- parent: 8364
- proto: SurveillanceCameraCommand
entities:
- uid: 296
@@ -151188,6 +151524,14 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Canister Storage
+ - uid: 7004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-75.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: TEG Cool Loop
- uid: 7216
components:
- type: Transform
@@ -151196,6 +151540,22 @@ entities:
parent: 8364
- type: SurveillanceCamera
id: Station Anchor
+ - uid: 8599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-71.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: TEG North
+ - uid: 8602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-78.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: TEG West
- uid: 14221
components:
- type: Transform
@@ -151228,6 +151588,22 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Circuitry
+ - uid: 15958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-77.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: TEG East
+ - uid: 15959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-80.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Singulo Cage Northeast
- uid: 16620
components:
- type: Transform
@@ -152778,17 +153154,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Locker Room
- - uid: 389
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,39.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory
- uid: 394
components:
- type: Transform
@@ -152888,6 +153253,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security
+ - uid: 7659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,24.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Storage
- uid: 17694
components:
- type: Transform
@@ -152921,17 +153297,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security External West
- - uid: 20152
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,24.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Evidence Room
- uid: 20860
components:
- type: Transform
@@ -153039,6 +153404,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Entryway
+ - uid: 28138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,39.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory
- proto: SurveillanceCameraService
entities:
- uid: 20939
@@ -153313,11 +153689,6 @@ entities:
- type: Transform
pos: -23.5,-38.5
parent: 8364
- - uid: 3272
- components:
- - type: Transform
- pos: 18.5,-17.5
- parent: 8364
- uid: 3687
components:
- type: Transform
@@ -153509,11 +153880,6 @@ entities:
- type: Transform
pos: 12.5,19.5
parent: 8364
- - uid: 8641
- components:
- - type: Transform
- pos: -14.5,22.5
- parent: 8364
- uid: 8785
components:
- type: Transform
@@ -154709,6 +155075,12 @@ entities:
- type: Transform
pos: -33.5,-18.5
parent: 8364
+ - uid: 25743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,41.5
+ parent: 8364
- uid: 25826
components:
- type: Transform
@@ -154911,11 +155283,6 @@ entities:
- type: Transform
pos: 20.5,-33.5
parent: 8364
- - uid: 2562
- components:
- - type: Transform
- pos: 22.5,-18.5
- parent: 8364
- uid: 3057
components:
- type: Transform
@@ -155026,11 +155393,21 @@ entities:
- type: Transform
pos: 18.5,-22.5
parent: 8364
+ - uid: 18608
+ components:
+ - type: Transform
+ pos: 21.5,-18.5
+ parent: 8364
- uid: 18699
components:
- type: Transform
pos: 41.5,-57.5
parent: 8364
+ - uid: 18895
+ components:
+ - type: Transform
+ pos: 22.5,-18.5
+ parent: 8364
- uid: 19076
components:
- type: Transform
@@ -155879,11 +156256,6 @@ entities:
- type: Transform
pos: 17.5,25.5
parent: 8364
- - uid: 8399
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- uid: 8543
components:
- type: Transform
@@ -155894,6 +156266,12 @@ entities:
- type: Transform
pos: 15.5,27.5
parent: 8364
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,24.5
+ parent: 8364
- uid: 9042
components:
- type: Transform
@@ -155924,11 +156302,6 @@ entities:
- type: Transform
pos: 14.5,39.5
parent: 8364
- - uid: 9216
- components:
- - type: Transform
- pos: 16.5,41.5
- parent: 8364
- uid: 9624
components:
- type: Transform
@@ -157244,17 +157617,6 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- - uid: 19935
- components:
- - type: Transform
- pos: 4.5,36.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 9182:
- - Left: Open
- - Right: Open
- - Middle: Close
- uid: 20027
components:
- type: Transform
@@ -157425,17 +157787,17 @@ entities:
parent: 8364
- proto: VendingMachineChemDrobe
entities:
- - uid: 16331
+ - uid: 18614
components:
- type: Transform
pos: 21.5,-27.5
parent: 8364
- proto: VendingMachineChemicals
entities:
- - uid: 17152
+ - uid: 18921
components:
- type: Transform
- pos: 22.5,-21.5
+ pos: 21.5,-21.5
parent: 8364
- proto: VendingMachineCigs
entities:
@@ -157449,15 +157811,15 @@ entities:
- type: Transform
pos: 68.5,-47.5
parent: 8364
- - uid: 5594
+ - uid: 5690
components:
- type: Transform
- pos: 16.5,39.5
+ pos: 5.5,-12.5
parent: 8364
- - uid: 5690
+ - uid: 9463
components:
- type: Transform
- pos: 5.5,-12.5
+ pos: 12.5,37.5
parent: 8364
- uid: 12244
components:
@@ -157655,6 +158017,11 @@ entities:
- type: Transform
pos: 41.5,-31.5
parent: 8364
+ - uid: 9391
+ components:
+ - type: Transform
+ pos: -9.5,32.5
+ parent: 8364
- uid: 16753
components:
- type: Transform
@@ -157714,6 +158081,11 @@ entities:
parent: 8364
- proto: VendingMachineSec
entities:
+ - uid: 8777
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 8364
- uid: 9074
components:
- type: Transform
@@ -157726,15 +158098,15 @@ entities:
- type: Transform
pos: -60.5,5.5
parent: 8364
- - uid: 9142
+ - uid: 17677
components:
- type: Transform
- pos: 6.5,39.5
+ pos: -21.5,-31.5
parent: 8364
- - uid: 17677
+ - uid: 25726
components:
- type: Transform
- pos: -21.5,-31.5
+ pos: 6.5,39.5
parent: 8364
- proto: VendingMachineSeeds
entities:
@@ -164336,21 +164708,11 @@ entities:
- type: Transform
pos: -3.5,31.5
parent: 8364
- - uid: 7659
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 8364
- uid: 7660
components:
- type: Transform
pos: -2.5,34.5
parent: 8364
- - uid: 7661
- components:
- - type: Transform
- pos: -3.5,33.5
- parent: 8364
- uid: 7662
components:
- type: Transform
@@ -164406,31 +164768,11 @@ entities:
- type: Transform
pos: 4.5,40.5
parent: 8364
- - uid: 7677
- components:
- - type: Transform
- pos: 5.5,38.5
- parent: 8364
- - uid: 7678
- components:
- - type: Transform
- pos: 5.5,39.5
- parent: 8364
- uid: 7679
components:
- type: Transform
pos: 5.5,40.5
parent: 8364
- - uid: 7680
- components:
- - type: Transform
- pos: 5.5,41.5
- parent: 8364
- - uid: 7681
- components:
- - type: Transform
- pos: 5.5,42.5
- parent: 8364
- uid: 7682
components:
- type: Transform
@@ -164496,25 +164838,21 @@ entities:
- type: Transform
pos: 11.5,39.5
parent: 8364
- - uid: 7706
- components:
- - type: Transform
- pos: 6.5,42.5
- parent: 8364
- uid: 7707
components:
- type: Transform
pos: 11.5,42.5
parent: 8364
- - uid: 7709
+ - uid: 7726
components:
- type: Transform
- pos: 8.5,42.5
+ pos: 10.5,42.5
parent: 8364
- - uid: 7726
+ - uid: 7734
components:
- type: Transform
- pos: 10.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,38.5
parent: 8364
- uid: 7755
components:
@@ -165417,6 +165755,11 @@ entities:
- type: Transform
pos: -12.5,-6.5
parent: 8364
+ - uid: 8573
+ components:
+ - type: Transform
+ pos: 4.5,42.5
+ parent: 8364
- uid: 8574
components:
- type: Transform
@@ -165435,6 +165778,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,12.5
parent: 8364
+ - uid: 8628
+ components:
+ - type: Transform
+ pos: -1.5,34.5
+ parent: 8364
- uid: 8747
components:
- type: Transform
@@ -165445,11 +165793,29 @@ entities:
- type: Transform
pos: -20.5,52.5
parent: 8364
+ - uid: 8784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,34.5
+ parent: 8364
- uid: 8817
components:
- type: Transform
pos: -18.5,25.5
parent: 8364
+ - uid: 8853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,42.5
+ parent: 8364
+ - uid: 8858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,42.5
+ parent: 8364
- uid: 8860
components:
- type: Transform
@@ -165650,6 +166016,12 @@ entities:
- type: Transform
pos: -2.5,52.5
parent: 8364
+ - uid: 9086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,42.5
+ parent: 8364
- uid: 9114
components:
- type: Transform
@@ -165690,6 +166062,11 @@ entities:
- type: Transform
pos: 17.5,38.5
parent: 8364
+ - uid: 9173
+ components:
+ - type: Transform
+ pos: 3.5,42.5
+ parent: 8364
- uid: 9206
components:
- type: Transform
@@ -165893,11 +166270,21 @@ entities:
- type: Transform
pos: 21.5,-70.5
parent: 8364
+ - uid: 11379
+ components:
+ - type: Transform
+ pos: -2.5,42.5
+ parent: 8364
- uid: 11571
components:
- type: Transform
pos: 24.5,-70.5
parent: 8364
+ - uid: 11592
+ components:
+ - type: Transform
+ pos: -1.5,42.5
+ parent: 8364
- uid: 11593
components:
- type: Transform
@@ -166969,6 +167356,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,-93.5
parent: 8364
+ - uid: 25235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,39.5
+ parent: 8364
- uid: 25248
components:
- type: Transform
@@ -167120,6 +167513,11 @@ entities:
- type: Transform
pos: 38.5,-85.5
parent: 8364
+ - uid: 26458
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 8364
- uid: 26583
components:
- type: Transform
@@ -173517,16 +173915,6 @@ entities:
- type: Transform
pos: -14.5,28.5
parent: 8364
- - uid: 7797
- components:
- - type: Transform
- pos: -12.5,25.5
- parent: 8364
- - uid: 7798
- components:
- - type: Transform
- pos: -14.5,25.5
- parent: 8364
- uid: 7803
components:
- type: Transform
@@ -174187,11 +174575,6 @@ entities:
- type: Transform
pos: 16.5,29.5
parent: 8364
- - uid: 8853
- components:
- - type: Transform
- pos: -3.5,29.5
- parent: 8364
- uid: 8904
components:
- type: Transform
@@ -176146,85 +176529,31 @@ entities:
- 0
- proto: WardrobePrisonFilled
entities:
- - uid: 8546
+ - uid: 8760
components:
- type: Transform
- pos: -0.5,23.5
+ pos: -12.5,36.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8547
+ - uid: 8781
components:
- type: Transform
- pos: -4.5,23.5
+ pos: -4.5,24.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8760
+ - uid: 8782
components:
- type: Transform
- pos: -12.5,36.5
+ pos: -8.5,24.5
parent: 8364
- uid: 9168
components:
- type: Transform
pos: -11.5,36.5
parent: 8364
- - uid: 9257
+ - uid: 26136
components:
- type: Transform
- pos: -8.5,23.5
+ pos: -0.5,24.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 26345
components:
- type: Transform
@@ -176802,11 +177131,6 @@ entities:
- type: Transform
pos: 4.5,33.5
parent: 8364
- - uid: 9226
- components:
- - type: Transform
- pos: 4.5,32.5
- parent: 8364
- uid: 9343
components:
- type: Transform
@@ -176856,39 +177180,39 @@ entities:
- type: Transform
pos: -2.5,38.5
parent: 8364
-- proto: WeaponDisabler
+- proto: WeaponDisablerPractice
entities:
- - uid: 8819
+ - uid: 6611
components:
- type: Transform
- pos: 1.4993298,39.638985
+ pos: 25.415077,32.67617
parent: 8364
- - uid: 8820
+ - uid: 8385
components:
- type: Transform
- pos: 1.4993298,39.52961
+ pos: 25.540077,32.58242
parent: 8364
- - uid: 21784
+- proto: WeaponLaserCarbine
+ entities:
+ - uid: 8570
components:
- type: Transform
- pos: 16.460697,34.505676
+ pos: 4.4934177,39.504333
parent: 8364
- - uid: 21786
+ - uid: 8571
components:
- type: Transform
- pos: 4.4614744,33.066376
+ pos: 4.4934177,39.39322
parent: 8364
-- proto: WeaponDisablerPractice
- entities:
- - uid: 6611
+ - uid: 9172
components:
- type: Transform
- pos: 25.415077,32.67617
+ pos: 4.4934177,39.629333
parent: 8364
- - uid: 8385
+ - uid: 23537
components:
- type: Transform
- pos: 25.540077,32.58242
+ pos: 4.4934177,39.747383
parent: 8364
- proto: WeaponLaserCarbinePractice
entities:
@@ -176897,12 +177221,52 @@ entities:
- type: Transform
pos: 21.462696,34.988297
parent: 8364
+- proto: WeaponRifleLecter
+ entities:
+ - uid: 9375
+ components:
+ - type: Transform
+ parent: 9373
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponShotgunKammerer
+ entities:
+ - uid: 8642
+ components:
+ - type: Transform
+ pos: 3.5233402,39.390335
+ parent: 8364
+ - uid: 9208
+ components:
+ - type: Transform
+ pos: 3.5233402,39.53617
+ parent: 8364
+ - uid: 10087
+ components:
+ - type: Transform
+ pos: 3.5233402,39.668114
+ parent: 8364
+ - uid: 26258
+ components:
+ - type: Transform
+ pos: 3.5474372,39.816833
+ parent: 8364
+- proto: WeaponSubMachineGunDrozd
+ entities:
+ - uid: 9370
+ components:
+ - type: Transform
+ parent: 9369
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: WeaponSubMachineGunWt550
entities:
- uid: 536
components:
- type: Transform
- pos: 16.540148,41.51879
+ pos: 14.512794,39.540672
parent: 8364
- proto: WeedSpray
entities:
@@ -177126,6 +177490,14 @@ entities:
- type: Transform
pos: 2.5,22.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8605:
+ - DoorStatus: Close
+ 8604:
+ - DoorStatus: Close
- uid: 8609
components:
- type: MetaData
@@ -177133,20 +177505,14 @@ entities:
- type: Transform
pos: 1.5,22.5
parent: 8364
- - uid: 8610
- components:
- - type: MetaData
- name: Brig Desk
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,23.5
- parent: 8364
- - uid: 8611
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8604:
+ - DoorStatus: Close
+ 8605:
+ - DoorStatus: Close
- uid: 9242
components:
- type: MetaData
@@ -177154,6 +177520,12 @@ entities:
- type: Transform
pos: -0.5,29.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12663:
+ - DoorStatus: Close
- uid: 9805
components:
- type: MetaData
@@ -177357,27 +177729,27 @@ entities:
parent: 8364
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 3898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,37.5
- parent: 8364
- uid: 12663
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,29.5
parent: 8364
- - uid: 20159
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9242:
+ - DoorStatus: Close
+ - uid: 25744
components:
- type: Transform
- pos: 2.5,34.5
+ pos: 4.5,39.5
parent: 8364
- - uid: 20174
+ - uid: 25747
components:
- type: Transform
- pos: 1.5,34.5
+ pos: 3.5,39.5
parent: 8364
- proto: WindoorSecureBrigLocked
entities:
@@ -177501,6 +177873,20 @@ entities:
rot: 3.141592653589793 rad
pos: 32.5,-19.5
parent: 8364
+- proto: WindoorSecurePlasma
+ entities:
+ - uid: 26255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,37.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9517:
+ - DoorStatus: Close
- proto: WindoorSecureScienceLocked
entities:
- uid: 2317
@@ -177572,12 +177958,6 @@ entities:
- type: Transform
pos: 16.5,23.5
parent: 8364
- - uid: 8436
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,26.5
- parent: 8364
- uid: 8483
components:
- type: MetaData
@@ -177594,13 +177974,6 @@ entities:
rot: 3.141592653589793 rad
pos: 16.5,23.5
parent: 8364
- - uid: 8569
- components:
- - type: MetaData
- name: Holding Cell
- - type: Transform
- pos: 9.5,25.5
- parent: 8364
- uid: 8604
components:
- type: MetaData
@@ -177609,6 +177982,14 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,22.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8609:
+ - DoorStatus: Close
+ 8608:
+ - DoorStatus: Close
- uid: 8605
components:
- type: MetaData
@@ -177617,6 +177998,14 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,22.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8608:
+ - DoorStatus: Close
+ 8609:
+ - DoorStatus: Close
- uid: 8624
components:
- type: MetaData
@@ -177643,19 +178032,6 @@ entities:
- type: Transform
pos: -4.5,40.5
parent: 8364
- - uid: 9245
- components:
- - type: MetaData
- name: Armory Desk
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,37.5
- parent: 8364
- - uid: 9391
- components:
- - type: Transform
- pos: 23.5,37.5
- parent: 8364
- uid: 12330
components:
- type: MetaData
@@ -177670,6 +178046,11 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,40.5
parent: 8364
+ - uid: 22453
+ components:
+ - type: Transform
+ pos: 18.5,27.5
+ parent: 8364
- uid: 25738
components:
- type: Transform
@@ -177681,6 +178062,18 @@ entities:
- type: Transform
pos: 79.5,-4.5
parent: 8364
+ - uid: 26253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,24.5
+ parent: 8364
+ - uid: 26254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,23.5
+ parent: 8364
- proto: Window
entities:
- uid: 526
@@ -178481,12 +178874,6 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,16.5
parent: 8364
- - uid: 1921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-21.5
- parent: 8364
- uid: 2171
components:
- type: Transform
@@ -178658,15 +179045,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,32.5
parent: 8364
- - uid: 9383
- components:
- - type: Transform
- pos: 22.5,37.5
- parent: 8364
- - uid: 9390
+ - uid: 8778
components:
- type: Transform
- pos: 24.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,39.5
parent: 8364
- uid: 9824
components:
@@ -178683,11 +179066,6 @@ entities:
- type: Transform
pos: 50.5,17.5
parent: 8364
- - uid: 12030
- components:
- - type: Transform
- pos: -14.5,3.5
- parent: 8364
- uid: 12223
components:
- type: Transform
@@ -178834,11 +179212,10 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,-62.5
parent: 8364
- - uid: 18383
+ - uid: 18920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-21.5
+ pos: 22.5,-20.5
parent: 8364
- uid: 21305
components:
@@ -178968,6 +179345,11 @@ entities:
- type: Transform
pos: -2.5,38.5
parent: 8364
+ - uid: 26260
+ components:
+ - type: Transform
+ pos: 21.5,-20.5
+ parent: 8364
- uid: 26856
components:
- type: Transform
diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml
new file mode 100644
index 000000000000..88c29d31cd58
--- /dev/null
+++ b/Resources/Maps/convex.yml
@@ -0,0 +1,241696 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 65: FloorArcadeBlue
+ 61: FloorArcadeBlue2
+ 62: FloorArcadeRed
+ 11: FloorAstroGrass
+ 28: FloorBar
+ 9: FloorBlueCircuit
+ 27: FloorBoxing
+ 22: FloorBrokenWood
+ 25: FloorCarpetClown
+ 24: FloorClown
+ 8: FloorDark
+ 15: FloorDarkDiagonal
+ 14: FloorDarkHerringbone
+ 10: FloorDarkMono
+ 26: FloorEighties
+ 63: FloorFreezer
+ 6: FloorGlass
+ 13: FloorGold
+ 21: FloorHydro
+ 64: FloorKitchen
+ 29: FloorLaundry
+ 23: FloorMime
+ 31: FloorMowedAstroGrass
+ 4: FloorReinforced
+ 3: FloorSteel
+ 18: FloorSteelCheckerLight
+ 19: FloorSteelDamaged
+ 5: FloorSteelMono
+ 20: FloorTechMaint
+ 30: FloorTechMaint2
+ 16: FloorWhite
+ 12: FloorWhiteMini
+ 17: FloorWhiteMono
+ 7: FloorWood
+ 1: Lattice
+ 2: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Autogenerated grid
+ - type: Transform
+ pos: -97,-90
+ parent: 353
+ - type: MapGrid
+ chunks:
+ 1,1:
+ ind: 1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAA
+ version: 6
+ 1,4:
+ ind: 1,4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 1,5:
+ ind: 1,5
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 1,6:
+ ind: 1,6
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAADBQAAAAABBQAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 1,7:
+ ind: 1,7
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAADAgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 1,8:
+ ind: 1,8
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 1,9:
+ ind: 1,9
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,2:
+ ind: 10,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 10,3:
+ ind: 10,3
+ tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 10,4:
+ ind: 10,4
+ tiles: AgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,5:
+ ind: 10,5
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,6:
+ ind: 10,6
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,7:
+ ind: 10,7
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,8:
+ ind: 10,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,9:
+ ind: 10,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,2:
+ ind: 11,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,3:
+ ind: 11,3
+ tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,4:
+ ind: 11,4
+ tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAAABQAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAABCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAABCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA
+ version: 6
+ 2,3:
+ ind: 2,3
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAACAAAAAAACgAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAABCgAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABFAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAADCgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACgAAAAADCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAAACAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAAACAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAACgAAAAAACAAAAAADCgAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCgAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCgAAAAACCAAAAAACCAAAAAACCgAAAAAACAAAAAAACgAAAAABCAAAAAACCgAAAAABCAAAAAAACAAAAAADFAAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAA
+ version: 6
+ 2,4:
+ ind: 2,4
+ tiles: CAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCgAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACCAAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAACAAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAACAAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 2,5:
+ ind: 2,5
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABBQAAAAADAwAAAAAABQAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAABBQAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAD
+ version: 6
+ 2,6:
+ ind: 2,6
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAACAwAAAAAAAwAAAAAAAwAAAAADCAAAAAADCAAAAAACCAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAA
+ version: 6
+ 2,7:
+ ind: 2,7
+ tiles: AwAAAAAABQAAAAADBQAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABBQAAAAACBQAAAAAABQAAAAADAwAAAAACBQAAAAADBQAAAAAABQAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABQAAAAABAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAABCgAAAAACCgAAAAACCgAAAAABCAAAAAACCAAAAAACCAAAAAACAwAAAAADBQAAAAADAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAADCAAAAAACAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAABCgAAAAADCgAAAAADCgAAAAADCAAAAAACAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAACFgAAAAADBwAAAAADAgAAAAAABwAAAAACAgAAAAAACwAAAAAACwAAAAAACwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAFBwAAAAAABwAAAAACAgAAAAAABwAAAAABAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABFgAAAAABBwAAAAADAwAAAAABCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 2,8:
+ ind: 2,8
+ tiles: AAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 2,9:
+ ind: 2,9
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAABQAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,10:
+ ind: 3,10
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,3:
+ ind: 3,3
+ tiles: CAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAADAAAAAADDAAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACDAAAAAAADAAAAAADDAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAADAAAAAACDAAAAAABAgAAAAAABwAAAAADCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAACgAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAACCgAAAAAABQAAAAAAAgAAAAAACgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAB
+ version: 6
+ 3,4:
+ ind: 3,4
+ tiles: CAAAAAADCAAAAAAACgAAAAADCgAAAAABBQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCgAAAAACCAAAAAACCgAAAAACCgAAAAABBQAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACQAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCgAAAAAACgAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA
+ version: 6
+ 3,5:
+ ind: 3,5
+ tiles: AwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABBQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABFAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAADBQAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACBQAAAAADAwAAAAACBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 3,6:
+ ind: 3,6
+ tiles: AwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAEAAAAAAAEQAAAAAAEAAAAAADEQAAAAACEAAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAAAEQAAAAADEAAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,7:
+ ind: 3,7
+ tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAABAgAAAAAAEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAADAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADCwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAADCwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAABCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA
+ version: 6
+ 3,8:
+ ind: 3,8
+ tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA
+ version: 6
+ 3,9:
+ ind: 3,9
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAADAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAwAAAAAA
+ version: 6
+ 4,0:
+ ind: 4,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,1:
+ ind: 4,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,10:
+ ind: 4,10
+ tiles: AwAAAAABEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACEwAAAAAEAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAEwAAAAADAwAAAAAAAwAAAAADAwAAAAABEwAAAAACAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,2:
+ ind: 4,2
+ tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAC
+ version: 6
+ 4,3:
+ ind: 4,3
+ tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAC
+ version: 6
+ 4,4:
+ ind: 4,4
+ tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,5:
+ ind: 4,5
+ tiles: AgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEQAAAAACEQAAAAAAEQAAAAACEAAAAAAAEQAAAAACEQAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEQAAAAAAEQAAAAACEQAAAAADEAAAAAAAEQAAAAABEQAAAAABEAAAAAABEQAAAAADEQAAAAACEQAAAAAC
+ version: 6
+ 4,6:
+ ind: 4,6
+ tiles: AgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAADEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEAAAAAABEQAAAAABEQAAAAAAEAAAAAAAEQAAAAADEQAAAAAAEQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACAgAAAAAAEQAAAAABEQAAAAACEQAAAAADEAAAAAAAEQAAAAAAEQAAAAADEAAAAAADEQAAAAABEQAAAAAAEQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEQAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEQAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEQAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,7:
+ ind: 4,7
+ tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAACAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,8:
+ ind: 4,8
+ tiles: AgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,9:
+ ind: 4,9
+ tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADEwAAAAADAwAAAAACEwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,0:
+ ind: 5,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,1:
+ ind: 5,1
+ tiles: AwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAA
+ version: 6
+ 5,10:
+ ind: 5,10
+ tiles: AwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAAEAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAEwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 5,2:
+ ind: 5,2
+ tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAD
+ version: 6
+ 5,3:
+ ind: 5,3
+ tiles: BwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAA
+ version: 6
+ 5,4:
+ ind: 5,4
+ tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAADCwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAACgAAAAACCgAAAAADCgAAAAAACgAAAAABCAAAAAABCgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAAACgAAAAADCgAAAAABCgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAA
+ version: 6
+ 5,5:
+ ind: 5,5
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,6:
+ ind: 5,6
+ tiles: EAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADAwAAAAABAwAAAAABAwAAAAACFQAAAAAAAwAAAAADFQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADFQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,7:
+ ind: 5,7
+ tiles: AwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAA
+ version: 6
+ 5,8:
+ ind: 5,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 5,9:
+ ind: 5,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB
+ version: 6
+ 6,0:
+ ind: 6,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 6,1:
+ ind: 6,1
+ tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC
+ version: 6
+ 6,10:
+ ind: 6,10
+ tiles: CAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCgAAAAACCgAAAAABCgAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAACCAAAAAADCAAAAAABCgAAAAACCQAAAAAACgAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACgAAAAABCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAABAgAAAAAAFgAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAADBwAAAAADFgAAAAACBwAAAAABBwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,2:
+ ind: 6,2
+ tiles: AwAAAAADAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 6,3:
+ ind: 6,3
+ tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAABFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAwAAAAADAwAAAAAC
+ version: 6
+ 6,4:
+ ind: 6,4
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAD
+ version: 6
+ 6,5:
+ ind: 6,5
+ tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAABCwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAAACwAAAAABBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACBwAAAAAABwAAAAADBwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA
+ version: 6
+ 6,6:
+ ind: 6,6
+ tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAAAAwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAAACwAAAAADCwAAAAAACwAAAAADCwAAAAADFQAAAAAAAwAAAAADAwAAAAACAwAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAACCwAAAAACCwAAAAAACwAAAAABCwAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAADFQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAACAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADAwAAAAABAgAAAAAAAwAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAwAAAAADAgAAAAAAAwAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABAwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAB
+ version: 6
+ 6,7:
+ ind: 6,7
+ tiles: CAAAAAADAgAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAADBQAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAACAwAAAAABBQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 6,8:
+ ind: 6,8
+ tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 6,9:
+ ind: 6,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAACgAAAAACCgAAAAACCgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCgAAAAADCgAAAAABCgAAAAACAwAAAAAAAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADCgAAAAAACgAAAAACCgAAAAAAAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAADCgAAAAACCgAAAAABCgAAAAAAAwAAAAACBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABCgAAAAABCgAAAAACCgAAAAABAwAAAAAABQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAAD
+ version: 6
+ 7,1:
+ ind: 7,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 7,10:
+ ind: 7,10
+ tiles: BQAAAAABAwAAAAACAgAAAAAACAAAAAADCgAAAAADCQAAAAAACgAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAAAAwAAAAADAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAGBwAAAAACAgAAAAAABwAAAAADAgAAAAAAEwAAAAAEAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAEFgAAAAAEBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAABwAAAAACFgAAAAAFBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,2:
+ ind: 7,2
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAC
+ version: 6
+ 7,3:
+ ind: 7,3
+ tiles: AgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAACBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAABwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 7,4:
+ ind: 7,4
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAC
+ version: 6
+ 7,5:
+ ind: 7,5
+ tiles: AwAAAAACAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABEAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABCwAAAAACCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA
+ version: 6
+ 7,6:
+ ind: 7,6
+ tiles: AwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABwAAAAAAAwAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBwAAAAAAAwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAACAwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAAgAAAAAAAwAAAAAD
+ version: 6
+ 7,7:
+ ind: 7,7
+ tiles: HAAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAABFAAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADBQAAAAABBQAAAAACBQAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAABQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACBQAAAAABBQAAAAAB
+ version: 6
+ 7,8:
+ ind: 7,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAABQAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABBQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAB
+ version: 6
+ 7,9:
+ ind: 7,9
+ tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAACBQAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAADCgAAAAACCgAAAAAACgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 8,2:
+ ind: 8,2
+ tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABBQAAAAABAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACAgAAAAAA
+ version: 6
+ 8,3:
+ ind: 8,3
+ tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAABAwAAAAABBQAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAABAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAAACgAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA
+ version: 6
+ 8,4:
+ ind: 8,4
+ tiles: AwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAAACgAAAAADCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAABCAAAAAACCgAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAABCgAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCAAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAADCgAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAADCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 8,5:
+ ind: 8,5
+ tiles: AwAAAAADAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAACCwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAABCwAAAAABCwAAAAADCwAAAAAACwAAAAACCwAAAAAACwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABDgAAAAAACAAAAAAACgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAA
+ version: 6
+ 8,6:
+ ind: 8,6
+ tiles: AwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADBQAAAAACAwAAAAABBQAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 8,7:
+ ind: 8,7
+ tiles: AwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACgAAAAACCAAAAAABCAAAAAAACAAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAACgAAAAACCAAAAAACCAAAAAAACAAAAAABCgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAACAwAAAAAAAgAAAAAACgAAAAABCAAAAAACCAAAAAABCAAAAAABCgAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAAAAwAAAAABAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAB
+ version: 6
+ 8,8:
+ ind: 8,8
+ tiles: BQAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAABQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBQAAAAABAwAAAAADBQAAAAACBQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADBQAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABQAAAAABAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABAwAAAAADAgAAAAAA
+ version: 6
+ 8,9:
+ ind: 8,9
+ tiles: CAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADAwAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAADAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 9,2:
+ ind: 9,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,3:
+ ind: 9,3
+ tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBQAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,4:
+ ind: 9,4
+ tiles: CAAAAAABCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADCAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAD
+ version: 6
+ 9,5:
+ ind: 9,5
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,6:
+ ind: 9,6
+ tiles: AwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAA
+ version: 6
+ 9,7:
+ ind: 9,7
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADBwAAAAACBwAAAAABBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAABwAAAAACBwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAA
+ version: 6
+ 9,8:
+ ind: 9,8
+ tiles: BwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAABBwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAC
+ version: 6
+ 9,9:
+ ind: 9,9
+ tiles: AwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,6:
+ ind: 0,6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 7,0:
+ ind: 7,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,7:
+ ind: 0,7
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,11:
+ ind: 5,11
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,11:
+ ind: 6,11
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 8,10:
+ ind: 8,10
+ tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 13771: 67,27
+ 13772: 67,34
+ 13773: 83,27
+ 13774: 83,34
+ 13777: 67,42
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1223: 71,126
+ 1224: 71,130
+ 1225: 71,134
+ 1226: 71,138
+ 1227: 71,142
+ 1228: 71,146
+ 1229: 71,150
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1932: 66,110
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1933: 67,107
+ 1934: 71,107
+ 1935: 77,107
+ 1936: 81,107
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1937: 82,110
+ - node:
+ zIndex: 1
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 14230: 83,42
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt1
+ decals:
+ 9024: 45.431576,122.87691
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt1
+ decals:
+ 10164: 132.81339,80.659485
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt4
+ decals:
+ 4777: 112.47353,93.77849
+ 5489: 84.0029,67.959915
+ 9025: 49.570465,122.30052
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt4
+ decals:
+ 10089: 131.26102,82.456924
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt5
+ decals:
+ 10088: 136.92108,80.43339
+ 10165: 132.73006,80.62476
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt7
+ decals:
+ 4776: 112.40408,90.28312
+ 9026: 48.285744,125.06441
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt8
+ decals:
+ 4775: 107.001305,91.00999
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt8
+ decals:
+ 10091: 136.20242,81.625244
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt9
+ decals:
+ 4774: 108.14946,93.3248
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Blasto
+ decals:
+ 7682: 96.94982,30.086082
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 10049: 150,88
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 584: 47,60
+ 585: 48,60
+ 594: 43,76
+ 595: 47,48
+ 596: 52,24
+ 597: 47,28
+ 598: 47,20
+ 635: 60,61
+ 1278: 121,138
+ 1279: 121,136
+ 1280: 95,136
+ 1281: 95,138
+ 1282: 105,154
+ 1283: 111,154
+ 1284: 105,158
+ 1285: 99,158
+ 1286: 117,156
+ 1287: 117,152
+ 1288: 118,152
+ 1291: 123,122
+ 1293: 129,126
+ 1294: 138,121
+ 1295: 125,136
+ 1296: 125,138
+ 2895: 31,107
+ 2896: 31,101
+ 2897: 36,112
+ 2898: 42,109
+ 2899: 44,109
+ 2900: 48,105
+ 2901: 46,100
+ 2902: 46,101
+ 2905: 38,84
+ 2907: 52,86
+ 2996: 40,110
+ 2998: 38,110
+ 4132: 51,82
+ 4133: 52,82
+ 4134: 47,82
+ 4136: 48,82
+ 8325: 59,76
+ 8326: 65,78
+ 8337: 58,124
+ 8793: 91,161
+ 8794: 75,158
+ 8795: 97,172
+ 9813: 138,147
+ 9814: 146,145
+ 9815: 160,138
+ 9816: 150,131
+ 9818: 141,119
+ 9819: 157,117
+ 9820: 131,117
+ 9822: 93,155
+ 9823: 68,121
+ 9824: 66,114
+ 9826: 98,110
+ 9827: 140,96
+ 9829: 129,85
+ 9830: 144,77
+ 9831: 118,73
+ 9835: 94,73
+ 9836: 83,25
+ 9837: 67,25
+ 9838: 72,43
+ 9840: 64,65
+ 9842: 43,82
+ 9843: 55,113
+ 11055: 87,84
+ 11222: 98,88
+ 11223: 114,88
+ 12144: 54,78
+ 13759: 66,49
+ 13798: 51,101
+ 13799: 52,101
+ 13800: 49,101
+ 13801: 48,101
+ 14002: 71,123
+ 14003: 72,123
+ 14013: 97,151
+ 14014: 97,152
+ 14067: 89,113
+ 14180: 52,63
+ 14181: 54,63
+ 14276: 84,45
+ 14325: 91,52
+ 14340: 106,50
+ 14502: 32,89
+ 14503: 32,91
+ 14507: 47,95
+ 14508: 49,95
+ 14509: 30,99
+ 14510: 32,99
+ 14517: 65,103
+ 14518: 65,104
+ 14519: 83,103
+ 14520: 83,104
+ 14521: 109,54
+ 14561: 118,96
+ 14562: 119,96
+ 14563: 123,96
+ 14564: 93,96
+ 14565: 93,97
+ 14566: 98,90
+ 14567: 100,90
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 9927: 153,103
+ 9928: 153,104
+ 9929: 154,104
+ 9930: 154,103
+ 9933: 150,103
+ 9934: 150,104
+ 9935: 149,104
+ 9936: 149,103
+ 9937: 148,103
+ 9938: 148,104
+ 9939: 154,108
+ 9940: 153,108
+ 9941: 152,108
+ 9942: 152,109
+ 9943: 153,109
+ 9944: 154,109
+ 9945: 150,108
+ 9946: 149,108
+ 9947: 148,108
+ 9948: 148,109
+ 9949: 150,109
+ 9950: 149,109
+ 9952: 153,105
+ 9953: 154,105
+ 9954: 152,110
+ 9955: 153,110
+ 9956: 154,110
+ 9958: 150,105
+ 9959: 149,105
+ 9960: 148,105
+ 14004: 87,117
+ 14006: 87,119
+ 14071: 100,120
+ 14072: 100,121
+ 14073: 120,127
+ 14074: 120,128
+ 14075: 96,128
+ 14076: 96,129
+ 14077: 120,146
+ 14078: 120,147
+ 14079: 122,116
+ 14080: 120,116
+ 14089: 86,66
+ 14090: 86,68
+ 14183: 107,96
+ 14184: 108,96
+ 14341: 145,154
+ 14342: 149,147
+ 14343: 148,147
+ 14344: 139,153
+ 14345: 138,153
+ 14346: 146,136
+ 14347: 144,136
+ 14349: 160,117
+ 14350: 160,118
+ 14351: 140,78
+ 14352: 141,78
+ 14355: 117,65
+ 14356: 117,66
+ 14366: 91,58
+ 14367: 58,110
+ 14368: 58,111
+ 14369: 157,123
+ 14370: 158,123
+ 14371: 158,121
+ 14372: 157,121
+ 14385: 68,117
+ 14386: 73,119
+ 14387: 75,119
+ 14388: 68,119
+ 14393: 100,125
+ 14394: 116,125
+ 14395: 113,124
+ 14396: 103,124
+ 14599: 24,102
+ 14600: 24,103
+ 14601: 25,105
+ 14602: 27,105
+ 14610: 36,116
+ 14611: 36,117
+ 14612: 68,36
+ 14613: 68,37
+ 14614: 82,36
+ 14615: 82,37
+ 14616: 148,72
+ 14617: 149,72
+ 14618: 142,47
+ 14619: 142,48
+ 14620: 138,44
+ 14621: 138,45
+ 14622: 142,44
+ 14623: 142,45
+ 14625: 152,51
+ 14626: 152,53
+ 14627: 155,51
+ 14628: 155,53
+ 14632: 153,66
+ 14640: 142,87
+ 14641: 142,89
+ 14644: 146,94
+ 14645: 153,94
+ 14646: 153,93
+ 14647: 156,100
+ 14648: 154,100
+ 14658: 137,59
+ 14659: 145,58
+ 14660: 144,58
+ 14661: 135,58
+ 14662: 133,58
+ 14665: 130,62
+ 14666: 130,66
+ 14667: 132,66
+ 14668: 132,62
+ 14669: 133,62
+ 14673: 124,56
+ 14674: 126,56
+ 14675: 124,47
+ 14676: 124,49
+ 14682: 47,68
+ 14683: 49,68
+ 14684: 51,68
+ 14685: 53,68
+ 14686: 51,73
+ 14687: 51,75
+ 14688: 119,149
+ 14689: 117,149
+ 14694: 130,140
+ 14695: 132,140
+ 14696: 133,135
+ 14697: 134,135
+ 14698: 134,133
+ 14699: 133,133
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 14376: 58,80
+ 14377: 58,81
+ 14378: 105,115
+ 14379: 111,115
+ 14380: 85,123
+ 14381: 83,123
+ 14383: 77,112
+ 14384: 78,112
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 626: 55,61
+ 627: 56,61
+ 628: 57,61
+ 629: 58,61
+ 630: 59,61
+ 1944: 63,87
+ 1945: 66,84
+ 1946: 77,85
+ 1947: 71,88
+ 1950: 78,88
+ 1954: 83,84
+ 1956: 85,102
+ 1957: 87,106
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 14404: 120,125
+ 14405: 74,116
+ 14410: 124,101
+ 14411: 95,104
+ 14415: 125,103
+ 14428: 152,112
+ 14431: 152,95
+ 14438: 135,70
+ 14443: 138,51
+ 14465: 50,53
+ 14477: 72,85
+ 14483: 89,110
+ 14487: 49,90
+ 14493: 36,110
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 14400: 93,141
+ 14401: 94,156
+ 14402: 122,156
+ 14403: 123,141
+ 14406: 68,116
+ 14407: 106,119
+ 14408: 98,106
+ 14409: 118,106
+ 14412: 96,104
+ 14413: 106,96
+ 14414: 115,99
+ 14417: 142,141
+ 14419: 160,137
+ 14420: 142,143
+ 14424: 125,140
+ 14425: 160,119
+ 14426: 155,123
+ 14427: 153,112
+ 14429: 156,96
+ 14430: 152,96
+ 14432: 144,96
+ 14433: 138,107
+ 14434: 126,101
+ 14435: 117,64
+ 14436: 128,74
+ 14437: 135,69
+ 14439: 146,72
+ 14440: 151,55
+ 14441: 138,49
+ 14442: 138,52
+ 14444: 122,46
+ 14445: 99,48
+ 14446: 101,48
+ 14447: 98,39
+ 14449: 104,42
+ 14455: 94,58
+ 14456: 94,63
+ 14458: 82,25
+ 14459: 68,25
+ 14460: 63,56
+ 14461: 46,42
+ 14462: 43,44
+ 14463: 35,48
+ 14464: 38,64
+ 14466: 51,61
+ 14467: 55,54
+ 14469: 40,70
+ 14473: 61,72
+ 14474: 90,71
+ 14475: 84,84
+ 14476: 59,87
+ 14478: 65,84
+ 14479: 63,90
+ 14480: 77,97
+ 14481: 65,90
+ 14482: 84,90
+ 14484: 69,104
+ 14485: 73,112
+ 14486: 54,107
+ 14488: 46,80
+ 14489: 42,82
+ 14490: 40,90
+ 14491: 24,99
+ 14492: 31,117
+ 14494: 48,110
+ 14495: 54,77
+ 14496: 147,154
+ 14546: 131,105
+ 14774: 94,53
+ 14775: 46,95
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 14631: 144,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 2911: 27,107
+ 2912: 27,109
+ 4137: 27,113
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 4101: 35,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 4096: 32,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 454: 35,73
+ 4100: 35,66
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 455: 35,74
+ 456: 35,75
+ 457: 35,76
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 4098: 34,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 453: 34,73
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 4106: 32,67
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 4585: 111,110
+ 4586: 112,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 4583: 104,109
+ 4584: 105,110
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 7078: 112,107
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 7079: 104,107
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 4623: 111,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 4622: 105,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 4577: 112,108
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 4578: 106,110
+ 4579: 107,110
+ 4580: 108,110
+ 4581: 109,110
+ 4582: 110,110
+ 11933: 120,108
+ 11934: 121,108
+ 11935: 122,108
+ 13921: 117,52
+ 13922: 118,52
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 4575: 104,108
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi1
+ decals:
+ 10133: 131.90627,83.08299
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi2
+ decals:
+ 10126: 133.25272,81.85429
+ 10127: 132.79611,82.367966
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi3
+ decals:
+ 10131: 131.33711,83.21163
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi4
+ decals:
+ 10118: 130.9385,79.93
+ 10121: 132.74718,80.011536
+ 10130: 132.14679,82.395584
+ 10132: 132.33026,83.034065
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk1
+ decals:
+ 294: 36,60
+ 1922: 69.535706,110.0194
+ 1926: 72.493835,110.02403
+ 1928: 76.50284,110.03792
+ 1931: 78.47113,110.04718
+ 10115: 137.1259,80.69048
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk2
+ decals:
+ 293: 36,57
+ 1923: 70.464264,109.98699
+ 1927: 74.50284,110.04718
+ 1930: 77.41626,110.05644
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk3
+ decals:
+ 292: 36,54
+ 1924: 71.456795,110.01015
+ 1925: 73.53087,110.00551
+ 1929: 75.56302,110.03792
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 8814: 87,162
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 14012: 101,147
+ - node:
+ color: '#000000C7'
+ id: CheckerNWSE
+ decals:
+ 10891: 118,101
+ 10898: 117,102
+ 10899: 117,101
+ 10900: 117,100
+ 10901: 117,99
+ 10902: 117,98
+ 10903: 118,98
+ 10904: 119,98
+ 10906: 118,100
+ 10907: 118,102
+ 10908: 119,102
+ 10909: 119,101
+ 10910: 119,100
+ 10911: 119,99
+ 10912: 120,99
+ 10913: 120,101
+ 10914: 120,102
+ 10915: 120,100
+ 10916: 120,98
+ 10917: 121,98
+ 10918: 121,99
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: Clandestine
+ decals:
+ 7683: 104.87894,18.909126
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Cyber
+ decals:
+ 7684: 111.23664,26.134521
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 636: 61,61
+ 711: 107,147
+ 712: 108,147
+ 713: 109,147
+ 1238: 135,122
+ 2908: 29,108
+ 2909: 29,112
+ 2910: 29,116
+ 3585: 125,65
+ 3586: 125,68
+ 3587: 125,71
+ 3588: 125,74
+ 3589: 134,52
+ 3590: 134,49
+ 3591: 134,46
+ 4037: 48,81
+ 4039: 48,83
+ 4043: 51,81
+ 4044: 52,81
+ 4047: 51,83
+ 4048: 52,83
+ 4049: 47,81
+ 4051: 47,83
+ 10272: 132,127
+ 10273: 134,127
+ 10274: 136,127
+ 10825: 102,147
+ 10828: 102,146
+ 12022: 139,110
+ 12023: 137,110
+ 13802: 48,100
+ 13803: 49,100
+ 13804: 49,102
+ 13805: 48,102
+ 13806: 51,100
+ 13807: 52,100
+ 13808: 52,102
+ 13809: 51,102
+ 14028: 98,136
+ 14029: 98,137
+ 14030: 98,138
+ 14031: 118,136
+ 14032: 118,137
+ 14033: 118,138
+ 14037: 83,125
+ 14038: 84,125
+ 14039: 83,153
+ 14042: 84,153
+ 14149: 69,124
+ 14504: 32,86
+ 14505: 32,94
+ 14506: 48,95
+ 14511: 31,99
+ 14512: 46,110
+ 14513: 46,114
+ 14514: 40,114
+ 14515: 43,114
+ 14568: 99,90
+ 14569: 61,90
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 9961: 152,105
+ 9962: 150,110
+ 12171: 59,84
+ 12172: 59,85
+ 12173: 59,86
+ 14070: 87,118
+ 14081: 121,116
+ 14091: 86,67
+ 14182: 53,63
+ 14348: 145,136
+ 14373: 157,122
+ 14374: 158,122
+ 14389: 68,118
+ 14390: 74,119
+ 14391: 117,125
+ 14392: 99,125
+ 14606: 26,105
+ 14607: 39,110
+ 14608: 50,107
+ 14609: 52,105
+ 14624: 138,46
+ 14629: 152,52
+ 14630: 155,52
+ 14642: 142,88
+ 14643: 146,93
+ 14649: 155,100
+ 14663: 134,58
+ 14664: 130,64
+ 14670: 135,64
+ 14671: 128,68
+ 14672: 125,56
+ 14677: 124,48
+ 14678: 48,68
+ 14679: 52,68
+ 14680: 51,74
+ 14681: 47,71
+ 14690: 118,149
+ 14691: 131,140
+ 14692: 133,134
+ 14693: 134,134
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 2198: 136,102
+ 2199: 136,103
+ 2202: 139,111
+ 2203: 139,112
+ 2204: 137,111
+ 2205: 137,112
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 14382: 84,123
+ - node:
+ zIndex: 1
+ color: '#52B4E9FF'
+ id: DeliveryGreyscale
+ decals:
+ 12191: 63,84
+ 12192: 63,85
+ - node:
+ zIndex: 1
+ color: '#9FED58FF'
+ id: DeliveryGreyscale
+ decals:
+ 12183: 61,87
+ 12184: 60,87
+ - node:
+ zIndex: 1
+ color: '#D381C9FF'
+ id: DeliveryGreyscale
+ decals:
+ 12189: 63,80
+ 12190: 63,81
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: DeliveryGreyscale
+ decals:
+ 12176: 60,80
+ 12177: 60,81
+ 12178: 60,82
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#32CD32FF'
+ id: Diablo
+ decals:
+ 8118: 160.29434,51.834034
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Diablo
+ decals:
+ 7686: 123.918495,31.093029
+ - node:
+ cleanable: True
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 10043: 151,76
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 4322: 31,108
+ 4323: 35,110
+ 4324: 31,112
+ 4325: 33,116
+ 4326: 36,115
+ 4327: 35,112
+ 4328: 30,114
+ 4329: 27,115
+ 4330: 26,112
+ 4331: 27,108
+ 4332: 34,111
+ 4333: 31,116
+ 4334: 33,117
+ 4335: 30,109
+ 4336: 30,107
+ 4337: 33,108
+ 4338: 30,114
+ 7480: 91,18
+ 7481: 89,21
+ 7482: 94,23
+ 7483: 97,19
+ 7484: 98,22
+ 7485: 96,23
+ 7486: 101,21
+ 7487: 102,18
+ 7488: 102,25
+ 7489: 99,25
+ 7490: 100,27
+ 7491: 100,28
+ 7492: 98,27
+ 7493: 102,27
+ 7494: 94,24
+ 7495: 96,26
+ 7496: 94,28
+ 7497: 97,31
+ 7498: 98,30
+ 7499: 91,25
+ 7500: 89,28
+ 7501: 100,30
+ 7502: 103,32
+ 7503: 106,30
+ 7504: 105,28
+ 7505: 106,26
+ 7506: 105,23
+ 7507: 104,20
+ 7508: 105,19
+ 7509: 108,19
+ 7510: 109,18
+ 7511: 114,16
+ 7512: 114,19
+ 7513: 112,22
+ 7514: 109,23
+ 7515: 112,25
+ 7516: 111,27
+ 7517: 113,29
+ 7518: 112,30
+ 7519: 115,30
+ 7520: 118,30
+ 7521: 119,29
+ 7522: 120,32
+ 7523: 119,33
+ 7524: 120,36
+ 7525: 118,37
+ 7526: 119,38
+ 7527: 119,40
+ 7528: 119,41
+ 7529: 118,41
+ 7530: 115,41
+ 7531: 114,39
+ 7532: 115,37
+ 7533: 114,36
+ 7534: 125,35
+ 7535: 122,37
+ 7536: 125,39
+ 7537: 125,36
+ 7538: 123,36
+ 7539: 125,37
+ 7540: 123,32
+ 7541: 122,31
+ 7542: 123,30
+ 7543: 123,27
+ 7544: 124,25
+ 7545: 120,23
+ 7546: 119,20
+ 7547: 119,19
+ 7548: 117,20
+ 7549: 117,21
+ 7550: 120,25
+ 7551: 118,26
+ 7552: 117,27
+ 7553: 116,26
+ 7554: 110,22
+ 7858: 68,23
+ 7859: 67,21
+ 7860: 69,16
+ 7861: 73,17
+ 7862: 76,17
+ 7863: 79,17
+ 7864: 83,17
+ 7865: 83,21
+ 7866: 84,23
+ 7977: 81,16
+ 8022: 155,81
+ 8023: 159,83
+ 8024: 161,78
+ 8025: 161,81
+ 8398: 95,110
+ 8399: 91,103
+ 8401: 95,93
+ 8402: 96,86
+ 8403: 96,80
+ 8404: 90,79
+ 8405: 76,80
+ 8406: 68,78
+ 8407: 63,77
+ 8408: 62,67
+ 8479: 151,145
+ 8480: 156,145
+ 8481: 161,145
+ 8482: 160,149
+ 8483: 162,142
+ 8484: 162,137
+ 8485: 162,134
+ 8486: 161,131
+ 8487: 163,130
+ 8488: 161,125
+ 8489: 162,120
+ 8490: 162,115
+ 8491: 161,113
+ 8492: 153,122
+ 8493: 153,131
+ 8534: 116,60
+ 8536: 116,70
+ 8537: 96,73
+ 8538: 96,69
+ 8539: 96,64
+ 8540: 96,59
+ 8541: 105,54
+ 8542: 102,55
+ 8543: 91,55
+ 8635: 108,168
+ 8636: 112,170
+ 8637: 114,167
+ 8785: 77,161
+ 8786: 83,161
+ 8787: 81,158
+ 8788: 76,160
+ 8789: 87,161
+ 8790: 92,167
+ 8791: 93,172
+ 8792: 95,171
+ 8895: 52,145
+ 9019: 51,128
+ 9020: 53,131
+ 9021: 56,128
+ 9022: 52,134
+ 9023: 54,136
+ 9160: 31,120
+ 9161: 34,123
+ 9162: 34,121
+ 9226: 24,115
+ 9227: 21,116
+ 9459: 22,85
+ 9460: 20,83
+ 9461: 24,81
+ 9462: 24,79
+ 9463: 25,79
+ 9467: 24,96
+ 9468: 21,97
+ 9469: 21,96
+ 9470: 18,100
+ 9471: 22,102
+ 9472: 22,100
+ 9473: 19,104
+ 9474: 27,96
+ 9475: 28,97
+ 9476: 37,96
+ 9478: 34,96
+ 9479: 26,88
+ 9480: 26,86
+ 9481: 27,83
+ 9482: 27,81
+ 9483: 28,79
+ 9484: 28,75
+ 9485: 29,73
+ 9486: 29,69
+ 9487: 24,69
+ 9488: 21,72
+ 9489: 24,75
+ 9490: 19,78
+ 9491: 33,80
+ 9492: 35,80
+ 9493: 37,80
+ 9495: 47,78
+ 9496: 50,78
+ 10227: 53,151
+ 10228: 54,154
+ 10229: 55,148
+ 10252: 65,122
+ 10253: 60,121
+ 10293: 139,134
+ 10294: 138,131
+ 10295: 141,131
+ 10296: 140,128
+ 10297: 141,127
+ 10298: 140,126
+ 10299: 140,123
+ 10300: 141,121
+ 10329: 124,167
+ 10330: 122,168
+ 10331: 125,170
+ 10332: 123,171
+ 10333: 122,170
+ 10334: 120,168
+ 10335: 119,171
+ 10377: 100,165
+ 10378: 98,167
+ 10379: 96,165
+ 10380: 94,166
+ 10381: 100,169
+ 10382: 102,168
+ 10383: 103,165
+ 10384: 105,167
+ 10385: 100,171
+ 10397: 48,121
+ 10408: 40,123
+ 10409: 36,123
+ 10410: 38,124
+ 10411: 42,125
+ 10412: 42,122
+ 10418: 37,120
+ 10419: 41,119
+ 10420: 44,119
+ 10476: 29,122
+ 10477: 27,121
+ 10478: 21,121
+ 10493: 21,111
+ 10494: 24,113
+ 10500: 24,110
+ 10538: 164,148
+ 10539: 169,135
+ 10715: 88,47
+ 10716: 86,48
+ 10717: 88,43
+ 10718: 88,45
+ 10719: 86,41
+ 10720: 88,39
+ 10721: 102,37
+ 10722: 99,34
+ 10723: 103,34
+ 11047: 95,93
+ 11048: 96,87
+ 11049: 93,88
+ 11050: 96,81
+ 11051: 93,84
+ 11052: 92,80
+ 11053: 86,81
+ 11054: 88,82
+ 12135: 115,70
+ 12136: 116,68
+ 12206: 63,80
+ 12207: 60,81
+ 12208: 63,82
+ 12209: 63,84
+ 13907: 101,54
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 8060: 141,83
+ 8061: 142,80
+ 8062: 144,81
+ 8063: 155,42
+ 8064: 157,43
+ 8065: 156,44
+ 8119: 161,44
+ 8120: 159,42
+ 8121: 163,44
+ 8122: 160,47
+ 8123: 162,49
+ 8124: 161,51
+ 8146: 155,85
+ 8147: 155,87
+ 8158: 162,64
+ 8159: 160,66
+ 8160: 162,62
+ 8196: 153,43
+ 8197: 152,47
+ 8198: 151,44
+ 8199: 146,46
+ 8200: 145,45
+ 8201: 158,46
+ 8203: 158,51
+ 8204: 157,54
+ 8205: 158,57
+ 8206: 158,58
+ 8207: 159,60
+ 8208: 158,65
+ 8209: 156,66
+ 8210: 156,69
+ 8211: 156,72
+ 8213: 150,77
+ 8214: 147,75
+ 8215: 148,74
+ 8216: 146,80
+ 8217: 147,80
+ 8219: 146,85
+ 8220: 151,85
+ 8221: 141,85
+ 8222: 136,86
+ 8223: 133,85
+ 8224: 140,91
+ 10198: 77,156
+ 13842: 50,100
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 10533: 164,144
+ - node:
+ cleanable: True
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 10044: 152,76
+ 10045: 153,77
+ 10046: 153,76
+ 10047: 148,77
+ 10048: 149,76
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 4237: 32,112
+ 4238: 31,111
+ 4239: 30,109
+ 4240: 32,107
+ 4241: 34,109
+ 4242: 36,110
+ 4243: 36,113
+ 4244: 36,116
+ 4245: 34,117
+ 4246: 32,115
+ 4247: 30,113
+ 4248: 33,111
+ 4249: 30,107
+ 4250: 27,108
+ 4251: 28,109
+ 4252: 27,111
+ 4253: 27,112
+ 4254: 26,112
+ 4255: 26,116
+ 4256: 27,115
+ 4262: 34,110
+ 4263: 36,111
+ 4264: 32,110
+ 4265: 30,108
+ 4266: 35,113
+ 4267: 32,113
+ 4268: 31,113
+ 4277: 34,114
+ 4278: 34,115
+ 4279: 34,113
+ 4284: 30,112
+ 4285: 30,112
+ 4286: 31,110
+ 4287: 31,110
+ 4288: 31,108
+ 4289: 31,108
+ 4290: 31,108
+ 4291: 33,108
+ 4292: 33,108
+ 4293: 33,109
+ 4294: 34,108
+ 4295: 34,108
+ 4296: 33,108
+ 4297: 33,109
+ 4298: 32,108
+ 4299: 32,109
+ 4300: 30,111
+ 4311: 32,111
+ 4312: 32,111
+ 4313: 34,111
+ 4314: 35,110
+ 4315: 35,112
+ 4316: 35,112
+ 4317: 31,115
+ 4318: 31,115
+ 4319: 34,107
+ 4320: 34,107
+ 4321: 34,107
+ 7257: 87,18
+ 7258: 87,19
+ 7259: 88,18
+ 7260: 89,20
+ 7261: 88,20
+ 7262: 89,18
+ 7263: 91,18
+ 7264: 92,19
+ 7265: 94,20
+ 7266: 95,19
+ 7267: 95,18
+ 7268: 93,18
+ 7269: 92,22
+ 7270: 91,22
+ 7271: 89,22
+ 7272: 89,23
+ 7273: 92,23
+ 7274: 95,23
+ 7275: 96,21
+ 7276: 98,20
+ 7277: 98,18
+ 7278: 96,18
+ 7279: 99,18
+ 7280: 99,21
+ 7281: 98,22
+ 7282: 97,23
+ 7283: 96,22
+ 7284: 102,18
+ 7285: 101,19
+ 7286: 102,20
+ 7287: 101,20
+ 7288: 101,21
+ 7289: 102,22
+ 7290: 101,23
+ 7291: 102,25
+ 7292: 100,25
+ 7293: 99,25
+ 7294: 100,27
+ 7295: 100,28
+ 7296: 99,27
+ 7297: 101,26
+ 7298: 102,26
+ 7299: 102,27
+ 7300: 102,28
+ 7301: 99,28
+ 7302: 98,27
+ 7303: 98,26
+ 7304: 98,25
+ 7305: 95,23
+ 7306: 95,24
+ 7307: 95,25
+ 7308: 94,26
+ 7309: 95,27
+ 7310: 96,29
+ 7311: 95,29
+ 7312: 95,30
+ 7313: 95,32
+ 7314: 97,32
+ 7315: 92,25
+ 7316: 92,26
+ 7317: 91,27
+ 7318: 90,28
+ 7319: 89,27
+ 7320: 88,27
+ 7321: 88,26
+ 7322: 89,25
+ 7323: 90,25
+ 7324: 90,26
+ 7325: 97,30
+ 7326: 98,31
+ 7327: 101,31
+ 7328: 101,30
+ 7329: 103,31
+ 7330: 104,31
+ 7331: 105,30
+ 7332: 104,29
+ 7333: 106,31
+ 7334: 106,32
+ 7335: 106,29
+ 7336: 105,26
+ 7337: 105,26
+ 7338: 106,25
+ 7339: 105,24
+ 7340: 104,26
+ 7341: 105,27
+ 7342: 105,28
+ 7343: 106,28
+ 7344: 104,23
+ 7345: 105,23
+ 7346: 104,21
+ 7347: 105,20
+ 7348: 105,19
+ 7349: 107,20
+ 7350: 107,19
+ 7351: 108,18
+ 7352: 109,19
+ 7353: 110,20
+ 7354: 113,18
+ 7355: 114,19
+ 7356: 113,20
+ 7357: 112,20
+ 7358: 114,18
+ 7359: 114,17
+ 7360: 113,16
+ 7361: 110,22
+ 7362: 109,23
+ 7363: 109,24
+ 7364: 111,24
+ 7365: 111,23
+ 7366: 112,23
+ 7367: 113,23
+ 7368: 112,24
+ 7369: 112,23
+ 7370: 112,25
+ 7371: 111,27
+ 7372: 112,27
+ 7373: 113,28
+ 7374: 113,26
+ 7376: 117,26
+ 7377: 118,26
+ 7378: 119,25
+ 7379: 120,26
+ 7380: 120,27
+ 7381: 116,27
+ 7382: 115,26
+ 7383: 115,26
+ 7384: 116,22
+ 7385: 118,22
+ 7386: 119,22
+ 7387: 119,21
+ 7388: 120,20
+ 7389: 120,19
+ 7390: 119,19
+ 7391: 118,19
+ 7392: 117,19
+ 7393: 116,20
+ 7394: 118,21
+ 7395: 119,22
+ 7396: 119,22
+ 7397: 122,26
+ 7398: 124,25
+ 7399: 124,26
+ 7400: 122,28
+ 7401: 123,28
+ 7402: 124,30
+ 7403: 123,31
+ 7404: 123,32
+ 7405: 122,33
+ 7406: 119,29
+ 7407: 117,30
+ 7408: 115,30
+ 7409: 114,30
+ 7410: 113,29
+ 7411: 112,30
+ 7412: 113,30
+ 7413: 116,31
+ 7414: 117,30
+ 7415: 118,30
+ 7416: 119,31
+ 7417: 119,34
+ 7418: 119,35
+ 7419: 120,37
+ 7420: 119,38
+ 7421: 120,39
+ 7422: 120,40
+ 7423: 119,41
+ 7424: 118,40
+ 7425: 119,39
+ 7426: 118,37
+ 7427: 118,35
+ 7428: 114,36
+ 7429: 113,37
+ 7430: 114,39
+ 7431: 115,40
+ 7433: 115,41
+ 7434: 114,41
+ 7435: 114,40
+ 7436: 114,39
+ 7437: 113,42
+ 7438: 114,41
+ 7439: 115,39
+ 7440: 115,37
+ 7441: 115,36
+ 7442: 115,38
+ 7443: 116,38
+ 7444: 115,35
+ 7445: 113,35
+ 7446: 123,35
+ 7447: 125,35
+ 7448: 126,36
+ 7449: 125,38
+ 7450: 124,38
+ 7451: 123,38
+ 7452: 122,37
+ 7453: 122,36
+ 7454: 124,36
+ 7455: 125,37
+ 7456: 126,38
+ 7457: 126,39
+ 7458: 124,39
+ 7459: 122,39
+ 7460: 123,37
+ 7461: 124,36
+ 7462: 123,26
+ 7463: 123,26
+ 7464: 101,25
+ 7465: 101,26
+ 7466: 100,26
+ 7467: 94,30
+ 7468: 95,31
+ 7469: 91,30
+ 7470: 90,31
+ 7471: 91,32
+ 7472: 92,31
+ 7473: 91,30
+ 7474: 102,32
+ 7475: 104,32
+ 7476: 104,31
+ 7477: 103,33
+ 7478: 105,32
+ 7479: 106,30
+ 7817: 84,16
+ 7818: 82,17
+ 7819: 81,17
+ 7820: 78,17
+ 7821: 74,18
+ 7822: 73,17
+ 7823: 77,17
+ 7824: 77,16
+ 7825: 75,16
+ 7826: 72,17
+ 7827: 71,17
+ 7828: 69,16
+ 7829: 68,17
+ 7830: 70,17
+ 7832: 68,17
+ 7833: 67,18
+ 7834: 68,19
+ 7835: 68,20
+ 7836: 68,22
+ 7837: 68,22
+ 7838: 67,23
+ 7839: 66,23
+ 7840: 66,23
+ 7841: 67,23
+ 7842: 84,23
+ 7843: 83,23
+ 7844: 83,22
+ 7845: 83,21
+ 7846: 84,19
+ 7847: 85,19
+ 7848: 84,18
+ 7849: 83,16
+ 7850: 81,16
+ 7851: 80,17
+ 7852: 79,18
+ 7853: 78,16
+ 7854: 73,16
+ 7855: 69,16
+ 7856: 70,16
+ 7857: 69,16
+ 7867: 86,23
+ 7868: 86,24
+ 7869: 86,26
+ 7870: 86,27
+ 7871: 86,29
+ 7872: 86,31
+ 7873: 86,33
+ 7874: 86,35
+ 7875: 86,37
+ 7876: 86,39
+ 7877: 86,40
+ 7878: 86,43
+ 7879: 86,44
+ 7880: 86,47
+ 7881: 86,49
+ 7886: 85,45
+ 7889: 79,45
+ 7890: 78,45
+ 7891: 76,45
+ 7892: 73,45
+ 7893: 71,45
+ 7894: 70,46
+ 7896: 72,47
+ 7897: 70,49
+ 7898: 70,49
+ 7909: 64,48
+ 7910: 64,46
+ 7911: 64,45
+ 7912: 64,43
+ 7914: 64,39
+ 7915: 64,37
+ 7916: 64,34
+ 7917: 64,32
+ 7918: 64,30
+ 7919: 64,28
+ 7920: 64,26
+ 7921: 64,25
+ 7922: 63,23
+ 7923: 63,21
+ 7924: 64,21
+ 7925: 64,20
+ 7926: 65,19
+ 7927: 65,20
+ 7928: 65,15
+ 7929: 63,16
+ 7930: 64,17
+ 7931: 65,17
+ 7932: 61,20
+ 7933: 61,22
+ 7934: 61,24
+ 7935: 61,28
+ 7940: 57,34
+ 7941: 56,34
+ 7942: 60,30
+ 7943: 55,35
+ 7944: 56,36
+ 7945: 55,38
+ 7946: 55,40
+ 7947: 56,42
+ 7948: 55,43
+ 7949: 56,45
+ 7950: 56,47
+ 7951: 57,45
+ 7952: 57,44
+ 7953: 53,45
+ 7954: 53,47
+ 7955: 54,46
+ 7956: 52,49
+ 7957: 52,50
+ 7958: 52,51
+ 7959: 61,47
+ 7960: 60,47
+ 7961: 60,44
+ 7962: 62,43
+ 7963: 60,43
+ 7964: 60,44
+ 7965: 61,44
+ 7966: 61,44
+ 7973: 63,25
+ 7974: 63,36
+ 7975: 63,38
+ 7976: 63,39
+ 7985: 156,80
+ 7986: 157,81
+ 7987: 155,81
+ 7988: 155,83
+ 7989: 156,83
+ 7990: 158,83
+ 7991: 159,83
+ 7992: 160,83
+ 7993: 160,82
+ 7994: 160,81
+ 7995: 160,79
+ 7996: 160,79
+ 7997: 159,78
+ 7998: 160,78
+ 8000: 157,79
+ 8001: 155,78
+ 8003: 161,80
+ 8004: 161,81
+ 8005: 161,78
+ 8007: 155,79
+ 8008: 155,79
+ 8338: 64,67
+ 8339: 63,68
+ 8340: 61,67
+ 8341: 60,67
+ 8342: 59,69
+ 8343: 59,70
+ 8344: 59,72
+ 8345: 59,77
+ 8346: 61,78
+ 8347: 62,77
+ 8349: 64,78
+ 8350: 64,78
+ 8351: 66,78
+ 8352: 69,78
+ 8353: 71,78
+ 8354: 72,80
+ 8355: 74,80
+ 8356: 76,80
+ 8357: 78,80
+ 8358: 80,80
+ 8359: 82,80
+ 8360: 84,80
+ 8361: 86,80
+ 8362: 89,80
+ 8363: 91,80
+ 8364: 93,80
+ 8365: 95,80
+ 8366: 96,81
+ 8367: 96,82
+ 8368: 96,83
+ 8369: 95,84
+ 8370: 95,86
+ 8371: 95,88
+ 8372: 95,90
+ 8373: 95,91
+ 8374: 95,94
+ 8375: 94,94
+ 8376: 92,94
+ 8377: 91,94
+ 8378: 91,96
+ 8379: 91,98
+ 8380: 92,100
+ 8383: 91,103
+ 8384: 91,104
+ 8385: 91,106
+ 8386: 91,108
+ 8387: 92,109
+ 8388: 92,108
+ 8389: 92,106
+ 8390: 91,110
+ 8391: 93,110
+ 8392: 94,110
+ 8393: 95,110
+ 8409: 74,82
+ 8410: 72,82
+ 8411: 74,83
+ 8412: 133,112
+ 8413: 133,113
+ 8414: 132,112
+ 8415: 132,115
+ 8416: 135,115
+ 8417: 137,115
+ 8418: 139,115
+ 8419: 141,115
+ 8420: 144,115
+ 8421: 146,115
+ 8422: 148,115
+ 8423: 151,115
+ 8424: 153,115
+ 8425: 155,115
+ 8426: 158,115
+ 8427: 160,115
+ 8428: 161,115
+ 8429: 161,113
+ 8430: 161,112
+ 8431: 162,112
+ 8432: 160,114
+ 8433: 162,116
+ 8434: 162,117
+ 8435: 162,119
+ 8436: 162,122
+ 8438: 162,123
+ 8439: 161,124
+ 8440: 161,124
+ 8441: 161,126
+ 8442: 161,128
+ 8443: 163,129
+ 8444: 163,130
+ 8445: 162,130
+ 8446: 163,126
+ 8447: 158,130
+ 8448: 156,131
+ 8449: 153,130
+ 8450: 152,129
+ 8451: 152,127
+ 8452: 152,125
+ 8453: 152,124
+ 8454: 153,123
+ 8455: 153,122
+ 8456: 153,121
+ 8457: 159,131
+ 8459: 162,135
+ 8460: 162,135
+ 8461: 162,137
+ 8462: 162,139
+ 8463: 162,141
+ 8464: 162,142
+ 8465: 161,142
+ 8466: 162,144
+ 8467: 162,145
+ 8468: 161,145
+ 8469: 161,146
+ 8470: 159,145
+ 8471: 158,145
+ 8472: 156,145
+ 8473: 154,145
+ 8474: 152,145
+ 8475: 148,145
+ 8476: 150,145
+ 8477: 160,148
+ 8478: 159,149
+ 8494: 154,131
+ 8495: 153,131
+ 8496: 90,56
+ 8497: 91,55
+ 8498: 92,56
+ 8504: 93,55
+ 8505: 94,55
+ 8506: 97,55
+ 8507: 98,55
+ 8508: 99,55
+ 8509: 102,55
+ 8510: 103,54
+ 8511: 103,54
+ 8512: 105,54
+ 8513: 106,54
+ 8514: 107,54
+ 8515: 96,56
+ 8516: 96,57
+ 8517: 96,59
+ 8518: 96,61
+ 8519: 96,63
+ 8520: 96,65
+ 8521: 96,67
+ 8522: 96,69
+ 8523: 96,71
+ 8524: 96,74
+ 8525: 116,74
+ 8526: 116,73
+ 8531: 116,61
+ 8532: 116,59
+ 8533: 116,57
+ 8547: 141,121
+ 8548: 141,123
+ 8549: 141,124
+ 8550: 141,127
+ 8551: 141,128
+ 8552: 141,131
+ 8553: 139,131
+ 8554: 139,133
+ 8555: 138,132
+ 8556: 139,132
+ 8557: 138,134
+ 8558: 138,135
+ 8559: 138,136
+ 8560: 138,138
+ 8561: 138,138
+ 8562: 136,138
+ 8563: 134,138
+ 8564: 134,139
+ 8565: 134,141
+ 8566: 134,143
+ 8567: 134,145
+ 8568: 134,147
+ 8569: 135,148
+ 8570: 136,148
+ 8571: 136,147
+ 8572: 132,148
+ 8573: 131,148
+ 8574: 129,148
+ 8575: 127,148
+ 8576: 125,148
+ 8577: 125,149
+ 8578: 125,151
+ 8579: 125,154
+ 8580: 125,156
+ 8581: 125,158
+ 8582: 124,158
+ 8583: 122,158
+ 8584: 121,158
+ 8585: 121,159
+ 8586: 121,162
+ 8587: 121,163
+ 8588: 121,164
+ 8589: 120,164
+ 8590: 118,164
+ 8591: 116,164
+ 8592: 114,164
+ 8593: 111,164
+ 8594: 109,164
+ 8595: 106,164
+ 8596: 104,164
+ 8597: 104,165
+ 8598: 104,167
+ 8599: 104,169
+ 8600: 103,169
+ 8601: 101,169
+ 8602: 99,169
+ 8603: 96,169
+ 8604: 94,169
+ 8605: 97,170
+ 8606: 99,171
+ 8607: 97,172
+ 8608: 98,171
+ 8609: 98,170
+ 8610: 99,172
+ 8611: 100,170
+ 8612: 94,168
+ 8613: 94,167
+ 8614: 94,164
+ 8615: 94,162
+ 8616: 94,159
+ 8617: 93,159
+ 8618: 91,159
+ 8619: 88,159
+ 8621: 108,168
+ 8622: 108,169
+ 8623: 109,169
+ 8624: 109,170
+ 8625: 108,170
+ 8626: 111,170
+ 8627: 112,170
+ 8628: 113,169
+ 8629: 114,168
+ 8630: 114,167
+ 8632: 111,167
+ 8633: 110,167
+ 8634: 109,167
+ 8661: 120,167
+ 8662: 118,167
+ 8663: 119,169
+ 8664: 118,170
+ 8665: 119,171
+ 8666: 118,169
+ 8667: 117,168
+ 8668: 121,171
+ 8669: 120,169
+ 8686: 74,158
+ 8687: 75,158
+ 8688: 76,160
+ 8689: 78,158
+ 8690: 75,159
+ 8691: 73,161
+ 8692: 74,162
+ 8693: 77,161
+ 8694: 79,160
+ 8695: 81,160
+ 8696: 82,160
+ 8697: 82,158
+ 8698: 78,158
+ 8699: 78,160
+ 8700: 77,160
+ 8701: 81,162
+ 8702: 81,161
+ 8703: 83,160
+ 8704: 83,159
+ 8705: 80,158
+ 8706: 77,160
+ 8707: 76,160
+ 8708: 75,159
+ 8709: 81,162
+ 8710: 82,162
+ 8711: 84,161
+ 8712: 85,161
+ 8713: 85,162
+ 8714: 82,160
+ 8715: 80,159
+ 8716: 89,161
+ 8717: 91,162
+ 8718: 88,163
+ 8719: 87,162
+ 8720: 91,162
+ 8721: 90,161
+ 8722: 88,164
+ 8723: 87,164
+ 8724: 89,165
+ 8725: 91,164
+ 8726: 90,163
+ 8727: 91,163
+ 8728: 91,162
+ 8729: 91,168
+ 8730: 92,168
+ 8731: 92,169
+ 8732: 90,169
+ 8733: 91,170
+ 8734: 92,169
+ 8735: 92,167
+ 8736: 90,167
+ 8737: 92,171
+ 8738: 91,172
+ 8739: 90,172
+ 8740: 92,173
+ 8741: 93,172
+ 8742: 94,172
+ 8743: 95,171
+ 8744: 94,171
+ 8745: 95,173
+ 8746: 95,173
+ 8747: 91,171
+ 8748: 90,171
+ 8749: 99,170
+ 8750: 97,171
+ 8751: 98,172
+ 8820: 91,158
+ 8821: 92,158
+ 8822: 93,159
+ 8823: 93,158
+ 8824: 94,160
+ 8825: 93,161
+ 8827: 94,163
+ 8828: 93,164
+ 8829: 94,165
+ 8830: 93,164
+ 8831: 93,163
+ 8832: 85,156
+ 8833: 84,155
+ 8834: 82,155
+ 8835: 79,155
+ 8836: 77,155
+ 8837: 75,156
+ 8838: 73,155
+ 8839: 73,156
+ 8840: 75,156
+ 8841: 78,155
+ 8842: 81,155
+ 8843: 79,156
+ 8844: 74,155
+ 8846: 71,157
+ 8847: 70,157
+ 8848: 68,157
+ 8849: 65,157
+ 8850: 63,157
+ 8851: 62,160
+ 8852: 63,160
+ 8853: 64,160
+ 8854: 65,159
+ 8855: 64,161
+ 8856: 63,160
+ 8857: 62,159
+ 8858: 68,160
+ 8860: 70,161
+ 8861: 70,163
+ 8862: 69,163
+ 8863: 67,162
+ 8864: 69,161
+ 8865: 70,160
+ 8866: 70,161
+ 8867: 70,163
+ 8868: 69,163
+ 8869: 68,162
+ 8870: 70,161
+ 8871: 88,155
+ 8872: 89,156
+ 8873: 90,156
+ 8874: 91,155
+ 8875: 91,154
+ 8876: 91,152
+ 8877: 91,150
+ 8878: 91,148
+ 8879: 91,147
+ 8880: 91,131
+ 8881: 91,130
+ 8882: 91,128
+ 8883: 91,125
+ 8884: 54,145
+ 8885: 53,145
+ 8886: 54,147
+ 8887: 54,148
+ 8888: 55,149
+ 8890: 52,152
+ 8891: 54,153
+ 8892: 55,154
+ 8893: 54,151
+ 8894: 53,149
+ 8926: 57,137
+ 8929: 58,142
+ 8931: 58,147
+ 8932: 59,148
+ 8933: 58,151
+ 8934: 57,150
+ 8935: 59,148
+ 8936: 59,149
+ 8937: 58,145
+ 8938: 59,154
+ 8939: 58,154
+ 8940: 59,155
+ 8941: 59,157
+ 8942: 58,157
+ 8943: 58,158
+ 8944: 59,158
+ 8945: 58,123
+ 8947: 58,122
+ 8950: 53,122
+ 8951: 55,121
+ 8952: 52,122
+ 8953: 53,125
+ 8954: 54,126
+ 8955: 56,126
+ 8956: 66,116
+ 8957: 66,117
+ 8958: 66,120
+ 8959: 66,121
+ 8960: 63,121
+ 8961: 63,121
+ 8962: 62,121
+ 8963: 61,122
+ 8964: 61,124
+ 8965: 65,121
+ 8966: 63,121
+ 8967: 62,121
+ 8968: 61,121
+ 8969: 61,124
+ 8970: 61,126
+ 8971: 60,126
+ 8972: 60,128
+ 8973: 59,128
+ 8974: 57,129
+ 8975: 55,129
+ 8976: 54,129
+ 8977: 56,128
+ 8978: 55,130
+ 8979: 54,130
+ 8980: 53,130
+ 8981: 53,131
+ 8982: 54,133
+ 8983: 54,134
+ 8984: 53,135
+ 8985: 53,134
+ 8986: 54,133
+ 9013: 52,130
+ 9014: 51,130
+ 9015: 51,132
+ 9016: 52,133
+ 9017: 53,134
+ 9018: 51,134
+ 9134: 39,123
+ 9154: 32,121
+ 9155: 32,123
+ 9156: 33,123
+ 9157: 33,122
+ 9158: 34,121
+ 9159: 31,122
+ 9228: 19,115
+ 9229: 19,116
+ 9230: 20,115
+ 9231: 21,115
+ 9232: 22,116
+ 9233: 23,115
+ 9234: 24,115
+ 9235: 24,116
+ 9236: 23,118
+ 9237: 24,119
+ 9238: 25,119
+ 9239: 23,119
+ 9240: 20,118
+ 9241: 20,119
+ 9242: 19,118
+ 9243: 25,119
+ 9244: 27,119
+ 9245: 29,119
+ 9246: 31,119
+ 9247: 33,119
+ 9248: 35,119
+ 9249: 38,119
+ 9250: 40,119
+ 9251: 41,119
+ 9252: 41,120
+ 9253: 40,120
+ 9254: 38,120
+ 9255: 45,120
+ 9256: 47,120
+ 9257: 49,120
+ 9258: 49,120
+ 9259: 49,119
+ 9260: 47,119
+ 9261: 50,117
+ 9262: 52,118
+ 9263: 52,117
+ 9264: 52,114
+ 9265: 50,113
+ 9266: 50,112
+ 9267: 52,112
+ 9268: 53,114
+ 9269: 53,112
+ 9270: 53,110
+ 9271: 53,109
+ 9272: 50,109
+ 9273: 50,110
+ 9274: 51,109
+ 9275: 24,107
+ 9276: 24,108
+ 9277: 22,108
+ 9278: 21,107
+ 9279: 20,107
+ 9281: 18,108
+ 9282: 18,108
+ 9283: 18,110
+ 9284: 18,112
+ 9285: 22,106
+ 9286: 22,104
+ 9287: 20,104
+ 9290: 18,104
+ 9291: 18,103
+ 9292: 18,101
+ 9293: 18,99
+ 9294: 18,98
+ 9295: 18,96
+ 9296: 19,96
+ 9297: 21,96
+ 9298: 22,96
+ 9300: 22,98
+ 9301: 21,99
+ 9302: 21,101
+ 9303: 20,101
+ 9304: 20,99
+ 9305: 20,98
+ 9306: 21,101
+ 9307: 24,96
+ 9308: 26,97
+ 9309: 28,96
+ 9310: 26,93
+ 9311: 24,92
+ 9312: 25,90
+ 9313: 26,89
+ 9314: 25,87
+ 9315: 25,85
+ 9316: 26,84
+ 9317: 27,84
+ 9318: 27,83
+ 9319: 22,87
+ 9320: 21,87
+ 9321: 21,85
+ 9322: 22,83
+ 9323: 22,82
+ 9324: 24,81
+ 9325: 25,79
+ 9326: 24,79
+ 9327: 22,79
+ 9328: 21,80
+ 9329: 19,79
+ 9330: 18,79
+ 9331: 19,80
+ 9332: 19,86
+ 9333: 18,87
+ 9340: 32,96
+ 9341: 33,97
+ 9342: 34,96
+ 9343: 36,96
+ 9344: 36,97
+ 9345: 31,82
+ 9346: 34,83
+ 9347: 34,82
+ 9348: 32,84
+ 9349: 29,76
+ 9350: 28,76
+ 9351: 28,74
+ 9352: 29,73
+ 9353: 24,69
+ 9354: 22,69
+ 9355: 25,71
+ 9356: 23,72
+ 9357: 21,72
+ 9358: 23,74
+ 9359: 24,75
+ 9360: 23,75
+ 9361: 21,74
+ 9362: 23,71
+ 9363: 22,70
+ 9364: 20,68
+ 9365: 23,70
+ 9366: 25,70
+ 9367: 21,75
+ 9368: 24,76
+ 9369: 32,79
+ 9370: 33,80
+ 9371: 34,79
+ 9374: 39,80
+ 9375: 42,79
+ 9376: 43,80
+ 9377: 43,79
+ 9378: 43,78
+ 9379: 46,78
+ 9380: 47,78
+ 9381: 49,78
+ 9382: 51,78
+ 9383: 52,78
+ 9384: 29,78
+ 9386: 28,75
+ 9387: 29,70
+ 9389: 27,71
+ 9390: 29,67
+ 9391: 27,67
+ 10230: 53,156
+ 10231: 53,157
+ 10232: 53,157
+ 10245: 66,122
+ 10246: 64,121
+ 10248: 60,122
+ 10249: 60,123
+ 10250: 61,125
+ 10251: 60,125
+ 10262: 59,132
+ 10263: 57,133
+ 10264: 59,134
+ 10265: 57,134
+ 10283: 141,123
+ 10284: 140,125
+ 10285: 140,126
+ 10286: 139,125
+ 10287: 141,127
+ 10288: 141,129
+ 10289: 140,128
+ 10290: 140,129
+ 10291: 139,130
+ 10292: 141,131
+ 10312: 125,167
+ 10313: 123,168
+ 10314: 124,169
+ 10315: 125,170
+ 10316: 123,170
+ 10317: 123,170
+ 10318: 122,169
+ 10319: 125,168
+ 10320: 125,165
+ 10321: 124,163
+ 10322: 124,162
+ 10323: 125,161
+ 10324: 123,165
+ 10325: 121,163
+ 10326: 120,165
+ 10327: 122,167
+ 10328: 122,171
+ 10336: 114,168
+ 10337: 110,167
+ 10338: 110,167
+ 10339: 108,170
+ 10340: 108,170
+ 10342: 137,139
+ 10343: 134,140
+ 10344: 136,139
+ 10345: 136,139
+ 10346: 100,165
+ 10347: 100,166
+ 10348: 99,166
+ 10349: 100,168
+ 10350: 97,168
+ 10351: 99,169
+ 10352: 100,169
+ 10353: 102,169
+ 10354: 102,168
+ 10355: 104,168
+ 10356: 104,167
+ 10357: 102,166
+ 10358: 104,167
+ 10359: 105,167
+ 10360: 103,167
+ 10361: 105,168
+ 10362: 103,165
+ 10398: 48,121
+ 10399: 48,120
+ 10400: 48,119
+ 10401: 50,120
+ 10403: 40,125
+ 10404: 42,125
+ 10405: 42,122
+ 10406: 36,125
+ 10407: 37,122
+ 10413: 40,123
+ 10414: 36,125
+ 10415: 40,125
+ 10416: 37,122
+ 10417: 39,119
+ 10479: 21,121
+ 10480: 21,121
+ 10481: 27,121
+ 10482: 29,122
+ 10483: 29,121
+ 10484: 28,121
+ 10485: 28,121
+ 10486: 29,121
+ 10487: 29,122
+ 10488: 24,112
+ 10489: 23,113
+ 10490: 22,112
+ 10491: 21,110
+ 10495: 22,113
+ 10496: 21,112
+ 10497: 21,113
+ 10498: 23,112
+ 10499: 24,112
+ 10501: 19,112
+ 10502: 19,110
+ 10503: 19,109
+ 10504: 18,107
+ 10505: 16,108
+ 10506: 15,107
+ 10534: 164,147
+ 10535: 163,147
+ 10536: 162,148
+ 10537: 164,149
+ 10540: 169,134
+ 10541: 169,135
+ 10542: 167,134
+ 10543: 167,133
+ 10544: 168,133
+ 10545: 167,132
+ 10546: 166,133
+ 10548: 165,134
+ 10549: 165,133
+ 10550: 164,132
+ 10551: 163,132
+ 10552: 162,132
+ 10553: 161,132
+ 10555: 166,137
+ 10557: 167,137
+ 10558: 165,135
+ 10559: 165,134
+ 10560: 166,133
+ 10561: 167,134
+ 10562: 168,133
+ 10705: 87,39
+ 10706: 88,40
+ 10707: 87,42
+ 10708: 88,42
+ 10710: 88,45
+ 10711: 88,48
+ 10712: 87,47
+ 10724: 104,34
+ 10725: 103,36
+ 10726: 102,35
+ 10727: 101,34
+ 10728: 99,35
+ 10729: 98,35
+ 10730: 98,34
+ 10731: 100,37
+ 10732: 99,37
+ 10733: 98,37
+ 10734: 100,36
+ 10735: 102,37
+ 10736: 103,36
+ 10737: 104,36
+ 10743: 95,34
+ 10744: 95,36
+ 10745: 94,37
+ 10746: 93,36
+ 10747: 93,34
+ 10748: 91,37
+ 10749: 90,36
+ 10750: 93,37
+ 10751: 95,36
+ 10752: 96,37
+ 10753: 96,35
+ 10754: 91,34
+ 10755: 87,36
+ 10756: 87,34
+ 10757: 88,34
+ 10758: 88,36
+ 10759: 109,26
+ 10760: 108,27
+ 10761: 108,28
+ 10762: 109,29
+ 10763: 108,30
+ 10764: 109,33
+ 10765: 110,33
+ 10766: 112,33
+ 10767: 114,33
+ 10768: 110,35
+ 10769: 110,36
+ 10770: 109,36
+ 10771: 107,36
+ 10772: 106,35
+ 10773: 106,34
+ 10774: 111,38
+ 10775: 110,38
+ 10776: 111,40
+ 10777: 111,42
+ 10778: 110,42
+ 10779: 110,44
+ 10780: 109,46
+ 10781: 110,48
+ 10782: 111,48
+ 10783: 111,47
+ 10784: 114,44
+ 10785: 115,45
+ 10786: 116,44
+ 10787: 117,45
+ 10788: 119,44
+ 10789: 120,44
+ 10790: 121,44
+ 10791: 123,44
+ 10792: 123,43
+ 10793: 124,43
+ 10795: 126,41
+ 10796: 127,41
+ 10797: 127,43
+ 10798: 126,42
+ 11036: 89,82
+ 11037: 86,81
+ 11038: 90,80
+ 11039: 92,81
+ 11040: 89,79
+ 11041: 95,82
+ 11042: 96,84
+ 11043: 94,84
+ 11044: 94,86
+ 11045: 93,87
+ 11046: 96,87
+ 11238: 59,47
+ 11239: 60,45
+ 11240: 62,46
+ 11241: 62,42
+ 11242: 59,43
+ 11243: 64,42
+ 11244: 64,44
+ 11247: 70,47
+ 11248: 71,48
+ 11249: 72,46
+ 11250: 71,45
+ 11251: 75,45
+ 11252: 77,45
+ 11255: 38,79
+ 11442: 140,44
+ 11541: 38,112
+ 11590: 89,86
+ 11711: 114,150
+ 12127: 115,65
+ 12128: 115,68
+ 12129: 115,69
+ 12130: 116,69
+ 12131: 115,70
+ 12132: 116,73
+ 12133: 115,73
+ 12134: 115,74
+ 12203: 62,80
+ 12204: 60,81
+ 12205: 63,82
+ 12210: 59,83
+ 12211: 62,83
+ 13904: 92,54
+ 13905: 101,54
+ 14732: 129,134
+ 14733: 130,135
+ 14734: 130,137
+ 14735: 129,138
+ 14736: 132,132
+ 14737: 135,132
+ 14738: 136,134
+ 14739: 135,136
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 8044: 144,80
+ 8045: 144,81
+ 8046: 142,81
+ 8047: 140,80
+ 8048: 142,80
+ 8049: 140,82
+ 8050: 141,83
+ 8051: 143,83
+ 8066: 155,44
+ 8067: 156,44
+ 8068: 157,44
+ 8069: 157,43
+ 8070: 157,42
+ 8071: 156,42
+ 8072: 156,43
+ 8073: 155,43
+ 8074: 155,42
+ 8075: 158,43
+ 8076: 154,44
+ 8077: 156,42
+ 8078: 155,43
+ 8079: 157,43
+ 8080: 158,43
+ 8081: 159,42
+ 8082: 161,43
+ 8083: 159,44
+ 8084: 162,44
+ 8085: 163,44
+ 8086: 161,45
+ 8087: 159,46
+ 8088: 161,47
+ 8089: 163,46
+ 8090: 161,46
+ 8091: 160,47
+ 8092: 162,49
+ 8093: 162,50
+ 8094: 160,50
+ 8095: 163,48
+ 8096: 161,51
+ 8097: 162,52
+ 8098: 163,50
+ 8099: 160,52
+ 8148: 155,85
+ 8149: 155,87
+ 8152: 162,61
+ 8153: 161,62
+ 8154: 162,64
+ 8155: 160,65
+ 8156: 162,66
+ 8157: 161,64
+ 8161: 159,62
+ 8162: 158,61
+ 8163: 159,60
+ 8164: 158,59
+ 8165: 158,58
+ 8166: 159,57
+ 8167: 158,57
+ 8168: 157,55
+ 8169: 159,55
+ 8170: 157,54
+ 8171: 157,53
+ 8172: 158,51
+ 8173: 158,50
+ 8174: 157,49
+ 8175: 158,48
+ 8176: 158,47
+ 8178: 155,47
+ 8179: 155,46
+ 8180: 153,47
+ 8181: 153,45
+ 8182: 152,43
+ 8183: 150,45
+ 8184: 148,45
+ 8185: 147,44
+ 8186: 148,44
+ 8187: 147,43
+ 8188: 145,44
+ 8189: 145,44
+ 8190: 145,46
+ 8191: 147,46
+ 8192: 147,46
+ 8193: 149,43
+ 8194: 151,43
+ 8195: 153,43
+ 8225: 140,93
+ 8226: 140,93
+ 8227: 140,91
+ 8228: 140,88
+ 8229: 140,86
+ 8231: 132,86
+ 8233: 137,86
+ 8234: 138,85
+ 8235: 139,86
+ 8236: 143,85
+ 8237: 145,85
+ 8238: 147,85
+ 8240: 152,85
+ 8241: 146,85
+ 8242: 147,84
+ 8243: 146,82
+ 8244: 146,80
+ 8245: 147,79
+ 8246: 147,78
+ 8247: 147,76
+ 8248: 147,75
+ 8249: 147,75
+ 8250: 148,74
+ 8251: 149,75
+ 8252: 146,75
+ 8253: 150,77
+ 8256: 154,76
+ 8257: 155,76
+ 8258: 156,75
+ 8259: 156,74
+ 8260: 156,73
+ 8261: 156,72
+ 8262: 156,70
+ 8263: 156,68
+ 8264: 156,66
+ 8265: 158,66
+ 8266: 158,66
+ 8267: 158,64
+ 8268: 158,62
+ 8269: 158,60
+ 8270: 158,58
+ 8271: 158,56
+ 8272: 158,55
+ 8274: 158,51
+ 10199: 77,156
+ 10200: 80,155
+ 10201: 54,149
+ 13512: 122,116
+ 13514: 127,107
+ 13822: 51,100
+ 13823: 48,102
+ 13824: 47,99
+ 13825: 53,102
+ 14635: 31,103
+ 14636: 30,104
+ 14637: 31,105
+ 14638: 31,104
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 10528: 165,144
+ 10529: 164,145
+ 10530: 165,145
+ 10531: 163,141
+ 10532: 163,145
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 4269: 35,114
+ 4270: 35,115
+ 4271: 33,116
+ 4272: 31,116
+ 4273: 31,112
+ 4274: 31,109
+ 4275: 33,110
+ 4276: 33,110
+ 4280: 33,112
+ 4281: 34,112
+ 4282: 34,112
+ 4283: 34,112
+ 10220: 53,154
+ 10221: 53,153
+ 10222: 53,153
+ 10223: 53,152
+ 10224: 53,151
+ 10225: 53,150
+ 10226: 53,150
+ 11574: 71,95
+ 11993: 139,110
+ 11994: 137,111
+ 14724: 129,132
+ 14725: 131,135
+ 14726: 131,138
+ 14727: 130,139
+ 14728: 128,139
+ 14729: 126,137
+ 14730: 126,133
+ 14731: 127,132
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 4257: 27,117
+ 4258: 32,116
+ 4259: 34,116
+ 4260: 35,113
+ 4261: 35,111
+ 4301: 32,117
+ 4302: 33,117
+ 4303: 35,117
+ 4304: 36,115
+ 4305: 36,114
+ 4306: 35,116
+ 4307: 35,116
+ 4308: 35,116
+ 4309: 35,116
+ 4310: 32,114
+ 7555: 92,18
+ 7556: 93,19
+ 7557: 94,18
+ 7558: 97,18
+ 7559: 96,20
+ 7560: 94,20
+ 7561: 93,21
+ 7562: 91,21
+ 7563: 90,19
+ 7564: 91,21
+ 7565: 90,22
+ 7566: 89,20
+ 7567: 90,19
+ 7568: 89,19
+ 7569: 87,20
+ 7570: 87,20
+ 7571: 88,21
+ 7572: 90,20
+ 7573: 90,19
+ 7574: 90,19
+ 7575: 90,23
+ 7576: 88,25
+ 7577: 89,27
+ 7578: 91,27
+ 7579: 94,25
+ 7580: 94,26
+ 7581: 94,29
+ 7582: 95,31
+ 7583: 95,32
+ 7584: 95,31
+ 7585: 94,31
+ 7586: 96,32
+ 7587: 97,31
+ 7588: 100,31
+ 7589: 101,32
+ 7590: 101,30
+ 7591: 103,32
+ 7592: 103,30
+ 7593: 105,31
+ 7594: 106,30
+ 7595: 104,29
+ 7596: 104,29
+ 7597: 104,27
+ 7598: 106,27
+ 7599: 106,27
+ 7600: 105,25
+ 7601: 104,24
+ 7602: 106,24
+ 7603: 104,25
+ 7604: 105,24
+ 7605: 106,23
+ 7606: 104,19
+ 7607: 104,18
+ 7608: 106,18
+ 7609: 108,19
+ 7610: 108,18
+ 7611: 106,18
+ 7612: 105,19
+ 7613: 113,18
+ 7614: 112,19
+ 7615: 113,19
+ 7616: 114,20
+ 7617: 113,18
+ 7618: 113,18
+ 7619: 113,17
+ 7620: 108,22
+ 7621: 108,23
+ 7622: 111,22
+ 7623: 112,22
+ 7624: 113,22
+ 7625: 112,24
+ 7626: 111,25
+ 7627: 112,26
+ 7628: 111,27
+ 7629: 112,29
+ 7630: 111,30
+ 7631: 111,31
+ 7632: 113,30
+ 7633: 114,30
+ 7634: 116,30
+ 7635: 117,31
+ 7636: 119,30
+ 7637: 117,29
+ 7638: 119,30
+ 7639: 119,31
+ 7640: 118,32
+ 7641: 119,33
+ 7642: 119,34
+ 7643: 119,35
+ 7644: 118,36
+ 7645: 119,38
+ 7646: 119,39
+ 7647: 118,38
+ 7648: 120,38
+ 7649: 120,41
+ 7650: 120,42
+ 7651: 115,40
+ 7652: 115,41
+ 7653: 114,41
+ 7654: 113,41
+ 7655: 114,38
+ 7656: 115,36
+ 7657: 114,35
+ 7658: 113,36
+ 7659: 126,35
+ 7660: 125,37
+ 7661: 124,37
+ 7662: 123,39
+ 7663: 124,31
+ 7664: 124,30
+ 7665: 123,28
+ 7666: 123,25
+ 7667: 123,25
+ 7668: 117,25
+ 7669: 117,23
+ 7670: 116,20
+ 7671: 118,19
+ 7672: 117,21
+ 7673: 116,21
+ 7674: 118,21
+ 7675: 118,22
+ 7676: 109,20
+ 8016: 161,79
+ 8017: 160,80
+ 8018: 156,78
+ 8019: 155,80
+ 8020: 158,80
+ 8021: 157,80
+ 8394: 95,106
+ 8397: 95,110
+ 8674: 118,168
+ 8675: 119,168
+ 8676: 119,167
+ 8677: 117,171
+ 8678: 119,170
+ 8679: 120,171
+ 8752: 94,171
+ 8753: 94,173
+ 8754: 92,172
+ 8755: 90,170
+ 8756: 92,168
+ 8757: 91,167
+ 8758: 90,168
+ 8759: 91,165
+ 8760: 89,164
+ 8761: 90,163
+ 8762: 90,165
+ 8763: 91,161
+ 8764: 88,161
+ 8765: 87,163
+ 8766: 84,161
+ 8767: 83,162
+ 8768: 81,161
+ 8769: 81,159
+ 8770: 78,161
+ 8771: 78,161
+ 8772: 80,159
+ 8773: 76,159
+ 8774: 75,162
+ 8775: 74,161
+ 8776: 74,160
+ 8778: 76,159
+ 8779: 77,158
+ 8780: 78,159
+ 8781: 80,158
+ 8782: 81,158
+ 8783: 76,162
+ 8896: 52,145
+ 8897: 53,146
+ 8898: 53,146
+ 8899: 53,147
+ 8900: 54,149
+ 8901: 52,149
+ 8902: 52,152
+ 8904: 55,151
+ 8905: 52,154
+ 8906: 55,154
+ 8907: 55,148
+ 8909: 52,150
+ 8910: 55,150
+ 8912: 58,147
+ 8913: 58,149
+ 8914: 59,151
+ 8915: 58,152
+ 8916: 57,151
+ 8917: 58,151
+ 8918: 58,148
+ 8920: 57,142
+ 8921: 57,140
+ 8922: 57,137
+ 8923: 57,136
+ 8924: 56,137
+ 8987: 52,129
+ 8988: 53,129
+ 8989: 55,128
+ 8990: 56,128
+ 8991: 57,128
+ 8992: 56,130
+ 8997: 52,132
+ 8998: 52,132
+ 8999: 53,133
+ 9000: 53,136
+ 9001: 54,136
+ 9002: 54,135
+ 9003: 54,138
+ 9004: 53,138
+ 9005: 53,140
+ 9006: 52,141
+ 9007: 54,142
+ 9008: 54,143
+ 9011: 52,140
+ 9012: 52,139
+ 9148: 38,122
+ 9163: 31,121
+ 9164: 32,122
+ 9165: 31,123
+ 9166: 33,120
+ 9167: 34,122
+ 9168: 34,120
+ 9169: 32,120
+ 9218: 24,112
+ 9392: 21,70
+ 9393: 20,71
+ 9394: 23,71
+ 9395: 22,72
+ 9396: 22,70
+ 9397: 25,68
+ 9398: 25,68
+ 9399: 28,73
+ 9400: 28,74
+ 9401: 27,76
+ 9403: 28,78
+ 9404: 27,78
+ 9405: 28,76
+ 9406: 29,75
+ 9407: 23,80
+ 9408: 22,82
+ 9409: 20,82
+ 9410: 19,83
+ 9411: 22,87
+ 9412: 22,86
+ 9413: 22,85
+ 9414: 23,82
+ 9415: 23,81
+ 9416: 22,80
+ 9417: 23,80
+ 9418: 26,84
+ 9419: 26,87
+ 9420: 26,88
+ 9421: 21,82
+ 9422: 21,83
+ 9423: 22,84
+ 9429: 25,96
+ 9430: 28,97
+ 9431: 27,96
+ 9432: 32,96
+ 9433: 33,97
+ 9434: 35,96
+ 9435: 36,97
+ 9436: 22,100
+ 9437: 22,102
+ 9438: 21,102
+ 9439: 20,105
+ 9440: 19,104
+ 9441: 18,100
+ 9442: 26,92
+ 9443: 30,83
+ 9444: 32,83
+ 9445: 33,83
+ 9446: 33,82
+ 9447: 34,84
+ 9448: 34,84
+ 9449: 36,79
+ 9450: 38,80
+ 9451: 40,79
+ 9452: 40,79
+ 9453: 42,78
+ 9454: 44,80
+ 9455: 47,78
+ 9456: 48,78
+ 9457: 51,78
+ 9458: 52,78
+ 10254: 64,122
+ 10255: 62,122
+ 10256: 61,124
+ 10257: 61,123
+ 10258: 59,128
+ 10259: 59,129
+ 10260: 60,130
+ 10261: 54,131
+ 10363: 103,166
+ 10364: 99,165
+ 10365: 98,166
+ 10366: 99,167
+ 10367: 98,169
+ 10368: 97,169
+ 10369: 97,170
+ 10370: 100,171
+ 10371: 96,165
+ 10372: 96,166
+ 10373: 95,165
+ 10375: 95,168
+ 10376: 95,169
+ 10563: 169,133
+ 10564: 167,134
+ 10565: 166,134
+ 10568: 167,134
+ 10569: 166,135
+ 10570: 165,136
+ 10571: 168,136
+ 10738: 103,35
+ 10739: 102,34
+ 10740: 98,36
+ 11263: 38,50
+ 11264: 34,51
+ 11265: 38,57
+ 11266: 34,59
+ 11267: 36,62
+ 11268: 43,49
+ 11269: 42,52
+ 11270: 44,54
+ 11271: 42,60
+ 11272: 43,63
+ 11273: 42,68
+ 11274: 44,70
+ 11275: 43,74
+ 11276: 48,69
+ 11277: 51,72
+ 11278: 53,69
+ 11280: 52,75
+ 11281: 49,49
+ 11282: 44,46
+ 11283: 49,41
+ 11284: 46,39
+ 11285: 49,37
+ 11286: 52,29
+ 11287: 56,23
+ 11288: 54,21
+ 11289: 52,23
+ 11290: 48,20
+ 11291: 45,22
+ 11292: 49,28
+ 11293: 57,55
+ 11294: 61,58
+ 11295: 51,59
+ 11296: 52,55
+ 11297: 48,51
+ 11298: 48,63
+ 11299: 54,65
+ 11301: 67,64
+ 11303: 67,59
+ 11309: 67,31
+ 11310: 67,25
+ 11311: 83,25
+ 11318: 81,64
+ 11320: 88,64
+ 11321: 88,66
+ 11322: 91,68
+ 11324: 94,69
+ 11325: 93,72
+ 11326: 93,76
+ 11327: 98,77
+ 11328: 101,76
+ 11329: 100,73
+ 11330: 104,73
+ 11331: 108,77
+ 11332: 112,76
+ 11333: 112,73
+ 11335: 108,72
+ 11337: 100,63
+ 11338: 101,62
+ 11339: 112,63
+ 11341: 112,77
+ 11342: 112,80
+ 11344: 110,87
+ 11345: 102,87
+ 11346: 100,85
+ 11347: 104,94
+ 11348: 95,96
+ 11349: 94,98
+ 11350: 95,101
+ 11351: 98,104
+ 11352: 101,99
+ 11357: 103,98
+ 11358: 120,97
+ 11359: 117,98
+ 11360: 120,101
+ 11361: 118,103
+ 11362: 122,100
+ 11363: 123,99
+ 11366: 113,113
+ 11367: 115,109
+ 11369: 111,113
+ 11370: 99,79
+ 11371: 120,77
+ 11372: 119,69
+ 11373: 119,66
+ 11374: 119,59
+ 11375: 119,55
+ 11376: 117,53
+ 11377: 112,54
+ 11378: 110,52
+ 11379: 105,51
+ 11387: 92,47
+ 11388: 95,48
+ 11389: 96,46
+ 11390: 92,40
+ 11391: 91,43
+ 11392: 98,40
+ 11393: 102,41
+ 11394: 102,47
+ 11395: 116,48
+ 11397: 122,47
+ 11398: 123,50
+ 11399: 129,48
+ 11400: 132,48
+ 11401: 127,52
+ 11402: 123,54
+ 11403: 126,56
+ 11404: 122,58
+ 11405: 123,60
+ 11406: 129,59
+ 11407: 130,57
+ 11408: 130,55
+ 11409: 133,54
+ 11410: 126,60
+ 11411: 127,64
+ 11412: 126,65
+ 11413: 127,69
+ 11414: 127,71
+ 11415: 126,72
+ 11416: 126,73
+ 11417: 127,66
+ 11418: 133,63
+ 11419: 131,69
+ 11420: 134,74
+ 11421: 138,67
+ 11422: 139,70
+ 11423: 145,69
+ 11424: 146,70
+ 11425: 147,68
+ 11426: 148,67
+ 11427: 148,62
+ 11428: 147,59
+ 11429: 148,58
+ 11430: 147,56
+ 11431: 142,57
+ 11432: 139,56
+ 11433: 140,53
+ 11434: 140,52
+ 11435: 136,55
+ 11436: 140,59
+ 11437: 138,61
+ 11438: 141,62
+ 11439: 144,64
+ 11443: 141,45
+ 11444: 140,48
+ 11445: 147,49
+ 11446: 150,50
+ 11447: 147,53
+ 11448: 153,50
+ 11450: 152,56
+ 11451: 154,61
+ 11452: 155,63
+ 11453: 152,63
+ 11454: 153,67
+ 11455: 151,71
+ 11456: 154,72
+ 11458: 135,78
+ 11459: 132,77
+ 11460: 128,78
+ 11461: 123,77
+ 11462: 128,82
+ 11463: 128,84
+ 11464: 128,87
+ 11465: 128,90
+ 11466: 129,91
+ 11467: 128,95
+ 11468: 128,95
+ 11469: 128,99
+ 11472: 128,106
+ 11475: 126,118
+ 11476: 123,118
+ 11477: 119,118
+ 11478: 114,118
+ 11480: 105,118
+ 11482: 96,118
+ 11483: 92,118
+ 11485: 88,114
+ 11487: 78,113
+ 11492: 60,113
+ 11493: 56,113
+ 11494: 56,111
+ 11495: 56,109
+ 11496: 56,106
+ 11497: 56,102
+ 11498: 56,98
+ 11499: 56,95
+ 11500: 56,92
+ 11501: 56,89
+ 11502: 56,86
+ 11503: 57,83
+ 11504: 56,80
+ 11505: 56,77
+ 11507: 56,71
+ 11508: 55,68
+ 11509: 50,80
+ 11510: 47,82
+ 11511: 50,83
+ 11512: 51,82
+ 11513: 52,89
+ 11514: 53,91
+ 11515: 51,91
+ 11516: 52,95
+ 11517: 50,96
+ 11518: 43,84
+ 11519: 42,88
+ 11520: 43,90
+ 11521: 37,88
+ 11522: 39,92
+ 11523: 44,97
+ 11524: 42,98
+ 11525: 43,102
+ 11526: 37,99
+ 11527: 34,100
+ 11528: 33,100
+ 11529: 25,101
+ 11530: 27,103
+ 11532: 50,102
+ 11534: 43,108
+ 11535: 42,106
+ 11536: 44,105
+ 11537: 39,111
+ 11538: 42,113
+ 11539: 44,111
+ 11540: 47,113
+ 11546: 50,105
+ 11548: 67,102
+ 11549: 66,95
+ 11550: 68,87
+ 11551: 69,88
+ 11552: 74,86
+ 11553: 62,84
+ 11555: 77,86
+ 11556: 81,88
+ 11557: 83,82
+ 11558: 81,83
+ 11559: 80,82
+ 11560: 69,80
+ 11561: 67,82
+ 11562: 68,83
+ 11563: 69,84
+ 11564: 83,91
+ 11565: 82,94
+ 11566: 84,94
+ 11567: 82,98
+ 11568: 82,102
+ 11569: 81,103
+ 11570: 77,98
+ 11571: 78,96
+ 11572: 73,95
+ 11573: 71,97
+ 11575: 76,99
+ 11576: 88,100
+ 11577: 86,102
+ 11578: 88,104
+ 11579: 86,107
+ 11580: 88,109
+ 11581: 88,108
+ 11582: 88,97
+ 11583: 89,91
+ 11584: 89,84
+ 11585: 90,84
+ 11586: 87,88
+ 11587: 90,88
+ 11588: 91,86
+ 11589: 86,85
+ 11594: 76,108
+ 11595: 81,107
+ 11596: 67,106
+ 11597: 66,108
+ 11598: 83,109
+ 11599: 70,118
+ 11600: 69,120
+ 11601: 73,123
+ 11602: 83,121
+ 11603: 81,122
+ 11604: 80,121
+ 11605: 78,123
+ 11606: 74,122
+ 11607: 73,121
+ 11610: 69,121
+ 11611: 69,118
+ 11612: 70,119
+ 11779: 108,80
+ 11780: 105,82
+ 11781: 107,84
+ 12024: 133,118
+ 12025: 139,118
+ 12026: 139,118
+ 12027: 142,118
+ 12028: 145,117
+ 12029: 150,118
+ 12030: 154,118
+ 12031: 157,117
+ 12032: 159,118
+ 12033: 159,117
+ 12034: 150,119
+ 12036: 149,123
+ 12037: 149,127
+ 12038: 150,128
+ 12039: 149,132
+ 12040: 145,131
+ 12043: 148,138
+ 12044: 146,138
+ 12045: 146,137
+ 12046: 151,138
+ 12051: 150,142
+ 12052: 141,136
+ 12053: 140,137
+ 12054: 140,140
+ 12055: 139,141
+ 12056: 145,147
+ 12057: 141,148
+ 12058: 140,149
+ 12059: 144,153
+ 12060: 144,150
+ 12061: 144,148
+ 12062: 147,152
+ 12063: 148,150
+ 12064: 148,149
+ 12065: 152,149
+ 12066: 151,152
+ 12067: 154,149
+ 12068: 156,148
+ 12069: 156,151
+ 12070: 155,152
+ 12071: 157,153
+ 12072: 149,155
+ 12199: 62,87
+ 12200: 60,85
+ 12201: 62,84
+ 12202: 63,86
+ 13912: 94,50
+ 13913: 99,52
+ 13914: 102,50
+ 13915: 105,51
+ 14557: 127,114
+ 14558: 129,110
+ 14559: 133,107
+ 14560: 133,105
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 8052: 141,80
+ 8053: 140,81
+ 8054: 143,80
+ 8055: 144,83
+ 8056: 140,83
+ 8057: 140,82
+ 8058: 144,82
+ 8059: 145,80
+ 8104: 160,52
+ 8105: 163,51
+ 8106: 161,48
+ 8107: 161,47
+ 8108: 161,46
+ 8109: 162,46
+ 8110: 161,42
+ 8111: 159,44
+ 8112: 159,43
+ 8113: 161,44
+ 8114: 156,43
+ 8115: 156,42
+ 8275: 146,44
+ 8276: 145,45
+ 8277: 144,45
+ 8278: 149,45
+ 8279: 150,44
+ 8280: 153,44
+ 8281: 151,45
+ 8282: 149,45
+ 8283: 148,45
+ 8284: 155,47
+ 8286: 157,46
+ 8287: 158,46
+ 8288: 160,46
+ 8289: 163,55
+ 8291: 157,57
+ 8292: 157,58
+ 8293: 159,59
+ 8295: 159,56
+ 8296: 159,56
+ 8297: 160,56
+ 8298: 160,56
+ 8299: 160,58
+ 8300: 162,58
+ 8301: 162,56
+ 8302: 162,55
+ 8303: 162,55
+ 8304: 163,58
+ 13470: 63,112
+ 13471: 65,113
+ 13472: 68,113
+ 13473: 72,112
+ 13474: 76,113
+ 13475: 79,112
+ 13476: 80,114
+ 13477: 89,112
+ 13478: 88,115
+ 13479: 89,116
+ 13480: 88,118
+ 13481: 90,119
+ 13482: 93,117
+ 13483: 99,117
+ 13484: 101,120
+ 13485: 104,118
+ 13486: 113,117
+ 13487: 117,119
+ 13488: 123,117
+ 13489: 125,119
+ 13490: 131,117
+ 13491: 132,119
+ 13492: 139,117
+ 13493: 145,119
+ 13494: 148,119
+ 13495: 159,119
+ 13496: 148,122
+ 13497: 148,131
+ 13498: 149,136
+ 13501: 160,139
+ 13502: 145,143
+ 13503: 141,147
+ 13504: 154,149
+ 13505: 139,151
+ 13515: 129,103
+ 13516: 127,99
+ 13517: 132,96
+ 13518: 129,102
+ 13519: 129,106
+ 13520: 129,90
+ 13521: 127,86
+ 13522: 127,83
+ 13523: 129,80
+ 13524: 128,76
+ 13525: 134,76
+ 13526: 136,76
+ 13527: 123,76
+ 13528: 118,78
+ 13529: 120,74
+ 13530: 120,71
+ 13532: 117,66
+ 13533: 118,64
+ 13534: 120,63
+ 13535: 120,68
+ 13536: 120,59
+ 13537: 118,60
+ 13538: 120,55
+ 13539: 114,53
+ 13540: 112,55
+ 13541: 104,50
+ 13553: 81,63
+ 13554: 78,65
+ 13555: 76,64
+ 13556: 75,65
+ 13557: 74,63
+ 13558: 84,65
+ 13559: 85,65
+ 13560: 89,64
+ 13561: 89,63
+ 13562: 92,63
+ 13563: 94,66
+ 13564: 91,69
+ 13565: 88,68
+ 13566: 94,71
+ 13567: 92,74
+ 13568: 93,75
+ 13569: 94,77
+ 13570: 99,74
+ 13571: 99,76
+ 13572: 98,81
+ 13573: 99,83
+ 13574: 100,85
+ 13575: 101,88
+ 13576: 103,87
+ 13577: 106,88
+ 13578: 109,87
+ 13579: 110,86
+ 13580: 113,86
+ 13581: 113,84
+ 13582: 112,82
+ 13583: 113,78
+ 13584: 114,82
+ 13585: 114,85
+ 13586: 66,27
+ 13587: 68,30
+ 13588: 66,32
+ 13589: 67,37
+ 13590: 66,39
+ 13591: 69,42
+ 13592: 70,41
+ 13593: 72,43
+ 13594: 76,43
+ 13595: 78,41
+ 13596: 80,43
+ 13598: 82,41
+ 13599: 83,41
+ 13600: 84,40
+ 13601: 83,37
+ 13602: 84,35
+ 13603: 84,32
+ 13604: 82,31
+ 13605: 83,27
+ 13606: 84,26
+ 13607: 82,25
+ 13609: 67,50
+ 13612: 60,63
+ 13613: 54,65
+ 13614: 52,66
+ 13615: 53,63
+ 13616: 55,72
+ 13617: 57,76
+ 13618: 58,80
+ 13619: 55,82
+ 13620: 55,86
+ 13621: 57,89
+ 13622: 57,87
+ 13623: 55,91
+ 13624: 53,90
+ 13625: 55,95
+ 13626: 57,95
+ 13627: 55,98
+ 13628: 57,100
+ 13629: 57,104
+ 13630: 56,104
+ 13631: 55,107
+ 13632: 55,105
+ 13633: 57,110
+ 13634: 55,111
+ 13635: 57,114
+ 13636: 59,114
+ 13637: 64,112
+ 13638: 64,114
+ 13639: 71,114
+ 13640: 71,112
+ 13836: 49,99
+ 13837: 49,101
+ 13838: 51,102
+ 13839: 53,103
+ 13840: 53,99
+ 13841: 47,102
+ 14639: 30,103
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 8010: 156,79
+ 8011: 157,78
+ 8012: 158,79
+ 8670: 117,167
+ 8671: 120,168
+ 8672: 117,170
+ 8673: 118,171
+ 11440: 140,55
+ 11441: 139,45
+ 11542: 38,111
+ 11543: 39,112
+ 11544: 38,113
+ 11545: 48,111
+ 11591: 91,84
+ 11592: 91,87
+ 11593: 86,85
+ 11613: 89,122
+ 11615: 89,123
+ 11616: 93,128
+ 11617: 95,132
+ 11618: 94,134
+ 11619: 94,141
+ 11620: 95,140
+ 11621: 93,139
+ 11622: 95,136
+ 11623: 95,143
+ 11624: 94,146
+ 11625: 95,147
+ 11626: 93,150
+ 11627: 95,150
+ 11628: 94,154
+ 11629: 96,156
+ 11630: 98,155
+ 11631: 101,155
+ 11632: 100,154
+ 11633: 104,155
+ 11634: 106,155
+ 11635: 105,154
+ 11636: 109,155
+ 11637: 110,154
+ 11638: 112,155
+ 11639: 112,156
+ 11640: 109,156
+ 11641: 101,158
+ 11642: 97,160
+ 11643: 114,154
+ 11644: 117,155
+ 11645: 119,154
+ 11646: 117,154
+ 11647: 120,155
+ 11648: 120,156
+ 11649: 118,158
+ 11650: 115,160
+ 11651: 121,153
+ 11652: 123,154
+ 11653: 122,151
+ 11654: 123,148
+ 11655: 121,147
+ 11656: 122,146
+ 11657: 123,144
+ 11658: 122,141
+ 11659: 121,141
+ 11660: 122,139
+ 11661: 122,138
+ 11662: 122,136
+ 11663: 123,136
+ 11664: 122,137
+ 11665: 122,134
+ 11666: 122,132
+ 11667: 121,131
+ 11668: 121,131
+ 11669: 123,130
+ 11670: 121,129
+ 11671: 122,127
+ 11672: 122,126
+ 11673: 123,123
+ 11674: 121,123
+ 11675: 119,124
+ 11676: 116,123
+ 11677: 127,121
+ 11678: 129,124
+ 11679: 127,125
+ 11680: 125,126
+ 11681: 128,129
+ 11682: 132,125
+ 11683: 135,127
+ 11684: 137,125
+ 11685: 137,127
+ 11686: 135,131
+ 11688: 127,135
+ 11689: 127,136
+ 11690: 126,138
+ 11691: 126,131
+ 11692: 128,132
+ 11693: 131,133
+ 11696: 129,140
+ 11697: 119,134
+ 11698: 119,137
+ 11699: 118,139
+ 11700: 119,140
+ 11701: 112,148
+ 11702: 112,150
+ 11703: 110,151
+ 11704: 106,149
+ 11705: 104,151
+ 11706: 107,152
+ 11707: 118,151
+ 11708: 119,150
+ 11709: 115,150
+ 11710: 114,151
+ 11719: 89,139
+ 11720: 88,142
+ 11721: 85,136
+ 11722: 82,137
+ 11723: 80,139
+ 11724: 83,141
+ 11725: 83,137
+ 11726: 88,144
+ 11727: 87,147
+ 11728: 88,149
+ 11729: 88,152
+ 11730: 86,153
+ 11731: 86,152
+ 11732: 83,151
+ 11733: 82,152
+ 11734: 81,153
+ 11735: 77,151
+ 11736: 74,152
+ 11737: 73,151
+ 11738: 76,149
+ 11739: 73,146
+ 11740: 72,144
+ 11741: 72,142
+ 11742: 75,142
+ 11743: 73,138
+ 11744: 70,139
+ 11745: 72,137
+ 11746: 74,135
+ 11747: 73,133
+ 11748: 74,131
+ 11749: 76,132
+ 11750: 73,134
+ 11751: 74,132
+ 11752: 75,130
+ 11753: 73,128
+ 11754: 76,126
+ 11755: 77,125
+ 11756: 78,126
+ 11757: 82,125
+ 11758: 84,126
+ 11760: 87,125
+ 11761: 87,127
+ 11762: 89,128
+ 11763: 88,129
+ 11764: 88,133
+ 11765: 88,136
+ 11766: 88,135
+ 11767: 84,116
+ 11768: 80,118
+ 11769: 83,119
+ 11770: 84,118
+ 11771: 81,116
+ 11772: 103,124
+ 11773: 113,124
+ 11774: 112,123
+ 11776: 134,122
+ 11777: 138,121
+ 11778: 137,122
+ 11960: 157,107
+ 11961: 155,105
+ 11962: 156,109
+ 11963: 154,110
+ 11964: 150,107
+ 11965: 155,104
+ 11966: 149,104
+ 11967: 154,105
+ 11968: 149,108
+ 11969: 151,110
+ 11970: 149,111
+ 11971: 144,112
+ 11972: 146,112
+ 11973: 146,111
+ 11974: 146,110
+ 11975: 147,110
+ 11976: 147,103
+ 11977: 146,99
+ 11978: 142,100
+ 11979: 140,98
+ 11980: 138,96
+ 11981: 132,97
+ 11982: 134,100
+ 11983: 134,97
+ 11984: 132,103
+ 11985: 132,107
+ 11986: 135,106
+ 11989: 140,109
+ 11990: 138,109
+ 11991: 136,113
+ 11992: 138,113
+ 11995: 143,93
+ 11996: 142,94
+ 11997: 144,90
+ 11998: 142,87
+ 11999: 151,90
+ 12000: 148,90
+ 12001: 150,93
+ 12002: 152,90
+ 12003: 151,88
+ 12004: 152,92
+ 12005: 149,91
+ 12006: 147,93
+ 12007: 150,95
+ 12008: 151,94
+ 12009: 147,91
+ 12010: 147,89
+ 12011: 150,89
+ 12012: 148,88
+ 12013: 152,89
+ 12014: 154,90
+ 12015: 155,90
+ 12016: 155,91
+ 12017: 155,97
+ 12018: 157,99
+ 12019: 158,97
+ 12020: 151,98
+ 12021: 150,100
+ 12197: 63,85
+ 12198: 62,81
+ 14556: 129,113
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 8100: 160,48
+ 8101: 163,45
+ 8102: 160,43
+ 8103: 163,52
+ 8150: 155,86
+ 8151: 161,61
+ 12193: 61,80
+ 12194: 63,81
+ 12195: 61,82
+ 12196: 59,85
+ 13826: 48,99
+ 13827: 47,100
+ 13828: 46,101
+ 13829: 49,102
+ 13830: 51,100
+ 13831: 52,101
+ 13832: 53,100
+ 13833: 48,103
+ 13834: 52,103
+ 13835: 51,99
+ - node:
+ cleanable: True
+ color: '#C6FF91FF'
+ id: Donk
+ decals:
+ 8816: 90,164
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: Donk
+ decals:
+ 7764: 124.70336,35.87109
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 284: 36,56
+ 1902: 75,110
+ 2965: 38,117
+ 4789: 106.97817,93.89426
+ 4792: 111.87399,91.08867
+ 4806: 98.747986,98.95909
+ 5501: 82.42923,67.12222
+ 9028: 45.681576,122.01579
+ 9029: 48.862133,122.18941
+ 9030: 49.598244,123.07135
+ 9031: 48.674633,123.03663
+ 9059: 48.506878,125.518265
+ 10109: 135.98132,81.357765
+ 10110: 136.05635,82.70912
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRThree
+ decals:
+ 1903: 78,110
+ 2974: 39,116
+ 4808: 96.60833,100.246124
+ 9045: 47.855186,123.772736
+ 9048: 48.744156,123.75056
+ 9058: 47.709854,125.94188
+ 10104: 130.91786,82.62696
+ 10113: 137.92682,82.70197
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRTwo
+ decals:
+ 2975: 39,96
+ 4790: 111.95039,93.519226
+ 5502: 84.04367,67.87236
+ 6324: 108.91639,120.972305
+ 9057: 46.897354,125.93494
+ 13762: 64.065704,59.840702
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 1900: 69,110
+ 4788: 107.97122,92.07481
+ 4791: 113.04067,94.012276
+ 4805: 97.21556,101.519264
+ 4813: 97.83664,98.84797
+ 4820: 95.88109,101.80301
+ 5495: 79.07805,67.97021
+ 5496: 79.37158,67.13037
+ 9049: 49.89693,122.0282
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr2
+ decals:
+ 290: 36,59
+ 1901: 72,110
+ 4811: 97.39218,100.49612
+ 4814: 99.079025,99.89848
+ 5497: 80.496796,67.77452
+ 5498: 81.44263,67.09776
+ 10100: 131.83923,79.97959
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 2971: 48,116
+ 4803: 96.28503,98.172035
+ 4804: 99.02111,101.528534
+ 4817: 95.86561,98.9874
+ 5499: 82.14385,67.91313
+ 5500: 83.42399,67.073296
+ 9060: 49.2291,125.21966
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 1904: 79,110
+ 2972: 39,117
+ 2973: 47,116
+ 4778: 107.94343,90.26925
+ 4779: 107.02677,91.64426
+ 4780: 107.20039,93.352585
+ 4781: 112.65178,93.32478
+ 4782: 112.01983,92.269226
+ 4783: 112.74899,90.67895
+ 4801: 98.45632,98.13964
+ 4802: 96.53037,101.88963
+ 4816: 97.414986,97.91332
+ 4819: 99.09652,102.15419
+ 5503: 79.02097,67.31791
+ 5504: 80.89633,67.790825
+ 5505: 83.644135,67.1956
+ 9052: 48.557076,124.4657
+ 9064: 48.520767,125.92799
+ 10108: 135.69595,80.37932
+ 13760: 63.99279,58.037365
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 289: 36,57
+ 1905: 74,110
+ 4809: 98.33864,100.23222
+ 5506: 82.99184,67.87236
+ 5507: 80.23588,67.073296
+ 9032: 46.632965,122.13385
+ 9033: 45.473244,122.79357
+ 9034: 46.313522,123.34913
+ 9046: 45.987133,124.960236
+ 9053: 47.862633,124.63237
+ 9063: 49.333267,125.9766
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 283: 36,55
+ 1906: 70,110
+ 2968: 48,117
+ 2977: 40,97
+ 4810: 96.725525,99.4313
+ 6323: 107.874725,121.02095
+ 9047: 45.667686,124.05052
+ 9054: 46.786243,125.146255
+ 9062: 50.006878,125.57382
+ 10102: 131.83109,80.955444
+ 10107: 134.35873,81.28438
+ 10112: 138.01651,81.84583
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy1
+ decals:
+ 282: 36,54
+ 1907: 71,110
+ 2964: 39,97
+ 2969: 38,116
+ 2970: 47,117
+ 4787: 112.01982,90.019226
+ 4800: 98.19241,101.03779
+ 4812: 97.54034,99.60722
+ 4815: 98.25449,99.56764
+ 5508: 79.78742,67.8479
+ 5514: 83.317986,67.91313
+ 6322: 106.92333,121.0001
+ 9035: 46.188522,122.65468
+ 9036: 44.95241,123.95329
+ 9037: 45.45241,123.48107
+ 9038: 46.271854,124.14079
+ 9050: 49.980267,123.930984
+ 9051: 49.306656,124.47959
+ 9055: 47.675133,125.13931
+ 9061: 50.07632,124.84466
+ 9065: 50.006878,126.00438
+ 10101: 131.10541,80.640045
+ 10106: 135.02734,80.827774
+ 13761: 64.076126,58.923397
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 1908: 73,110
+ 5511: 81.85847,67.048836
+ 5512: 83.97844,67.03253
+ 10103: 131.35,81.60774
+ 10111: 137.1522,82.579666
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 291: 36,58
+ 1909: 76,110
+ 4807: 96.38148,101.00075
+ 5510: 81.56493,67.78267
+ 9044: 47.084354,124.272736
+ 10105: 134.23643,80.43639
+ 13763: 64.02405,60.841396
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 288: 36,60
+ 1910: 77,110
+ 2976: 40,96
+ 4784: 107.8601,91.19286
+ 4785: 107.68651,93.7762
+ 4786: 112.915665,92.53311
+ 4798: 97.04428,98.63037
+ 4799: 95.826675,100.05166
+ 4818: 98.095345,101.9439
+ 4821: 99.15846,98.27523
+ 4822: 99.06701,100.728935
+ 5509: 80.822945,67.01622
+ 5513: 82.836914,67.00807
+ 9039: 47.369076,122.09218
+ 9040: 46.95241,122.98107
+ 9041: 48.13991,122.057465
+ 9042: 47.848244,122.994965
+ 9043: 44.95241,122.057465
+ 9056: 46.008465,125.82382
+ 10114: 136.71825,82.96979
+ - node:
+ color: '#334E6DC8'
+ id: FullTileOverlayGreyscale
+ decals:
+ 119: 40,60
+ 120: 40,56
+ 130: 32,52
+ 131: 32,56
+ 132: 32,60
+ 133: 32,64
+ 134: 40,64
+ 135: 40,48
+ 136: 36,48
+ 182: 40,52
+ 184: 46,56
+ 185: 46,60
+ 216: 49,57
+ 218: 51,56
+ 239: 50,53
+ 268: 60,59
+ 401: 50,17
+ 402: 44,18
+ 403: 44,30
+ 404: 50,31
+ 446: 54,22
+ 447: 54,23
+ 448: 54,25
+ 449: 54,26
+ 605: 32,59
+ 606: 32,58
+ 607: 32,57
+ 2458: 61,60
+ 11230: 62,59
+ 11231: 62,58
+ - node:
+ color: '#3EB38896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1336: 75,115
+ 1337: 76,115
+ - node:
+ color: '#52B4E996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1221: 72,116
+ 1671: 76,102
+ 1672: 76,103
+ 1673: 76,104
+ 1674: 76,105
+ 1675: 77,105
+ 1855: 92,91
+ 2489: 40,94
+ 2490: 40,86
+ 5009: 109,80
+ 6566: 116,49
+ 6567: 116,48
+ 6568: 115,49
+ 6569: 117,49
+ 6570: 116,50
+ 9598: 84,116
+ 9599: 84,117
+ 9600: 84,118
+ 10646: 91,43
+ 10650: 90,42
+ 10651: 90,43
+ 14156: 124,62
+ 14336: 91,42
+ - node:
+ color: '#79150096'
+ id: FullTileOverlayGreyscale
+ decals:
+ 5428: 77,78
+ 5429: 75,78
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 9991: 153,88
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 14633: 114,97
+ 14634: 102,97
+ - node:
+ color: '#A4610696'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2453: 137,102
+ 2454: 137,103
+ 14555: 130,112
+ - node:
+ color: '#D381C996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2550: 50,91
+ 2551: 50,92
+ 2830: 35,90
+ 2831: 36,90
+ - node:
+ color: '#D4D4D428'
+ id: FullTileOverlayGreyscale
+ decals:
+ 12137: 117,64
+ 12138: 117,65
+ 12139: 117,66
+ 12143: 54,77
+ 12145: 58,80
+ 12146: 58,81
+ 13732: 65,55
+ 13733: 64,55
+ 13734: 63,55
+ 13735: 63,56
+ 13736: 64,56
+ 13737: 65,56
+ 13897: 94,53
+ 13898: 95,53
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: FullTileOverlayGreyscale
+ decals:
+ 13506: 122,116
+ 13507: 121,116
+ 13508: 120,116
+ 13643: 54,105
+ 13644: 54,106
+ 13645: 54,107
+ - node:
+ color: '#D4D4D496'
+ id: FullTileOverlayGreyscale
+ decals:
+ 9601: 83,116
+ 9602: 83,117
+ 9603: 83,118
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: FullTileOverlayGreyscale
+ decals:
+ 14211: 95,107
+ - node:
+ color: '#DE3A3A96'
+ id: FullTileOverlayGreyscale
+ decals:
+ 741: 79,116
+ 742: 79,117
+ 743: 79,118
+ 744: 79,119
+ 1222: 73,116
+ 2491: 40,87
+ 2492: 40,93
+ 3114: 132,75
+ 3115: 133,75
+ 3116: 140,73
+ 3117: 140,74
+ 3118: 142,75
+ 3119: 143,75
+ 3398: 138,73
+ 3399: 138,74
+ 3401: 122,59
+ 3402: 123,59
+ 3466: 133,70
+ 3467: 132,70
+ 3468: 132,71
+ 3469: 133,71
+ 3470: 133,72
+ 3471: 132,72
+ 4459: 90,115
+ 5008: 103,84
+ 10807: 96,114
+ 10808: 96,115
+ 14179: 131,61
+ - node:
+ color: '#EFB34196'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1334: 115,122
+ 1335: 116,122
+ 3888: 131,145
+ 9592: 81,116
+ 9593: 81,117
+ 9594: 81,118
+ 10647: 98,43
+ 10648: 99,42
+ 10649: 99,43
+ 14337: 98,42
+ - node:
+ color: '#FA750096'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2455: 84,107
+ 2456: 84,108
+ 2457: 84,109
+ 4823: 89,101
+ 9595: 80,116
+ 9596: 80,117
+ 9597: 80,118
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Gene
+ decals:
+ 7689: 123.48747,38.489807
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: Gib
+ decals:
+ 7688: 115.60864,36.264915
+ - node:
+ cleanable: True
+ color: '#F98AFFFF'
+ id: Gib
+ decals:
+ 8817: 76,158
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FF17FFFF'
+ id: Gib
+ decals:
+ 10514: 163.70428,147.32538
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc1
+ decals:
+ 302: 36,55
+ 6319: 107.20111,121.02095
+ 6321: 107.86778,121.048744
+ 13767: 63.992798,61.11415
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc2
+ decals:
+ 303: 36,56
+ 10158: 134.54193,79.95234
+ 13769: 64.041405,59.071068
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc3
+ decals:
+ 304: 36,58
+ 10161: 132.1699,79.95929
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc4
+ decals:
+ 305: 36,59
+ 6320: 108.48583,121.0001
+ 10157: 133.63916,81.10512
+ 10162: 137.78561,80.348175
+ 13768: 64.06224,57.945282
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd1
+ decals:
+ 295: 36,60
+ 306: 36.00832,54.568092
+ 1911: 69,110
+ 1917: 75,110
+ 2978: 39.145184,96.69549
+ 2983: 38.707684,116.40584
+ 2984: 47.546623,116.02042
+ 5515: 78.92041,66.999916
+ 10160: 133.68777,80.723175
+ 13764: 64.05529,58.37093
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 296: 36,57
+ 307: 35.945816,55.58198
+ 1912: 70,110
+ 1918: 76,110
+ 2979: 39.4681,96.1434
+ 2980: 39.79102,96.63299
+ 2982: 38.60352,116.957924
+ 2985: 47.05704,116.55167
+ 4793: 107.0013,92.551636
+ 4794: 112.76057,91.63038
+ 5525: 81.473434,68.15638
+ 5526: 79.7926,68.14279
+ 5527: 83.37209,68.17541
+ 5528: 79.51537,67.61279
+ 9066: 44.965942,123.13428
+ 9067: 46.396496,122.09261
+ 9068: 50.035385,123.18289
+ 9069: 49.077053,124.09956
+ 9070: 46.264553,125.73845
+ 10134: 131.0322,81.292465
+ 10135: 130.93036,83.00738
+ 10136: 135.57816,80.05263
+ 10141: 136.34668,80.92606
+ 10142: 136.24945,79.99551
+ 10143: 138.10593,83.1022
+ 10144: 137.54575,82.361465
+ 10145: 135.52776,82.282814
+ 10152: 134.47888,82.957565
+ 10153: 133.93858,82.095634
+ 10154: 132.22758,80.551994
+ 10155: 131.06555,82.17104
+ 13765: 64.034454,59.507137
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 297: 36,54
+ 299: 36,56
+ 308: 35.98748,56.53337
+ 1913: 71,110
+ 1919: 77,110
+ 2986: 47.671623,116.72875
+ 5516: 80.79033,68.152306
+ 5520: 78.93128,68.09795
+ 5521: 84.04639,68.11426
+ 5522: 83.12773,66.97273
+ 9071: 48.29978,125.914795
+ 9072: 49.619225,125.06064
+ 9073: 48.542835,122.39397
+ 9074: 45.890057,122.227295
+ 10146: 135.29628,81.48651
+ 13770: 64.0553,59.877186
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse1
+ decals:
+ 298: 36,55
+ 309: 36.008312,57.52643
+ 1914: 72,110
+ 1920: 78,110
+ 2981: 38.18685,116.37459
+ 4797: 113.01982,93.02621
+ 5523: 82.437386,68.04903
+ 6318: 107.99278,120.99859
+ 9075: 46.012268,124.254196
+ 9076: 47.588657,123.0528
+ 9077: 49.0956,125.650024
+ 9078: 49.915047,122.2403
+ 10140: 137.23557,81.3844
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 301: 36,59
+ 310: 36.03609,58.550247
+ 1915: 73,110
+ 1921: 79,110
+ 4796: 112.98859,90.06787
+ 5517: 82.06775,66.92381
+ 5519: 80.24675,66.929245
+ 6317: 109.0275,121.02638
+ 10138: 137.1476,79.95847
+ 10139: 137.92075,80.79643
+ 10151: 134.24739,82.202934
+ 10156: 132.9586,81.37595
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 300: 36,58
+ 311: 35.994423,59.536358
+ 1916: 74,110
+ 4795: 106.98856,93.93243
+ 5518: 84.04639,66.95643
+ 5524: 81.165405,67.46196
+ 6316: 106.999725,121.03333
+ 9079: 49.082237,122.004196
+ 9080: 50.012794,126.01114
+ 9081: 44.9755,124.004196
+ 9082: 45.913,125.92085
+ 9083: 47.308773,125.11696
+ 10137: 138.01334,79.98162
+ 10147: 135.21758,83.019714
+ 10149: 132.9679,82.756226
+ 10150: 133.78271,83.06178
+ 10159: 133.60443,79.96623
+ 13766: 64.013626,60.55995
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10062: 132,94
+ 10063: 133,94
+ 10064: 134,94
+ 10065: 135,94
+ 10066: 136,94
+ 10080: 136,90
+ 10081: 135,90
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 149: 33,64
+ 151: 35,64
+ 152: 36,64
+ 153: 37,64
+ 154: 38,64
+ 155: 39,64
+ 227: 49,60
+ 228: 50,60
+ 237: 52,61
+ 254: 47,66
+ 255: 48,66
+ 256: 49,66
+ 263: 56,59
+ 264: 57,59
+ 265: 58,59
+ 266: 59,59
+ 345: 48,42
+ 346: 49,42
+ 347: 50,42
+ 366: 46,46
+ 367: 48,46
+ 438: 44,22
+ 439: 42,22
+ 496: 36,76
+ 5604: 44,46
+ 5605: 45,46
+ 6928: 134,153
+ 6929: 135,153
+ 11074: 49,71
+ 11075: 48,71
+ 11076: 47,71
+ 11085: 48,75
+ 11086: 47,75
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 761: 73,123
+ 762: 74,123
+ 763: 78,123
+ 764: 79,123
+ 765: 80,123
+ 766: 81,123
+ 767: 82,123
+ 768: 83,123
+ 769: 84,123
+ 771: 77,123
+ 772: 76,123
+ 773: 75,123
+ 799: 73,119
+ 800: 74,119
+ 801: 75,119
+ 802: 76,119
+ 14152: 70,123
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1371: 76,92
+ 1372: 77,92
+ 1373: 78,92
+ 1374: 73,92
+ 1375: 72,92
+ 1376: 71,92
+ 1386: 73,100
+ 1387: 76,100
+ 1389: 72,96
+ 1390: 73,96
+ 1391: 74,96
+ 1392: 75,96
+ 1393: 76,96
+ 1394: 77,96
+ 1516: 80,84
+ 1517: 81,84
+ 1647: 68,108
+ 1648: 69,108
+ 1649: 70,108
+ 1650: 71,108
+ 1651: 72,108
+ 1652: 73,108
+ 1653: 74,108
+ 1654: 75,108
+ 1655: 76,108
+ 1656: 77,108
+ 1657: 78,108
+ 1658: 80,108
+ 1659: 79,108
+ 1718: 67,84
+ 1719: 68,84
+ 1720: 69,84
+ 1790: 60,104
+ 1791: 61,104
+ 1792: 62,104
+ 1804: 61,110
+ 1805: 62,110
+ 1814: 67,88
+ 1815: 82,88
+ 1816: 80,88
+ 1817: 79,88
+ 1818: 77,88
+ 1819: 72,88
+ 1820: 70,88
+ 1821: 69,88
+ 3596: 123,65
+ 5654: 124,83
+ 5655: 123,83
+ 5661: 125,86
+ 6578: 115,51
+ 6579: 116,51
+ 6580: 119,51
+ 11020: 87,88
+ 11021: 88,88
+ 11022: 89,88
+ 11023: 90,88
+ 11796: 117,86
+ 11797: 118,86
+ 11798: 119,86
+ 11799: 120,86
+ 11806: 121,86
+ 14339: 91,41
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 5389: 69,76
+ 5392: 70,76
+ 5393: 71,76
+ 5394: 72,76
+ 5395: 73,76
+ 5400: 63,75
+ 5401: 64,75
+ 5440: 87,73
+ 5443: 87,76
+ 5448: 89,77
+ 5455: 82,71
+ 5456: 83,71
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 6765: 158,128
+ 6769: 156,123
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 9977: 147,96
+ 9978: 150,96
+ 10009: 149,90
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 2434: 143,91
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 11848: 115,114
+ 11849: 114,114
+ 11850: 113,114
+ 11851: 112,114
+ 11852: 111,114
+ 11853: 110,114
+ 11854: 109,114
+ 11855: 108,114
+ 11856: 107,114
+ 11857: 106,114
+ 11858: 105,114
+ 11859: 104,114
+ 11860: 103,114
+ 11861: 102,114
+ 11862: 101,114
+ 11880: 96,103
+ 11881: 97,103
+ 11882: 98,103
+ 11883: 99,103
+ 11890: 99,93
+ 11913: 111,98
+ 11914: 110,98
+ 11915: 109,98
+ 11916: 105,98
+ 11917: 106,98
+ 11918: 107,98
+ 11919: 108,98
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 3597: 123,74
+ 5180: 107,99
+ 5181: 106,99
+ 5182: 105,99
+ 5183: 109,99
+ 5184: 110,99
+ 5185: 111,99
+ 5216: 94,104
+ 5217: 95,104
+ 5218: 96,104
+ 5219: 97,104
+ 5220: 98,104
+ 5242: 98,94
+ 5243: 100,94
+ 5279: 118,104
+ 5280: 119,104
+ 5281: 120,104
+ 5314: 100,64
+ 5315: 101,64
+ 5318: 112,64
+ 5319: 111,64
+ 7231: 89,28
+ 7232: 90,28
+ 10844: 123,101
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10017: 144,100
+ 10018: 146,100
+ 10019: 147,100
+ 10020: 151,100
+ 10032: 156,100
+ 10033: 155,100
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 612: 38,48
+ 613: 39,48
+ 2077: 141,100
+ 2078: 142,100
+ 2092: 138,113
+ 2093: 139,113
+ 2156: 131,110
+ 2157: 132,110
+ 2158: 133,110
+ 2159: 134,110
+ 2172: 135,107
+ 2193: 144,106
+ 2452: 37,48
+ 9862: 156,111
+ 9863: 155,111
+ 9864: 154,111
+ 9865: 151,111
+ 9866: 150,111
+ 9885: 151,104
+ 9886: 152,104
+ 9921: 153,104
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 610: 34,49
+ 2515: 43,109
+ 2523: 32,101
+ 2524: 33,101
+ 2525: 34,101
+ 2526: 35,101
+ 2527: 36,101
+ 2532: 41,101
+ 2567: 48,97
+ 2568: 49,97
+ 2569: 50,97
+ 2570: 51,97
+ 2571: 52,97
+ 2572: 53,97
+ 2622: 31,117
+ 2623: 32,117
+ 2624: 33,117
+ 2625: 34,117
+ 2641: 40,111
+ 2642: 41,111
+ 2646: 44,111
+ 2647: 45,111
+ 2648: 46,111
+ 2661: 42,111
+ 2671: 39,108
+ 2672: 38,108
+ 2690: 25,105
+ 2692: 27,105
+ 2702: 25,101
+ 2703: 27,101
+ 2704: 26,103
+ 2705: 47,93
+ 2706: 48,93
+ 2741: 50,84
+ 2742: 51,84
+ 2743: 49,84
+ 2744: 47,84
+ 2745: 48,84
+ 2768: 39,84
+ 2781: 36,94
+ 2786: 39,94
+ 2787: 38,94
+ 2852: 39,114
+ 2853: 40,114
+ 2854: 46,114
+ 2855: 47,114
+ 2918: 46,108
+ 2919: 47,108
+ 2922: 51,107
+ 3024: 38,102
+ 3025: 39,102
+ 3601: 123,68
+ 9537: 47,103
+ 9538: 50,103
+ 13818: 48,103
+ 13819: 49,103
+ 13820: 51,103
+ 13821: 52,103
+ 14605: 26,105
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 14589: 61,91
+ 14590: 62,91
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 5725: 99,115
+ 5726: 100,115
+ 5727: 101,115
+ 5728: 105,115
+ 5729: 106,115
+ 5730: 107,115
+ 5731: 108,115
+ 5732: 109,115
+ 5733: 110,115
+ 5734: 111,115
+ 5735: 115,115
+ 5736: 116,115
+ 5737: 117,115
+ 6010: 58,65
+ 6011: 59,65
+ 6012: 60,65
+ 6013: 61,65
+ 6014: 62,65
+ 6015: 63,65
+ 6016: 65,65
+ 6017: 66,65
+ 6018: 67,65
+ 6019: 68,65
+ 6020: 69,65
+ 6021: 70,65
+ 6022: 71,65
+ 6195: 86,114
+ 6410: 130,78
+ 6411: 131,78
+ 6412: 132,78
+ 6413: 133,78
+ 6414: 136,78
+ 6415: 137,78
+ 6416: 138,78
+ 6417: 139,78
+ 6418: 140,78
+ 6419: 141,78
+ 6420: 142,78
+ 6421: 143,78
+ 6536: 112,55
+ 6537: 113,55
+ 6538: 114,55
+ 6539: 115,55
+ 6540: 116,55
+ 6541: 117,55
+ 6656: 101,52
+ 6657: 102,52
+ 6658: 103,52
+ 6659: 104,52
+ 6660: 105,52
+ 6695: 94,78
+ 6696: 95,78
+ 6803: 140,119
+ 6806: 146,119
+ 6809: 151,119
+ 6810: 153,119
+ 7109: 93,23
+ 7110: 92,23
+ 7111: 91,23
+ 7112: 90,23
+ 7115: 87,20
+ 7134: 95,32
+ 7135: 96,32
+ 7136: 97,32
+ 7137: 90,20
+ 7138: 93,20
+ 7139: 94,20
+ 7140: 96,20
+ 7157: 103,32
+ 7158: 104,32
+ 7159: 105,32
+ 7160: 107,20
+ 7189: 113,31
+ 7190: 114,31
+ 7191: 116,31
+ 7192: 117,31
+ 7797: 70,18
+ 7798: 71,18
+ 7799: 74,18
+ 7800: 75,18
+ 7801: 76,18
+ 7802: 78,18
+ 7803: 79,18
+ 7804: 80,18
+ 7805: 81,18
+ 7806: 85,20
+ 9624: 141,141
+ 13425: 92,78
+ 13889: 93,52
+ 13890: 94,52
+ 13891: 95,52
+ 13892: 96,52
+ 13893: 97,52
+ 13894: 98,52
+ 13895: 99,52
+ 13896: 100,52
+ 14323: 92,52
+ 14362: 107,52
+ 14363: 106,52
+ 14524: 111,55
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 3087: 131,66
+ 3088: 132,66
+ 3089: 133,66
+ 3104: 131,74
+ 3105: 134,74
+ 3129: 134,56
+ 3130: 133,56
+ 3131: 132,56
+ 3135: 129,60
+ 3136: 130,60
+ 3151: 143,60
+ 3152: 145,60
+ 3153: 144,60
+ 3226: 140,71
+ 3227: 141,71
+ 3229: 144,71
+ 3230: 145,71
+ 3263: 142,58
+ 3264: 143,58
+ 3265: 144,58
+ 3266: 145,58
+ 3267: 146,58
+ 3295: 136,56
+ 3306: 146,53
+ 3307: 147,53
+ 3308: 148,53
+ 3309: 149,53
+ 3329: 152,58
+ 3330: 153,58
+ 3331: 154,58
+ 3352: 141,49
+ 3369: 127,52
+ 3370: 128,52
+ 3371: 129,52
+ 3372: 130,52
+ 3373: 131,52
+ 3374: 132,52
+ 3375: 126,56
+ 3376: 125,56
+ 3377: 124,56
+ 3378: 123,56
+ 3403: 138,71
+ 3415: 155,64
+ 3416: 154,64
+ 3417: 153,64
+ 3418: 152,64
+ 3443: 152,74
+ 3444: 153,74
+ 3457: 142,67
+ 3458: 143,67
+ 3459: 144,67
+ 3464: 140,62
+ 3486: 146,49
+ 3487: 147,49
+ 3488: 148,49
+ 3958: 142,71
+ 3966: 148,72
+ 4399: 133,60
+ 4976: 109,78
+ 4977: 108,78
+ 4978: 107,78
+ 4979: 106,78
+ 4980: 105,78
+ 4981: 104,78
+ 4989: 103,78
+ 9649: 152,153
+ 9663: 156,153
+ 10635: 92,41
+ 10638: 94,42
+ 10639: 95,42
+ 10643: 97,41
+ 10680: 102,48
+ 10801: 93,115
+ 10802: 94,115
+ 10803: 95,115
+ 13848: 91,48
+ 13849: 92,48
+ 13850: 93,48
+ 13851: 94,48
+ 13852: 97,48
+ 13853: 98,48
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10519: 154,149
+ 10520: 156,149
+ - node:
+ color: '#DE3A3ACE'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 14171: 151,69
+ 14172: 152,69
+ 14173: 153,69
+ 14174: 154,69
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 812: 91,123
+ 813: 92,123
+ 822: 96,125
+ 823: 97,125
+ 824: 98,125
+ 825: 99,125
+ 826: 100,125
+ 879: 94,156
+ 880: 95,156
+ 881: 96,156
+ 882: 97,156
+ 883: 98,156
+ 884: 100,156
+ 885: 101,156
+ 886: 102,156
+ 887: 103,156
+ 888: 104,156
+ 889: 106,156
+ 890: 107,156
+ 891: 108,156
+ 892: 109,156
+ 893: 110,156
+ 894: 111,156
+ 895: 112,156
+ 896: 113,156
+ 897: 114,156
+ 898: 115,156
+ 899: 116,156
+ 900: 118,156
+ 901: 119,156
+ 902: 120,156
+ 903: 121,156
+ 904: 122,156
+ 986: 120,125
+ 987: 119,125
+ 988: 118,125
+ 989: 117,125
+ 990: 116,125
+ 1036: 107,152
+ 1037: 106,152
+ 1038: 108,152
+ 1039: 109,152
+ 1040: 110,152
+ 1055: 115,152
+ 1056: 116,152
+ 1070: 127,129
+ 1071: 126,129
+ 1082: 134,129
+ 1083: 133,129
+ 1084: 132,129
+ 1093: 136,129
+ 1108: 126,140
+ 1109: 127,140
+ 1110: 129,140
+ 1111: 130,140
+ 1112: 131,140
+ 1171: 111,162
+ 1172: 110,162
+ 1173: 109,162
+ 1174: 108,162
+ 1175: 107,162
+ 1176: 106,162
+ 1177: 105,162
+ 1192: 116,162
+ 1193: 117,162
+ 1194: 118,162
+ 3600: 123,71
+ 3870: 126,146
+ 3871: 127,146
+ 3887: 131,146
+ 6282: 114,121
+ 6290: 101,121
+ 6291: 102,121
+ 6295: 104,125
+ 6296: 105,125
+ 6297: 106,125
+ 6298: 107,125
+ 6299: 108,125
+ 6300: 109,125
+ 6301: 110,125
+ 6302: 111,125
+ 6303: 112,125
+ 6749: 92,61
+ 6750: 93,61
+ 7058: 145,134
+ 7212: 117,27
+ 7213: 118,27
+ 7214: 119,27
+ 7229: 117,23
+ 7230: 118,23
+ 9579: 92,140
+ 11117: 89,61
+ 11118: 90,61
+ 14044: 132,123
+ 14045: 133,123
+ 14285: 87,61
+ 14286: 88,61
+ 14338: 98,41
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10179: 97,162
+ 10189: 101,162
+ 14708: 129,133
+ 14709: 128,133
+ 14715: 128,137
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1606: 86,110
+ 1607: 87,110
+ 1608: 88,110
+ 1624: 87,109
+ 1860: 86,104
+ 1861: 88,104
+ 14135: 87,97
+ 14136: 88,97
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10058: 133,88
+ 10059: 132,88
+ 10060: 135,88
+ 10061: 136,88
+ 10082: 136,92
+ 10083: 135,92
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 124: 34,49
+ 126: 37,48
+ 127: 38,48
+ 128: 39,48
+ 245: 49,48
+ 246: 48,48
+ 275: 60,54
+ 276: 59,54
+ 277: 58,54
+ 278: 56,54
+ 340: 47,35
+ 365: 46,44
+ 369: 48,44
+ 436: 42,26
+ 437: 44,26
+ 5598: 45,44
+ 5599: 44,44
+ 5600: 43,44
+ 6927: 135,150
+ 7090: 99,25
+ 7091: 100,25
+ 7092: 101,25
+ 7103: 98,23
+ 11057: 47,68
+ 11058: 48,68
+ 11059: 49,68
+ 11062: 51,68
+ 11063: 52,68
+ 11083: 48,73
+ 11084: 47,73
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 774: 71,121
+ 775: 72,121
+ 776: 73,121
+ 777: 74,121
+ 778: 75,121
+ 779: 76,121
+ 780: 77,121
+ 781: 78,121
+ 782: 79,121
+ 809: 74,116
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1384: 73,94
+ 1385: 76,94
+ 1397: 72,98
+ 1398: 73,98
+ 1399: 74,98
+ 1400: 75,98
+ 1401: 76,98
+ 1402: 77,98
+ 1467: 73,90
+ 1468: 74,90
+ 1469: 75,90
+ 1472: 76,90
+ 1480: 76,85
+ 1481: 75,85
+ 1482: 74,85
+ 1483: 73,85
+ 1486: 67,86
+ 1487: 68,86
+ 1488: 69,86
+ 1489: 70,86
+ 1490: 71,86
+ 1491: 78,86
+ 1492: 79,86
+ 1493: 80,86
+ 1494: 81,86
+ 1495: 82,86
+ 1513: 82,82
+ 1514: 83,82
+ 1581: 87,90
+ 1582: 88,90
+ 1639: 80,106
+ 1640: 79,106
+ 1641: 78,106
+ 1642: 71,106
+ 1643: 70,106
+ 1644: 69,106
+ 1645: 68,106
+ 1676: 77,102
+ 1678: 73,102
+ 1679: 72,102
+ 1812: 82,90
+ 1813: 67,90
+ 1836: 68,80
+ 1837: 67,80
+ 1838: 66,80
+ 4991: 103,86
+ 4992: 104,86
+ 4993: 105,86
+ 4994: 106,86
+ 4995: 107,86
+ 4996: 108,86
+ 4997: 109,86
+ 5668: 122,80
+ 6581: 114,47
+ 6582: 115,47
+ 6583: 116,47
+ 6584: 117,47
+ 6585: 119,47
+ 11027: 88,84
+ 11028: 89,84
+ 11029: 90,84
+ 11783: 120,80
+ 11784: 119,80
+ 11785: 118,80
+ 11786: 117,80
+ 11807: 121,80
+ 14114: 76,106
+ 14115: 77,106
+ 14139: 61,99
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14210: 95,106
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5380: 74,67
+ 5381: 75,67
+ 5382: 76,67
+ 5383: 69,72
+ 5384: 70,72
+ 5385: 71,72
+ 5406: 62,72
+ 5407: 63,72
+ 5408: 64,72
+ 5409: 65,72
+ 5436: 87,72
+ 5437: 87,75
+ 5457: 83,77
+ 5458: 82,77
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 6778: 156,121
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 9986: 147,88
+ 9987: 149,88
+ 9988: 148,88
+ 9989: 151,88
+ 10010: 149,94
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 2433: 143,87
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 11820: 112,112
+ 11821: 111,112
+ 11822: 110,112
+ 11823: 109,112
+ 11824: 108,112
+ 11825: 107,112
+ 11826: 106,112
+ 11827: 105,112
+ 11828: 104,112
+ 11832: 115,107
+ 11833: 116,107
+ 11834: 100,107
+ 11835: 101,107
+ 11876: 96,97
+ 11877: 97,97
+ 11878: 98,97
+ 11879: 99,97
+ 11891: 99,91
+ 11920: 105,97
+ 11921: 106,97
+ 11922: 107,97
+ 11923: 108,97
+ 11924: 109,97
+ 11925: 110,97
+ 11926: 111,97
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 3059: 123,73
+ 5160: 105,96
+ 5161: 106,96
+ 5162: 108,96
+ 5163: 107,96
+ 5164: 109,96
+ 5166: 111,96
+ 5167: 112,96
+ 5200: 98,96
+ 5201: 97,96
+ 5202: 95,96
+ 5203: 96,96
+ 5204: 94,96
+ 5229: 100,96
+ 5230: 100,90
+ 5231: 99,90
+ 5232: 98,90
+ 5251: 114,106
+ 5252: 115,106
+ 5253: 102,106
+ 5254: 101,106
+ 5284: 116,96
+ 5285: 118,96
+ 5286: 119,96
+ 5287: 120,96
+ 5288: 121,96
+ 5309: 101,62
+ 5312: 111,62
+ 5740: 98,106
+ 5741: 118,106
+ 7236: 90,25
+ 11206: 105,71
+ 11207: 106,71
+ 11208: 107,71
+ 13436: 77,63
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10013: 141,98
+ 10014: 142,98
+ 10015: 144,98
+ 10016: 147,98
+ 10021: 150,98
+ 10034: 155,96
+ 10035: 156,96
+ 10036: 157,96
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 2081: 139,96
+ 2087: 137,109
+ 2088: 138,109
+ 2166: 136,109
+ 2177: 131,96
+ 2178: 132,96
+ 2179: 133,96
+ 2192: 144,102
+ 2357: 151,102
+ 2359: 153,102
+ 2360: 154,102
+ 2361: 155,102
+ 2362: 156,102
+ 2425: 143,93
+ 9879: 153,109
+ 9880: 154,109
+ 9911: 152,109
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1769: 60,97
+ 1770: 61,97
+ 1771: 62,97
+ 2534: 30,99
+ 2535: 31,99
+ 2536: 32,99
+ 2537: 33,99
+ 2538: 35,99
+ 2539: 36,99
+ 2540: 37,99
+ 2543: 47,95
+ 2544: 48,95
+ 2545: 49,95
+ 2546: 50,95
+ 2564: 53,86
+ 2574: 47,99
+ 2575: 48,99
+ 2576: 49,99
+ 2577: 50,99
+ 2578: 51,99
+ 2579: 52,99
+ 2602: 38,99
+ 2603: 39,99
+ 2604: 40,99
+ 2605: 41,99
+ 2633: 32,107
+ 2634: 33,107
+ 2649: 40,113
+ 2650: 41,113
+ 2651: 42,113
+ 2652: 44,113
+ 2653: 45,113
+ 2654: 46,113
+ 2696: 25,99
+ 2697: 26,99
+ 2698: 27,99
+ 2699: 25,103
+ 2700: 27,103
+ 2701: 26,101
+ 2714: 47,86
+ 2715: 48,86
+ 2732: 47,80
+ 2733: 48,80
+ 2734: 49,80
+ 2735: 50,80
+ 2736: 51,80
+ 2737: 52,80
+ 2773: 38,82
+ 2774: 39,82
+ 2782: 36,86
+ 2784: 37,86
+ 2785: 39,86
+ 3020: 39,104
+ 3045: 123,67
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14584: 62,89
+ 14585: 61,89
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5743: 121,109
+ 5744: 122,109
+ 5745: 123,109
+ 5955: 67,24
+ 5956: 65,36
+ 5957: 83,24
+ 5958: 72,44
+ 5959: 65,36
+ 6165: 72,112
+ 6343: 123,117
+ 6344: 124,117
+ 6345: 125,117
+ 6346: 126,117
+ 6347: 130,117
+ 6348: 132,117
+ 6349: 133,117
+ 6350: 134,117
+ 6351: 135,117
+ 6428: 135,76
+ 6528: 117,76
+ 6548: 109,50
+ 6694: 95,76
+ 6817: 159,117
+ 6818: 158,117
+ 6819: 156,117
+ 6820: 155,117
+ 6821: 154,117
+ 6822: 153,117
+ 6823: 152,117
+ 6824: 151,117
+ 6825: 150,117
+ 6826: 149,117
+ 6827: 148,117
+ 6828: 147,117
+ 6829: 146,117
+ 6830: 145,117
+ 6831: 144,117
+ 6832: 143,117
+ 6833: 141,117
+ 6834: 140,117
+ 6835: 139,117
+ 6836: 138,117
+ 6837: 137,117
+ 6972: 141,136
+ 7012: 143,147
+ 7117: 87,18
+ 7118: 88,18
+ 7119: 90,18
+ 7120: 92,18
+ 7121: 94,18
+ 7122: 96,18
+ 7128: 97,30
+ 7141: 90,21
+ 7142: 96,21
+ 7144: 100,30
+ 7145: 101,30
+ 7146: 102,30
+ 7147: 103,30
+ 7149: 105,18
+ 7150: 106,18
+ 7151: 107,18
+ 7152: 108,18
+ 7182: 111,22
+ 7183: 112,22
+ 7207: 116,29
+ 7208: 117,29
+ 7209: 114,29
+ 7781: 73,16
+ 7782: 74,16
+ 7783: 75,16
+ 7784: 76,16
+ 7785: 77,16
+ 7786: 78,16
+ 7787: 79,16
+ 7788: 80,16
+ 7789: 83,16
+ 7790: 70,16
+ 7807: 85,18
+ 8327: 60,77
+ 8328: 61,77
+ 8546: 95,106
+ 10307: 140,140
+ 11018: 125,103
+ 12750: 111,50
+ 14263: 85,50
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 13509: 122,117
+ 13510: 121,117
+ 13511: 120,117
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 3083: 134,58
+ 3084: 133,62
+ 3085: 132,62
+ 3097: 133,68
+ 3098: 132,68
+ 3099: 131,68
+ 3124: 130,54
+ 3125: 131,54
+ 3126: 132,54
+ 3127: 134,54
+ 3128: 133,54
+ 3141: 127,58
+ 3142: 128,58
+ 3148: 143,62
+ 3150: 145,62
+ 3249: 140,69
+ 3250: 141,69
+ 3251: 142,69
+ 3252: 143,69
+ 3253: 144,69
+ 3254: 145,69
+ 3255: 146,69
+ 3279: 146,55
+ 3280: 148,55
+ 3281: 147,55
+ 3282: 144,55
+ 3283: 143,55
+ 3285: 141,51
+ 3293: 136,54
+ 3294: 137,54
+ 3299: 149,48
+ 3300: 148,48
+ 3301: 147,48
+ 3302: 146,48
+ 3322: 153,49
+ 3323: 154,49
+ 3353: 141,44
+ 3354: 139,44
+ 3355: 132,44
+ 3356: 131,44
+ 3357: 130,44
+ 3364: 127,47
+ 3365: 128,47
+ 3396: 125,54
+ 3423: 152,60
+ 3424: 153,60
+ 3425: 154,60
+ 3426: 152,66
+ 3427: 153,66
+ 3453: 142,64
+ 3454: 143,64
+ 3491: 148,52
+ 3494: 146,52
+ 3495: 147,52
+ 3961: 142,73
+ 3965: 144,62
+ 4400: 133,58
+ 4440: 92,112
+ 4458: 95,112
+ 10625: 98,39
+ 10626: 97,39
+ 10627: 95,39
+ 10628: 96,39
+ 10629: 94,39
+ 10630: 93,39
+ 10631: 92,39
+ 10632: 91,39
+ 10687: 91,45
+ 10688: 92,45
+ 10689: 97,45
+ 10690: 98,45
+ 10693: 94,44
+ 10694: 95,44
+ 10799: 94,112
+ 10806: 93,112
+ 13435: 138,76
+ 14175: 151,69
+ 14176: 153,69
+ 14177: 154,69
+ 14178: 152,69
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10518: 156,151
+ 10523: 156,148
+ 10524: 155,148
+ 10525: 154,148
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 599: 35,64
+ 600: 36,64
+ 601: 37,64
+ 814: 91,121
+ 815: 92,121
+ 816: 93,121
+ 817: 94,121
+ 818: 95,121
+ 819: 96,121
+ 820: 97,121
+ 829: 99,123
+ 830: 100,123
+ 905: 96,154
+ 906: 97,154
+ 907: 102,154
+ 908: 103,154
+ 909: 104,154
+ 910: 106,154
+ 911: 107,154
+ 912: 108,154
+ 913: 109,154
+ 914: 110,154
+ 915: 112,154
+ 916: 113,154
+ 917: 114,154
+ 918: 115,154
+ 919: 116,154
+ 920: 119,154
+ 921: 120,154
+ 992: 119,121
+ 993: 120,121
+ 994: 121,121
+ 995: 122,121
+ 1048: 105,147
+ 1049: 111,147
+ 1072: 127,121
+ 1073: 126,121
+ 1121: 134,131
+ 1122: 133,131
+ 1123: 132,131
+ 1124: 131,131
+ 1125: 130,131
+ 1126: 129,131
+ 1127: 127,131
+ 1128: 126,131
+ 1164: 106,158
+ 1165: 107,158
+ 1166: 108,158
+ 1167: 109,158
+ 1168: 110,158
+ 1169: 111,158
+ 1170: 112,158
+ 1299: 117,123
+ 3051: 123,70
+ 3865: 126,142
+ 3866: 127,142
+ 3883: 131,144
+ 3949: 116,158
+ 3950: 118,158
+ 4409: 136,125
+ 4410: 135,125
+ 4411: 133,125
+ 4412: 132,125
+ 6757: 92,58
+ 6758: 93,58
+ 7052: 144,130
+ 7053: 145,130
+ 7215: 117,25
+ 7226: 117,19
+ 7227: 118,19
+ 7228: 119,19
+ 9578: 92,138
+ 13919: 116,25
+ 14048: 132,121
+ 14049: 133,121
+ 14050: 134,121
+ 14064: 116,150
+ 14278: 87,59
+ 14279: 88,59
+ 14280: 89,59
+ 14281: 90,59
+ 14399: 128,121
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10175: 98,158
+ 10176: 97,158
+ 10186: 101,158
+ 10187: 100,158
+ 14704: 129,138
+ 14705: 128,138
+ 14712: 128,134
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1594: 88,96
+ 1626: 87,107
+ 1858: 86,106
+ 1859: 88,106
+ 1865: 87,99
+ - node:
+ color: '#FFFFFFFF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14105: 72,106
+ 14106: 73,106
+ 14108: 75,106
+ 14111: 74,106
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10050: 131,90
+ 10051: 131,89
+ 10052: 131,92
+ 10053: 131,93
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 48: 42,52
+ 49: 42,53
+ 50: 42,54
+ 51: 42,55
+ 52: 42,57
+ 53: 42,58
+ 54: 42,59
+ 58: 42,56
+ 59: 42,60
+ 79: 42,67
+ 80: 42,68
+ 81: 42,69
+ 82: 42,70
+ 83: 42,71
+ 84: 42,72
+ 86: 42,74
+ 87: 42,75
+ 97: 42,76
+ 104: 42,64
+ 105: 42,66
+ 139: 32,53
+ 140: 32,54
+ 141: 32,55
+ 145: 32,61
+ 146: 32,62
+ 147: 32,63
+ 148: 33,50
+ 187: 46,54
+ 188: 46,55
+ 198: 49,55
+ 199: 49,56
+ 202: 52,55
+ 203: 52,56
+ 204: 52,57
+ 205: 52,58
+ 257: 46,63
+ 258: 46,64
+ 259: 46,65
+ 260: 55,57
+ 261: 55,56
+ 262: 55,55
+ 349: 46,39
+ 350: 46,40
+ 351: 46,36
+ 352: 46,37
+ 380: 47,29
+ 383: 48,25
+ 384: 48,24
+ 385: 48,23
+ 386: 48,22
+ 389: 48,26
+ 390: 52,20
+ 391: 52,21
+ 392: 52,22
+ 393: 52,23
+ 394: 52,25
+ 395: 52,26
+ 396: 52,27
+ 397: 52,28
+ 399: 51,30
+ 400: 51,18
+ 434: 45,23
+ 435: 45,25
+ 450: 47,19
+ 495: 32,72
+ 500: 34,75
+ 4022: 46,49
+ 4023: 46,50
+ 5601: 42,45
+ 6924: 133,151
+ 6925: 133,152
+ 7083: 101,21
+ 7084: 101,22
+ 7093: 98,26
+ 7101: 99,22
+ 7102: 99,21
+ 11071: 51,72
+ 11072: 51,73
+ 11113: 51,74
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 790: 68,120
+ 791: 68,119
+ 792: 68,118
+ 793: 68,117
+ 14151: 68,122
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1338: 65,91
+ 1339: 65,93
+ 1340: 65,95
+ 1341: 65,97
+ 1343: 65,100
+ 1344: 65,101
+ 1345: 65,102
+ 1346: 65,103
+ 1347: 65,98
+ 1348: 65,96
+ 1349: 65,94
+ 1350: 65,92
+ 1353: 81,101
+ 1354: 81,100
+ 1355: 81,99
+ 1356: 81,95
+ 1357: 81,94
+ 1358: 81,93
+ 1359: 81,92
+ 1369: 65,90
+ 1380: 70,90
+ 1381: 70,91
+ 1404: 78,97
+ 1511: 79,83
+ 1571: 67,93
+ 1572: 67,95
+ 1573: 67,97
+ 1574: 67,99
+ 1575: 67,101
+ 1576: 67,103
+ 1578: 86,91
+ 1579: 86,92
+ 1580: 86,93
+ 1662: 81,109
+ 1663: 81,110
+ 1666: 65,109
+ 1667: 65,110
+ 1668: 65,107
+ 1681: 71,103
+ 1698: 70,97
+ 1699: 81,97
+ 1725: 65,81
+ 1726: 65,82
+ 1727: 65,83
+ 1782: 59,100
+ 1783: 59,101
+ 1784: 59,102
+ 1785: 59,103
+ 3038: 126,64
+ 3039: 126,63
+ 4014: 83,96
+ 4016: 83,92
+ 4998: 110,79
+ 4999: 110,80
+ 5000: 110,81
+ 5001: 110,82
+ 5002: 110,83
+ 5003: 110,84
+ 5004: 110,85
+ 6572: 113,48
+ 6573: 113,49
+ 6574: 113,50
+ 11034: 86,85
+ 11035: 86,86
+ 11056: 83,94
+ 11787: 116,81
+ 11788: 116,82
+ 11789: 116,83
+ 11790: 116,84
+ 11791: 116,85
+ 12078: 60,109
+ 14157: 122,63
+ 14158: 122,64
+ 14162: 128,64
+ 14163: 128,65
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5386: 68,73
+ 5387: 68,75
+ 5404: 61,73
+ 5405: 61,74
+ 5419: 73,69
+ 5420: 73,70
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 6766: 157,127
+ 6767: 157,125
+ 6768: 157,124
+ 6781: 154,126
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 9980: 146,94
+ 9981: 146,93
+ 9982: 146,92
+ 9983: 146,91
+ 9984: 146,90
+ 10012: 151,92
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 2429: 142,89
+ 2430: 142,88
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 11809: 99,108
+ 11810: 99,109
+ 11811: 99,110
+ 11812: 99,111
+ 11813: 99,112
+ 11816: 114,108
+ 11817: 114,109
+ 11818: 114,110
+ 11866: 95,98
+ 11867: 95,99
+ 11868: 95,100
+ 11869: 95,101
+ 11870: 95,102
+ 11894: 98,92
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 3054: 126,72
+ 3055: 126,73
+ 5173: 112,100
+ 5174: 112,101
+ 5175: 112,102
+ 5177: 112,103
+ 5190: 103,99
+ 5191: 103,100
+ 5192: 103,101
+ 5193: 103,102
+ 5207: 94,98
+ 5208: 94,99
+ 5209: 94,102
+ 5233: 97,91
+ 5234: 97,92
+ 5299: 115,103
+ 5300: 115,102
+ 5301: 115,101
+ 5302: 115,100
+ 5303: 115,99
+ 7233: 88,27
+ 11212: 112,69
+ 14168: 128,72
+ 14169: 128,73
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10037: 154,97
+ 10038: 154,98
+ 10039: 142,95
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 2000: 138,98
+ 2002: 138,100
+ 2003: 138,101
+ 2004: 138,104
+ 2005: 138,105
+ 2006: 138,106
+ 2016: 142,103
+ 2017: 142,104
+ 2018: 142,105
+ 2090: 136,111
+ 2091: 136,112
+ 2147: 131,99
+ 2148: 131,100
+ 2149: 131,101
+ 2150: 131,102
+ 2151: 131,103
+ 2152: 131,104
+ 2155: 131,107
+ 2352: 147,104
+ 2353: 147,103
+ 9853: 148,109
+ 9854: 148,108
+ 9855: 148,107
+ 9856: 147,105
+ 9889: 155,105
+ 9892: 155,108
+ 9922: 153,106
+ 9923: 152,108
+ 14544: 131,105
+ 14545: 131,106
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 9966: 150,106
+ 9967: 150,107
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1745: 59,92
+ 1746: 59,93
+ 1747: 59,94
+ 1748: 59,95
+ 1749: 59,97
+ 2518: 42,106
+ 2519: 42,105
+ 2520: 42,104
+ 2521: 42,103
+ 2522: 42,102
+ 2547: 51,93
+ 2548: 51,94
+ 2553: 51,88
+ 2554: 51,89
+ 2555: 51,90
+ 2588: 42,84
+ 2589: 42,85
+ 2590: 42,86
+ 2591: 42,87
+ 2592: 42,88
+ 2593: 42,89
+ 2594: 42,90
+ 2595: 42,91
+ 2596: 42,93
+ 2597: 42,92
+ 2598: 42,95
+ 2599: 42,96
+ 2600: 42,97
+ 2601: 42,98
+ 2607: 30,103
+ 2608: 30,104
+ 2609: 30,105
+ 2611: 30,109
+ 2612: 30,110
+ 2613: 30,111
+ 2614: 30,113
+ 2615: 30,114
+ 2616: 30,115
+ 2639: 41,116
+ 2656: 47,112
+ 2673: 37,105
+ 2674: 37,106
+ 2675: 37,107
+ 2686: 24,101
+ 2687: 24,102
+ 2688: 24,103
+ 2689: 24,104
+ 2709: 46,91
+ 2710: 46,92
+ 2711: 46,88
+ 2712: 46,87
+ 2746: 46,81
+ 2747: 46,82
+ 2775: 35,88
+ 2776: 35,89
+ 2778: 35,91
+ 2779: 35,92
+ 2828: 39,90
+ 2829: 37,90
+ 2832: 32,108
+ 2833: 32,109
+ 2834: 32,110
+ 2836: 34,109
+ 2837: 34,110
+ 2839: 32,115
+ 2840: 32,116
+ 2842: 34,115
+ 2843: 34,116
+ 2846: 32,112
+ 2850: 34,114
+ 2859: 38,113
+ 2860: 38,111
+ 2869: 41,115
+ 2926: 50,106
+ 2931: 46,106
+ 3029: 37,83
+ 3041: 126,67
+ 3963: 126,66
+ 14164: 128,66
+ 14165: 128,67
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5709: 98,107
+ 5710: 98,108
+ 5711: 98,109
+ 5712: 98,111
+ 5713: 98,112
+ 5714: 98,113
+ 5715: 98,114
+ 6047: 55,77
+ 6049: 55,79
+ 6050: 55,80
+ 6051: 55,81
+ 6052: 55,83
+ 6053: 55,82
+ 6114: 55,108
+ 6115: 55,109
+ 6116: 55,110
+ 6117: 55,111
+ 6118: 55,112
+ 6220: 87,115
+ 6221: 87,116
+ 6222: 87,117
+ 6444: 127,87
+ 6445: 127,88
+ 6446: 127,89
+ 6447: 127,91
+ 6448: 127,92
+ 6449: 127,93
+ 6515: 118,75
+ 6516: 118,74
+ 6517: 118,72
+ 6518: 118,71
+ 6519: 118,70
+ 6520: 118,69
+ 6521: 118,68
+ 6522: 118,67
+ 6523: 118,66
+ 6524: 118,65
+ 6525: 118,64
+ 6526: 118,63
+ 6530: 118,57
+ 6531: 118,59
+ 6532: 118,60
+ 6533: 118,61
+ 6534: 118,56
+ 6881: 144,137
+ 6882: 144,138
+ 6883: 144,139
+ 6884: 144,140
+ 6887: 148,125
+ 6888: 148,126
+ 6889: 148,127
+ 6890: 148,128
+ 6891: 148,129
+ 6902: 148,142
+ 7105: 94,24
+ 7106: 94,25
+ 7107: 94,26
+ 7108: 94,27
+ 7113: 88,21
+ 7114: 88,22
+ 7130: 94,29
+ 7131: 94,30
+ 7170: 104,29
+ 7171: 104,28
+ 7172: 104,24
+ 7174: 104,20
+ 7175: 104,21
+ 7180: 108,22
+ 7181: 108,23
+ 7185: 111,26
+ 7186: 111,29
+ 7187: 111,30
+ 7193: 118,34
+ 7194: 118,35
+ 7195: 118,36
+ 7196: 118,38
+ 7197: 118,40
+ 7791: 67,20
+ 7792: 67,21
+ 7813: 82,19
+ 7814: 82,20
+ 7815: 82,21
+ 7816: 82,22
+ 12088: 124,107
+ 12089: 124,108
+ 12289: 55,114
+ 13646: 55,105
+ 13647: 55,106
+ 13648: 55,107
+ 13725: 66,50
+ 13726: 66,51
+ 13727: 66,52
+ 13728: 66,53
+ 13729: 66,54
+ 13730: 66,55
+ 13731: 66,56
+ 13753: 66,48
+ 14069: 87,118
+ 14243: 82,48
+ 14360: 109,53
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 14206: 94,107
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 3092: 130,63
+ 3093: 130,64
+ 3094: 130,65
+ 3100: 130,69
+ 3101: 130,70
+ 3103: 130,73
+ 3120: 126,61
+ 3121: 129,56
+ 3122: 129,57
+ 3146: 125,59
+ 3154: 143,61
+ 3215: 137,57
+ 3216: 137,58
+ 3217: 137,60
+ 3218: 137,61
+ 3219: 137,62
+ 3220: 137,63
+ 3221: 137,65
+ 3222: 137,66
+ 3224: 137,69
+ 3241: 147,65
+ 3242: 147,66
+ 3243: 147,67
+ 3244: 147,68
+ 3258: 147,63
+ 3259: 147,62
+ 3260: 147,61
+ 3261: 147,60
+ 3262: 147,59
+ 3291: 138,52
+ 3292: 138,53
+ 3310: 144,52
+ 3311: 144,51
+ 3312: 144,50
+ 3313: 144,49
+ 3324: 152,51
+ 3325: 152,52
+ 3326: 152,53
+ 3344: 138,45
+ 3345: 138,46
+ 3346: 138,47
+ 3347: 138,48
+ 3358: 129,45
+ 3359: 129,46
+ 3360: 126,49
+ 3361: 126,50
+ 3383: 122,47
+ 3384: 122,48
+ 3385: 122,49
+ 3395: 122,55
+ 3420: 151,62
+ 3421: 151,63
+ 3435: 151,73
+ 3436: 151,72
+ 3437: 151,71
+ 3438: 151,70
+ 3440: 151,68
+ 3456: 141,66
+ 3489: 149,50
+ 3490: 149,51
+ 3959: 137,67
+ 4420: 122,54
+ 4439: 91,114
+ 9645: 151,149
+ 9646: 151,150
+ 9647: 151,151
+ 10619: 90,46
+ 10684: 101,46
+ 10699: 101,41
+ 10700: 101,42
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 845: 97,139
+ 850: 97,135
+ 852: 93,131
+ 853: 93,132
+ 854: 93,133
+ 855: 93,137
+ 856: 93,134
+ 857: 93,135
+ 858: 93,136
+ 862: 93,141
+ 863: 93,142
+ 864: 93,143
+ 865: 93,145
+ 866: 93,144
+ 867: 93,146
+ 868: 93,147
+ 869: 93,127
+ 870: 93,128
+ 871: 93,129
+ 872: 93,149
+ 873: 93,150
+ 874: 93,151
+ 875: 93,152
+ 876: 93,153
+ 877: 93,154
+ 945: 93,124
+ 946: 93,125
+ 962: 121,149
+ 963: 121,150
+ 964: 121,151
+ 965: 121,152
+ 966: 121,153
+ 968: 121,143
+ 969: 121,142
+ 970: 121,141
+ 971: 121,140
+ 972: 121,139
+ 974: 121,137
+ 975: 121,135
+ 976: 121,134
+ 977: 121,133
+ 978: 121,132
+ 979: 121,131
+ 982: 120,128
+ 983: 120,129
+ 1022: 120,145
+ 1024: 104,151
+ 1025: 104,150
+ 1026: 104,149
+ 1027: 104,148
+ 1042: 110,148
+ 1043: 110,149
+ 1044: 110,150
+ 1045: 110,151
+ 1063: 125,123
+ 1064: 125,124
+ 1065: 125,125
+ 1066: 125,126
+ 1067: 125,127
+ 1097: 131,128
+ 1102: 125,132
+ 1103: 125,133
+ 1104: 125,135
+ 1105: 125,134
+ 1106: 125,137
+ 1107: 125,139
+ 1151: 120,146
+ 1178: 104,159
+ 1179: 104,160
+ 1180: 104,161
+ 1189: 115,159
+ 1190: 115,160
+ 1191: 115,161
+ 1300: 118,122
+ 1312: 118,135
+ 1313: 118,139
+ 3048: 126,70
+ 3604: 126,69
+ 3867: 125,143
+ 3868: 125,144
+ 3869: 125,145
+ 3951: 131,127
+ 6285: 100,120
+ 6286: 103,122
+ 6287: 103,123
+ 7048: 143,132
+ 7049: 143,133
+ 7218: 116,20
+ 7225: 116,21
+ 14166: 128,69
+ 14167: 128,70
+ 14283: 86,60
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10180: 96,160
+ 10181: 96,161
+ 14700: 130,134
+ 14701: 130,135
+ 14702: 130,136
+ 14703: 130,137
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1586: 85,100
+ 1587: 85,101
+ 1588: 85,103
+ 1627: 86,108
+ - node:
+ color: '#00000093'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3207: 133,44
+ 3208: 133,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10067: 137,89
+ 10068: 137,90
+ 10069: 137,91
+ 10070: 137,92
+ 10071: 137,93
+ 10084: 134,91
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 64: 44,63
+ 65: 44,62
+ 66: 44,61
+ 67: 44,60
+ 71: 44,56
+ 72: 44,55
+ 73: 44,54
+ 74: 44,53
+ 75: 44,52
+ 88: 44,67
+ 89: 44,68
+ 92: 44,72
+ 93: 44,73
+ 94: 44,75
+ 96: 44,76
+ 106: 44,64
+ 107: 44,66
+ 109: 40,53
+ 110: 40,54
+ 111: 40,55
+ 113: 40,57
+ 114: 40,58
+ 115: 40,59
+ 200: 48,55
+ 201: 48,56
+ 208: 48,57
+ 209: 48,58
+ 212: 51,57
+ 213: 51,58
+ 231: 53,54
+ 232: 53,55
+ 233: 53,56
+ 234: 53,57
+ 235: 53,59
+ 236: 53,60
+ 242: 50,50
+ 243: 50,49
+ 364: 53,39
+ 373: 49,19
+ 374: 49,20
+ 375: 50,22
+ 376: 50,23
+ 377: 50,25
+ 378: 50,26
+ 379: 49,28
+ 405: 49,29
+ 426: 57,23
+ 428: 57,25
+ 429: 46,22
+ 430: 46,23
+ 431: 46,24
+ 432: 46,25
+ 433: 46,26
+ 440: 41,23
+ 441: 41,25
+ 499: 32,75
+ 4019: 44,49
+ 4020: 44,50
+ 4021: 44,51
+ 6922: 136,152
+ 7085: 102,20
+ 7086: 102,21
+ 7087: 102,22
+ 7088: 102,26
+ 7089: 102,27
+ 7099: 97,18
+ 7100: 97,20
+ 11065: 53,69
+ 11066: 53,72
+ 11067: 53,73
+ 11068: 53,74
+ 11114: 44,71
+ 11225: 61,55
+ 11226: 61,56
+ 11227: 61,57
+ 11228: 61,58
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 795: 70,120
+ 796: 70,119
+ 805: 77,117
+ 806: 77,118
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 608: 32,54
+ 609: 32,55
+ 1361: 68,92
+ 1362: 68,94
+ 1363: 68,93
+ 1364: 68,95
+ 1365: 68,99
+ 1366: 68,100
+ 1367: 68,101
+ 1382: 79,91
+ 1383: 79,90
+ 1403: 71,97
+ 1473: 84,90
+ 1474: 84,91
+ 1475: 84,92
+ 1476: 84,93
+ 1519: 84,83
+ 1565: 66,102
+ 1566: 66,100
+ 1567: 66,98
+ 1568: 66,96
+ 1569: 66,94
+ 1570: 66,92
+ 1660: 67,109
+ 1661: 67,110
+ 1696: 68,97
+ 1697: 79,97
+ 1721: 70,83
+ 1722: 70,82
+ 1739: 63,86
+ 1786: 63,100
+ 1787: 63,101
+ 1788: 63,102
+ 1789: 63,103
+ 1806: 63,107
+ 1807: 63,109
+ 1847: 89,92
+ 1848: 89,93
+ 1849: 89,94
+ 4017: 82,93
+ 4018: 82,95
+ 5653: 122,84
+ 5658: 125,81
+ 6575: 120,48
+ 6576: 120,49
+ 11030: 91,85
+ 11031: 91,86
+ 11032: 91,87
+ 13917: 63,82
+ 13918: 63,83
+ 14099: 68,102
+ 14100: 68,103
+ 14101: 68,104
+ 14124: 84,95
+ 14159: 123,63
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5396: 75,74
+ 5397: 75,71
+ 5398: 66,73
+ 5399: 66,75
+ 5421: 77,68
+ 5422: 77,69
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 6771: 159,127
+ 6772: 159,126
+ 6773: 159,125
+ 6775: 159,123
+ 6776: 159,122
+ 6782: 155,127
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 9974: 144,88
+ 9975: 152,92
+ 9976: 152,95
+ 9993: 152,89
+ 10011: 147,92
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 2435: 144,90
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 11838: 102,108
+ 11839: 102,109
+ 11840: 102,110
+ 11841: 117,108
+ 11842: 117,109
+ 11843: 117,110
+ 11844: 117,111
+ 11845: 117,112
+ 11871: 100,98
+ 11872: 100,99
+ 11873: 100,100
+ 11874: 100,101
+ 11875: 100,102
+ 11895: 100,92
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5169: 113,99
+ 5170: 113,100
+ 5171: 113,101
+ 5172: 113,102
+ 5194: 104,100
+ 5195: 104,101
+ 5196: 104,103
+ 5197: 104,102
+ 5222: 101,103
+ 5223: 101,102
+ 5224: 101,101
+ 5225: 101,100
+ 5226: 101,99
+ 5239: 101,91
+ 5240: 101,92
+ 5241: 101,93
+ 5290: 123,97
+ 7237: 92,26
+ 10842: 122,102
+ 10843: 122,103
+ 11215: 100,69
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10029: 158,97
+ 10030: 158,98
+ 10031: 158,99
+ 10042: 144,95
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 2008: 140,101
+ 2009: 140,102
+ 2010: 140,103
+ 2011: 140,104
+ 2012: 140,105
+ 2013: 140,106
+ 2094: 140,110
+ 2095: 140,111
+ 2103: 144,94
+ 2160: 136,104
+ 2161: 136,105
+ 2162: 136,106
+ 2164: 134,108
+ 2168: 135,97
+ 2169: 135,98
+ 2170: 136,100
+ 2171: 136,101
+ 2189: 145,103
+ 2190: 145,104
+ 2191: 145,105
+ 2364: 158,103
+ 9859: 157,105
+ 9860: 157,108
+ 9881: 150,108
+ 9884: 150,105
+ 9919: 152,107
+ 9920: 153,105
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 9968: 155,107
+ 9969: 155,106
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1751: 63,90
+ 1753: 63,92
+ 1754: 63,93
+ 1755: 63,94
+ 1756: 63,95
+ 1757: 63,96
+ 1758: 63,97
+ 2493: 40,88
+ 2494: 40,89
+ 2495: 40,90
+ 2496: 40,91
+ 2497: 40,92
+ 2498: 44,84
+ 2499: 44,85
+ 2500: 44,86
+ 2501: 44,87
+ 2502: 44,88
+ 2503: 44,91
+ 2504: 44,92
+ 2505: 44,93
+ 2506: 44,95
+ 2507: 44,98
+ 2508: 44,99
+ 2509: 44,102
+ 2510: 44,103
+ 2511: 44,104
+ 2512: 44,105
+ 2513: 44,106
+ 2558: 53,89
+ 2559: 53,90
+ 2560: 53,91
+ 2561: 53,92
+ 2562: 53,93
+ 2563: 53,94
+ 2581: 53,100
+ 2626: 36,113
+ 2629: 36,116
+ 2630: 36,111
+ 2631: 35,108
+ 2632: 35,109
+ 2637: 45,116
+ 2655: 39,112
+ 2668: 40,105
+ 2669: 40,106
+ 2682: 28,101
+ 2683: 28,102
+ 2684: 28,103
+ 2685: 28,104
+ 2717: 49,88
+ 2718: 49,89
+ 2719: 49,90
+ 2748: 53,81
+ 2749: 53,82
+ 2750: 53,83
+ 2857: 48,113
+ 2858: 48,112
+ 2868: 45,115
+ 2928: 48,106
+ 2929: 48,107
+ 2987: 52,106
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5716: 118,107
+ 5717: 118,108
+ 5718: 118,109
+ 5719: 118,111
+ 5720: 118,112
+ 5721: 118,113
+ 5722: 118,114
+ 6023: 57,66
+ 6024: 57,67
+ 6054: 57,83
+ 6055: 57,82
+ 6056: 57,81
+ 6057: 57,80
+ 6058: 57,79
+ 6059: 57,77
+ 6060: 57,76
+ 6061: 57,75
+ 6062: 57,74
+ 6063: 57,73
+ 6064: 57,72
+ 6065: 57,71
+ 6066: 57,70
+ 6067: 57,69
+ 6455: 129,87
+ 6456: 129,86
+ 6457: 129,84
+ 6458: 129,83
+ 6459: 129,82
+ 6460: 129,80
+ 6461: 129,81
+ 6462: 129,79
+ 6682: 94,64
+ 6683: 94,65
+ 6684: 94,66
+ 6685: 94,67
+ 6686: 94,68
+ 6687: 94,69
+ 6688: 94,70
+ 6689: 94,71
+ 6690: 94,72
+ 6691: 94,74
+ 6692: 94,75
+ 6816: 160,118
+ 6842: 150,120
+ 6843: 150,121
+ 6844: 150,122
+ 6845: 150,123
+ 6848: 150,125
+ 6849: 150,126
+ 6850: 150,127
+ 6851: 150,128
+ 6852: 150,129
+ 6853: 150,130
+ 6905: 150,142
+ 6971: 142,137
+ 7124: 96,24
+ 7125: 96,26
+ 7126: 96,28
+ 7127: 96,29
+ 7161: 106,21
+ 7162: 106,22
+ 7163: 106,23
+ 7164: 106,24
+ 7165: 106,25
+ 7166: 106,27
+ 7167: 106,29
+ 7168: 106,30
+ 7169: 106,31
+ 7178: 110,20
+ 7179: 113,23
+ 7200: 120,39
+ 7201: 120,38
+ 7202: 120,35
+ 7203: 120,34
+ 7204: 120,33
+ 7205: 120,32
+ 7206: 120,31
+ 7794: 68,21
+ 7795: 68,22
+ 7808: 84,17
+ 7809: 84,21
+ 7810: 84,22
+ 12084: 125,109
+ 12085: 125,108
+ 12455: 94,63
+ 12836: 144,76
+ 13752: 68,48
+ 14242: 84,48
+ - node:
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3191: 133,48
+ 3192: 133,47
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 14207: 96,107
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 602: 32,61
+ 603: 32,62
+ 604: 32,63
+ 3061: 128,63
+ 3062: 128,65
+ 3063: 128,64
+ 3064: 128,66
+ 3065: 128,67
+ 3066: 128,68
+ 3067: 128,69
+ 3068: 128,70
+ 3069: 128,72
+ 3070: 128,73
+ 3074: 135,63
+ 3075: 135,64
+ 3076: 135,65
+ 3106: 135,69
+ 3107: 135,70
+ 3108: 135,71
+ 3109: 135,72
+ 3110: 135,73
+ 3132: 131,57
+ 3137: 128,61
+ 3155: 145,61
+ 3235: 149,71
+ 3236: 149,70
+ 3237: 149,69
+ 3238: 149,68
+ 3239: 149,66
+ 3240: 149,65
+ 3245: 139,65
+ 3246: 139,66
+ 3247: 139,67
+ 3248: 139,68
+ 3268: 141,59
+ 3269: 141,60
+ 3273: 149,62
+ 3274: 149,63
+ 3275: 149,60
+ 3276: 149,59
+ 3277: 149,58
+ 3286: 142,52
+ 3287: 142,53
+ 3288: 142,54
+ 3303: 150,49
+ 3304: 150,51
+ 3305: 150,52
+ 3332: 155,57
+ 3333: 155,56
+ 3334: 155,55
+ 3336: 155,53
+ 3337: 155,52
+ 3338: 155,51
+ 3339: 155,50
+ 3340: 142,48
+ 3341: 142,47
+ 3342: 142,46
+ 3343: 142,45
+ 3379: 124,47
+ 3380: 124,48
+ 3381: 124,49
+ 3382: 124,50
+ 3410: 156,62
+ 3428: 154,67
+ 3429: 154,68
+ 3431: 154,70
+ 3432: 154,71
+ 3433: 154,72
+ 3434: 154,73
+ 3461: 145,65
+ 3462: 145,66
+ 3463: 139,63
+ 3496: 145,50
+ 3497: 145,51
+ 4445: 96,113
+ 4982: 102,79
+ 4983: 102,80
+ 4984: 102,81
+ 4985: 102,82
+ 4986: 102,83
+ 4987: 102,84
+ 4988: 102,85
+ 9651: 153,152
+ 9652: 153,151
+ 9653: 153,150
+ 9662: 157,152
+ 10677: 103,46
+ 10678: 103,47
+ 10686: 99,46
+ 10703: 102,41
+ 13434: 120,59
+ 13780: 89,114
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 831: 98,122
+ 835: 96,128
+ 836: 96,129
+ 840: 98,135
+ 842: 98,139
+ 922: 95,149
+ 923: 95,150
+ 924: 95,151
+ 925: 95,152
+ 926: 95,153
+ 928: 95,147
+ 929: 95,146
+ 930: 95,144
+ 931: 95,143
+ 932: 95,142
+ 933: 95,141
+ 934: 95,140
+ 935: 95,139
+ 936: 95,137
+ 937: 95,135
+ 938: 95,131
+ 939: 95,132
+ 940: 95,133
+ 941: 95,134
+ 955: 123,155
+ 956: 123,154
+ 957: 123,153
+ 958: 123,152
+ 959: 123,151
+ 960: 123,150
+ 961: 123,149
+ 997: 123,123
+ 998: 123,124
+ 999: 123,125
+ 1000: 123,127
+ 1001: 123,129
+ 1002: 123,130
+ 1003: 123,131
+ 1004: 123,132
+ 1005: 123,133
+ 1006: 123,134
+ 1007: 123,135
+ 1008: 123,137
+ 1009: 123,139
+ 1010: 123,140
+ 1011: 123,141
+ 1012: 123,143
+ 1013: 123,142
+ 1014: 123,144
+ 1015: 123,145
+ 1016: 123,146
+ 1017: 123,147
+ 1028: 112,148
+ 1029: 112,149
+ 1030: 112,150
+ 1031: 112,151
+ 1032: 106,148
+ 1033: 106,149
+ 1034: 106,150
+ 1035: 106,151
+ 1060: 119,150
+ 1061: 119,151
+ 1075: 129,125
+ 1076: 129,122
+ 1077: 129,123
+ 1078: 129,127
+ 1079: 129,124
+ 1080: 129,128
+ 1116: 136,135
+ 1117: 136,134
+ 1118: 136,133
+ 1119: 136,132
+ 1183: 113,159
+ 1184: 113,160
+ 1185: 113,161
+ 1304: 119,135
+ 1306: 119,139
+ 3855: 132,137
+ 3856: 132,138
+ 3857: 132,139
+ 3863: 128,144
+ 3885: 132,145
+ 3947: 119,159
+ 3948: 119,161
+ 6283: 113,122
+ 6284: 113,123
+ 6751: 94,60
+ 7054: 146,132
+ 7056: 146,133
+ 7222: 120,21
+ 7223: 120,22
+ 7224: 120,20
+ 10280: 137,127
+ 10281: 137,128
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10182: 102,161
+ 10183: 102,160
+ 10184: 102,159
+ 14713: 129,135
+ 14714: 129,136
+ 14716: 127,138
+ 14717: 127,137
+ 14718: 127,133
+ 14719: 127,134
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1600: 88,101
+ 1601: 88,102
+ 1609: 89,107
+ 1610: 89,108
+ 1611: 89,109
+ 1625: 88,108
+ 1634: 83,110
+ 14142: 83,98
+ 14143: 83,99
+ 14144: 83,100
+ 14145: 83,101
+ 14146: 83,103
+ - node:
+ color: '#FFFFFF93'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3202: 133,50
+ 3964: 133,51
+ - node:
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 9973: 148,99
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 2196: 135,99
+ 9970: 156,110
+ 9971: 156,106
+ - node:
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 634: 55,62
+ 8818: 90,170
+ 9972: 152,99
+ 10826: 102,145
+ 14153: 69,123
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 708: 109,145
+ 709: 108,145
+ 710: 107,145
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 2197: 135,106
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 14375: 157,126
+ 14592: 59,89
+ 14593: 59,90
+ 14594: 59,91
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 633: 61,62
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Max
+ decals:
+ 7693: 94.34972,27.004776
+ - node:
+ color: '#0000009E'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 623: 59,51
+ - node:
+ color: '#21212193'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 11232: 60,50
+ 11233: 61,50
+ 11234: 61,51
+ 11235: 60,51
+ 11236: 60,52
+ 11237: 61,52
+ - node:
+ color: '#334E6DFF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 4085: 33,66
+ 4086: 32,66
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: MonoOverlay
+ decals:
+ 10087: 135,91
+ - node:
+ color: '#334E6DC8'
+ id: MonoOverlay
+ decals:
+ 1230: 135,121
+ - node:
+ color: '#52B4E996'
+ id: MonoOverlay
+ decals:
+ 1453: 77,94
+ 1454: 77,95
+ 1455: 78,95
+ 1456: 78,94
+ 1457: 79,94
+ 1458: 79,95
+ 1459: 72,97
+ 1460: 73,97
+ 1461: 74,97
+ 1462: 75,97
+ 1463: 76,97
+ 1464: 77,97
+ 1465: 74,89
+ 1466: 75,89
+ 5611: 120,81
+ 5612: 119,81
+ 5613: 120,82
+ 5614: 119,82
+ 5615: 119,83
+ 5616: 120,83
+ 5617: 118,81
+ 5618: 117,81
+ 5621: 117,82
+ 5622: 118,82
+ 5623: 118,83
+ 5624: 117,83
+ 5625: 117,84
+ 5626: 118,84
+ 5627: 119,84
+ 5628: 120,84
+ 5629: 120,85
+ 5630: 118,85
+ 5631: 117,85
+ 5632: 119,85
+ 10268: 132,126
+ 14102: 69,103
+ 14103: 69,102
+ 14104: 69,104
+ - node:
+ color: '#9FED5896'
+ id: MonoOverlay
+ decals:
+ 1435: 70,94
+ 1436: 71,94
+ 1437: 72,94
+ 1438: 72,95
+ 1439: 71,95
+ 1440: 70,95
+ 10267: 134,126
+ - node:
+ color: '#A4610696'
+ id: MonoOverlay
+ decals:
+ 10271: 136,128
+ - node:
+ color: '#D381C996'
+ id: MonoOverlay
+ decals:
+ 2867: 43,115
+ 10270: 134,128
+ - node:
+ color: '#D4D4D496'
+ id: MonoOverlay
+ decals:
+ 10269: 132,128
+ - node:
+ color: '#DE3A3A96'
+ id: MonoOverlay
+ decals:
+ 1231: 135,123
+ 1441: 77,99
+ 1442: 77,100
+ 1443: 78,100
+ 1444: 78,99
+ 1445: 79,99
+ 1446: 79,100
+ - node:
+ color: '#EFB34196'
+ id: MonoOverlay
+ decals:
+ 1447: 72,99
+ 1448: 71,99
+ 1449: 70,99
+ 1450: 70,100
+ 1451: 71,100
+ 1452: 72,100
+ 10266: 136,126
+ 14051: 131,121
+ 14052: 131,122
+ 14053: 131,123
+ 14054: 127,122
+ 14055: 127,123
+ 14056: 127,124
+ 14057: 127,126
+ 14058: 127,127
+ 14059: 127,128
+ 14060: 117,149
+ 14061: 118,149
+ 14062: 119,149
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: MonoOverlay
+ decals:
+ 10194: 98,161
+ 10195: 100,161
+ 10196: 100,163
+ 10197: 98,163
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: Newton
+ decals:
+ 7694: 105.70206,27.229095
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: North
+ decals:
+ 7695: 107.56664,20.014
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Omni
+ decals:
+ 7710: 116.556625,21.019264
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Osiron
+ decals:
+ 7696: 108.37904,23.034836
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: Prima
+ decals:
+ 7699: 97.97611,18.98423
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Psyke
+ decals:
+ 7698: 101.823135,21.171349
+ - node:
+ color: '#000000C6'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 11014: 118,99
+ - node:
+ color: '#000000C7'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 10930: 121,100
+ 10931: 121,101
+ 10932: 121,102
+ 10933: 122,99
+ 10934: 122,98
+ 10935: 122,97
+ 10936: 121,97
+ 10937: 120,97
+ 10938: 119,97
+ 10939: 118,97
+ 10940: 117,97
+ 10941: 123,99
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 156: 38,52
+ 157: 38,53
+ 158: 38,54
+ 159: 38,55
+ 160: 38,56
+ 161: 38,57
+ 162: 38,58
+ 163: 38,59
+ 164: 38,60
+ 165: 38,61
+ 166: 37,52
+ 167: 36,52
+ 168: 35,52
+ 238: 51,60
+ 387: 48,21
+ 411: 52,19
+ 443: 45,22
+ 498: 33,75
+ 502: 34,74
+ 506: 32,76
+ 11078: 51,71
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1408: 78,96
+ 1664: 81,108
+ 1845: 82,84
+ 5006: 110,78
+ 12081: 60,108
+ 12152: 62,87
+ 13452: 59,116
+ 13453: 60,116
+ 13454: 61,116
+ 13455: 62,116
+ 13456: 63,116
+ 13457: 64,116
+ 13467: 64,119
+ 13468: 62,119
+ 13469: 60,119
+ 13924: 119,49
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5413: 65,75
+ 5425: 76,70
+ 5466: 84,71
+ - node:
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6759: 155,122
+ 6770: 157,123
+ - node:
+ color: '#979494FF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 11865: 100,113
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5186: 112,99
+ 5212: 94,97
+ 11182: 102,71
+ 11183: 101,71
+ 11184: 103,71
+ 11185: 104,71
+ 11186: 108,71
+ 11187: 109,71
+ 11188: 110,71
+ 11189: 111,71
+ 11190: 108,72
+ 11191: 109,72
+ 11192: 110,72
+ 11193: 111,72
+ 11194: 104,72
+ 11195: 103,72
+ 11196: 102,72
+ 11197: 101,72
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 2038: 138,97
+ 2167: 136,110
+ 2176: 131,98
+ 2427: 142,94
+ 9857: 148,106
+ 9870: 152,111
+ 14531: 134,105
+ 14532: 134,104
+ 14533: 134,103
+ 14534: 134,102
+ 14535: 134,101
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 2462: 33,104
+ 2463: 33,105
+ 2464: 34,105
+ 2533: 42,101
+ 2645: 43,112
+ 2660: 43,111
+ 2664: 47,111
+ 2810: 37,91
+ 2811: 37,92
+ 2812: 37,93
+ 2813: 39,91
+ 2814: 39,92
+ 2815: 39,93
+ 2870: 41,114
+ 3023: 37,101
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5739: 98,106
+ 6026: 55,66
+ 6142: 55,107
+ 6224: 87,114
+ 6273: 102,115
+ 6274: 112,115
+ 6409: 127,114
+ 6471: 127,78
+ 6542: 118,55
+ 6547: 109,52
+ 6706: 92,69
+ 7116: 88,20
+ 7143: 97,20
+ 7177: 108,20
+ 8333: 61,78
+ 12245: 84,114
+ 12246: 83,114
+ 12247: 82,114
+ 12248: 81,114
+ 12249: 80,114
+ 12250: 79,114
+ 12251: 78,114
+ 12252: 77,114
+ 12253: 74,114
+ 12254: 73,114
+ 12255: 72,114
+ 12256: 71,114
+ 12257: 68,114
+ 12258: 67,114
+ 12261: 64,114
+ 12262: 62,114
+ 12290: 56,114
+ 12291: 57,114
+ 12292: 58,114
+ 12293: 59,114
+ 12294: 60,114
+ 12315: 55,85
+ 12316: 55,88
+ 12317: 55,89
+ 12318: 55,90
+ 12319: 55,91
+ 12320: 55,92
+ 12321: 55,93
+ 12322: 55,94
+ 12323: 55,97
+ 12324: 55,98
+ 12341: 55,76
+ 12342: 55,75
+ 12343: 55,74
+ 12344: 55,73
+ 12345: 55,72
+ 12346: 55,69
+ 12362: 55,67
+ 12363: 54,66
+ 12364: 53,66
+ 12365: 52,66
+ 12366: 52,63
+ 12387: 87,68
+ 12388: 86,68
+ 12389: 86,67
+ 12390: 86,66
+ 12396: 90,69
+ 12397: 91,69
+ 12412: 86,65
+ 12420: 79,65
+ 12421: 80,65
+ 12422: 81,65
+ 12423: 82,65
+ 12424: 83,65
+ 12425: 84,65
+ 12426: 85,65
+ 12427: 86,65
+ 12435: 92,66
+ 12436: 92,65
+ 12437: 91,65
+ 12438: 90,65
+ 12733: 100,50
+ 12852: 117,78
+ 12853: 118,78
+ 12854: 119,78
+ 12855: 120,78
+ 12856: 121,78
+ 12857: 122,78
+ 12858: 125,78
+ 12859: 127,79
+ 12860: 127,80
+ 12861: 127,81
+ 12862: 127,82
+ 12863: 127,83
+ 12864: 127,84
+ 12865: 127,85
+ 12866: 127,86
+ 12941: 115,78
+ 12953: 113,88
+ 12954: 112,88
+ 12955: 111,88
+ 12956: 110,88
+ 12957: 109,88
+ 12958: 108,88
+ 12959: 107,88
+ 12960: 106,89
+ 12961: 103,88
+ 12962: 102,88
+ 12963: 101,88
+ 12964: 100,88
+ 12965: 103,89
+ 12966: 103,90
+ 12967: 103,91
+ 12968: 103,92
+ 12969: 103,93
+ 12970: 103,94
+ 12976: 105,94
+ 12977: 106,89
+ 12979: 98,87
+ 12980: 98,86
+ 12981: 98,85
+ 12982: 98,84
+ 12983: 98,83
+ 12984: 98,82
+ 12985: 98,81
+ 12986: 98,80
+ 12987: 98,79
+ 12989: 97,78
+ 12990: 99,69
+ 12991: 99,70
+ 12992: 99,71
+ 12993: 99,72
+ 12994: 99,73
+ 12995: 99,74
+ 12996: 99,75
+ 12999: 98,78
+ 13038: 127,97
+ 13039: 127,101
+ 13040: 127,102
+ 13041: 126,101
+ 13042: 126,98
+ 13051: 127,106
+ 13052: 127,107
+ 13053: 127,108
+ 13054: 127,109
+ 13055: 127,110
+ 13056: 127,111
+ 13057: 127,115
+ 13078: 117,119
+ 13079: 118,119
+ 13080: 120,119
+ 13081: 121,119
+ 13082: 122,119
+ 13083: 123,119
+ 13084: 124,119
+ 13085: 125,119
+ 13086: 126,119
+ 13087: 127,119
+ 13088: 129,119
+ 13089: 130,119
+ 13090: 131,119
+ 13091: 132,119
+ 13092: 133,119
+ 13093: 134,119
+ 13094: 135,119
+ 13095: 137,119
+ 13096: 139,119
+ 13147: 110,119
+ 13148: 109,119
+ 13149: 108,119
+ 13150: 107,119
+ 13151: 106,119
+ 13152: 111,119
+ 13153: 111,120
+ 13154: 111,121
+ 13155: 111,122
+ 13180: 90,119
+ 13181: 91,119
+ 13182: 92,119
+ 13183: 93,119
+ 13184: 94,119
+ 13185: 95,119
+ 13186: 96,119
+ 13187: 98,119
+ 13188: 99,119
+ 13189: 100,119
+ 13225: 159,119
+ 13226: 156,119
+ 13229: 154,119
+ 13230: 160,119
+ 13259: 142,119
+ 13260: 143,119
+ 13261: 145,119
+ 13262: 146,119
+ 13263: 147,119
+ 13264: 148,119
+ 13265: 148,120
+ 13266: 148,121
+ 13267: 148,122
+ 13268: 148,123
+ 13297: 148,130
+ 13298: 148,132
+ 13299: 148,133
+ 13300: 148,134
+ 13301: 148,135
+ 13306: 144,136
+ 13333: 160,139
+ 13339: 151,139
+ 13340: 150,139
+ 13341: 148,139
+ 13342: 147,139
+ 13376: 58,110
+ 13377: 58,111
+ 13410: 73,65
+ 13411: 74,65
+ 13412: 75,65
+ 13413: 76,65
+ 13414: 77,65
+ 13415: 78,65
+ 13426: 92,77
+ 13427: 92,76
+ 13428: 92,75
+ 13429: 92,74
+ 13430: 92,73
+ 13431: 92,72
+ 13432: 92,71
+ 13433: 92,70
+ 13715: 66,57
+ 13716: 66,58
+ 13717: 66,59
+ 13718: 66,60
+ 13719: 66,61
+ 13812: 55,100
+ 13813: 55,103
+ 13814: 55,104
+ 14011: 89,119
+ 14318: 85,52
+ 14319: 86,52
+ 14320: 87,52
+ 14321: 88,52
+ 14322: 90,52
+ 14398: 128,119
+ 14523: 110,54
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 13641: 65,114
+ 14651: 127,95
+ 14652: 127,105
+ 14653: 127,104
+ 14654: 127,103
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 12569: 66,25
+ 12570: 66,26
+ 12571: 66,27
+ 12572: 66,28
+ 12573: 66,29
+ 12574: 66,30
+ 12575: 66,31
+ 12576: 66,32
+ 12577: 66,33
+ 12578: 66,34
+ 12579: 66,35
+ 12580: 66,37
+ 12581: 66,38
+ 12582: 66,39
+ 12583: 66,40
+ 12584: 66,41
+ 12585: 66,42
+ 12586: 66,43
+ 12587: 69,43
+ 12588: 70,43
+ 12589: 71,43
+ 12590: 73,43
+ 12591: 74,43
+ 12592: 75,43
+ 12593: 76,43
+ 12594: 77,43
+ 12595: 78,43
+ 12596: 79,43
+ 12597: 80,43
+ 12598: 81,43
+ 12602: 82,29
+ 12603: 82,31
+ 12604: 82,30
+ 12605: 82,32
+ 12606: 68,25
+ 12607: 82,25
+ 12608: 68,32
+ 12653: 82,36
+ 12654: 82,37
+ 12655: 82,38
+ 12656: 82,39
+ 12657: 82,40
+ 13746: 66,45
+ 13747: 66,46
+ 14239: 82,46
+ 14240: 82,43
+ 14241: 82,44
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 3233: 146,71
+ 3272: 147,58
+ 3363: 126,48
+ 3455: 141,65
+ 3500: 146,51
+ 3548: 138,55
+ 3549: 138,56
+ 3550: 138,57
+ 3551: 139,57
+ 3552: 140,57
+ 3553: 141,57
+ 3554: 141,56
+ 3555: 140,56
+ 3556: 139,56
+ 3557: 139,55
+ 3558: 140,55
+ 3559: 141,55
+ 3574: 139,54
+ 3575: 140,54
+ 3576: 141,54
+ 3577: 142,56
+ 3578: 142,57
+ 3580: 137,56
+ 3581: 132,64
+ 3582: 133,64
+ 10637: 93,41
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 10516: 155,152
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 947: 93,123
+ 985: 121,125
+ 1020: 121,147
+ 1130: 121,130
+ 6288: 103,121
+ 9581: 93,140
+ 14065: 114,151
+ 14721: 134,132
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 14707: 130,133
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1629: 88,107
+ 1630: 86,109
+ 1631: 87,108
+ - node:
+ color: '#FF5C5C93'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 9758: 143,148
+ 9759: 143,149
+ 9760: 143,150
+ 9761: 143,151
+ 9762: 142,153
+ 9763: 140,153
+ 9764: 139,153
+ 9765: 138,153
+ 9766: 138,152
+ 9767: 138,150
+ 9768: 138,149
+ 9769: 138,148
+ 9770: 142,148
+ 9771: 146,148
+ 9772: 147,148
+ 9773: 147,149
+ 9774: 147,150
+ 9775: 147,151
+ 9776: 148,153
+ 9777: 147,154
+ 9778: 146,154
+ 9779: 145,154
+ 9780: 145,153
+ 9781: 144,153
+ 9782: 144,142
+ 9783: 144,143
+ 9784: 144,145
+ 9785: 144,146
+ - node:
+ color: '#000000C6'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 11015: 118,99
+ - node:
+ color: '#000000C7'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10919: 120,103
+ 10920: 119,103
+ 10921: 118,103
+ 10922: 117,103
+ 10923: 116,103
+ 10924: 116,102
+ 10925: 116,101
+ 10926: 116,100
+ 10927: 116,99
+ 10928: 116,98
+ 10929: 121,100
+ 10942: 122,100
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10086: 134,92
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 169: 34,53
+ 170: 34,54
+ 171: 34,55
+ 172: 34,56
+ 173: 34,57
+ 174: 34,58
+ 175: 34,59
+ 176: 34,60
+ 177: 34,61
+ 178: 34,62
+ 179: 35,62
+ 180: 36,62
+ 181: 37,62
+ 250: 49,63
+ 343: 48,36
+ 408: 49,21
+ 420: 52,18
+ 421: 56,22
+ 445: 41,26
+ 497: 33,75
+ 504: 32,76
+ 505: 34,74
+ - node:
+ color: '#3EB38896'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 797: 70,121
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1406: 71,98
+ 1471: 72,90
+ 1844: 81,82
+ 5659: 125,82
+ 11795: 122,85
+ 13458: 58,117
+ 13459: 59,117
+ 13460: 60,117
+ 13461: 61,117
+ 13462: 62,117
+ 13463: 63,117
+ 13464: 60,119
+ 13465: 62,119
+ 13466: 64,119
+ 13929: 118,50
+ 14160: 123,64
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5467: 85,71
+ 5468: 86,71
+ 5469: 87,71
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 9997: 152,93
+ - node:
+ color: '#979494FF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 11836: 103,112
+ 11837: 102,111
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5179: 113,103
+ 10838: 123,98
+ 11173: 101,72
+ 11175: 102,72
+ 11176: 103,72
+ 11177: 104,72
+ 11178: 108,72
+ 11179: 109,72
+ 11180: 110,72
+ 11181: 111,72
+ 11198: 101,71
+ 11199: 102,71
+ 11200: 103,71
+ 11201: 104,71
+ 11202: 108,71
+ 11203: 109,71
+ 11204: 110,71
+ 11205: 111,71
+ 11216: 100,70
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10024: 140,98
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 2082: 138,96
+ 2165: 134,109
+ 9896: 154,105
+ 14536: 134,101
+ 14537: 134,102
+ 14538: 134,103
+ 14539: 134,104
+ 14540: 134,105
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 2465: 34,103
+ 2466: 35,103
+ 2467: 35,104
+ 2566: 53,95
+ 2644: 43,112
+ 2662: 39,113
+ 2816: 37,91
+ 2817: 37,92
+ 2818: 37,93
+ 2819: 39,91
+ 2820: 39,92
+ 2821: 39,93
+ 2845: 31,113
+ 2933: 51,105
+ 3021: 38,104
+ 14516: 43,113
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 14587: 60,89
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 6275: 104,117
+ 6276: 114,117
+ 6353: 129,117
+ 6693: 94,76
+ 7129: 96,30
+ 7210: 113,29
+ 7812: 84,18
+ 12264: 62,112
+ 12265: 63,112
+ 12266: 64,112
+ 12267: 67,112
+ 12268: 68,112
+ 12269: 69,112
+ 12270: 70,112
+ 12271: 71,112
+ 12272: 72,112
+ 12273: 73,112
+ 12274: 74,112
+ 12275: 75,112
+ 12276: 76,112
+ 12277: 77,112
+ 12278: 78,112
+ 12279: 79,112
+ 12280: 80,112
+ 12282: 83,112
+ 12325: 57,98
+ 12326: 57,97
+ 12327: 57,95
+ 12328: 57,94
+ 12329: 57,93
+ 12330: 57,92
+ 12331: 57,88
+ 12332: 57,87
+ 12333: 57,86
+ 12334: 57,85
+ 12367: 52,63
+ 12368: 53,63
+ 12369: 54,63
+ 12370: 56,63
+ 12371: 57,63
+ 12372: 58,63
+ 12373: 59,63
+ 12374: 60,63
+ 12375: 62,63
+ 12376: 63,63
+ 12392: 89,67
+ 12393: 89,66
+ 12394: 90,67
+ 12395: 91,67
+ 12456: 93,63
+ 12457: 92,63
+ 12458: 90,63
+ 12459: 89,63
+ 12460: 88,63
+ 12461: 87,63
+ 12681: 73,63
+ 12682: 74,63
+ 12683: 75,63
+ 12685: 79,63
+ 12686: 80,63
+ 12687: 81,63
+ 12732: 100,50
+ 12734: 101,50
+ 12735: 102,50
+ 12736: 103,50
+ 12737: 104,50
+ 12738: 105,50
+ 12739: 107,50
+ 12751: 111,51
+ 12752: 111,52
+ 12753: 111,53
+ 12754: 112,53
+ 12755: 113,53
+ 12756: 115,53
+ 12757: 116,53
+ 12758: 119,53
+ 12760: 120,53
+ 12786: 120,54
+ 12787: 120,55
+ 12788: 120,56
+ 12789: 120,57
+ 12791: 120,61
+ 12792: 120,63
+ 12793: 120,64
+ 12794: 120,65
+ 12795: 120,66
+ 12796: 120,67
+ 12797: 120,68
+ 12798: 120,69
+ 12799: 120,70
+ 12800: 120,71
+ 12801: 120,72
+ 12802: 120,73
+ 12803: 120,74
+ 12804: 120,75
+ 12805: 120,76
+ 12806: 121,76
+ 12807: 122,76
+ 12808: 123,76
+ 12809: 124,76
+ 12810: 125,76
+ 12825: 127,76
+ 12826: 128,76
+ 12827: 129,76
+ 12828: 130,76
+ 12829: 131,76
+ 12830: 134,76
+ 12831: 135,76
+ 12832: 136,76
+ 12834: 140,76
+ 12835: 141,76
+ 12932: 114,79
+ 12933: 114,80
+ 12934: 114,81
+ 12935: 114,82
+ 12936: 114,83
+ 12937: 114,84
+ 12938: 114,85
+ 12939: 114,86
+ 12940: 114,87
+ 12942: 113,70
+ 12943: 113,71
+ 12944: 113,72
+ 12945: 113,73
+ 12946: 113,74
+ 12947: 113,75
+ 12948: 113,76
+ 12949: 114,76
+ 12950: 115,76
+ 12971: 105,90
+ 12972: 105,91
+ 12973: 105,92
+ 12974: 105,93
+ 12975: 105,94
+ 12978: 106,89
+ 12997: 97,76
+ 12998: 98,76
+ 13005: 129,88
+ 13006: 129,89
+ 13007: 129,90
+ 13008: 129,92
+ 13009: 129,93
+ 13027: 129,111
+ 13028: 129,107
+ 13029: 129,106
+ 13030: 129,105
+ 13031: 129,104
+ 13032: 129,103
+ 13033: 129,102
+ 13034: 129,101
+ 13035: 129,100
+ 13036: 129,99
+ 13037: 129,95
+ 13043: 126,98
+ 13113: 118,117
+ 13114: 117,117
+ 13115: 116,117
+ 13116: 115,117
+ 13117: 111,117
+ 13118: 110,117
+ 13119: 109,117
+ 13120: 108,117
+ 13121: 107,117
+ 13122: 106,117
+ 13123: 105,117
+ 13124: 101,117
+ 13125: 100,117
+ 13126: 99,117
+ 13127: 98,117
+ 13156: 110,123
+ 13157: 109,123
+ 13158: 108,123
+ 13159: 107,123
+ 13160: 106,123
+ 13161: 105,123
+ 13162: 105,122
+ 13163: 105,121
+ 13164: 105,120
+ 13198: 84,112
+ 13199: 86,112
+ 13200: 87,112
+ 13201: 88,112
+ 13203: 89,112
+ 13214: 89,116
+ 13215: 89,117
+ 13216: 90,117
+ 13217: 91,117
+ 13218: 92,117
+ 13219: 93,117
+ 13220: 94,117
+ 13221: 95,117
+ 13222: 96,117
+ 13231: 160,119
+ 13302: 147,136
+ 13303: 146,136
+ 13304: 145,136
+ 13305: 144,136
+ 13324: 150,137
+ 13325: 151,137
+ 13331: 160,137
+ 13343: 160,139
+ 13346: 146,140
+ 13352: 150,136
+ 13353: 150,135
+ 13354: 150,134
+ 13355: 150,133
+ 13356: 150,132
+ 13378: 58,110
+ 13379: 58,111
+ 13380: 58,112
+ 13381: 57,112
+ 13382: 57,111
+ 13383: 57,110
+ 13384: 57,109
+ 13385: 57,108
+ 13386: 59,112
+ 13387: 60,112
+ 13388: 57,106
+ 13389: 57,105
+ 13390: 57,104
+ 13391: 57,103
+ 13392: 57,102
+ 13393: 57,101
+ 13394: 57,100
+ 13688: 68,50
+ 13689: 68,51
+ 13690: 68,52
+ 13691: 68,53
+ 13692: 68,54
+ 13693: 68,55
+ 13694: 68,56
+ 13695: 68,57
+ 13696: 68,58
+ 13697: 68,59
+ 13698: 68,60
+ 13699: 68,61
+ 13700: 68,63
+ 13701: 69,63
+ 13702: 70,63
+ 13703: 71,63
+ 13704: 65,63
+ 13708: 64,63
+ 13872: 90,50
+ 13873: 91,50
+ 13874: 92,50
+ 13875: 93,50
+ 13876: 94,50
+ 13877: 97,50
+ 13878: 98,50
+ 13879: 99,50
+ 14304: 86,63
+ 14305: 85,63
+ 14306: 84,63
+ 14307: 84,62
+ 14308: 84,60
+ 14309: 84,59
+ 14310: 84,58
+ 14311: 84,57
+ 14312: 84,56
+ 14313: 84,55
+ 14314: 84,54
+ 14315: 84,53
+ 14324: 84,50
+ 14549: 129,112
+ 14550: 129,114
+ 14551: 129,115
+ 14771: 87,50
+ 14772: 88,50
+ 14773: 89,50
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 12609: 82,25
+ 12610: 84,25
+ 12611: 82,29
+ 12612: 84,26
+ 12613: 84,27
+ 12614: 84,28
+ 12615: 84,29
+ 12616: 84,30
+ 12618: 84,31
+ 12619: 84,32
+ 12620: 84,33
+ 12621: 84,34
+ 12623: 84,36
+ 12624: 84,37
+ 12625: 84,38
+ 12626: 84,39
+ 12627: 84,40
+ 12628: 84,41
+ 12629: 84,42
+ 12631: 81,41
+ 12632: 80,41
+ 12633: 79,41
+ 12634: 78,41
+ 12635: 77,41
+ 12636: 76,41
+ 12637: 75,41
+ 12638: 74,41
+ 12639: 73,41
+ 12640: 72,41
+ 12641: 71,41
+ 12642: 70,41
+ 12643: 69,41
+ 12644: 68,41
+ 12645: 68,40
+ 12648: 68,38
+ 12649: 68,37
+ 12650: 68,36
+ 12652: 68,39
+ 12658: 82,36
+ 12659: 66,25
+ 13447: 60,116
+ 13751: 68,45
+ 13757: 68,46
+ 14236: 84,43
+ 14237: 84,44
+ 14238: 84,46
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 3144: 126,58
+ 3257: 139,69
+ 3270: 141,61
+ 3289: 142,55
+ 3397: 124,54
+ 3413: 155,61
+ 3414: 156,63
+ 3501: 148,50
+ 3560: 141,55
+ 3561: 140,55
+ 3562: 139,55
+ 3563: 138,55
+ 3564: 138,56
+ 3565: 139,56
+ 3566: 140,56
+ 3567: 141,56
+ 3568: 141,57
+ 3569: 140,57
+ 3570: 139,57
+ 3571: 138,57
+ 3572: 138,58
+ 3573: 139,58
+ 3583: 132,64
+ 3584: 133,64
+ 3962: 141,73
+ 4401: 131,58
+ 5007: 102,86
+ 10692: 96,45
+ 10702: 102,42
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10527: 152,148
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 833: 98,123
+ 927: 95,154
+ 6281: 116,120
+ 14035: 95,127
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1603: 88,103
+ 1623: 86,109
+ 1632: 87,108
+ 1633: 88,107
+ 14137: 87,96
+ - node:
+ color: '#FF5C5C93'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 9787: 146,142
+ 9788: 146,143
+ 9789: 146,144
+ 9790: 146,146
+ 9791: 146,147
+ 9792: 147,147
+ 9793: 148,147
+ 9794: 149,147
+ 9795: 149,149
+ 9796: 149,150
+ 9797: 149,151
+ 9798: 149,152
+ 9799: 146,152
+ 9800: 145,152
+ 9801: 145,151
+ 9802: 145,150
+ 9803: 145,149
+ 9804: 141,149
+ 9805: 141,150
+ 9806: 141,151
+ 9807: 141,152
+ 9808: 142,152
+ 9809: 141,147
+ 9810: 142,147
+ 9811: 143,147
+ 9844: 147,154
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 137: 35,49
+ 138: 33,51
+ 354: 46,42
+ 355: 46,41
+ 356: 47,41
+ 357: 48,41
+ 358: 49,41
+ 359: 49,40
+ 360: 49,39
+ 361: 49,38
+ 362: 49,37
+ 363: 49,36
+ 388: 48,27
+ 410: 52,29
+ 442: 45,26
+ 503: 34,76
+ 7104: 99,23
+ 11087: 48,70
+ 11088: 49,70
+ 11089: 50,70
+ 11090: 51,70
+ 11091: 52,70
+ 11098: 47,70
+ 11104: 52,71
+ 11105: 52,72
+ 11106: 52,73
+ 11107: 52,74
+ 12335: 55,69
+ 12336: 55,72
+ 12337: 55,73
+ 12338: 55,74
+ 12339: 55,75
+ 12340: 55,76
+ 12347: 56,63
+ 12348: 57,63
+ 12349: 58,63
+ 12350: 59,63
+ 12351: 60,63
+ 12352: 62,63
+ 12353: 63,63
+ 12354: 55,67
+ 12355: 54,63
+ 12356: 53,63
+ 12357: 52,63
+ 12361: 52,66
+ 13706: 65,63
+ 13707: 64,63
+ 13709: 66,63
+ 13710: 66,57
+ 13711: 66,58
+ 13712: 66,59
+ 13713: 66,60
+ 13714: 66,61
+ 14767: 43,79
+ - node:
+ color: '#334E6DFF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 4117: 48,49
+ 4118: 48,50
+ 4119: 48,51
+ 4120: 48,52
+ 4122: 49,49
+ 4123: 49,50
+ 4124: 49,51
+ 4125: 49,52
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1407: 78,98
+ 1470: 77,90
+ 1504: 72,86
+ 1688: 81,102
+ 1701: 73,104
+ 1703: 75,105
+ 1797: 61,101
+ 1798: 61,100
+ 1830: 68,82
+ 1831: 68,83
+ 1835: 68,81
+ 1840: 69,80
+ 5005: 110,86
+ 12151: 60,83
+ 12212: 62,112
+ 12213: 63,112
+ 12214: 64,112
+ 12215: 65,112
+ 12216: 68,112
+ 12217: 70,112
+ 12218: 69,112
+ 12219: 71,112
+ 12220: 72,112
+ 12221: 73,112
+ 12222: 74,112
+ 12223: 75,112
+ 12224: 76,112
+ 12225: 77,112
+ 12226: 78,112
+ 12227: 79,112
+ 12228: 80,112
+ 12230: 81,112
+ 12470: 84,25
+ 12517: 82,32
+ 12518: 82,31
+ 12519: 82,30
+ 12520: 82,29
+ 12526: 82,36
+ 12527: 82,37
+ 12528: 82,38
+ 12529: 82,39
+ 12530: 82,40
+ 12531: 82,41
+ 12532: 81,41
+ 12533: 80,41
+ 12534: 79,41
+ 12535: 78,41
+ 12536: 77,41
+ 12537: 76,41
+ 12538: 75,41
+ 12539: 74,41
+ 12540: 73,41
+ 12541: 72,41
+ 12542: 71,41
+ 12543: 70,41
+ 12544: 69,41
+ 12545: 66,43
+ 12546: 66,42
+ 12547: 66,41
+ 12548: 66,40
+ 12549: 66,39
+ 12550: 66,38
+ 12551: 66,37
+ 12552: 66,35
+ 12553: 66,34
+ 12554: 66,33
+ 12555: 66,32
+ 12556: 66,31
+ 12557: 68,36
+ 12558: 66,30
+ 12559: 66,29
+ 12560: 66,28
+ 12561: 66,27
+ 12562: 66,26
+ 12563: 66,25
+ 12564: 68,25
+ 12565: 82,25
+ 12743: 112,53
+ 12744: 113,53
+ 12745: 115,53
+ 12746: 116,53
+ 12747: 119,53
+ 12759: 120,53
+ 13357: 58,110
+ 13358: 58,111
+ 13360: 58,112
+ 13361: 59,112
+ 13362: 60,112
+ 13744: 66,46
+ 13745: 66,45
+ 14138: 62,99
+ 14231: 82,44
+ 14232: 82,46
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 5417: 72,72
+ 5418: 73,71
+ 5465: 84,77
+ 12377: 86,66
+ 12378: 86,67
+ 12379: 86,68
+ 12380: 90,67
+ 12381: 91,67
+ 12428: 92,67
+ 13416: 92,70
+ 13417: 92,71
+ 13418: 92,72
+ 13419: 92,73
+ 13420: 92,74
+ 13421: 92,75
+ 13422: 92,76
+ 13423: 92,77
+ 13424: 92,78
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 9979: 146,95
+ - node:
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 2437: 142,90
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 5199: 103,103
+ 5215: 94,103
+ 11217: 112,70
+ 12674: 81,63
+ 12675: 80,63
+ 12676: 79,63
+ 12678: 75,63
+ 12679: 74,63
+ 12680: 73,63
+ 12897: 98,79
+ 12898: 98,80
+ 12899: 98,81
+ 12900: 98,82
+ 12901: 98,83
+ 12902: 98,84
+ 12903: 98,85
+ 12904: 98,86
+ 12905: 98,87
+ 12906: 103,89
+ 12907: 103,90
+ 12908: 103,91
+ 12909: 103,92
+ 12910: 103,93
+ 12911: 103,94
+ 12912: 99,70
+ 12913: 99,71
+ 12914: 99,72
+ 12915: 99,73
+ 12916: 99,74
+ 12917: 99,75
+ 12918: 99,76
+ 12919: 98,76
+ 12920: 97,76
+ 12951: 115,76
+ 12952: 114,76
+ 13010: 127,97
+ 13011: 127,98
+ 13012: 126,98
+ 13013: 126,101
+ 13014: 127,102
+ 13097: 118,117
+ 13098: 117,117
+ 13099: 116,117
+ 13100: 115,117
+ 13101: 98,117
+ 13102: 99,117
+ 13103: 100,117
+ 13104: 100,117
+ 13105: 101,117
+ 13106: 105,117
+ 13107: 106,117
+ 13108: 107,117
+ 13109: 108,117
+ 13110: 109,117
+ 13111: 110,117
+ 13112: 111,117
+ 13135: 111,120
+ 13673: 71,63
+ 13674: 70,63
+ 13675: 69,63
+ 14249: 82,63
+ 14250: 82,62
+ 14251: 82,60
+ 14252: 82,59
+ 14253: 82,58
+ 14254: 82,57
+ 14255: 82,56
+ 14256: 82,50
+ 14257: 82,51
+ 14258: 82,52
+ 14259: 82,53
+ 14260: 82,54
+ 14261: 82,55
+ 14761: 92,100
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14650: 127,95
+ 14655: 127,103
+ 14656: 127,104
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 2028: 143,109
+ 2029: 144,110
+ 2030: 142,108
+ 2031: 143,110
+ 2175: 131,108
+ 2180: 134,96
+ 9895: 151,105
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1765: 61,92
+ 1766: 61,93
+ 1767: 61,94
+ 1768: 61,95
+ 2549: 51,95
+ 2663: 47,113
+ 2665: 42,99
+ 2720: 48,88
+ 2721: 47,89
+ 2722: 47,90
+ 2723: 47,91
+ 2724: 48,89
+ 2725: 48,90
+ 2804: 37,87
+ 2805: 37,88
+ 2806: 37,89
+ 2807: 39,87
+ 2808: 39,88
+ 2809: 39,89
+ 2932: 47,105
+ 12295: 55,85
+ 12296: 55,89
+ 12297: 55,90
+ 12298: 55,91
+ 12299: 55,92
+ 12300: 55,93
+ 12301: 55,94
+ 12302: 55,95
+ 12303: 55,98
+ 12304: 55,86
+ 13810: 55,100
+ 13811: 55,103
+ 13815: 55,104
+ 14765: 43,80
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6106: 55,95
+ 6144: 55,105
+ 6277: 112,117
+ 6278: 102,117
+ 6352: 127,117
+ 6406: 127,112
+ 6527: 118,76
+ 7123: 97,18
+ 12090: 124,109
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 9731: 147,149
+ 9732: 147,150
+ 9733: 147,151
+ 9734: 147,152
+ 9735: 146,152
+ 9736: 142,152
+ 9737: 143,152
+ 9738: 143,151
+ 9739: 143,150
+ 9740: 143,149
+ 9741: 144,142
+ 9742: 144,143
+ 9743: 144,145
+ 9744: 144,146
+ 9746: 143,147
+ 9747: 142,147
+ 9748: 141,147
+ 9749: 138,148
+ 9750: 138,149
+ 9751: 138,150
+ 9752: 138,152
+ 9753: 138,153
+ 9754: 145,154
+ 9755: 149,147
+ 9756: 148,147
+ 9757: 147,147
+ 9812: 144,147
+ 12844: 127,86
+ 12845: 127,85
+ 12846: 127,84
+ 12847: 127,83
+ 12848: 127,82
+ 12849: 127,81
+ 12850: 127,80
+ 12851: 127,79
+ 13044: 127,106
+ 13045: 127,107
+ 13046: 127,115
+ 13047: 127,111
+ 13048: 127,110
+ 13049: 127,109
+ 13050: 127,108
+ 13250: 148,123
+ 13251: 148,122
+ 13252: 148,121
+ 13253: 148,120
+ 13307: 151,137
+ 13313: 160,137
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14657: 127,105
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 3143: 129,58
+ 3156: 144,61
+ 3256: 147,69
+ 3297: 138,54
+ 3328: 152,55
+ 3362: 126,51
+ 3366: 129,47
+ 3367: 133,44
+ 3479: 154,56
+ 3480: 154,55
+ 3481: 154,57
+ 3482: 154,54
+ 3483: 154,53
+ 3484: 154,52
+ 3485: 154,51
+ 3499: 146,50
+ 3506: 140,45
+ 3507: 140,46
+ 3508: 140,47
+ 3509: 140,48
+ 3520: 131,51
+ 3521: 131,50
+ 3522: 131,49
+ 3523: 131,48
+ 3524: 131,47
+ 3525: 131,46
+ 3526: 131,45
+ 3960: 137,70
+ 9650: 151,152
+ 10691: 93,45
+ 12704: 107,50
+ 12706: 105,50
+ 12707: 104,50
+ 12708: 103,50
+ 12709: 102,50
+ 12710: 101,50
+ 12711: 100,50
+ 12781: 121,76
+ 12782: 122,76
+ 12783: 123,76
+ 12784: 124,76
+ 12785: 125,76
+ 12811: 144,76
+ 12814: 141,76
+ 12815: 140,76
+ 12817: 136,76
+ 12818: 135,76
+ 12819: 134,76
+ 12820: 131,76
+ 12821: 130,76
+ 12822: 129,76
+ 12823: 128,76
+ 12824: 127,76
+ 13206: 90,117
+ 13207: 91,117
+ 13208: 92,117
+ 13209: 93,117
+ 13210: 94,117
+ 13211: 95,117
+ 13212: 96,117
+ 13854: 99,50
+ 13855: 98,50
+ 13856: 97,50
+ 13857: 94,50
+ 13858: 93,50
+ 13859: 92,50
+ 13860: 91,50
+ 13861: 90,50
+ 14768: 89,50
+ 14769: 88,50
+ 14770: 87,50
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 967: 121,154
+ 984: 121,127
+ 1021: 121,144
+ 1302: 118,123
+ 9580: 93,138
+ 10276: 137,122
+ 12434: 92,66
+ 12446: 87,63
+ 12447: 88,63
+ 12448: 89,63
+ 12451: 90,63
+ 12452: 92,63
+ 12453: 93,63
+ 12454: 94,63
+ 13136: 111,121
+ 13137: 111,122
+ 13138: 111,123
+ 13139: 110,123
+ 13140: 109,123
+ 13141: 108,123
+ 13142: 107,123
+ 13143: 106,123
+ 13287: 144,136
+ 13288: 145,136
+ 13289: 146,136
+ 13290: 147,136
+ 13291: 148,136
+ 13292: 148,135
+ 13293: 148,134
+ 13294: 148,133
+ 13295: 148,132
+ 13296: 148,130
+ 14063: 117,150
+ 14302: 85,63
+ 14303: 86,63
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14706: 130,138
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1618: 87,103
+ 1619: 87,102
+ 1620: 87,101
+ 1621: 87,100
+ 1622: 88,109
+ 13193: 89,112
+ 13194: 88,112
+ 13195: 87,112
+ 13196: 86,112
+ 13197: 84,112
+ 14762: 91,100
+ - node:
+ color: '#FFFFFFC6'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 10943: 117,98
+ 10944: 118,98
+ 10945: 117,99
+ 10947: 118,100
+ 10948: 117,100
+ 10949: 117,101
+ 10950: 118,101
+ 10951: 118,102
+ 10952: 117,102
+ 10953: 117,103
+ 10954: 118,103
+ 10955: 119,103
+ 10956: 119,102
+ 10957: 120,103
+ 10958: 121,103
+ 10959: 121,102
+ 10960: 120,102
+ 10961: 120,101
+ 10962: 119,101
+ 10963: 119,100
+ 10964: 119,99
+ 10965: 119,98
+ 10966: 120,98
+ 10967: 121,98
+ 10968: 122,99
+ 10969: 120,99
+ 10970: 122,98
+ 10971: 123,100
+ 10972: 122,100
+ 10973: 121,100
+ 10974: 120,100
+ 10975: 121,101
+ 10976: 121,99
+ 11013: 118,99
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10085: 134,90
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 409: 49,27
+ 422: 52,30
+ 423: 56,26
+ 444: 41,22
+ 501: 32,74
+ 11092: 47,69
+ 11093: 48,69
+ 11094: 49,69
+ 11095: 50,69
+ 11096: 51,69
+ 11097: 52,69
+ 11099: 52,70
+ 11100: 52,71
+ 11101: 52,72
+ 11102: 52,73
+ 11103: 52,74
+ 12358: 54,66
+ 12359: 53,66
+ 12360: 52,66
+ 13000: 129,93
+ 13001: 129,92
+ 13002: 129,90
+ 13003: 129,89
+ 13004: 129,88
+ 14766: 43,78
+ - node:
+ color: '#334E6DFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 4112: 48,49
+ 4113: 48,50
+ 4114: 48,51
+ 4115: 48,52
+ 4127: 47,49
+ 4128: 47,50
+ 4129: 47,51
+ 4130: 47,52
+ - node:
+ color: '#3EB38896'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 12231: 67,114
+ 12232: 68,114
+ 12233: 71,114
+ 12234: 72,114
+ 12235: 73,114
+ 12236: 74,114
+ 12237: 77,114
+ 12238: 78,114
+ 12239: 79,114
+ 12240: 80,114
+ 12241: 81,114
+ 12242: 82,114
+ 12243: 83,114
+ 12244: 84,114
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1370: 68,91
+ 1405: 71,96
+ 1665: 67,108
+ 1702: 72,103
+ 1705: 74,104
+ 1729: 70,81
+ 1795: 61,101
+ 1796: 61,100
+ 1832: 67,81
+ 1833: 67,82
+ 1834: 67,83
+ 5656: 122,83
+ 12471: 84,25
+ 12472: 84,26
+ 12473: 84,27
+ 12474: 84,28
+ 12476: 84,30
+ 12477: 84,31
+ 12478: 84,32
+ 12479: 84,33
+ 12480: 84,34
+ 12482: 84,36
+ 12483: 84,37
+ 12484: 84,38
+ 12485: 84,39
+ 12486: 84,40
+ 12487: 84,41
+ 12488: 84,42
+ 12492: 81,43
+ 12493: 80,43
+ 12494: 79,43
+ 12495: 78,43
+ 12496: 77,43
+ 12497: 76,43
+ 12498: 75,43
+ 12499: 74,43
+ 12500: 73,43
+ 12501: 71,43
+ 12502: 70,43
+ 12503: 69,43
+ 12504: 68,43
+ 12505: 68,36
+ 12506: 68,37
+ 12507: 68,38
+ 12509: 68,40
+ 12510: 82,32
+ 12511: 82,25
+ 12512: 68,25
+ 12513: 68,29
+ 12514: 68,30
+ 12515: 68,31
+ 12516: 68,32
+ 12617: 84,29
+ 12651: 68,39
+ 12740: 111,50
+ 12741: 111,51
+ 12742: 111,52
+ 13363: 57,100
+ 13364: 57,101
+ 13365: 57,102
+ 13366: 57,103
+ 13367: 57,104
+ 13368: 57,105
+ 13369: 57,106
+ 13370: 57,108
+ 13371: 57,109
+ 13372: 57,110
+ 13373: 57,111
+ 13374: 58,111
+ 13375: 58,110
+ 13738: 68,45
+ 13756: 68,46
+ 14233: 84,43
+ 14234: 84,44
+ 14235: 84,46
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5424: 75,70
+ 5470: 85,77
+ 5471: 86,77
+ 5472: 87,77
+ 12382: 89,66
+ 12383: 86,68
+ 12384: 87,68
+ 12385: 90,69
+ 12386: 91,69
+ 12413: 85,65
+ 12414: 84,65
+ 12415: 83,65
+ 12416: 81,65
+ 12417: 82,65
+ 12418: 80,65
+ 12419: 79,65
+ 13404: 78,65
+ 13405: 77,65
+ 13406: 76,65
+ 13407: 75,65
+ 13408: 74,65
+ 13409: 73,65
+ - node:
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 13223: 159,119
+ 13224: 156,119
+ 13227: 160,119
+ 13228: 154,119
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 9996: 152,94
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5187: 104,99
+ 10840: 122,101
+ 12867: 113,69
+ 12868: 113,70
+ 12869: 113,71
+ 12870: 113,72
+ 12871: 113,73
+ 12872: 113,74
+ 12873: 113,75
+ 12877: 111,88
+ 12878: 112,88
+ 12879: 110,88
+ 12880: 109,88
+ 12881: 108,88
+ 12882: 107,88
+ 12883: 106,88
+ 12884: 106,89
+ 12885: 105,89
+ 12886: 105,90
+ 12887: 105,91
+ 12888: 105,92
+ 12889: 105,93
+ 12890: 105,94
+ 12891: 103,94
+ 12892: 99,88
+ 12893: 100,88
+ 12894: 101,88
+ 12895: 102,88
+ 12896: 97,78
+ 13015: 126,101
+ 13128: 105,120
+ 13129: 105,119
+ 13130: 106,119
+ 13131: 107,119
+ 13132: 108,119
+ 13133: 109,119
+ 13134: 110,119
+ 13676: 68,61
+ 13677: 68,60
+ 13678: 68,59
+ 13679: 68,58
+ 13680: 68,57
+ 13681: 68,55
+ 13682: 68,56
+ 13683: 68,54
+ 13684: 68,53
+ 13685: 68,52
+ 13686: 68,51
+ 13687: 68,50
+ 14760: 91,100
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10023: 140,97
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 2025: 142,108
+ 2026: 143,109
+ 2027: 144,110
+ 2083: 140,100
+ 2174: 134,107
+ 3952: 143,108
+ 9858: 157,104
+ 9869: 153,111
+ 9893: 154,108
+ 13016: 129,95
+ 13017: 129,107
+ 13018: 129,106
+ 13019: 129,105
+ 13020: 129,104
+ 13021: 129,103
+ 13022: 129,102
+ 13023: 129,101
+ 13024: 129,100
+ 13025: 129,99
+ 13026: 129,111
+ 14552: 129,112
+ 14553: 129,114
+ 14554: 129,115
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 611: 33,49
+ 1759: 61,95
+ 1760: 61,94
+ 1761: 61,93
+ 1762: 61,92
+ 2565: 53,88
+ 2573: 47,97
+ 2657: 39,111
+ 2726: 47,89
+ 2727: 48,88
+ 2728: 48,89
+ 2729: 48,90
+ 2730: 47,90
+ 2731: 47,91
+ 2822: 37,87
+ 2823: 37,88
+ 2824: 37,89
+ 2825: 39,87
+ 2826: 39,88
+ 2827: 39,89
+ 2844: 31,111
+ 2871: 45,114
+ 3022: 40,101
+ 12305: 57,85
+ 12306: 57,86
+ 12307: 57,87
+ 12308: 57,88
+ 12309: 57,92
+ 12310: 57,93
+ 12311: 57,94
+ 12312: 57,95
+ 12313: 57,97
+ 12314: 57,98
+ 14764: 43,79
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 14588: 60,91
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5738: 118,106
+ 6025: 57,65
+ 6463: 129,78
+ 6846: 150,119
+ 7032: 140,149
+ 7176: 106,20
+ 7796: 68,18
+ 7811: 84,20
+ 8332: 60,78
+ 12087: 125,107
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 9703: 138,153
+ 9704: 139,153
+ 9705: 140,153
+ 9706: 142,153
+ 9707: 144,153
+ 9708: 146,154
+ 9709: 145,154
+ 9710: 147,154
+ 9711: 147,153
+ 9712: 148,153
+ 9713: 149,151
+ 9714: 149,150
+ 9715: 149,149
+ 9716: 149,147
+ 9717: 145,149
+ 9718: 145,150
+ 9719: 145,151
+ 9720: 146,148
+ 9721: 145,148
+ 9722: 142,148
+ 9723: 141,148
+ 9724: 141,149
+ 9725: 141,150
+ 9726: 141,151
+ 9727: 146,146
+ 9728: 146,144
+ 9729: 146,143
+ 9730: 146,142
+ 12259: 62,114
+ 12260: 64,114
+ 12283: 60,114
+ 12284: 59,114
+ 12285: 58,114
+ 12286: 57,114
+ 12287: 56,114
+ 12288: 55,114
+ 12837: 125,78
+ 12838: 117,78
+ 12839: 118,78
+ 12840: 119,78
+ 12841: 120,78
+ 12842: 121,78
+ 12843: 122,78
+ 12921: 115,78
+ 12922: 114,78
+ 12923: 114,79
+ 12924: 114,80
+ 12925: 114,81
+ 12926: 114,82
+ 12927: 114,83
+ 12928: 114,84
+ 12929: 114,85
+ 12930: 114,86
+ 12931: 114,87
+ 13254: 147,119
+ 13255: 146,119
+ 13256: 145,119
+ 13257: 143,119
+ 13258: 142,119
+ 13314: 147,139
+ 13315: 148,139
+ 13316: 150,139
+ 13317: 151,139
+ 13323: 160,139
+ 13332: 160,137
+ 13344: 146,140
+ 13345: 146,139
+ 13347: 150,132
+ 13348: 150,133
+ 13349: 150,134
+ 13350: 150,135
+ 13351: 150,136
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 13642: 65,114
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 3071: 127,74
+ 3138: 128,60
+ 3139: 131,56
+ 3157: 144,61
+ 3271: 141,58
+ 3465: 139,62
+ 3472: 153,50
+ 3473: 153,51
+ 3474: 153,52
+ 3475: 153,53
+ 3476: 153,54
+ 3477: 153,55
+ 3478: 153,56
+ 3498: 148,51
+ 3502: 140,45
+ 3503: 140,46
+ 3504: 140,47
+ 3505: 140,48
+ 3510: 131,45
+ 3511: 131,46
+ 3512: 131,47
+ 3513: 131,48
+ 3514: 131,49
+ 3515: 131,50
+ 3516: 131,51
+ 4990: 102,78
+ 10636: 96,41
+ 10805: 92,115
+ 12761: 120,53
+ 12762: 120,54
+ 12763: 120,55
+ 12764: 120,56
+ 12765: 120,57
+ 12767: 120,61
+ 12768: 120,63
+ 12769: 120,64
+ 12770: 120,65
+ 12771: 120,66
+ 12772: 120,67
+ 12773: 120,68
+ 12774: 120,69
+ 12775: 120,70
+ 12776: 120,71
+ 12777: 120,72
+ 12778: 120,73
+ 12779: 120,74
+ 12780: 120,75
+ 13202: 89,112
+ 13205: 89,116
+ 14287: 90,52
+ 14288: 88,52
+ 14289: 87,52
+ 14290: 86,52
+ 14291: 85,52
+ 14293: 84,53
+ 14294: 84,54
+ 14295: 84,55
+ 14296: 84,56
+ 14297: 84,57
+ 14298: 84,58
+ 14299: 84,59
+ 14300: 84,60
+ 14317: 84,52
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10526: 153,149
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 944: 95,125
+ 3859: 132,136
+ 3864: 128,143
+ 6289: 113,121
+ 7059: 144,134
+ 10278: 138,122
+ 10279: 137,126
+ 12430: 89,65
+ 12431: 90,65
+ 12432: 91,65
+ 13058: 139,119
+ 13059: 137,119
+ 13060: 116,119
+ 13061: 117,119
+ 13062: 118,119
+ 13063: 120,119
+ 13064: 121,119
+ 13065: 122,119
+ 13066: 123,119
+ 13067: 124,119
+ 13068: 125,119
+ 13069: 126,119
+ 13070: 127,119
+ 13071: 129,119
+ 13072: 130,119
+ 13073: 131,119
+ 13074: 132,119
+ 13075: 133,119
+ 13076: 134,119
+ 13077: 135,119
+ 13144: 105,122
+ 13145: 105,121
+ 13166: 91,119
+ 13167: 92,119
+ 13168: 93,119
+ 13169: 94,119
+ 13170: 95,119
+ 13171: 96,119
+ 13172: 98,119
+ 13173: 99,119
+ 13179: 90,119
+ 14010: 89,119
+ 14301: 84,62
+ 14397: 128,119
+ 14720: 133,132
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1614: 86,100
+ 1615: 86,101
+ 1616: 86,102
+ 1628: 86,107
+ 14148: 83,97
+ 14763: 90,100
+ - node:
+ color: '#FFFFFFC6'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10977: 116,102
+ 10978: 116,101
+ 10979: 116,100
+ 10980: 116,99
+ 10981: 116,98
+ 10982: 116,97
+ 10983: 117,97
+ 10984: 117,98
+ 10985: 117,99
+ 10986: 117,100
+ 10987: 117,101
+ 10988: 117,102
+ 10989: 118,102
+ 10990: 118,101
+ 10991: 118,100
+ 10994: 118,98
+ 10995: 118,97
+ 10996: 119,97
+ 10997: 119,98
+ 10998: 119,99
+ 10999: 119,100
+ 11000: 119,101
+ 11001: 119,102
+ 11002: 120,102
+ 11003: 120,101
+ 11004: 120,100
+ 11005: 120,99
+ 11006: 121,99
+ 11007: 122,99
+ 11008: 121,98
+ 11009: 120,98
+ 11010: 120,97
+ 11011: 121,97
+ 11012: 118,99
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 10515: 163.5468,148.1768
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Rock07
+ decals:
+ 10163: 131.50783,80.3331
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Sirius
+ decals:
+ 7702: 99.973526,25.08815
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign1
+ decals:
+ 8043: 103,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign2
+ decals:
+ 8042: 104,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign3
+ decals:
+ 8041: 105,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign4
+ decals:
+ 8040: 106,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign5
+ decals:
+ 8039: 107,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign6
+ decals:
+ 8038: 108,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign7
+ decals:
+ 8037: 109,76
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 7704: 94,18
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3594: 135,46
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10054: 131,94
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 229: 51,61
+ 251: 46,66
+ 280: 55,59
+ 412: 51,19
+ 5602: 42,46
+ 6930: 133,153
+ 7094: 98,28
+ 11070: 51,75
+ 11077: 46,71
+ 11079: 46,75
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 4109: 46,51
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 14008: 87,123
+ 14150: 68,123
+ 14154: 72,119
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1377: 70,92
+ 1515: 79,84
+ 1682: 71,104
+ 1686: 80,104
+ 1700: 73,103
+ 1793: 59,104
+ 1822: 65,88
+ 1841: 65,84
+ 1852: 91,92
+ 3033: 122,65
+ 5660: 124,86
+ 6571: 113,51
+ 11024: 86,88
+ 11793: 116,86
+ 12079: 59,108
+ 12080: 60,110
+ 12155: 59,87
+ 14098: 65,104
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5388: 68,76
+ 5402: 61,75
+ 5411: 65,76
+ 5460: 81,71
+ 5461: 84,76
+ 5462: 84,73
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 6760: 155,123
+ 6761: 154,128
+ 6764: 157,128
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10000: 150,90
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 11863: 99,113
+ 11864: 100,114
+ 11884: 95,103
+ 11889: 98,93
+ 11928: 104,98
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3057: 122,74
+ 5178: 112,104
+ 5211: 93,97
+ 5214: 93,104
+ 5235: 97,94
+ 5298: 115,104
+ 7238: 88,28
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10027: 154,100
+ 10040: 142,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 2020: 138,107
+ 2024: 142,110
+ 2033: 142,106
+ 2037: 137,97
+ 2084: 136,113
+ 9851: 147,106
+ 9852: 148,111
+ 9867: 152,112
+ 9924: 154,104
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 2606: 30,101
+ 2617: 30,117
+ 2676: 37,108
+ 2693: 24,105
+ 2708: 46,93
+ 2739: 46,84
+ 2780: 35,94
+ 2851: 38,114
+ 2872: 41,117
+ 3026: 37,102
+ 3028: 37,84
+ 3602: 122,68
+ 14603: 50,107
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5723: 98,115
+ 6897: 148,143
+ 6967: 140,138
+ 7156: 94,32
+ 7188: 111,31
+ 7198: 118,42
+ 7793: 66,23
+ 11017: 124,104
+ 13176: 87,119
+ 14522: 110,55
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3593: 135,49
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3090: 130,66
+ 3112: 130,74
+ 3232: 146,72
+ 3315: 144,53
+ 3319: 151,58
+ 3348: 138,49
+ 3386: 122,51
+ 3394: 122,56
+ 3419: 151,64
+ 3442: 151,74
+ 3451: 141,67
+ 9656: 155,153
+ 10640: 93,42
+ 10681: 101,48
+ 10701: 101,43
+ 13847: 90,48
+ - node:
+ zIndex: 1
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 14204: 94,108
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 878: 93,156
+ 980: 120,130
+ 1018: 120,147
+ 1052: 104,152
+ 1068: 125,129
+ 1096: 131,129
+ 1114: 125,140
+ 1181: 104,162
+ 1195: 115,162
+ 1320: 118,132
+ 1321: 118,140
+ 1330: 97,132
+ 1332: 97,140
+ 3050: 122,71
+ 3861: 125,146
+ 3872: 130,146
+ 3937: 115,125
+ 6292: 100,121
+ 6293: 103,125
+ 7220: 115,23
+ 13920: 115,27
+ 14066: 114,152
+ 14284: 86,61
+ 14722: 134,136
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10178: 96,162
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1857: 85,110
+ 1862: 85,104
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3592: 135,52
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3204: 136,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10056: 137,88
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 76: 44,48
+ 244: 50,48
+ 248: 49,62
+ 249: 50,63
+ 342: 48,35
+ 407: 50,21
+ 416: 53,18
+ 417: 52,17
+ 418: 56,21
+ 424: 57,22
+ 6926: 136,150
+ 11064: 53,68
+ 11224: 61,54
+ 13845: 49,73
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 803: 77,116
+ 3940: 85,121
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1508: 84,86
+ 1509: 84,82
+ 1684: 78,102
+ 1704: 74,105
+ 1810: 63,106
+ 1850: 89,90
+ 1851: 93,90
+ 3035: 124,64
+ 5657: 125,80
+ 6586: 120,47
+ 11025: 91,84
+ 14161: 123,62
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 14208: 96,106
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 5410: 66,72
+ 5423: 77,67
+ 5449: 90,71
+ 5473: 90,72
+ 5474: 90,75
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 6777: 159,121
+ 6779: 155,125
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 9992: 152,88
+ 9994: 153,93
+ 10002: 148,94
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2431: 144,87
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 11829: 102,107
+ 11830: 103,111
+ 11831: 117,107
+ 11885: 100,97
+ 11892: 100,91
+ 11927: 112,97
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3056: 124,73
+ 5165: 113,96
+ 5228: 101,96
+ 5238: 101,90
+ 5289: 123,96
+ 7235: 92,25
+ 10837: 124,98
+ 11209: 101,70
+ 11214: 100,68
+ 11257: 113,62
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10022: 152,98
+ 10025: 158,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2023: 144,108
+ 2035: 145,102
+ 2086: 140,109
+ 2365: 158,102
+ 2426: 144,93
+ 9918: 151,109
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2580: 53,99
+ 2619: 35,107
+ 2620: 36,110
+ 2681: 28,99
+ 2713: 49,86
+ 2738: 53,80
+ 2765: 44,82
+ 2766: 40,82
+ 3019: 40,104
+ 3044: 124,67
+ 14604: 52,105
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 14583: 63,89
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 6814: 160,117
+ 6904: 150,141
+ 6968: 142,136
+ 7153: 110,18
+ 7184: 113,22
+ 8329: 63,77
+ 9620: 142,140
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3193: 136,48
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3077: 135,62
+ 3078: 135,58
+ 3278: 149,55
+ 3284: 142,51
+ 3298: 150,48
+ 3320: 155,49
+ 3349: 142,44
+ 3387: 124,46
+ 3392: 127,54
+ 3393: 124,53
+ 3406: 144,73
+ 3411: 155,60
+ 3412: 156,61
+ 3445: 154,66
+ 3452: 145,64
+ 4447: 96,112
+ 10622: 96,44
+ 10623: 99,45
+ 10624: 99,39
+ 10685: 103,45
+ 10704: 102,39
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10517: 157,151
+ 10522: 157,148
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 832: 98,121
+ 996: 123,121
+ 1047: 106,147
+ 1050: 112,147
+ 1081: 129,121
+ 1120: 136,131
+ 1187: 113,158
+ 1316: 119,142
+ 1318: 119,134
+ 1327: 98,142
+ 1333: 98,134
+ 3052: 124,70
+ 3881: 132,144
+ 3935: 101,123
+ 3945: 119,158
+ 6755: 94,58
+ 7051: 146,130
+ 7211: 120,25
+ 7221: 120,19
+ 14009: 89,121
+ 14034: 96,127
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10185: 102,158
+ 14711: 129,134
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1590: 89,96
+ 1602: 89,103
+ 1604: 89,106
+ 1670: 83,106
+ 1866: 88,99
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3200: 136,51
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3205: 135,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10057: 131,88
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 77: 42,48
+ 121: 32,51
+ 122: 33,49
+ 123: 35,48
+ 217: 50,57
+ 219: 49,58
+ 247: 46,48
+ 252: 46,62
+ 279: 55,54
+ 339: 46,35
+ 398: 51,29
+ 451: 50,33
+ 5603: 42,44
+ 6923: 133,150
+ 7082: 101,18
+ 11061: 46,68
+ 11080: 46,73
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 4111: 46,53
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6157: 68,116
+ 14007: 87,121
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 1503: 72,85
+ 1506: 65,86
+ 1584: 86,90
+ 1669: 65,106
+ 1680: 71,102
+ 1687: 80,102
+ 1811: 59,106
+ 1839: 65,80
+ 1842: 79,82
+ 1854: 91,90
+ 5662: 124,85
+ 6565: 113,47
+ 11026: 86,84
+ 11792: 116,80
+ 12150: 59,83
+ 13928: 119,50
+ 14140: 59,99
+ 14155: 122,62
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 14209: 94,106
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5403: 61,72
+ 5414: 68,72
+ 5415: 72,71
+ 5416: 73,67
+ 5459: 81,77
+ 5463: 84,72
+ 5464: 84,75
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6780: 154,125
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 9985: 146,88
+ 10001: 150,94
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2432: 142,87
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 11814: 99,107
+ 11815: 114,107
+ 11819: 113,111
+ 11886: 95,97
+ 11893: 98,91
+ 11930: 104,97
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3060: 122,73
+ 5188: 103,96
+ 5210: 93,96
+ 5213: 93,103
+ 5237: 97,90
+ 5305: 115,96
+ 7234: 88,25
+ 11210: 111,70
+ 11213: 112,68
+ 11256: 99,62
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10026: 154,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2036: 142,102
+ 2354: 147,102
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2542: 46,95
+ 2556: 51,86
+ 2585: 46,99
+ 2618: 30,107
+ 2695: 24,99
+ 2716: 46,86
+ 2751: 46,80
+ 2764: 42,82
+ 2783: 35,86
+ 2930: 46,105
+ 3030: 37,82
+ 3043: 122,67
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5764: 120,109
+ 6903: 148,141
+ 6969: 140,136
+ 7154: 104,18
+ 10306: 139,140
+ 11019: 124,103
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3194: 135,48
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3091: 130,62
+ 3113: 130,68
+ 3123: 129,54
+ 3290: 138,51
+ 3314: 144,48
+ 3318: 151,55
+ 3321: 152,49
+ 3350: 138,44
+ 3368: 129,44
+ 3388: 122,46
+ 3389: 122,53
+ 3422: 151,60
+ 3446: 151,66
+ 10620: 90,45
+ 10621: 93,44
+ 10633: 90,39
+ 10682: 101,45
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 981: 120,127
+ 1019: 120,144
+ 1046: 110,147
+ 1051: 104,147
+ 1074: 125,121
+ 1129: 125,131
+ 1182: 104,158
+ 1301: 118,121
+ 1319: 118,134
+ 1323: 118,142
+ 1324: 97,142
+ 1325: 97,134
+ 3049: 122,70
+ 3860: 125,142
+ 3882: 130,144
+ 3944: 115,158
+ 4406: 137,121
+ 4413: 131,125
+ 7050: 143,130
+ 7217: 116,19
+ 7219: 115,22
+ 14282: 86,59
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10177: 96,158
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 1585: 85,99
+ 1856: 85,106
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3201: 135,51
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3206: 136,46
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10055: 137,94
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 214: 51,55
+ 215: 50,56
+ 230: 53,61
+ 253: 50,66
+ 406: 50,27
+ 413: 52,31
+ 414: 53,30
+ 415: 56,27
+ 425: 57,26
+ 452: 51,34
+ 6931: 136,153
+ 7095: 102,28
+ 11069: 53,75
+ 11229: 61,59
+ 13846: 49,75
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 4110: 50,51
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 804: 77,119
+ 3941: 85,123
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1379: 79,92
+ 1683: 78,104
+ 1730: 70,84
+ 1794: 63,104
+ 1808: 63,110
+ 1823: 84,88
+ 1843: 84,84
+ 1853: 93,92
+ 3595: 124,65
+ 6577: 120,51
+ 11033: 91,88
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5412: 66,76
+ 5450: 90,77
+ 5475: 90,73
+ 5476: 90,76
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 6762: 155,128
+ 6763: 159,128
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 9995: 153,94
+ 9998: 152,96
+ 9999: 148,90
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2436: 144,91
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 11846: 116,114
+ 11847: 117,113
+ 11887: 100,103
+ 11888: 100,93
+ 11929: 112,98
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3598: 124,74
+ 5198: 104,104
+ 5221: 101,104
+ 5236: 101,94
+ 10839: 124,101
+ 10841: 122,104
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10028: 158,100
+ 10041: 144,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2021: 140,107
+ 2034: 145,106
+ 2085: 140,113
+ 2173: 136,107
+ 2367: 158,104
+ 9861: 157,111
+ 9868: 153,112
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2459: 35,105
+ 2460: 34,104
+ 2461: 33,103
+ 2621: 36,117
+ 2670: 40,108
+ 2694: 28,105
+ 2707: 49,93
+ 2740: 53,84
+ 2767: 40,84
+ 2856: 48,114
+ 2873: 45,117
+ 2927: 48,108
+ 2989: 52,107
+ 3027: 40,102
+ 3603: 124,68
+ 9539: 53,103
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 14591: 63,91
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5724: 118,115
+ 6423: 144,78
+ 6898: 150,143
+ 6970: 142,138
+ 7155: 106,32
+ 7199: 120,42
+ 9625: 142,141
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3197: 136,49
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3072: 128,74
+ 3073: 135,66
+ 3081: 135,60
+ 3111: 135,74
+ 3234: 149,72
+ 3316: 150,53
+ 3317: 155,58
+ 3351: 142,49
+ 3390: 124,51
+ 3391: 127,56
+ 3408: 144,74
+ 3441: 154,74
+ 3460: 145,67
+ 9655: 153,153
+ 9664: 157,153
+ 10641: 96,42
+ 10679: 103,48
+ 10695: 99,48
+ - node:
+ zIndex: 1
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 14205: 96,108
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10521: 157,149
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 811: 89,123
+ 954: 123,156
+ 1053: 112,152
+ 1057: 119,152
+ 1069: 129,129
+ 1186: 113,162
+ 1317: 119,132
+ 1322: 119,140
+ 1326: 98,140
+ 1331: 98,132
+ 3599: 124,71
+ 3852: 136,136
+ 3858: 132,140
+ 3862: 128,146
+ 3886: 132,146
+ 3936: 101,125
+ 3946: 119,162
+ 6294: 113,125
+ 6748: 94,61
+ 7057: 146,134
+ 10277: 138,123
+ 10282: 137,129
+ 14723: 133,136
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10188: 102,162
+ 14710: 129,137
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1612: 89,110
+ 1863: 89,104
+ 14134: 89,97
+ 14141: 84,97
+ 14147: 83,104
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3198: 136,52
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Tunnel
+ decals:
+ 7707: 101.97727,27.120975
+ - node:
+ color: '#FFFFFFFF'
+ id: VentSmall
+ decals:
+ 13437: 56,119
+ 13438: 55,119
+ 13439: 54,119
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: Waffle
+ decals:
+ 7708: 88.022026,27.985554
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13986: 66,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13943: 67,128
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13981: 65,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13958: 65,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13957: 66,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13998: 67,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13970: 64,140
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13985: 64,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13944: 65,128
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13980: 63,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13964: 63,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13956: 64,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13997: 65,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13969: 62,140
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13990: 66,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13945: 67,126
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13976: 65,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13961: 65,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13951: 66,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13991: 67,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13967: 64,138
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13983: 64,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13946: 65,126
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13982: 63,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13962: 63,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13952: 64,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13993: 65,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13968: 62,138
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 5: 44,29
+ 6: 56,20
+ 7: 44,21
+ 8: 48,18
+ 318: 53,38
+ 319: 53,42
+ 706: 109,151
+ 10612: 162,57
+ 14027: 102,152
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 723: 109,138
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 1: 54,20
+ 2: 54,30
+ 3: 42,21
+ 4: 46,18
+ 322: 51,38
+ 323: 51,42
+ 332: 44,40
+ 333: 43,39
+ 705: 107,151
+ 5610: 49,46
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 722: 107,138
+ 10395: 53,142
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 15: 44,27
+ 16: 48,30
+ 17: 56,28
+ 33: 44,19
+ 314: 53,36
+ 315: 53,40
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 721: 109,136
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 13: 42,27
+ 14: 54,18
+ 18: 46,30
+ 19: 54,28
+ 324: 51,36
+ 325: 51,40
+ 334: 43,37
+ 335: 44,36
+ 5609: 49,44
+ 14019: 97,147
+ 14500: 28,69
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 720: 107,136
+ 10390: 53,139
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerSmallNE
+ decals:
+ 11112: 48,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 337: 44,39
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerSmallSE
+ decals:
+ 11111: 48,75
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 338: 44,37
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndE
+ decals:
+ 645: 119,133
+ 646: 119,141
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnEndS
+ decals:
+ 10203: 53,150
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndW
+ decals:
+ 648: 97,133
+ 649: 97,141
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineE
+ decals:
+ 11109: 48,74
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 23: 44,20
+ 24: 44,28
+ 25: 48,31
+ 26: 48,17
+ 320: 53,37
+ 321: 53,41
+ 681: 109,129
+ 682: 109,130
+ 684: 109,131
+ 685: 109,143
+ 686: 109,144
+ 701: 109,148
+ 702: 109,149
+ 703: 109,150
+ 2444: 130,108
+ 2445: 130,109
+ 2446: 130,110
+ 2447: 130,96
+ 2448: 130,97
+ 2449: 130,98
+ 2877: 54,86
+ 2878: 54,87
+ 2879: 54,88
+ 2880: 54,95
+ 2881: 54,96
+ 2882: 54,97
+ 3169: 135,54
+ 3170: 135,55
+ 3171: 135,56
+ 4031: 41,49
+ 4032: 41,50
+ 4033: 41,51
+ 4034: 45,57
+ 4035: 45,58
+ 4036: 45,59
+ 4395: 132,58
+ 4396: 132,59
+ 4865: 126,112
+ 4866: 126,113
+ 4867: 126,114
+ 5856: 96,76
+ 5857: 96,77
+ 5858: 96,78
+ 5859: 116,76
+ 5860: 116,77
+ 5861: 116,78
+ 6031: 72,63
+ 6032: 72,64
+ 6033: 72,65
+ 6077: 58,89
+ 6078: 58,90
+ 6079: 58,91
+ 6148: 61,112
+ 6149: 61,113
+ 6150: 61,114
+ 6151: 85,112
+ 6152: 85,113
+ 6153: 85,114
+ 6307: 97,117
+ 6308: 97,118
+ 6309: 97,119
+ 6310: 119,117
+ 6311: 119,118
+ 6312: 119,119
+ 6365: 136,117
+ 6366: 136,118
+ 6367: 136,119
+ 6467: 126,76
+ 6468: 126,77
+ 6469: 126,78
+ 6594: 108,50
+ 6596: 108,51
+ 6598: 108,52
+ 7242: 86,18
+ 7243: 86,19
+ 7244: 86,20
+ 7245: 99,30
+ 7246: 99,31
+ 7247: 99,32
+ 9536: 132,60
+ 9569: 84,130
+ 9570: 84,131
+ 9571: 84,132
+ 9572: 91,138
+ 9573: 91,139
+ 9574: 91,140
+ 9585: 77,138
+ 9586: 77,139
+ 9587: 77,140
+ 9848: 145,98
+ 9849: 145,99
+ 9850: 145,100
+ 10609: 162,54
+ 10610: 162,55
+ 10611: 162,56
+ 10812: 80,130
+ 10813: 80,131
+ 10814: 80,132
+ 13792: 54,101
+ 13793: 54,102
+ 14023: 102,148
+ 14024: 102,149
+ 14025: 102,150
+ 14026: 102,151
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 714: 109,145
+ 715: 109,147
+ 8683: 116,168
+ 8684: 116,169
+ 8685: 116,170
+ 10208: 53,151
+ 10210: 53,153
+ 10214: 53,156
+ 10215: 53,157
+ 10216: 53,152
+ 10217: 53,154
+ 14095: 41,61
+ 14096: 41,62
+ 14097: 41,63
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13989: 66,147
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13947: 67,127
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13975: 65,143
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13960: 65,135
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13955: 66,131
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13996: 67,151
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13973: 64,139
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13987: 65,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13949: 66,128
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13979: 64,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13965: 64,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13950: 65,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13995: 66,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13966: 63,140
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13988: 65,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13942: 66,126
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13977: 64,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13963: 64,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13953: 65,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13992: 66,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13971: 63,138
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13984: 64,147
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13948: 65,127
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13978: 63,143
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13959: 63,135
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13954: 64,131
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13994: 65,151
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13972: 62,139
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: WarnLineN
+ decals:
+ 13844: 49,75
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 9: 43,19
+ 10: 55,28
+ 11: 43,27
+ 12: 47,30
+ 98: 43,65
+ 99: 42,65
+ 100: 44,65
+ 326: 52,36
+ 329: 52,40
+ 654: 98,133
+ 655: 98,141
+ 656: 118,141
+ 657: 118,133
+ 658: 116,133
+ 659: 116,141
+ 660: 100,133
+ 661: 100,141
+ 669: 114,136
+ 670: 115,136
+ 671: 116,136
+ 672: 102,136
+ 673: 101,136
+ 674: 100,136
+ 1197: 93,126
+ 1198: 94,126
+ 1199: 95,126
+ 1206: 93,148
+ 1207: 94,148
+ 1208: 95,148
+ 1209: 121,148
+ 1210: 122,148
+ 1211: 123,148
+ 1218: 121,126
+ 1219: 122,126
+ 1220: 123,126
+ 1706: 65,111
+ 1707: 66,111
+ 1708: 67,111
+ 1715: 81,111
+ 1716: 82,111
+ 1717: 83,111
+ 2883: 42,94
+ 2884: 43,94
+ 2885: 44,94
+ 3172: 126,62
+ 3173: 127,62
+ 3174: 128,62
+ 3185: 137,64
+ 3186: 138,64
+ 3187: 139,64
+ 3188: 147,64
+ 3189: 148,64
+ 3190: 149,64
+ 4856: 102,116
+ 4857: 103,116
+ 4858: 104,116
+ 4859: 112,116
+ 4860: 113,116
+ 4861: 114,116
+ 5608: 50,44
+ 5862: 66,44
+ 5863: 67,44
+ 5864: 68,44
+ 5960: 66,62
+ 5961: 67,62
+ 5962: 68,62
+ 6037: 55,68
+ 6038: 56,68
+ 6039: 57,68
+ 6068: 55,84
+ 6069: 56,84
+ 6070: 57,84
+ 6080: 55,99
+ 6081: 56,99
+ 6082: 57,99
+ 6356: 127,116
+ 6357: 128,116
+ 6358: 129,116
+ 6368: 127,94
+ 6369: 128,94
+ 6370: 129,94
+ 6587: 118,62
+ 6588: 119,62
+ 6589: 120,62
+ 6599: 84,61
+ 6608: 148,124
+ 6609: 149,124
+ 6610: 150,124
+ 6611: 146,141
+ 6612: 145,141
+ 6613: 144,141
+ 6622: 157,120
+ 6623: 158,120
+ 7251: 108,21
+ 7252: 109,21
+ 7253: 110,21
+ 9604: 80,120
+ 9605: 81,120
+ 9606: 82,120
+ 9607: 83,120
+ 9608: 84,120
+ 13395: 150,101
+ 13396: 149,101
+ 13397: 148,101
+ 13785: 98,153
+ 13786: 99,153
+ 13787: 100,153
+ 13788: 101,153
+ 14015: 101,147
+ 14016: 100,147
+ 14017: 99,147
+ 14018: 98,147
+ 14266: 82,49
+ 14267: 83,49
+ 14268: 84,49
+ 14274: 82,61
+ 14275: 83,61
+ 14501: 29,69
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 10391: 54,139
+ 14578: 59,92
+ 14579: 60,92
+ 14580: 61,92
+ 14581: 62,92
+ 14582: 63,92
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 27: 42,20
+ 28: 42,28
+ 29: 46,31
+ 30: 54,29
+ 31: 54,19
+ 32: 46,17
+ 330: 51,37
+ 331: 51,41
+ 336: 43,38
+ 678: 107,129
+ 679: 107,130
+ 680: 107,131
+ 688: 107,143
+ 689: 107,144
+ 697: 107,149
+ 698: 107,148
+ 700: 107,150
+ 2438: 130,96
+ 2439: 130,97
+ 2440: 130,98
+ 2441: 130,108
+ 2442: 130,109
+ 2443: 130,110
+ 2889: 54,86
+ 2890: 54,87
+ 2891: 54,88
+ 2892: 54,95
+ 2893: 54,96
+ 2894: 54,97
+ 3166: 135,54
+ 3167: 135,55
+ 3168: 135,56
+ 4025: 45,57
+ 4026: 45,58
+ 4027: 45,59
+ 4028: 41,49
+ 4029: 41,50
+ 4030: 41,51
+ 4392: 132,58
+ 4393: 132,59
+ 4862: 126,112
+ 4863: 126,113
+ 4864: 126,114
+ 5606: 49,45
+ 5849: 96,76
+ 5850: 96,77
+ 5851: 96,78
+ 5853: 116,76
+ 5854: 116,77
+ 5855: 116,78
+ 6028: 72,63
+ 6029: 72,64
+ 6030: 72,65
+ 6074: 58,89
+ 6075: 58,90
+ 6076: 58,91
+ 6145: 61,112
+ 6146: 61,113
+ 6147: 61,114
+ 6154: 85,112
+ 6155: 85,113
+ 6156: 85,114
+ 6304: 97,117
+ 6305: 97,118
+ 6306: 97,119
+ 6313: 119,117
+ 6314: 119,118
+ 6315: 119,119
+ 6362: 136,117
+ 6363: 136,118
+ 6364: 136,119
+ 6464: 126,76
+ 6465: 126,77
+ 6470: 126,78
+ 6593: 108,50
+ 6595: 108,51
+ 6597: 108,52
+ 7062: 143,134
+ 7239: 86,18
+ 7240: 86,19
+ 7241: 86,20
+ 7248: 99,30
+ 7249: 99,31
+ 7250: 99,32
+ 9535: 132,60
+ 9566: 84,130
+ 9567: 84,131
+ 9568: 84,132
+ 9575: 91,138
+ 9576: 91,139
+ 9577: 91,140
+ 9582: 77,138
+ 9583: 77,139
+ 9584: 77,140
+ 9845: 145,98
+ 9846: 145,99
+ 9847: 145,100
+ 10809: 80,130
+ 10810: 80,131
+ 10811: 80,132
+ 13789: 54,101
+ 13790: 54,102
+ 14020: 97,148
+ 14021: 97,149
+ 14022: 97,150
+ 14498: 28,70
+ 14499: 28,71
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 716: 107,145
+ 717: 107,147
+ 8680: 116,168
+ 8681: 116,169
+ 8682: 116,170
+ 10204: 53,151
+ 10206: 53,153
+ 10212: 53,156
+ 10213: 53,157
+ 10218: 53,152
+ 10219: 53,154
+ 10392: 53,140
+ 10396: 53,141
+ 14092: 41,61
+ 14093: 41,62
+ 14094: 41,63
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: WarnLineW
+ decals:
+ 13843: 49,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 20: 47,18
+ 21: 43,21
+ 22: 55,20
+ 34: 43,29
+ 101: 42,65
+ 102: 43,65
+ 103: 44,65
+ 327: 52,38
+ 328: 52,42
+ 650: 98,141
+ 651: 118,141
+ 652: 118,133
+ 653: 98,133
+ 662: 100,133
+ 663: 100,141
+ 664: 116,141
+ 665: 116,133
+ 666: 114,138
+ 667: 115,138
+ 668: 116,138
+ 675: 100,138
+ 676: 101,138
+ 677: 102,138
+ 707: 108,151
+ 1200: 93,126
+ 1201: 94,126
+ 1202: 95,126
+ 1203: 95,148
+ 1204: 94,148
+ 1205: 93,148
+ 1212: 121,148
+ 1213: 122,148
+ 1214: 123,148
+ 1215: 123,126
+ 1216: 122,126
+ 1217: 121,126
+ 1709: 65,111
+ 1710: 66,111
+ 1711: 67,111
+ 1712: 81,111
+ 1713: 82,111
+ 1714: 83,111
+ 2451: 155,89
+ 2886: 42,94
+ 2887: 43,94
+ 2888: 44,94
+ 3175: 126,62
+ 3176: 127,62
+ 3177: 128,62
+ 3178: 148,64
+ 3179: 149,64
+ 3180: 147,64
+ 3182: 139,64
+ 3183: 138,64
+ 3184: 137,64
+ 4868: 102,116
+ 4869: 103,116
+ 4870: 104,116
+ 4871: 112,116
+ 4872: 113,116
+ 4873: 114,116
+ 5607: 50,46
+ 5865: 66,44
+ 5866: 67,44
+ 5867: 68,44
+ 5963: 66,62
+ 5964: 67,62
+ 5965: 68,62
+ 6034: 55,68
+ 6035: 57,68
+ 6036: 56,68
+ 6071: 55,84
+ 6072: 56,84
+ 6073: 57,84
+ 6083: 55,99
+ 6084: 56,99
+ 6085: 57,99
+ 6359: 127,116
+ 6360: 128,116
+ 6361: 129,116
+ 6371: 128,94
+ 6372: 129,94
+ 6373: 127,94
+ 6590: 118,62
+ 6591: 119,62
+ 6592: 120,62
+ 6602: 84,61
+ 6614: 148,124
+ 6615: 149,124
+ 6616: 150,124
+ 6617: 146,141
+ 6618: 145,141
+ 6619: 144,141
+ 6620: 157,120
+ 6621: 158,120
+ 7061: 141,133
+ 7254: 108,21
+ 7255: 109,21
+ 7256: 110,21
+ 9609: 80,120
+ 9610: 81,120
+ 9611: 82,120
+ 9612: 83,120
+ 9613: 84,120
+ 10608: 161,57
+ 13398: 150,101
+ 13399: 149,101
+ 13400: 148,101
+ 13781: 98,153
+ 13782: 99,153
+ 13783: 100,153
+ 13784: 101,153
+ 14269: 82,49
+ 14270: 83,49
+ 14271: 84,49
+ 14272: 83,61
+ 14273: 82,61
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 8026: 155,80
+ 8027: 156,80
+ 8028: 157,80
+ 8029: 158,80
+ 8030: 159,80
+ 8031: 160,80
+ 8032: 161,80
+ 10394: 54,142
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinBox
+ decals:
+ 5372: 83,74
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 466: 40,76
+ 493: 40,68
+ 570: 58,52
+ 4629: 110,104
+ 4906: 113,59
+ 5356: 71,69
+ 5357: 70,70
+ 5368: 83,76
+ 5597: 80,49
+ 8660: 115,171
+ 9637: 142,145
+ 10599: 159,143
+ 10600: 159,135
+ 10601: 156,135
+ 10602: 153,135
+ 10603: 153,143
+ 10604: 156,143
+ 10657: 107,48
+ 11134: 109,69
+ 11135: 110,68
+ 12096: 125,115
+ 13272: 146,125
+ 13283: 146,128
+ 13669: 65,54
+ 14330: 89,57
+ 14450: 108,41
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 8129: 161,76
+ 8130: 161,71
+ 14214: 80,53
+ 14228: 80,61
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 458: 37,76
+ 459: 32,71
+ 490: 37,68
+ 571: 54,52
+ 4628: 106,104
+ 4905: 111,59
+ 5355: 68,70
+ 5378: 81,76
+ 5573: 75,52
+ 5574: 76,53
+ 5594: 74,49
+ 9633: 136,145
+ 10424: 36,126
+ 10605: 158,143
+ 10606: 155,143
+ 10607: 152,143
+ 10655: 104,48
+ 11132: 102,68
+ 11133: 103,69
+ 12097: 124,115
+ 12098: 120,114
+ 13271: 143,125
+ 13649: 70,61
+ 13668: 63,54
+ 14329: 86,57
+ 14454: 104,41
+ 14742: 152,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 8127: 158,76
+ 8128: 158,71
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 491: 40,66
+ 572: 58,49
+ 4594: 111,106
+ 4621: 105,109
+ 4627: 110,101
+ 4902: 113,58
+ 4909: 108,61
+ 5359: 71,67
+ 5369: 83,72
+ 5568: 74,54
+ 5577: 79,51
+ 5578: 80,47
+ 5592: 80,47
+ 8654: 115,167
+ 10590: 156,133
+ 10591: 153,133
+ 10592: 159,133
+ 10660: 107,44
+ 10675: 108,38
+ 12095: 125,110
+ 13269: 146,121
+ 13284: 146,127
+ 13671: 65,51
+ 14421: 141,143
+ 14470: 40,71
+ 14745: 159,137
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 8131: 161,68
+ 8132: 161,73
+ 14215: 80,52
+ 14222: 80,55
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 478: 32,70
+ 492: 37,66
+ 4593: 105,106
+ 4620: 111,109
+ 4626: 106,101
+ 4901: 111,58
+ 4907: 104,61
+ 5360: 68,67
+ 5379: 81,72
+ 5593: 74,47
+ 10301: 136,143
+ 10308: 107,167
+ 10584: 152,141
+ 10585: 155,141
+ 10586: 158,141
+ 10587: 152,133
+ 10588: 155,133
+ 10589: 158,133
+ 10661: 104,44
+ 10665: 104,38
+ 13270: 143,121
+ 13285: 143,127
+ 13661: 70,51
+ 13672: 63,51
+ 14328: 86,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 8125: 158,68
+ 8126: 158,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndE
+ decals:
+ 13899: 99,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndE
+ decals:
+ 14220: 78,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndS
+ decals:
+ 10436: 43,121
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndW
+ decals:
+ 8647: 106,171
+ 13900: 97,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndW
+ decals:
+ 14217: 76,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 5358: 70,69
+ 11137: 109,68
+ 12126: 120,110
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNw
+ decals:
+ 477: 37,71
+ 581: 54,49
+ 5581: 76,52
+ 11136: 103,68
+ 12099: 124,114
+ 12122: 120,110
+ 12123: 125,110
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 4610: 104,109
+ 4611: 105,110
+ 4625: 111,107
+ 5571: 73,54
+ 5572: 74,55
+ 12125: 120,114
+ 14423: 141,144
+ 14472: 39,71
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 14216: 79,52
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSw
+ decals:
+ 4597: 112,109
+ 4609: 111,110
+ 4624: 105,107
+ 8648: 107,171
+ 10437: 43,122
+ 12124: 125,114
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 461: 40,75
+ 462: 40,74
+ 463: 40,73
+ 464: 40,72
+ 494: 40,67
+ 576: 58,50
+ 4605: 104,108
+ 4634: 110,102
+ 4635: 110,103
+ 4771: 111,91
+ 4772: 111,92
+ 4773: 111,94
+ 5370: 83,73
+ 5371: 83,75
+ 5539: 73,52
+ 5540: 73,53
+ 5596: 80,48
+ 7081: 104,107
+ 10432: 43,125
+ 10433: 43,124
+ 10434: 43,123
+ 10435: 43,122
+ 10578: 153,142
+ 10579: 156,142
+ 10580: 159,142
+ 10581: 159,134
+ 10582: 156,134
+ 10583: 153,134
+ 10593: 159,134
+ 10594: 156,134
+ 10595: 153,134
+ 10596: 153,142
+ 10597: 156,142
+ 10598: 159,142
+ 10658: 107,47
+ 10659: 107,45
+ 10673: 108,40
+ 10674: 108,39
+ 11145: 110,67
+ 12091: 120,111
+ 12092: 120,112
+ 12093: 120,113
+ 12094: 125,111
+ 13273: 146,122
+ 13274: 146,123
+ 13275: 146,124
+ 13666: 65,52
+ 13667: 65,53
+ 14331: 89,56
+ 14471: 39,70
+ 14743: 159,138
+ 14744: 159,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 8139: 161,69
+ 8140: 161,70
+ 8141: 161,74
+ 8142: 161,75
+ 14201: 122,111
+ 14202: 122,112
+ 14203: 122,113
+ 14223: 80,56
+ 14224: 80,57
+ 14225: 80,58
+ 14226: 80,59
+ 14227: 80,60
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 467: 39,76
+ 468: 38,76
+ 473: 33,71
+ 474: 34,71
+ 475: 35,71
+ 476: 36,71
+ 488: 38,68
+ 577: 55,52
+ 578: 56,52
+ 4612: 105,108
+ 4614: 107,109
+ 4615: 108,109
+ 4616: 109,109
+ 4617: 110,109
+ 4618: 111,108
+ 4619: 106,109
+ 4630: 107,104
+ 4631: 109,104
+ 4904: 112,59
+ 4913: 104,64
+ 4914: 105,64
+ 4915: 106,64
+ 4916: 107,64
+ 4917: 108,64
+ 5365: 69,70
+ 5366: 82,76
+ 5558: 73,61
+ 5559: 74,61
+ 5560: 75,61
+ 5561: 77,61
+ 5579: 77,53
+ 5588: 75,49
+ 5589: 76,49
+ 5590: 78,49
+ 5591: 79,49
+ 8639: 107,171
+ 8640: 108,171
+ 8641: 109,171
+ 8642: 110,171
+ 8643: 111,171
+ 8644: 112,171
+ 8645: 113,171
+ 8646: 114,171
+ 9614: 139,142
+ 9615: 140,142
+ 9634: 137,145
+ 9635: 138,145
+ 9636: 141,145
+ 10425: 37,126
+ 10426: 38,126
+ 10427: 39,126
+ 10428: 40,126
+ 10429: 41,126
+ 10430: 42,126
+ 10431: 43,126
+ 10656: 105,48
+ 11147: 104,69
+ 11148: 105,69
+ 11149: 106,69
+ 11150: 108,69
+ 11151: 107,69
+ 11260: 103,64
+ 11261: 109,64
+ 12100: 121,114
+ 12101: 122,114
+ 12102: 123,114
+ 12103: 121,110
+ 12104: 122,110
+ 12105: 123,110
+ 12106: 124,110
+ 13276: 145,125
+ 13281: 144,128
+ 13282: 145,128
+ 13650: 72,61
+ 13651: 71,61
+ 13670: 64,54
+ 13902: 98,54
+ 14334: 87,57
+ 14335: 88,57
+ 14451: 107,41
+ 14452: 106,41
+ 14453: 105,41
+ 14750: 154,139
+ 14751: 155,139
+ 14752: 158,139
+ 14753: 157,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 8143: 160,71
+ 8144: 159,76
+ 8145: 160,76
+ 14212: 78,53
+ 14213: 79,53
+ 14219: 77,54
+ 14229: 79,61
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 479: 33,70
+ 480: 34,70
+ 481: 35,70
+ 482: 36,70
+ 483: 37,70
+ 485: 38,70
+ 486: 38,66
+ 487: 39,66
+ 573: 55,49
+ 574: 56,49
+ 575: 57,49
+ 4589: 106,106
+ 4590: 107,106
+ 4591: 109,106
+ 4592: 110,106
+ 4599: 110,110
+ 4600: 109,110
+ 4601: 108,110
+ 4602: 107,110
+ 4603: 106,110
+ 4632: 107,101
+ 4633: 109,101
+ 4903: 112,58
+ 4919: 105,61
+ 4920: 107,61
+ 5361: 69,67
+ 5362: 70,67
+ 5373: 82,72
+ 5550: 75,55
+ 5551: 76,55
+ 5552: 77,55
+ 5553: 78,55
+ 5554: 79,55
+ 5582: 76,51
+ 5583: 78,51
+ 5584: 76,47
+ 5585: 77,47
+ 5586: 78,47
+ 5587: 79,47
+ 9629: 140,143
+ 9630: 139,143
+ 9631: 138,143
+ 10309: 108,167
+ 10310: 112,167
+ 10311: 113,167
+ 10421: 41,122
+ 10422: 38,122
+ 10438: 40,122
+ 10439: 39,122
+ 10662: 105,44
+ 10663: 105,38
+ 10664: 106,38
+ 11138: 103,66
+ 11139: 104,66
+ 11140: 105,66
+ 11141: 106,66
+ 11142: 107,66
+ 11143: 108,66
+ 11144: 109,66
+ 11258: 103,62
+ 11259: 109,62
+ 12107: 121,114
+ 12108: 122,114
+ 12109: 123,114
+ 12110: 124,114
+ 12117: 120,110
+ 12118: 121,110
+ 12119: 122,110
+ 12120: 123,110
+ 12121: 124,110
+ 13277: 145,121
+ 13286: 145,127
+ 13662: 71,51
+ 13663: 64,51
+ 13901: 98,54
+ 14326: 88,54
+ 14327: 87,54
+ 14422: 142,144
+ 14746: 153,137
+ 14747: 154,137
+ 14748: 156,137
+ 14749: 157,137
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 8133: 159,68
+ 8134: 160,68
+ 8135: 160,73
+ 14218: 77,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 469: 37,72
+ 470: 37,73
+ 471: 37,74
+ 472: 37,75
+ 579: 54,51
+ 580: 54,50
+ 4596: 112,108
+ 4636: 106,102
+ 4637: 106,103
+ 4768: 109,90
+ 4769: 109,92
+ 4770: 109,93
+ 5363: 68,68
+ 5364: 68,69
+ 5375: 81,73
+ 5376: 81,74
+ 5377: 81,75
+ 5595: 74,48
+ 7080: 112,107
+ 8649: 107,169
+ 8650: 107,170
+ 10423: 36,124
+ 10572: 152,142
+ 10573: 155,142
+ 10574: 158,142
+ 10575: 158,134
+ 10576: 155,134
+ 10577: 152,134
+ 10652: 104,45
+ 10653: 104,46
+ 10654: 104,47
+ 10666: 104,39
+ 11146: 102,67
+ 12111: 125,111
+ 12112: 125,112
+ 12113: 125,113
+ 12114: 120,113
+ 12115: 120,112
+ 12116: 120,111
+ 13278: 143,122
+ 13279: 143,123
+ 13280: 143,124
+ 13652: 70,60
+ 13653: 70,59
+ 13654: 70,58
+ 13655: 70,57
+ 13656: 70,56
+ 13657: 70,55
+ 13658: 70,54
+ 13659: 70,53
+ 13660: 70,52
+ 13664: 63,52
+ 13665: 63,53
+ 14332: 86,55
+ 14333: 86,56
+ 14740: 152,137
+ 14741: 152,138
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 8136: 158,69
+ 8137: 158,74
+ 8138: 158,75
+ 14198: 123,111
+ 14199: 123,112
+ 14200: 123,113
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: amyjon
+ decals:
+ 7677: 92.96522,18.294617
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF0000FF'
+ id: amyjon
+ decals:
+ 8116: 162.99345,49.051983
+ - node:
+ cleanable: True
+ color: '#FFFFF0FF'
+ id: body
+ decals:
+ 7678: 90.62904,23.147133
+ 7679: 94.43799,30.009949
+ 7680: 119.95131,31.943363
+ 7681: 118.26381,30.582253
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt1
+ decals:
+ 4138: 28,107
+ 4139: 28,108
+ 4140: 26,108
+ 4141: 28,109
+ 4153: 32,107
+ 4154: 33,108
+ 4155: 34,109
+ 4157: 36,110
+ 4158: 35,110
+ 4198: 27,117
+ 4199: 27,117
+ 4200: 26,116
+ 4201: 27,115
+ 4202: 28,115
+ 4203: 28,117
+ 4204: 27,117
+ 4205: 26,116
+ 4206: 27,116
+ 4207: 27,116
+ 4208: 28,115
+ 4209: 27,115
+ 4210: 26,116
+ 4211: 27,117
+ 4212: 27,117
+ 4213: 28,117
+ 4214: 30,116
+ 4215: 30,115
+ 4216: 31,115
+ 4217: 31,116
+ 4218: 32,116
+ 4219: 32,115
+ 4220: 31,114
+ 4221: 33,111
+ 4222: 32,110
+ 4223: 32,109
+ 4224: 31,109
+ 4225: 28,111
+ 4226: 26,112
+ 4227: 27,113
+ 4228: 36,114
+ 4229: 35,112
+ 4230: 33,112
+ 4231: 35,110
+ 4232: 35,116
+ 4233: 36,117
+ 4234: 33,113
+ 4235: 30,107
+ 7731: 122,30
+ 7732: 122,31
+ 7733: 123,32
+ 7734: 124,31
+ 7735: 124,30
+ 7736: 123,30
+ 7737: 123,32
+ 7738: 124,32
+ 7739: 124,31
+ 7740: 122,28
+ 7741: 123,27
+ 7742: 124,26
+ 7743: 119,30
+ 7744: 119,30
+ 7745: 120,32
+ 7746: 119,33
+ 7747: 116,30
+ 7748: 122,33
+ 7749: 124,33
+ 7750: 124,33
+ 7751: 124,33
+ 7752: 123,31
+ 7753: 123,31
+ 7754: 123,31
+ 7755: 123,31
+ 7756: 123,32
+ 7757: 123,32
+ 7758: 122,31
+ 7759: 122,31
+ 7760: 123,30
+ 7761: 123,30
+ 7762: 124,31
+ 7763: 124,31
+ 8799: 82,162
+ 8801: 83,162
+ 8809: 83,159
+ 8810: 82,158
+ 8811: 87,162
+ 8812: 88,162
+ 8813: 88,162
+ 10242: 53,154
+ 10243: 53,157
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt2
+ decals:
+ 4150: 33,107
+ 4151: 34,108
+ 4152: 35,109
+ 7726: 122,29
+ 7727: 123,28
+ 7728: 124,29
+ 7729: 123,33
+ 7730: 120,31
+ 8797: 82,160
+ 8802: 84,162
+ 8803: 84,162
+ 10241: 53,153
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt3
+ decals:
+ 4145: 26,109
+ 4146: 28,109
+ 4149: 35,108
+ 4182: 26,115
+ 4183: 26,116
+ 4184: 27,115
+ 4185: 27,115
+ 4186: 28,115
+ 4187: 28,115
+ 4188: 28,116
+ 4190: 26,117
+ 4191: 27,116
+ 4192: 27,116
+ 4193: 27,116
+ 4194: 27,116
+ 4195: 30,116
+ 4196: 31,117
+ 4197: 31,115
+ 7713: 123,31
+ 7714: 123,31
+ 7719: 122,30
+ 7720: 123,29
+ 7721: 124,30
+ 7722: 124,32
+ 7723: 122,32
+ 7724: 123,33
+ 7725: 121,31
+ 8798: 82,161
+ 8804: 85,162
+ 10239: 53,152
+ 10240: 53,152
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt4
+ decals:
+ 4142: 27,108
+ 4143: 27,107
+ 4144: 26,107
+ 4147: 35,107
+ 4159: 31,110
+ 4160: 32,114
+ 4161: 35,116
+ 4162: 36,114
+ 4163: 26,115
+ 4164: 26,116
+ 4165: 27,115
+ 4167: 27,117
+ 4168: 26,117
+ 4169: 26,116
+ 4171: 27,115
+ 4172: 26,115
+ 4173: 28,115
+ 4174: 28,116
+ 4175: 28,116
+ 4176: 28,117
+ 4178: 29,116
+ 4179: 30,117
+ 4180: 30,116
+ 4181: 30,115
+ 4236: 32,112
+ 7711: 123,31
+ 7712: 123,31
+ 7715: 123,30
+ 7716: 124,31
+ 7717: 123,32
+ 7718: 122,31
+ 8796: 83,160
+ 8800: 83,161
+ 8805: 85,161
+ 8806: 84,161
+ 8807: 82,161
+ 8808: 83,162
+ 10233: 53,151
+ 10234: 53,151
+ 10235: 53,151
+ 10236: 53,150
+ 10237: 53,150
+ 10238: 53,150
+ 10244: 53,156
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#00FFFFFF'
+ id: cyka
+ decals:
+ 8117: 159.40845,43.81839
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: cyka
+ decals:
+ 7685: 116.968155,28.88358
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: electricdanger
+ decals:
+ 10386: 98.2068,165.0918
+ 10387: 95.87911,164.49387
+ - node:
+ cleanable: True
+ color: '#FF9821FF'
+ id: end
+ decals:
+ 8815: 90.19159,171.35666
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: end
+ decals:
+ 7765: 113.91199,41.070557
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: engie
+ decals:
+ 7687: 119.03187,24.875328
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: ghost
+ decals:
+ 7690: 122.351364,27.107048
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: guy
+ decals:
+ 7691: 89.99586,25.904415
+ - node:
+ cleanable: True
+ color: '#DE3A3AFF'
+ id: matt
+ decals:
+ 8819: 80.71868,161.97488
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: matt
+ decals:
+ 7692: 98.07179,27.071083
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: prolizard
+ decals:
+ 7697: 112.27426,22.31491
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: revolution
+ decals:
+ 7700: 89.38472,20.951363
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: skull
+ decals:
+ 7701: 120.021675,30.848217
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: space
+ decals:
+ 7703: 95.06352,17.901512
+ - node:
+ cleanable: True
+ color: '#A2764432'
+ id: splatter
+ decals:
+ 7777: 91.3746,21.588058
+ 7778: 91.15653,26.232841
+ - node:
+ cleanable: True
+ color: '#FF00000F'
+ id: splatter
+ decals:
+ 7771: 119.15314,28.941982
+ 7772: 101.5521,25.421951
+ 7773: 98.61691,27.646725
+ - node:
+ cleanable: True
+ color: '#FF000023'
+ id: splatter
+ decals:
+ 7766: 119.9598,29.758423
+ 7767: 119.51536,31.63805
+ 7768: 117.86258,29.911198
+ 7769: 118.26073,30.272308
+ 7770: 120.51227,31.533112
+ - node:
+ cleanable: True
+ color: '#FF000030'
+ id: splatter
+ decals:
+ 7779: 95.010735,28.974556
+ - node:
+ cleanable: True
+ color: '#FF000041'
+ id: splatter
+ decals:
+ 7780: 91.958725,22.24057
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF170008'
+ id: splatter
+ decals:
+ 10507: 163.3699,147.21634
+ 10508: 162.57951,147.52437
+ 10509: 162.94208,148.08969
+ 10510: 163.45331,147.97372
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF17000F'
+ id: splatter
+ decals:
+ 10511: 163.12698,147.67657
+ 10512: 162.51425,148.32887
+ 10513: 163.23938,148.64415
+ - node:
+ cleanable: True
+ color: '#FFA4000F'
+ id: splatter
+ decals:
+ 7774: 98.521255,25.277252
+ 7775: 101.549034,27.593563
+ 7776: 101.28977,19.12555
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: star
+ decals:
+ 7706: 105.77632,30.774948
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: stickman
+ decals:
+ 7705: 104.05757,28.591457
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: toolbox
+ decals:
+ 7709: 118.49398,19.071342
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 4,5:
+ 0: 34816
+ 5,5:
+ 0: 3840
+ 4,6:
+ 0: 34952
+ 4,7:
+ 0: 34952
+ 5,7:
+ 0: 10018
+ 1: 34952
+ 4,8:
+ 0: 34952
+ 5,6:
+ 0: 8750
+ 1: 34816
+ 5,8:
+ 0: 8738
+ 1: 34952
+ 6,5:
+ 0: 7936
+ 6,6:
+ 0: 4383
+ 1: 43520
+ 6,7:
+ 0: 5393
+ 1: 43690
+ 6,8:
+ 0: 4369
+ 1: 43690
+ 7,5:
+ 0: 7936
+ 7,6:
+ 0: 4383
+ 1: 43520
+ 7,7:
+ 0: 5393
+ 1: 43690
+ 7,8:
+ 0: 4369
+ 1: 43690
+ 8,5:
+ 0: 7936
+ 8,6:
+ 0: 4383
+ 1: 43520
+ 8,7:
+ 0: 5393
+ 1: 43690
+ 4,9:
+ 0: 34952
+ 5,9:
+ 0: 61410
+ 4,10:
+ 0: 34952
+ 4,11:
+ 0: 34952
+ 5,11:
+ 0: 8818
+ 1: 34952
+ 4,12:
+ 0: 11791
+ 5,10:
+ 0: 8738
+ 1: 34944
+ 5,12:
+ 0: 4898
+ 1: 2184
+ 6,9:
+ 0: 65521
+ 6,10:
+ 0: 4369
+ 1: 8736
+ 6,11:
+ 0: 37329
+ 1: 8738
+ 6,12:
+ 0: 39321
+ 1: 546
+ 7,9:
+ 0: 65521
+ 7,11:
+ 0: 32767
+ 7,10:
+ 0: 37137
+ 7,12:
+ 0: 13119
+ 8,8:
+ 0: 4369
+ 1: 43690
+ 8,9:
+ 0: 65521
+ 8,10:
+ 0: 63897
+ 8,11:
+ 0: 4607
+ 3,12:
+ 0: 34952
+ 4,13:
+ 0: 11002
+ 3,13:
+ 0: 34952
+ 4,14:
+ 0: 36622
+ 3,14:
+ 0: 2184
+ 5,13:
+ 0: 8191
+ 5,14:
+ 0: 8739
+ 1: 34952
+ 4,15:
+ 0: 34952
+ 5,15:
+ 0: 8818
+ 1: 34952
+ 4,16:
+ 0: 10984
+ 5,16:
+ 0: 546
+ 1: 136
+ 6,13:
+ 0: 40959
+ 6,14:
+ 0: 39321
+ 1: 8738
+ 6,15:
+ 0: 39385
+ 1: 8738
+ 6,16:
+ 0: 409
+ 1: 32802
+ 7,13:
+ 0: 13111
+ 7,14:
+ 0: 13111
+ 7,15:
+ 0: 13111
+ 7,16:
+ 0: 51
+ 1: 12544
+ 8,12:
+ 1: 65256
+ 8,13:
+ 1: 30591
+ 8,14:
+ 1: 30583
+ 8,15:
+ 1: 65399
+ 4,17:
+ 0: 8738
+ 4,18:
+ 0: 8802
+ 4,19:
+ 1: 52736
+ 4,20:
+ 1: 34830
+ 5,17:
+ 1: 65535
+ 5,18:
+ 1: 65535
+ 5,19:
+ 1: 61263
+ 5,20:
+ 1: 32751
+ 6,17:
+ 1: 48051
+ 6,18:
+ 1: 64435
+ 6,19:
+ 1: 48011
+ 6,20:
+ 1: 41915
+ 7,17:
+ 1: 13105
+ 7,18:
+ 1: 13105
+ 7,19:
+ 1: 62227
+ 7,20:
+ 1: 56603
+ 8,16:
+ 1: 65359
+ 8,17:
+ 1: 65295
+ 8,18:
+ 1: 65519
+ 8,19:
+ 1: 61455
+ 4,21:
+ 1: 52744
+ 4,22:
+ 1: 52238
+ 4,23:
+ 1: 3276
+ 4,24:
+ 1: 50188
+ 5,21:
+ 1: 61423
+ 5,22:
+ 1: 30543
+ 5,23:
+ 1: 18295
+ 5,24:
+ 1: 30591
+ 6,22:
+ 1: 29542
+ 6,23:
+ 1: 29303
+ 6,21:
+ 1: 26222
+ 6,24:
+ 1: 61695
+ 7,21:
+ 1: 34829
+ 0: 8704
+ 7,22:
+ 0: 8994
+ 1: 32904
+ 7,24:
+ 1: 53499
+ 7,23:
+ 0: 546
+ 1: 2184
+ 8,20:
+ 1: 65311
+ 8,21:
+ 1: 64271
+ 8,22:
+ 1: 47291
+ 8,23:
+ 1: 3067
+ 4,25:
+ 0: 4097
+ 1: 17484
+ 3,25:
+ 0: 63496
+ 4,26:
+ 1: 62732
+ 3,26:
+ 1: 51200
+ 0: 21
+ 4,27:
+ 1: 52429
+ 3,27:
+ 1: 8
+ 0: 62736
+ 4,28:
+ 1: 50380
+ 5,25:
+ 1: 1919
+ 5,26:
+ 1: 62551
+ 5,27:
+ 1: 11791
+ 5,28:
+ 1: 63726
+ 6,25:
+ 1: 65535
+ 6,26:
+ 1: 53503
+ 6,27:
+ 1: 49613
+ 6,28:
+ 1: 53469
+ 7,25:
+ 1: 55775
+ 7,26:
+ 1: 55517
+ 7,27:
+ 1: 56543
+ 7,28:
+ 1: 56543
+ 8,24:
+ 1: 62591
+ 8,25:
+ 1: 57599
+ 8,26:
+ 1: 61678
+ 8,27:
+ 1: 65535
+ 4,29:
+ 0: 16
+ 1: 52236
+ 3,29:
+ 0: 34952
+ 4,30:
+ 0: 62688
+ 1: 4
+ 3,30:
+ 0: 34952
+ 4,31:
+ 0: 50244
+ 5,29:
+ 1: 48031
+ 5,31:
+ 0: 61440
+ 1: 12
+ 5,30:
+ 1: 60576
+ 6,29:
+ 1: 61917
+ 6,30:
+ 1: 63409
+ 6,31:
+ 1: 13
+ 0: 61952
+ 7,29:
+ 1: 61663
+ 7,30:
+ 1: 40632
+ 7,31:
+ 1: 3
+ 0: 61440
+ 8,28:
+ 1: 65535
+ 8,29:
+ 1: 63743
+ 8,30:
+ 1: 32639
+ 8,31:
+ 0: 12832
+ 7,34:
+ 0: 43566
+ 7,35:
+ 0: 43754
+ 7,36:
+ 0: 3626
+ 8,34:
+ 0: 20363
+ 8,35:
+ 0: 20222
+ 8,36:
+ 0: 43919
+ 40,9:
+ 0: 3840
+ 39,9:
+ 0: 20224
+ 40,10:
+ 1: 13056
+ 39,10:
+ 1: 64256
+ 0: 4
+ 40,11:
+ 1: 65471
+ 39,11:
+ 1: 32523
+ 40,12:
+ 1: 65535
+ 41,9:
+ 0: 8960
+ 41,10:
+ 0: 57570
+ 42,10:
+ 0: 62192
+ 42,11:
+ 1: 21840
+ 0: 8738
+ 42,12:
+ 1: 21845
+ 0: 8866
+ 43,10:
+ 0: 62192
+ 43,11:
+ 1: 21840
+ 0: 8738
+ 43,12:
+ 1: 21845
+ 0: 8866
+ 44,10:
+ 0: 62192
+ 40,13:
+ 1: 60943
+ 39,13:
+ 1: 60966
+ 40,14:
+ 1: 61182
+ 39,14:
+ 1: 59118
+ 40,15:
+ 1: 9840
+ 39,15:
+ 1: 24028
+ 40,16:
+ 1: 1911
+ 41,14:
+ 1: 112
+ 0: 2184
+ 41,12:
+ 0: 224
+ 42,14:
+ 0: 12287
+ 42,13:
+ 1: 1365
+ 0: 8738
+ 42,15:
+ 1: 21845
+ 0: 8738
+ 42,16:
+ 1: 21845
+ 0: 8866
+ 43,14:
+ 0: 12287
+ 43,13:
+ 1: 1365
+ 0: 8738
+ 43,15:
+ 1: 21845
+ 0: 8738
+ 43,16:
+ 1: 21845
+ 0: 8866
+ 44,12:
+ 1: 21845
+ 0: 8866
+ 44,14:
+ 0: 12287
+ 40,17:
+ 1: 13107
+ 0: 32768
+ 39,17:
+ 1: 57309
+ 40,18:
+ 1: 13104
+ 39,18:
+ 1: 56785
+ 40,19:
+ 1: 64259
+ 39,19:
+ 1: 65309
+ 40,20:
+ 1: 4155
+ 0: 16384
+ 41,16:
+ 0: 240
+ 41,17:
+ 0: 61440
+ 41,19:
+ 1: 12544
+ 0: 50176
+ 41,20:
+ 1: 1
+ 0: 4
+ 42,17:
+ 0: 61986
+ 1: 85
+ 42,19:
+ 0: 4369
+ 42,18:
+ 0: 4594
+ 43,17:
+ 0: 61986
+ 1: 85
+ 43,18:
+ 0: 242
+ 44,16:
+ 1: 21845
+ 0: 8866
+ 44,17:
+ 0: 61986
+ 1: 85
+ 44,18:
+ 0: 242
+ 39,20:
+ 1: 61695
+ 40,21:
+ 0: 19708
+ 40,22:
+ 0: 65516
+ 39,22:
+ 0: 60960
+ 1: 4352
+ 40,23:
+ 0: 29902
+ 40,24:
+ 0: 17476
+ 40,25:
+ 0: 17524
+ 40,26:
+ 1: 63232
+ 0: 4
+ 39,26:
+ 1: 64311
+ 40,27:
+ 1: 2032
+ 39,27:
+ 1: 15347
+ 40,28:
+ 1: 30071
+ 39,28:
+ 1: 65272
+ 40,29:
+ 1: 21844
+ 39,29:
+ 1: 65522
+ 40,30:
+ 1: 26212
+ 39,30:
+ 1: 65520
+ 40,31:
+ 1: 43559
+ 39,31:
+ 1: 61422
+ 40,32:
+ 1: 61418
+ 41,30:
+ 0: 57906
+ 41,31:
+ 1: 256
+ 0: 44712
+ 41,32:
+ 0: 8
+ 1: 12288
+ 39,32:
+ 1: 65294
+ 40,33:
+ 1: 60942
+ 39,33:
+ 1: 56784
+ 40,34:
+ 1: 57308
+ 39,34:
+ 1: 65524
+ 39,35:
+ 1: 56793
+ 40,35:
+ 1: 61152
+ 40,36:
+ 1: 51708
+ 41,34:
+ 1: 4575
+ 41,35:
+ 1: 12561
+ 0: 32768
+ 41,33:
+ 1: 61166
+ 41,36:
+ 1: 4147
+ 42,32:
+ 0: 497
+ 42,33:
+ 1: 13104
+ 0: 8
+ 42,34:
+ 1: 3
+ 0: 49152
+ 42,35:
+ 0: 4375
+ 42,36:
+ 0: 4369
+ 43,32:
+ 0: 4368
+ 43,33:
+ 0: 4369
+ 43,34:
+ 0: 4369
+ 39,36:
+ 1: 36848
+ 40,37:
+ 1: 221
+ 39,37:
+ 1: 12475
+ 40,38:
+ 0: 4383
+ 39,38:
+ 0: 8
+ 1: 51
+ 40,39:
+ 0: 1
+ 39,39:
+ 0: 15
+ 41,37:
+ 1: 17
+ 0: 43144
+ 41,38:
+ 0: 15
+ 42,37:
+ 0: 1
+ 44,11:
+ 1: 21840
+ 0: 8738
+ 45,10:
+ 0: 47344
+ 45,11:
+ 0: 43690
+ 45,12:
+ 0: 43770
+ 44,13:
+ 1: 1365
+ 0: 8738
+ 44,15:
+ 1: 21845
+ 0: 8738
+ 45,14:
+ 0: 10231
+ 45,15:
+ 0: 23839
+ 45,16:
+ 0: 21877
+ 45,13:
+ 0: 11818
+ 46,13:
+ 0: 21831
+ 46,14:
+ 0: 21877
+ 46,15:
+ 0: 1861
+ 45,17:
+ 0: 21845
+ 45,18:
+ 0: 116
+ 9,3:
+ 0: 4383
+ 9,4:
+ 0: 4369
+ 10,3:
+ 0: 15
+ 11,3:
+ 0: 57391
+ 10,4:
+ 0: 4712
+ 1: 32768
+ 11,4:
+ 0: 1
+ 1: 40384
+ 12,3:
+ 0: 61455
+ 9,5:
+ 0: 39323
+ 9,6:
+ 0: 39323
+ 1: 8704
+ 9,7:
+ 0: 4377
+ 1: 8738
+ 9,8:
+ 0: 4369
+ 1: 8738
+ 10,5:
+ 0: 1
+ 1: 11980
+ 10,7:
+ 0: 25105
+ 1: 140
+ 10,6:
+ 1: 52778
+ 11,5:
+ 1: 26431
+ 11,6:
+ 1: 14183
+ 11,7:
+ 1: 52639
+ 10,8:
+ 0: 18440
+ 11,8:
+ 0: 481
+ 1: 49152
+ 12,4:
+ 1: 47568
+ 12,5:
+ 1: 30579
+ 12,6:
+ 1: 30591
+ 12,7:
+ 1: 55731
+ 9,9:
+ 0: 13105
+ 9,10:
+ 0: 62259
+ 9,11:
+ 0: 511
+ 9,12:
+ 1: 65535
+ 10,10:
+ 0: 7234
+ 10,11:
+ 0: 273
+ 1: 36044
+ 10,9:
+ 0: 8738
+ 1: 34944
+ 10,12:
+ 1: 65533
+ 11,9:
+ 1: 57309
+ 11,10:
+ 1: 36045
+ 0: 256
+ 11,11:
+ 1: 36863
+ 11,12:
+ 1: 56797
+ 12,8:
+ 0: 16
+ 1: 23752
+ 12,9:
+ 1: 65535
+ 12,10:
+ 1: 4095
+ 12,11:
+ 1: 1911
+ 9,13:
+ 1: 56799
+ 9,14:
+ 1: 56797
+ 9,15:
+ 1: 65485
+ 9,16:
+ 1: 65039
+ 10,13:
+ 1: 56797
+ 10,14:
+ 1: 56797
+ 10,15:
+ 1: 65533
+ 10,16:
+ 1: 56781
+ 11,13:
+ 1: 56793
+ 11,14:
+ 1: 65533
+ 11,15:
+ 1: 56733
+ 11,16:
+ 1: 7645
+ 12,12:
+ 1: 30583
+ 12,13:
+ 1: 65395
+ 12,14:
+ 1: 65535
+ 12,15:
+ 1: 29599
+ 9,17:
+ 1: 65422
+ 9,18:
+ 1: 65535
+ 9,19:
+ 1: 53263
+ 9,20:
+ 1: 60943
+ 10,17:
+ 1: 56781
+ 10,18:
+ 1: 56829
+ 10,19:
+ 1: 56461
+ 10,20:
+ 1: 64911
+ 11,17:
+ 1: 57341
+ 11,18:
+ 1: 56785
+ 11,19:
+ 1: 7937
+ 11,20:
+ 1: 64973
+ 12,16:
+ 1: 2047
+ 12,17:
+ 1: 49147
+ 12,18:
+ 1: 48056
+ 12,19:
+ 1: 3968
+ 9,21:
+ 1: 65358
+ 9,22:
+ 1: 65535
+ 9,23:
+ 1: 12287
+ 9,24:
+ 1: 61627
+ 10,21:
+ 1: 56781
+ 10,22:
+ 1: 56797
+ 10,23:
+ 1: 52701
+ 10,24:
+ 1: 64733
+ 11,21:
+ 1: 56605
+ 11,22:
+ 1: 57341
+ 11,23:
+ 1: 53725
+ 11,24:
+ 1: 53759
+ 12,20:
+ 1: 65535
+ 12,21:
+ 1: 64271
+ 12,22:
+ 1: 64443
+ 12,23:
+ 1: 63679
+ 9,25:
+ 1: 3839
+ 9,26:
+ 1: 61167
+ 9,27:
+ 1: 56590
+ 9,28:
+ 1: 7647
+ 10,25:
+ 1: 52735
+ 10,26:
+ 1: 64989
+ 10,27:
+ 1: 62925
+ 10,28:
+ 1: 61439
+ 11,25:
+ 1: 56831
+ 11,26:
+ 1: 64977
+ 11,27:
+ 1: 64797
+ 11,28:
+ 1: 16383
+ 12,24:
+ 1: 61695
+ 12,25:
+ 1: 65535
+ 12,26:
+ 1: 56816
+ 12,27:
+ 1: 64961
+ 8,32:
+ 0: 43690
+ 9,29:
+ 1: 61661
+ 9,30:
+ 1: 65486
+ 9,31:
+ 1: 4095
+ 9,32:
+ 0: 17476
+ 1: 43680
+ 10,29:
+ 1: 28910
+ 10,30:
+ 1: 65427
+ 10,31:
+ 1: 4095
+ 10,32:
+ 0: 17476
+ 1: 43680
+ 11,29:
+ 1: 45243
+ 11,31:
+ 1: 4046
+ 11,30:
+ 1: 60942
+ 11,32:
+ 0: 17476
+ 1: 43680
+ 12,28:
+ 1: 36317
+ 12,29:
+ 1: 64733
+ 12,30:
+ 1: 30487
+ 12,31:
+ 1: 1911
+ 8,33:
+ 0: 43754
+ 9,33:
+ 0: 17492
+ 1: 43690
+ 9,35:
+ 0: 20479
+ 9,34:
+ 1: 2730
+ 0: 17476
+ 9,36:
+ 0: 17476
+ 1: 43690
+ 10,33:
+ 0: 17492
+ 1: 43690
+ 10,35:
+ 0: 20479
+ 10,34:
+ 1: 2730
+ 0: 17476
+ 10,36:
+ 0: 17476
+ 1: 43690
+ 11,33:
+ 0: 17492
+ 1: 43690
+ 11,35:
+ 0: 20479
+ 11,34:
+ 1: 2730
+ 0: 17476
+ 11,36:
+ 0: 17476
+ 1: 43690
+ 12,33:
+ 0: 48
+ 1: 2184
+ 12,35:
+ 0: 273
+ 1: 224
+ 8,37:
+ 0: 43754
+ 8,38:
+ 0: 43690
+ 8,39:
+ 0: 226
+ 9,37:
+ 0: 17492
+ 1: 43690
+ 9,38:
+ 0: 62532
+ 1: 170
+ 9,39:
+ 0: 244
+ 10,37:
+ 0: 17492
+ 1: 43690
+ 10,38:
+ 0: 62532
+ 1: 170
+ 10,39:
+ 0: 244
+ 11,37:
+ 0: 17492
+ 1: 43690
+ 11,38:
+ 0: 62532
+ 1: 170
+ 11,39:
+ 0: 244
+ 12,37:
+ 0: 112
+ 12,38:
+ 0: 28672
+ 12,39:
+ 0: 240
+ 13,3:
+ 0: 12335
+ 13,4:
+ 0: 12
+ 1: 63248
+ 14,3:
+ 0: 7
+ 14,2:
+ 0: 49152
+ 15,2:
+ 0: 61440
+ 15,3:
+ 1: 32768
+ 0: 128
+ 16,2:
+ 0: 61440
+ 16,3:
+ 0: 49
+ 1: 12544
+ 15,4:
+ 1: 32904
+ 13,5:
+ 1: 65535
+ 13,6:
+ 1: 65535
+ 13,7:
+ 1: 6143
+ 13,8:
+ 0: 556
+ 1: 34816
+ 14,4:
+ 0: 16944
+ 14,5:
+ 1: 13073
+ 0: 34956
+ 14,6:
+ 1: 4915
+ 0: 34952
+ 14,7:
+ 1: 32769
+ 0: 12868
+ 15,7:
+ 1: 61814
+ 14,8:
+ 1: 4072
+ 15,5:
+ 1: 43694
+ 15,6:
+ 1: 10922
+ 15,8:
+ 1: 36189
+ 16,4:
+ 1: 63931
+ 16,5:
+ 1: 56475
+ 16,6:
+ 1: 56793
+ 16,7:
+ 1: 56797
+ 13,40:
+ 0: 3140
+ 13,39:
+ 0: 17621
+ 1: 34
+ 14,40:
+ 0: 20302
+ 14,39:
+ 1: 20196
+ 14,41:
+ 0: 12
+ 15,41:
+ 0: 15
+ 15,40:
+ 1: 238
+ 15,39:
+ 1: 58094
+ 16,40:
+ 1: 35067
+ 16,41:
+ 0: 61715
+ 1: 8
+ 13,9:
+ 1: 48059
+ 13,10:
+ 1: 35771
+ 13,11:
+ 1: 65535
+ 13,12:
+ 1: 56789
+ 14,9:
+ 1: 61422
+ 14,10:
+ 1: 48910
+ 14,11:
+ 1: 47419
+ 15,9:
+ 1: 48059
+ 15,10:
+ 1: 65451
+ 15,11:
+ 1: 16247
+ 15,12:
+ 1: 45963
+ 16,8:
+ 1: 56781
+ 16,9:
+ 1: 56799
+ 16,10:
+ 1: 56781
+ 16,11:
+ 1: 56781
+ 13,13:
+ 1: 47901
+ 13,14:
+ 1: 49083
+ 13,15:
+ 1: 63667
+ 13,16:
+ 1: 36863
+ 14,12:
+ 1: 63344
+ 14,13:
+ 1: 65319
+ 14,14:
+ 1: 65535
+ 14,15:
+ 1: 61680
+ 14,16:
+ 1: 46079
+ 15,13:
+ 1: 48011
+ 15,14:
+ 1: 30523
+ 15,15:
+ 1: 62066
+ 15,16:
+ 1: 61695
+ 16,12:
+ 1: 64765
+ 16,13:
+ 1: 65535
+ 16,14:
+ 1: 56783
+ 16,15:
+ 1: 64733
+ 13,17:
+ 1: 65467
+ 13,18:
+ 1: 48059
+ 13,19:
+ 1: 36825
+ 13,20:
+ 1: 48059
+ 14,17:
+ 1: 48059
+ 14,18:
+ 1: 48059
+ 14,19:
+ 1: 16315
+ 14,20:
+ 1: 45943
+ 15,17:
+ 1: 3995
+ 15,19:
+ 1: 20468
+ 15,18:
+ 1: 61166
+ 15,20:
+ 1: 65535
+ 16,16:
+ 1: 20991
+ 16,17:
+ 1: 1367
+ 16,18:
+ 1: 32631
+ 16,19:
+ 1: 3846
+ 13,21:
+ 1: 65435
+ 13,22:
+ 1: 48063
+ 13,23:
+ 1: 64443
+ 13,24:
+ 1: 47359
+ 14,21:
+ 1: 48059
+ 14,22:
+ 1: 48051
+ 14,23:
+ 1: 48059
+ 14,24:
+ 1: 46015
+ 15,21:
+ 1: 65535
+ 15,22:
+ 1: 65520
+ 15,23:
+ 1: 65535
+ 15,24:
+ 1: 61951
+ 16,21:
+ 1: 65102
+ 13,25:
+ 1: 48059
+ 13,26:
+ 1: 56792
+ 13,27:
+ 1: 35752
+ 13,28:
+ 1: 3067
+ 14,25:
+ 1: 48059
+ 14,26:
+ 1: 64315
+ 14,27:
+ 1: 30523
+ 14,28:
+ 1: 4095
+ 15,25:
+ 1: 65535
+ 15,26:
+ 1: 65295
+ 15,27:
+ 1: 4095
+ 15,28:
+ 1: 36863
+ 16,24:
+ 1: 65262
+ 16,27:
+ 1: 61167
+ 13,29:
+ 1: 57309
+ 13,30:
+ 1: 65521
+ 13,31:
+ 1: 3967
+ 12,32:
+ 1: 34952
+ 13,32:
+ 1: 32767
+ 14,29:
+ 1: 21983
+ 14,31:
+ 1: 3846
+ 14,30:
+ 1: 26212
+ 14,32:
+ 1: 4027
+ 15,29:
+ 1: 22015
+ 15,30:
+ 1: 14320
+ 15,31:
+ 1: 4915
+ 0: 34952
+ 15,32:
+ 1: 273
+ 0: 17484
+ 16,28:
+ 1: 20479
+ 16,29:
+ 1: 21845
+ 16,30:
+ 1: 2036
+ 16,31:
+ 0: 7
+ 5: 60928
+ 13,33:
+ 1: 30583
+ 13,34:
+ 1: 63247
+ 13,35:
+ 1: 30583
+ 14,33:
+ 1: 20479
+ 14,34:
+ 1: 30071
+ 14,35:
+ 1: 5991
+ 14,36:
+ 1: 61437
+ 15,34:
+ 0: 4371
+ 2: 52224
+ 3: 8
+ 15,35:
+ 0: 8977
+ 2: 12
+ 3: 34816
+ 15,33:
+ 0: 8742
+ 3: 34816
+ 15,36:
+ 0: 17954
+ 3: 8
+ 16,32:
+ 4: 30464
+ 5: 14
+ 16,33:
+ 4: 7
+ 3: 13056
+ 0: 34816
+ 16,34:
+ 3: 3
+ 2: 4352
+ 0: 52360
+ 16,35:
+ 2: 1
+ 3: 13056
+ 0: 34956
+ 13,36:
+ 1: 32624
+ 13,37:
+ 1: 65535
+ 13,38:
+ 1: 4095
+ 14,37:
+ 1: 61070
+ 14,38:
+ 1: 61006
+ 15,37:
+ 1: 4369
+ 0: 35908
+ 15,38:
+ 1: 8739
+ 0: 2184
+ 16,36:
+ 3: 30467
+ 0: 8
+ 16,37:
+ 3: 60935
+ 16,38:
+ 0: 3840
+ 3: 14
+ 16,39:
+ 1: 47295
+ 17,2:
+ 0: 4096
+ 17,3:
+ 0: 497
+ 17,4:
+ 1: 8191
+ 18,3:
+ 0: 240
+ 18,4:
+ 1: 4095
+ 19,3:
+ 0: 752
+ 19,4:
+ 1: 4095
+ 17,5:
+ 1: 4369
+ 0: 4
+ 17,6:
+ 1: 28688
+ 0: 64
+ 17,7:
+ 1: 4368
+ 0: 64
+ 17,8:
+ 1: 1793
+ 20,4:
+ 1: 53247
+ 17,40:
+ 1: 65535
+ 17,41:
+ 1: 15
+ 0: 63488
+ 17,39:
+ 1: 44768
+ 18,41:
+ 0: 29888
+ 18,40:
+ 1: 3822
+ 18,39:
+ 1: 52639
+ 19,40:
+ 1: 4095
+ 19,41:
+ 0: 248
+ 19,39:
+ 1: 65291
+ 20,40:
+ 1: 4095
+ 20,41:
+ 0: 240
+ 17,9:
+ 1: 4369
+ 0: 16388
+ 17,10:
+ 1: 65521
+ 17,11:
+ 1: 54737
+ 17,12:
+ 1: 53757
+ 18,10:
+ 1: 65520
+ 18,11:
+ 1: 55793
+ 18,12:
+ 1: 61917
+ 19,10:
+ 1: 65520
+ 19,11:
+ 1: 61680
+ 19,12:
+ 1: 62207
+ 20,10:
+ 1: 65532
+ 20,11:
+ 1: 56572
+ 17,13:
+ 1: 56797
+ 17,14:
+ 1: 56797
+ 17,15:
+ 1: 61917
+ 17,16:
+ 1: 61695
+ 18,13:
+ 1: 65535
+ 18,14:
+ 1: 65535
+ 18,15:
+ 1: 61695
+ 18,16:
+ 1: 57599
+ 19,13:
+ 1: 65535
+ 19,14:
+ 1: 65535
+ 19,15:
+ 1: 62975
+ 19,16:
+ 1: 45311
+ 20,12:
+ 1: 56541
+ 20,13:
+ 1: 56797
+ 20,14:
+ 1: 56797
+ 20,15:
+ 1: 64733
+ 16,20:
+ 1: 61166
+ 17,17:
+ 1: 2047
+ 17,18:
+ 1: 65535
+ 17,19:
+ 1: 3855
+ 17,20:
+ 1: 30591
+ 18,17:
+ 1: 65263
+ 18,18:
+ 1: 65535
+ 18,19:
+ 1: 7439
+ 18,20:
+ 1: 30543
+ 19,17:
+ 1: 3899
+ 19,18:
+ 0: 2570
+ 19,19:
+ 0: 10
+ 1: 2560
+ 19,20:
+ 1: 47935
+ 20,16:
+ 1: 61695
+ 20,17:
+ 1: 61231
+ 20,19:
+ 1: 4078
+ 16,22:
+ 1: 61006
+ 16,23:
+ 1: 61166
+ 17,21:
+ 1: 65287
+ 17,22:
+ 1: 56735
+ 17,23:
+ 1: 56605
+ 17,24:
+ 1: 57311
+ 18,21:
+ 1: 65520
+ 18,22:
+ 1: 65473
+ 18,23:
+ 1: 65487
+ 18,24:
+ 1: 65535
+ 19,21:
+ 1: 65338
+ 19,22:
+ 1: 65358
+ 19,23:
+ 1: 65295
+ 19,24:
+ 1: 65535
+ 20,20:
+ 1: 65311
+ 20,21:
+ 1: 65423
+ 20,22:
+ 1: 61103
+ 16,25:
+ 1: 61166
+ 16,26:
+ 1: 61134
+ 17,25:
+ 1: 47901
+ 17,26:
+ 1: 65291
+ 17,27:
+ 1: 3599
+ 17,28:
+ 1: 28671
+ 18,25:
+ 1: 65487
+ 18,26:
+ 1: 65535
+ 18,27:
+ 1: 3855
+ 18,28:
+ 1: 36863
+ 19,25:
+ 1: 63247
+ 19,26:
+ 1: 65335
+ 19,27:
+ 1: 3855
+ 19,28:
+ 1: 8191
+ 20,24:
+ 1: 61423
+ 20,25:
+ 1: 65518
+ 20,26:
+ 1: 65391
+ 20,27:
+ 1: 61167
+ 17,29:
+ 1: 32759
+ 17,30:
+ 1: 65527
+ 17,31:
+ 1: 34984
+ 0: 8704
+ 17,32:
+ 0: 4898
+ 1: 34952
+ 18,29:
+ 1: 65535
+ 18,30:
+ 1: 65520
+ 18,31:
+ 1: 65521
+ 18,32:
+ 1: 65535
+ 19,29:
+ 1: 48059
+ 19,30:
+ 1: 65520
+ 19,31:
+ 1: 32752
+ 19,32:
+ 1: 13107
+ 0: 34944
+ 20,28:
+ 1: 4095
+ 20,29:
+ 1: 65535
+ 20,30:
+ 1: 65520
+ 20,31:
+ 1: 65520
+ 17,33:
+ 0: 273
+ 1: 52428
+ 17,34:
+ 1: 61166
+ 17,35:
+ 1: 52974
+ 17,36:
+ 0: 4369
+ 1: 36044
+ 18,33:
+ 1: 65535
+ 18,34:
+ 1: 65535
+ 18,35:
+ 1: 65535
+ 18,36:
+ 1: 65535
+ 19,33:
+ 1: 45875
+ 0: 136
+ 19,34:
+ 1: 65435
+ 19,35:
+ 1: 48031
+ 19,36:
+ 1: 13107
+ 0: 34944
+ 20,32:
+ 3: 65504
+ 20,33:
+ 3: 239
+ 1: 61440
+ 20,34:
+ 1: 65535
+ 20,35:
+ 1: 65535
+ 17,37:
+ 0: 8739
+ 1: 34952
+ 17,38:
+ 0: 34
+ 1: 57992
+ 18,37:
+ 1: 65535
+ 18,38:
+ 1: 53503
+ 19,37:
+ 1: 29491
+ 0: 136
+ 19,38:
+ 1: 61695
+ 20,36:
+ 0: 65520
+ 20,37:
+ 0: 255
+ 1: 61440
+ 20,38:
+ 1: 28927
+ 20,39:
+ 1: 65295
+ 21,3:
+ 0: 35072
+ 21,4:
+ 1: 65297
+ 22,3:
+ 0: 62464
+ 22,4:
+ 0: 2
+ 1: 65280
+ 23,3:
+ 1: 59904
+ 23,4:
+ 1: 65454
+ 20,5:
+ 0: 1
+ 1: 52428
+ 20,6:
+ 0: 16
+ 1: 63688
+ 20,7:
+ 0: 16
+ 1: 52424
+ 20,8:
+ 1: 36748
+ 21,5:
+ 1: 29983
+ 21,6:
+ 1: 21844
+ 21,7:
+ 1: 56661
+ 21,8:
+ 1: 64977
+ 22,5:
+ 1: 65535
+ 22,6:
+ 1: 65522
+ 22,7:
+ 1: 64911
+ 22,8:
+ 1: 64797
+ 23,5:
+ 1: 65535
+ 23,6:
+ 1: 56796
+ 23,7:
+ 1: 64973
+ 23,8:
+ 1: 65293
+ 24,4:
+ 1: 65280
+ 0: 8
+ 24,5:
+ 1: 65535
+ 24,6:
+ 1: 64977
+ 24,7:
+ 1: 65309
+ 21,40:
+ 1: 36784
+ 21,41:
+ 0: 4400
+ 1: 136
+ 21,42:
+ 0: 34959
+ 21,39:
+ 1: 58287
+ 22,40:
+ 1: 65528
+ 22,41:
+ 1: 51455
+ 22,42:
+ 0: 256
+ 1: 52428
+ 21,43:
+ 0: 34952
+ 21,44:
+ 0: 8
+ 22,39:
+ 1: 63551
+ 22,43:
+ 1: 204
+ 0: 8192
+ 22,44:
+ 0: 15
+ 23,41:
+ 1: 23791
+ 23,42:
+ 1: 53727
+ 23,43:
+ 1: 255
+ 0: 32768
+ 23,39:
+ 1: 63246
+ 23,40:
+ 1: 25702
+ 24,40:
+ 1: 53247
+ 24,41:
+ 1: 52721
+ 24,43:
+ 1: 15
+ 0: 49152
+ 23,44:
+ 0: 15
+ 20,9:
+ 0: 4097
+ 1: 52428
+ 21,9:
+ 1: 53725
+ 21,10:
+ 1: 24029
+ 21,11:
+ 1: 54645
+ 21,12:
+ 1: 65373
+ 22,9:
+ 1: 53727
+ 22,10:
+ 1: 56799
+ 22,11:
+ 1: 64721
+ 22,12:
+ 1: 65293
+ 23,9:
+ 1: 61695
+ 23,10:
+ 1: 3839
+ 23,11:
+ 1: 65534
+ 23,12:
+ 1: 65423
+ 24,8:
+ 1: 56591
+ 24,9:
+ 1: 61663
+ 24,10:
+ 1: 52735
+ 24,11:
+ 1: 65521
+ 21,13:
+ 1: 56607
+ 21,14:
+ 1: 53725
+ 21,15:
+ 1: 61917
+ 21,16:
+ 1: 56575
+ 22,13:
+ 1: 64431
+ 22,14:
+ 1: 63675
+ 22,15:
+ 1: 63743
+ 22,16:
+ 1: 62463
+ 23,13:
+ 1: 49615
+ 23,14:
+ 1: 63247
+ 23,15:
+ 1: 28791
+ 23,16:
+ 1: 30583
+ 24,12:
+ 1: 65311
+ 24,13:
+ 1: 65039
+ 24,14:
+ 1: 56793
+ 24,15:
+ 1: 64285
+ 20,18:
+ 1: 61166
+ 21,17:
+ 1: 63245
+ 21,18:
+ 1: 65535
+ 21,19:
+ 1: 2047
+ 21,20:
+ 1: 40399
+ 22,17:
+ 1: 29695
+ 22,18:
+ 1: 30583
+ 22,19:
+ 1: 29047
+ 22,20:
+ 1: 3071
+ 23,17:
+ 1: 30583
+ 23,18:
+ 1: 30711
+ 23,19:
+ 1: 12287
+ 23,20:
+ 1: 12283
+ 24,16:
+ 1: 47803
+ 24,17:
+ 1: 39867
+ 24,18:
+ 1: 35771
+ 24,19:
+ 1: 53247
+ 20,23:
+ 1: 61166
+ 21,21:
+ 1: 64973
+ 21,22:
+ 1: 56589
+ 21,23:
+ 1: 8157
+ 21,24:
+ 1: 58591
+ 22,21:
+ 1: 65535
+ 22,22:
+ 1: 64271
+ 22,23:
+ 1: 35643
+ 22,24:
+ 1: 55483
+ 23,22:
+ 1: 48010
+ 23,23:
+ 1: 3979
+ 23,21:
+ 1: 44686
+ 23,24:
+ 1: 56558
+ 24,20:
+ 1: 56797
+ 24,21:
+ 1: 56781
+ 24,22:
+ 1: 60943
+ 24,23:
+ 1: 36606
+ 21,25:
+ 1: 61422
+ 21,26:
+ 1: 65166
+ 21,27:
+ 1: 3839
+ 21,28:
+ 1: 36863
+ 22,25:
+ 1: 47615
+ 22,26:
+ 1: 48011
+ 22,27:
+ 1: 35771
+ 22,28:
+ 1: 64507
+ 23,25:
+ 1: 60671
+ 23,26:
+ 1: 56590
+ 23,27:
+ 1: 3997
+ 23,28:
+ 1: 65535
+ 24,24:
+ 1: 65535
+ 24,25:
+ 1: 65535
+ 24,26:
+ 1: 56719
+ 24,27:
+ 1: 53197
+ 21,29:
+ 1: 48059
+ 21,30:
+ 1: 49072
+ 21,31:
+ 1: 65520
+ 22,29:
+ 1: 65523
+ 22,30:
+ 1: 49073
+ 22,31:
+ 1: 49073
+ 21,32:
+ 1: 34952
+ 3: 4352
+ 0: 8736
+ 22,32:
+ 1: 48059
+ 23,29:
+ 1: 65520
+ 23,30:
+ 1: 65520
+ 23,31:
+ 1: 61166
+ 23,32:
+ 1: 61422
+ 24,28:
+ 1: 56797
+ 24,29:
+ 1: 65520
+ 24,30:
+ 1: 63344
+ 24,31:
+ 1: 53503
+ 21,33:
+ 3: 1
+ 1: 64136
+ 0: 34
+ 21,34:
+ 1: 65535
+ 21,35:
+ 1: 65535
+ 21,36:
+ 1: 34954
+ 0: 13104
+ 22,33:
+ 1: 13107
+ 0: 34944
+ 22,34:
+ 1: 65331
+ 0: 8
+ 22,35:
+ 1: 13119
+ 0: 34816
+ 22,36:
+ 1: 45875
+ 0: 136
+ 23,34:
+ 1: 65518
+ 23,35:
+ 1: 61167
+ 23,33:
+ 1: 61166
+ 23,36:
+ 1: 61166
+ 24,32:
+ 1: 3861
+ 24,34:
+ 1: 26471
+ 21,37:
+ 0: 51
+ 1: 63624
+ 21,38:
+ 1: 45311
+ 22,37:
+ 1: 48063
+ 22,38:
+ 1: 63675
+ 23,38:
+ 1: 65262
+ 23,37:
+ 1: 61166
+ 24,36:
+ 1: 57462
+ 24,38:
+ 1: 65294
+ 24,39:
+ 1: 65423
+ 24,3:
+ 0: 58368
+ 25,3:
+ 0: 61440
+ 26,3:
+ 0: 61440
+ 26,4:
+ 0: 1
+ 1: 65280
+ 27,3:
+ 0: 29888
+ 28,3:
+ 0: 272
+ 1: 16384
+ 25,5:
+ 1: 30310
+ 25,6:
+ 1: 32628
+ 25,7:
+ 1: 65287
+ 25,4:
+ 1: 58880
+ 25,8:
+ 1: 65455
+ 26,5:
+ 1: 30591
+ 26,6:
+ 1: 30583
+ 26,7:
+ 1: 30591
+ 26,8:
+ 1: 62743
+ 27,4:
+ 1: 63232
+ 27,5:
+ 1: 65399
+ 27,6:
+ 1: 64399
+ 27,7:
+ 1: 48059
+ 27,8:
+ 1: 63987
+ 28,4:
+ 1: 30566
+ 28,5:
+ 1: 47879
+ 28,6:
+ 1: 49075
+ 28,7:
+ 1: 65523
+ 24,42:
+ 1: 61166
+ 24,44:
+ 0: 7
+ 25,40:
+ 1: 6007
+ 25,41:
+ 1: 52636
+ 25,42:
+ 1: 55805
+ 25,43:
+ 1: 141
+ 0: 12544
+ 25,39:
+ 1: 30479
+ 26,40:
+ 1: 4095
+ 26,41:
+ 1: 46079
+ 26,42:
+ 1: 55487
+ 26,43:
+ 1: 1
+ 0: 60480
+ 26,39:
+ 1: 65327
+ 27,40:
+ 1: 4095
+ 27,41:
+ 1: 61695
+ 27,42:
+ 1: 65535
+ 27,43:
+ 0: 3904
+ 27,39:
+ 1: 65295
+ 28,40:
+ 1: 7099
+ 28,41:
+ 1: 61823
+ 28,42:
+ 1: 65535
+ 28,43:
+ 0: 3840
+ 25,9:
+ 1: 25215
+ 25,10:
+ 1: 26223
+ 25,11:
+ 1: 65252
+ 25,12:
+ 1: 65294
+ 26,9:
+ 1: 65421
+ 26,10:
+ 1: 20479
+ 26,11:
+ 1: 65535
+ 26,12:
+ 1: 65359
+ 27,9:
+ 1: 40399
+ 27,10:
+ 1: 52701
+ 27,11:
+ 1: 59366
+ 27,12:
+ 1: 65358
+ 28,8:
+ 1: 57592
+ 28,9:
+ 1: 61422
+ 28,11:
+ 1: 57598
+ 25,13:
+ 1: 32271
+ 25,14:
+ 1: 30576
+ 25,15:
+ 1: 65303
+ 25,16:
+ 1: 53007
+ 26,13:
+ 1: 7951
+ 26,14:
+ 1: 65535
+ 26,15:
+ 1: 65524
+ 26,16:
+ 1: 65295
+ 27,13:
+ 1: 53231
+ 27,14:
+ 1: 56785
+ 27,15:
+ 1: 65308
+ 27,16:
+ 1: 32527
+ 28,13:
+ 1: 65524
+ 28,14:
+ 1: 30704
+ 28,15:
+ 1: 64279
+ 25,17:
+ 1: 62365
+ 25,18:
+ 1: 65535
+ 25,19:
+ 1: 32767
+ 25,20:
+ 1: 30583
+ 26,17:
+ 1: 61695
+ 26,18:
+ 1: 65535
+ 26,19:
+ 1: 4095
+ 26,20:
+ 1: 65535
+ 27,17:
+ 1: 63543
+ 27,18:
+ 1: 65535
+ 27,19:
+ 1: 53247
+ 27,20:
+ 1: 56799
+ 28,16:
+ 1: 43947
+ 28,17:
+ 1: 15291
+ 28,18:
+ 1: 15291
+ 28,19:
+ 1: 32767
+ 25,21:
+ 1: 65407
+ 25,22:
+ 1: 48015
+ 25,23:
+ 1: 3003
+ 25,24:
+ 1: 49147
+ 26,21:
+ 1: 65295
+ 26,22:
+ 1: 45951
+ 26,23:
+ 1: 7099
+ 26,24:
+ 1: 65535
+ 27,21:
+ 1: 65485
+ 27,22:
+ 1: 65295
+ 27,23:
+ 1: 20479
+ 27,24:
+ 1: 65535
+ 28,20:
+ 1: 30583
+ 28,21:
+ 1: 30583
+ 28,22:
+ 1: 13071
+ 6: 34816
+ 28,23:
+ 1: 819
+ 6: 2184
+ 25,25:
+ 1: 48059
+ 25,26:
+ 1: 65435
+ 25,27:
+ 1: 65535
+ 25,28:
+ 1: 65535
+ 26,25:
+ 1: 56785
+ 26,26:
+ 1: 65037
+ 26,27:
+ 1: 65535
+ 26,28:
+ 1: 65535
+ 27,25:
+ 1: 30577
+ 27,26:
+ 1: 65303
+ 27,27:
+ 1: 65535
+ 27,28:
+ 1: 65535
+ 28,24:
+ 1: 49147
+ 28,25:
+ 1: 48059
+ 28,26:
+ 1: 65067
+ 28,27:
+ 1: 65535
+ 25,29:
+ 1: 65532
+ 25,30:
+ 1: 47359
+ 25,31:
+ 1: 45247
+ 26,29:
+ 1: 65521
+ 26,30:
+ 1: 62387
+ 26,31:
+ 1: 61695
+ 27,29:
+ 1: 65520
+ 27,30:
+ 1: 63672
+ 27,31:
+ 1: 61695
+ 28,28:
+ 1: 65535
+ 28,29:
+ 1: 65527
+ 28,30:
+ 1: 48127
+ 28,31:
+ 1: 45247
+ 24,33:
+ 1: 26214
+ 24,35:
+ 1: 1638
+ 25,32:
+ 3: 4592
+ 0: 58880
+ 25,33:
+ 3: 4369
+ 0: 25828
+ 25,34:
+ 3: 6007
+ 0: 24576
+ 25,35:
+ 3: 4369
+ 0: 58596
+ 25,36:
+ 3: 241
+ 0: 6
+ 1: 28672
+ 26,32:
+ 3: 35056
+ 0: 29952
+ 26,33:
+ 0: 4593
+ 26,35:
+ 0: 29169
+ 3: 32768
+ 26,34:
+ 0: 4465
+ 3: 2184
+ 26,36:
+ 0: 5
+ 3: 248
+ 1: 61440
+ 27,32:
+ 3: 13296
+ 0: 50176
+ 27,33:
+ 0: 4592
+ 27,34:
+ 3: 819
+ 0: 4288
+ 27,35:
+ 0: 49393
+ 3: 12288
+ 27,36:
+ 3: 243
+ 0: 4
+ 1: 61440
+ 28,32:
+ 3: 240
+ 0: 64768
+ 28,33:
+ 0: 54773
+ 28,34:
+ 0: 53521
+ 3: 3276
+ 28,35:
+ 0: 62965
+ 24,37:
+ 1: 61166
+ 25,37:
+ 1: 30583
+ 25,38:
+ 1: 65287
+ 26,37:
+ 1: 65535
+ 26,38:
+ 1: 65327
+ 27,37:
+ 1: 65535
+ 27,38:
+ 1: 65423
+ 28,36:
+ 3: 240
+ 1: 56320
+ 0: 13
+ 28,37:
+ 1: 56797
+ 28,38:
+ 1: 65293
+ 28,39:
+ 1: 47887
+ 29,4:
+ 1: 61440
+ 0: 14
+ 29,5:
+ 1: 65535
+ 29,6:
+ 1: 65528
+ 29,7:
+ 1: 65520
+ 29,3:
+ 0: 12848
+ 29,8:
+ 1: 56540
+ 30,4:
+ 0: 51359
+ 1: 4096
+ 30,5:
+ 1: 4369
+ 0: 2184
+ 30,6:
+ 1: 57296
+ 30,7:
+ 1: 64988
+ 30,8:
+ 1: 55775
+ 31,5:
+ 0: 40704
+ 31,6:
+ 1: 4368
+ 0: 34952
+ 31,7:
+ 1: 4369
+ 0: 35016
+ 31,8:
+ 1: 28689
+ 0: 8
+ 29,40:
+ 1: 4095
+ 29,41:
+ 1: 60671
+ 29,42:
+ 1: 61439
+ 29,43:
+ 0: 3856
+ 29,39:
+ 1: 65327
+ 30,40:
+ 1: 44719
+ 30,41:
+ 1: 55487
+ 30,42:
+ 1: 56829
+ 30,43:
+ 0: 3872
+ 30,39:
+ 1: 11791
+ 31,40:
+ 1: 12595
+ 31,41:
+ 1: 12339
+ 0: 2048
+ 31,42:
+ 1: 4915
+ 31,43:
+ 0: 3968
+ 31,39:
+ 1: 8994
+ 0: 2048
+ 32,41:
+ 0: 4369
+ 32,43:
+ 0: 17
+ 28,10:
+ 1: 3822
+ 28,12:
+ 1: 61166
+ 29,9:
+ 1: 64989
+ 29,10:
+ 1: 36317
+ 29,11:
+ 1: 62719
+ 29,12:
+ 1: 65535
+ 30,9:
+ 1: 56797
+ 30,10:
+ 1: 52729
+ 30,11:
+ 1: 56479
+ 30,12:
+ 1: 57309
+ 31,9:
+ 1: 30583
+ 31,10:
+ 1: 56816
+ 31,11:
+ 1: 54721
+ 31,12:
+ 1: 56797
+ 32,8:
+ 0: 8995
+ 32,11:
+ 1: 65262
+ 29,13:
+ 1: 65526
+ 29,14:
+ 1: 57308
+ 29,15:
+ 1: 52701
+ 29,16:
+ 1: 52974
+ 30,13:
+ 1: 56792
+ 30,14:
+ 1: 57117
+ 30,15:
+ 1: 56607
+ 30,16:
+ 1: 53725
+ 31,13:
+ 1: 65372
+ 31,14:
+ 1: 61199
+ 31,15:
+ 1: 52687
+ 31,16:
+ 1: 56573
+ 32,12:
+ 1: 65535
+ 32,13:
+ 1: 65039
+ 32,14:
+ 1: 65518
+ 32,15:
+ 1: 56735
+ 29,17:
+ 1: 56797
+ 29,18:
+ 1: 52733
+ 29,19:
+ 1: 4095
+ 29,20:
+ 1: 65535
+ 30,17:
+ 1: 56605
+ 30,18:
+ 1: 7633
+ 30,19:
+ 1: 36863
+ 30,20:
+ 1: 65535
+ 31,17:
+ 1: 64975
+ 31,18:
+ 1: 4060
+ 31,19:
+ 1: 40959
+ 31,20:
+ 1: 48059
+ 32,16:
+ 1: 7645
+ 32,17:
+ 1: 64989
+ 32,18:
+ 1: 3549
+ 32,19:
+ 1: 16383
+ 29,21:
+ 1: 4095
+ 29,22:
+ 1: 47
+ 6: 65280
+ 29,23:
+ 6: 4095
+ 1: 8192
+ 29,24:
+ 1: 65535
+ 30,21:
+ 1: 18295
+ 30,22:
+ 1: 57575
+ 30,23:
+ 1: 20192
+ 30,24:
+ 1: 65535
+ 31,21:
+ 1: 35770
+ 31,22:
+ 1: 49083
+ 31,23:
+ 1: 43931
+ 31,24:
+ 1: 56718
+ 32,20:
+ 1: 48059
+ 32,21:
+ 1: 15347
+ 32,22:
+ 1: 64443
+ 32,23:
+ 1: 15291
+ 29,25:
+ 1: 65535
+ 29,26:
+ 1: 30527
+ 29,27:
+ 1: 32631
+ 29,28:
+ 1: 30583
+ 30,25:
+ 1: 30719
+ 30,26:
+ 1: 32551
+ 30,27:
+ 1: 65527
+ 30,28:
+ 1: 4095
+ 31,25:
+ 1: 47325
+ 31,26:
+ 1: 48043
+ 31,27:
+ 1: 48059
+ 31,28:
+ 1: 49151
+ 32,24:
+ 1: 49151
+ 32,25:
+ 1: 48059
+ 32,26:
+ 1: 48059
+ 32,27:
+ 1: 16383
+ 29,29:
+ 1: 65520
+ 29,30:
+ 1: 64977
+ 29,31:
+ 1: 28927
+ 29,32:
+ 1: 1092
+ 3: 4368
+ 30,29:
+ 1: 65527
+ 30,30:
+ 1: 65520
+ 30,31:
+ 1: 65279
+ 30,32:
+ 1: 61439
+ 31,29:
+ 1: 65528
+ 31,30:
+ 1: 61408
+ 31,31:
+ 1: 61166
+ 31,32:
+ 1: 57583
+ 32,28:
+ 1: 45943
+ 32,29:
+ 1: 65531
+ 32,30:
+ 1: 48048
+ 32,31:
+ 1: 49075
+ 29,33:
+ 3: 4369
+ 1: 52428
+ 29,34:
+ 3: 4369
+ 1: 52428
+ 29,35:
+ 3: 4369
+ 1: 3276
+ 29,36:
+ 3: 17
+ 1: 25668
+ 30,34:
+ 1: 61423
+ 30,33:
+ 1: 61166
+ 30,35:
+ 1: 61166
+ 30,36:
+ 1: 65535
+ 31,34:
+ 1: 61423
+ 31,33:
+ 1: 61166
+ 31,35:
+ 1: 60942
+ 31,36:
+ 1: 3822
+ 32,32:
+ 1: 61883
+ 32,33:
+ 1: 65535
+ 32,34:
+ 1: 65535
+ 32,35:
+ 1: 7455
+ 29,37:
+ 1: 65504
+ 29,38:
+ 1: 65391
+ 30,38:
+ 1: 65518
+ 30,37:
+ 1: 61166
+ 31,37:
+ 1: 43566
+ 31,38:
+ 1: 10990
+ 32,36:
+ 1: 3581
+ 32,37:
+ 1: 65391
+ 32,38:
+ 1: 4095
+ 32,39:
+ 0: 4592
+ 32,10:
+ 0: 2274
+ 32,9:
+ 0: 11810
+ 33,9:
+ 0: 3840
+ 33,10:
+ 0: 112
+ 1: 32768
+ 33,11:
+ 1: 16315
+ 33,12:
+ 1: 46075
+ 34,9:
+ 0: 3840
+ 34,10:
+ 1: 4096
+ 0: 8
+ 34,11:
+ 1: 52700
+ 34,12:
+ 1: 55517
+ 35,9:
+ 0: 7936
+ 35,10:
+ 0: 2051
+ 1: 4880
+ 35,11:
+ 1: 30583
+ 35,12:
+ 1: 29047
+ 36,9:
+ 0: 12032
+ 36,11:
+ 1: 12287
+ 33,13:
+ 1: 65295
+ 33,14:
+ 1: 60943
+ 33,15:
+ 1: 65294
+ 33,16:
+ 1: 4095
+ 34,13:
+ 1: 65485
+ 34,14:
+ 1: 61167
+ 34,15:
+ 1: 61166
+ 34,16:
+ 1: 61166
+ 35,13:
+ 1: 63351
+ 35,14:
+ 1: 16383
+ 35,15:
+ 1: 11195
+ 35,16:
+ 1: 61166
+ 36,12:
+ 1: 65535
+ 36,13:
+ 1: 62207
+ 36,14:
+ 1: 36863
+ 36,15:
+ 1: 39867
+ 33,17:
+ 1: 65535
+ 33,18:
+ 1: 16383
+ 33,19:
+ 1: 4095
+ 33,20:
+ 1: 65535
+ 34,17:
+ 1: 61167
+ 34,19:
+ 1: 4095
+ 34,18:
+ 1: 44778
+ 34,20:
+ 1: 30583
+ 35,17:
+ 1: 65520
+ 35,18:
+ 1: 53240
+ 35,19:
+ 1: 4095
+ 35,20:
+ 1: 45567
+ 36,16:
+ 1: 48059
+ 36,17:
+ 1: 65528
+ 36,18:
+ 1: 52636
+ 36,19:
+ 1: 51709
+ 33,21:
+ 1: 20408
+ 33,22:
+ 1: 65535
+ 33,23:
+ 1: 4095
+ 33,24:
+ 1: 65535
+ 34,21:
+ 1: 35824
+ 34,22:
+ 1: 48059
+ 34,23:
+ 1: 3003
+ 34,24:
+ 1: 64751
+ 35,21:
+ 1: 49648
+ 35,22:
+ 1: 56797
+ 35,23:
+ 1: 56789
+ 35,24:
+ 1: 65437
+ 36,20:
+ 1: 24031
+ 36,21:
+ 1: 7420
+ 36,22:
+ 1: 56829
+ 36,23:
+ 1: 56796
+ 33,25:
+ 1: 65535
+ 33,26:
+ 1: 65535
+ 33,27:
+ 1: 1911
+ 33,28:
+ 1: 62071
+ 34,25:
+ 1: 65501
+ 34,26:
+ 1: 56797
+ 34,27:
+ 1: 65528
+ 34,28:
+ 1: 62207
+ 35,25:
+ 1: 56735
+ 35,26:
+ 1: 40413
+ 35,27:
+ 1: 7644
+ 35,28:
+ 1: 64543
+ 36,24:
+ 1: 65357
+ 36,25:
+ 1: 47887
+ 36,26:
+ 1: 3003
+ 36,27:
+ 1: 19733
+ 33,29:
+ 1: 65520
+ 33,30:
+ 1: 65520
+ 33,31:
+ 1: 65524
+ 33,32:
+ 1: 63743
+ 34,29:
+ 1: 65520
+ 34,31:
+ 1: 15282
+ 34,30:
+ 1: 26212
+ 34,32:
+ 1: 55483
+ 35,29:
+ 1: 65524
+ 35,30:
+ 1: 47538
+ 35,31:
+ 1: 46011
+ 35,32:
+ 1: 63807
+ 36,28:
+ 1: 61255
+ 36,29:
+ 1: 65520
+ 36,30:
+ 1: 30577
+ 36,31:
+ 1: 29047
+ 33,33:
+ 1: 65535
+ 33,34:
+ 1: 56735
+ 33,35:
+ 1: 18381
+ 33,36:
+ 1: 50525
+ 34,33:
+ 1: 24029
+ 34,34:
+ 1: 14277
+ 34,35:
+ 1: 64232
+ 34,36:
+ 1: 63743
+ 35,34:
+ 1: 10103
+ 35,35:
+ 1: 29047
+ 35,33:
+ 1: 2728
+ 35,36:
+ 1: 61823
+ 36,32:
+ 1: 63239
+ 36,33:
+ 1: 1911
+ 36,34:
+ 1: 65535
+ 36,35:
+ 1: 30583
+ 32,40:
+ 0: 4369
+ 33,37:
+ 1: 61007
+ 33,39:
+ 0: 125
+ 33,38:
+ 1: 238
+ 34,37:
+ 1: 64973
+ 34,38:
+ 1: 221
+ 0: 16384
+ 34,39:
+ 0: 15
+ 35,37:
+ 1: 48063
+ 35,38:
+ 1: 43775
+ 35,39:
+ 1: 170
+ 36,36:
+ 1: 63479
+ 36,37:
+ 1: 48063
+ 36,38:
+ 1: 3839
+ 36,10:
+ 1: 57344
+ 0: 34
+ 37,9:
+ 0: 20224
+ 37,10:
+ 1: 61440
+ 0: 68
+ 37,11:
+ 1: 4095
+ 37,12:
+ 1: 32631
+ 38,9:
+ 0: 3840
+ 38,10:
+ 1: 47104
+ 38,11:
+ 1: 48959
+ 39,12:
+ 1: 26212
+ 37,13:
+ 1: 45175
+ 37,14:
+ 1: 15359
+ 37,15:
+ 1: 48123
+ 37,16:
+ 1: 64315
+ 38,12:
+ 1: 65520
+ 38,13:
+ 1: 63231
+ 38,14:
+ 1: 4095
+ 38,15:
+ 1: 65535
+ 38,16:
+ 1: 30479
+ 39,16:
+ 1: 5973
+ 37,17:
+ 1: 48059
+ 37,18:
+ 1: 15243
+ 37,19:
+ 1: 58107
+ 37,20:
+ 1: 61166
+ 38,17:
+ 1: 30583
+ 38,18:
+ 1: 1911
+ 38,19:
+ 1: 47167
+ 38,20:
+ 1: 48059
+ 37,21:
+ 1: 20432
+ 37,22:
+ 1: 65535
+ 37,23:
+ 1: 65535
+ 37,24:
+ 1: 65471
+ 38,21:
+ 1: 35762
+ 38,22:
+ 1: 65427
+ 38,23:
+ 1: 7089
+ 38,24:
+ 1: 64973
+ 39,23:
+ 0: 2
+ 39,24:
+ 1: 30583
+ 37,25:
+ 1: 65407
+ 37,26:
+ 1: 65535
+ 37,27:
+ 1: 65535
+ 37,28:
+ 1: 57202
+ 38,25:
+ 1: 65309
+ 38,26:
+ 1: 65535
+ 38,27:
+ 1: 65535
+ 38,28:
+ 1: 65155
+ 39,25:
+ 1: 30503
+ 37,29:
+ 1: 65520
+ 37,30:
+ 1: 30583
+ 37,31:
+ 1: 30583
+ 37,32:
+ 1: 63351
+ 38,29:
+ 1: 65520
+ 38,30:
+ 1: 48057
+ 38,31:
+ 1: 64977
+ 38,32:
+ 1: 64285
+ 37,33:
+ 1: 30583
+ 37,34:
+ 1: 65527
+ 37,35:
+ 1: 30578
+ 37,36:
+ 1: 14578
+ 38,33:
+ 1: 48048
+ 38,34:
+ 1: 65529
+ 38,35:
+ 1: 48050
+ 36,39:
+ 0: 224
+ 37,37:
+ 1: 48063
+ 37,38:
+ 1: 43707
+ 37,39:
+ 1: 170
+ 38,36:
+ 1: 12144
+ 38,37:
+ 1: 48127
+ 38,38:
+ 1: 187
+ 0: 16384
+ 38,39:
+ 0: 14
+ 3,24:
+ 0: 32768
+ 3,28:
+ 0: 34952
+ 32,42:
+ 0: 4369
+ uniqueMixes:
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: NavMap
+ - type: BecomesStation
+ id: Convex
+ - uid: 353
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AcousticGuitarInstrument
+ entities:
+ - uid: 16154
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 127.41155,144.67415
+ parent: 1
+- proto: ActionToggleBlock
+ entities:
+ - uid: 5660
+ components:
+ - type: Transform
+ parent: 5657
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 5657
+ - uid: 22656
+ components:
+ - type: Transform
+ parent: 22655
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22655
+ - uid: 22747
+ components:
+ - type: Transform
+ parent: 22746
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22746
+ - uid: 22767
+ components:
+ - type: Transform
+ parent: 22766
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22766
+- proto: ActionToggleInternals
+ entities:
+ - uid: 3364
+ components:
+ - type: Transform
+ parent: 20941
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20941
+ - uid: 19390
+ components:
+ - type: Transform
+ parent: 329
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 329
+ - uid: 26838
+ components:
+ - type: Transform
+ parent: 19098
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19098
+ - uid: 32012
+ components:
+ - type: Transform
+ parent: 32011
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 32011
+- proto: ActionToggleJetpack
+ entities:
+ - uid: 19389
+ components:
+ - type: Transform
+ parent: 329
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 329
+ - uid: 23342
+ components:
+ - type: Transform
+ parent: 19098
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19098
+- proto: ActionToggleLight
+ entities:
+ - uid: 5305
+ components:
+ - type: Transform
+ parent: 20929
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20929
+ - uid: 12660
+ components:
+ - type: Transform
+ parent: 36727
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36727
+ - uid: 12661
+ components:
+ - type: Transform
+ parent: 36726
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36726
+ - uid: 12663
+ components:
+ - type: Transform
+ parent: 36563
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36563
+ - uid: 13521
+ components:
+ - type: Transform
+ parent: 13520
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13520
+ - uid: 13523
+ components:
+ - type: Transform
+ parent: 13522
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13522
+ - uid: 13526
+ components:
+ - type: Transform
+ parent: 13525
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13525
+ - uid: 18796
+ components:
+ - type: Transform
+ parent: 20881
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20881
+ - uid: 19386
+ components:
+ - type: Transform
+ parent: 19385
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19385
+ - uid: 19863
+ components:
+ - type: Transform
+ parent: 36664
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36664
+ - uid: 20506
+ components:
+ - type: Transform
+ parent: 22657
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22657
+ - uid: 20855
+ components:
+ - type: Transform
+ parent: 22658
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22658
+ - uid: 24287
+ components:
+ - type: Transform
+ parent: 27182
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27182
+ - uid: 26840
+ components:
+ - type: Transform
+ parent: 19358
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19358
+ - uid: 26940
+ components:
+ - type: Transform
+ parent: 26939
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 26939
+ - uid: 27185
+ components:
+ - type: Transform
+ parent: 27184
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27184
+ - uid: 27187
+ components:
+ - type: Transform
+ parent: 27186
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27186
+- proto: AirAlarm
+ entities:
+ - uid: 143
+ components:
+ - type: MetaData
+ name: kitchen air alarm
+ - type: Transform
+ pos: 120.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5335
+ - 5048
+ - 4863
+ - 25712
+ - 25713
+ - 25698
+ - 26177
+ - 25699
+ - 32008
+ - 20755
+ - uid: 1303
+ components:
+ - type: MetaData
+ name: hallway 3 air alarm
+ - type: Transform
+ pos: 54.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2537
+ - 2536
+ - 2535
+ - 10747
+ - 10748
+ - 10749
+ - 2034
+ - 1270
+ - 1269
+ - 27815
+ - 27816
+ - 27817
+ - 10792
+ - 27814
+ - 1038
+ - 1243
+ - uid: 1588
+ components:
+ - type: MetaData
+ name: tech vault air alarm
+ - type: Transform
+ pos: 143.5,135.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 8673
+ - 11366
+ - 29812
+ - 1587
+ - 1577
+ - uid: 1676
+ components:
+ - type: MetaData
+ name: atmospherics canister storage air alarm
+ - type: Transform
+ pos: 85.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21593
+ - 21592
+ - 19478
+ - 3158
+ - 3102
+ - 3047
+ - 2985
+ - 2906
+ - uid: 2464
+ components:
+ - type: MetaData
+ name: atmospherics hallway air alarm
+ - type: Transform
+ pos: 79.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15410
+ - 15409
+ - 15411
+ - 2516
+ - 2458
+ - 2906
+ - 2985
+ - 3047
+ - 3102
+ - 3158
+ - 3300
+ - 15434
+ - 15435
+ - 2423
+ - 2319
+ - 2207
+ - uid: 2486
+ components:
+ - type: MetaData
+ name: atmpsherics front desk air alarm
+ - type: Transform
+ pos: 74.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15434
+ - 15435
+ - 15423
+ - 15433
+ - 15430
+ - 15936
+ - 15937
+ - uid: 2722
+ components:
+ - type: MetaData
+ name: atmospherics and engineering air alarm
+ - type: Transform
+ pos: 89.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 11043
+ - 13828
+ - 25779
+ - 3524
+ - 3300
+ - 3385
+ - uid: 2997
+ components:
+ - type: MetaData
+ name: tool shed air alarm
+ - type: Transform
+ pos: 94.5,62.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4705
+ - 2952
+ - 37466
+ - 3855
+ - 3601
+ - 36282
+ - uid: 3059
+ components:
+ - type: MetaData
+ name: pool air alarm
+ - type: Transform
+ pos: 120.5,87.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5380
+ - 5466
+ - 25739
+ - 3057
+ - 25738
+ - 5338
+ - uid: 3062
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6356
+ - 5985
+ - 5687
+ - 22276
+ - 22275
+ - 21750
+ - 32262
+ - 12396
+ - uid: 3112
+ components:
+ - type: MetaData
+ name: clown's room air alarm
+ - type: Transform
+ pos: 108.5,60.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4371
+ - 25835
+ - 4527
+ - 25943
+ - 4472
+ - uid: 3113
+ components:
+ - type: MetaData
+ name: mime's room air alarm
+ - type: Transform
+ pos: 102.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4109
+ - 25836
+ - 3111
+ - 25834
+ - 4169
+ - uid: 3121
+ components:
+ - type: MetaData
+ name: theater air alarm
+ - type: Transform
+ pos: 110.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1846
+ - 1847
+ - 1780
+ - 4764
+ - 4472
+ - 4169
+ - 1845
+ - 25772
+ - 3119
+ - 25766
+ - 25831
+ - 3126
+ - 25830
+ - uid: 3344
+ components:
+ - type: MetaData
+ name: reporter's office air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,125.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6337
+ - 855
+ - 29254
+ - 29253
+ - 23856
+ - uid: 4625
+ components:
+ - type: MetaData
+ name: musician's room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,58.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4949
+ - 25837
+ - 3110
+ - 25944
+ - 4764
+ - uid: 10326
+ components:
+ - type: MetaData
+ name: combo cafe air alarm
+ - type: Transform
+ pos: 137.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6278
+ - 6127
+ - 1471
+ - 1498
+ - 30126
+ - 10316
+ - 30127
+ - 4883
+ - 30040
+ - uid: 10683
+ components:
+ - type: MetaData
+ name: bridge air alarm
+ - type: Transform
+ pos: 39.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 813
+ - 812
+ - 811
+ - 10679
+ - 10680
+ - 10738
+ - 10739
+ - 10706
+ - 10702
+ - 14866
+ - 15015
+ - 14973
+ - 27271
+ - uid: 10684
+ components:
+ - type: MetaData
+ name: AI dome 1 air alarm
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1033
+ - 12922
+ - 13225
+ - 12920
+ - 1028
+ - uid: 10685
+ components:
+ - type: MetaData
+ name: AI dome 2 air alarm
+ - type: Transform
+ pos: 47.5,32.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1033
+ - 1292
+ - 12923
+ - 13226
+ - 12921
+ - 1028
+ - uid: 10686
+ components:
+ - type: MetaData
+ name: AI dome 3 air alarm
+ - type: Transform
+ pos: 54.5,31.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1292
+ - 13162
+ - 13227
+ - 10691
+ - 1283
+ - uid: 10730
+ components:
+ - type: MetaData
+ name: captain's room air alarm
+ - type: Transform
+ pos: 37.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 666
+ - 6048
+ - 10568
+ - 10741
+ - 10703
+ - uid: 10732
+ components:
+ - type: MetaData
+ name: bridge hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 813
+ - 812
+ - 811
+ - 5822
+ - 5826
+ - 5920
+ - 10681
+ - 10737
+ - 10682
+ - 891
+ - 862
+ - 834
+ - 718
+ - 14866
+ - 15015
+ - 14973
+ - uid: 10733
+ components:
+ - type: MetaData
+ name: bridge hallway north air alarm
+ - type: Transform
+ pos: 44.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 10735
+ - 10736
+ - 10734
+ - 6048
+ - 23644
+ - 32244
+ - 861
+ - 34188
+ - uid: 10746
+ components:
+ - type: MetaData
+ name: bridge entrance air alarm
+ - type: Transform
+ pos: 48.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1054
+ - 1099
+ - 10743
+ - 10744
+ - 10745
+ - 1270
+ - 1269
+ - uid: 10750
+ components:
+ - type: MetaData
+ name: bridge common room air alarm
+ - type: Transform
+ pos: 50.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4302
+ - 7232
+ - 5822
+ - 5826
+ - 7183
+ - 10742
+ - 5920
+ - 1099
+ - 1054
+ - 1318
+ - 1435
+ - uid: 10751
+ components:
+ - type: MetaData
+ name: HOP's office air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1561
+ - 7233
+ - 10788
+ - 7228
+ - 1435
+ - 10792
+ - uid: 10752
+ components:
+ - type: MetaData
+ name: HOP's room air alarm
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1441
+ - 10764
+ - 10789
+ - 1700
+ - 1561
+ - uid: 13229
+ components:
+ - type: MetaData
+ name: AI upload air alarm
+ - type: Transform
+ pos: 49.5,43.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 466
+ - 12945
+ - 13224
+ - 10692
+ - 1056
+ - uid: 13230
+ components:
+ - type: MetaData
+ name: AI entrance air alarm
+ - type: Transform
+ pos: 45.5,47.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 13231
+ - 1056
+ - 13228
+ - 13215
+ - 718
+ - 4302
+ - uid: 14520
+ components:
+ - type: MetaData
+ name: emitters west air alarm
+ - type: Transform
+ pos: 98.5,143.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14277
+ - 3894
+ - 3892
+ - 37269
+ - 4278
+ - uid: 14573
+ components:
+ - type: MetaData
+ name: engineering hallway north air alarm
+ - type: Transform
+ pos: 103.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3737
+ - 3773
+ - 3822
+ - 14514
+ - 14518
+ - 14513
+ - 3623
+ - 4013
+ - 4062
+ - 4144
+ - 4187
+ - 4061
+ - 4393
+ - 4706
+ - 4392
+ - 5002
+ - 5003
+ - 5087
+ - 14515
+ - 14517
+ - 14516
+ - 5246
+ - 5327
+ - 5363
+ - uid: 14574
+ components:
+ - type: MetaData
+ name: PA air alarm
+ - type: Transform
+ pos: 110.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14583
+ - 14585
+ - 14584
+ - 4393
+ - 4706
+ - uid: 14594
+ components:
+ - type: MetaData
+ name: emitters east air alarm
+ - type: Transform
+ pos: 118.5,143.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5188
+ - 4829
+ - 5732
+ - 4279
+ - 5186
+ - uid: 14595
+ components:
+ - type: MetaData
+ name: engineering hallway east air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5248
+ - 5328
+ - 5365
+ - 4603
+ - 4602
+ - 5188
+ - 5186
+ - 5246
+ - 5327
+ - 5363
+ - 14523
+ - 14521
+ - 14522
+ - uid: 14596
+ components:
+ - type: MetaData
+ name: engineering east station and front desk air alarm
+ - type: Transform
+ pos: 118.5,126.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4856
+ - 14525
+ - 14527
+ - 14526
+ - 9300
+ - 5365
+ - 5328
+ - 5248
+ - 16581
+ - 16582
+ - uid: 14597
+ components:
+ - type: MetaData
+ name: engineering west station air alarm
+ - type: Transform
+ pos: 98.5,126.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3524
+ - 3739
+ - 3774
+ - 3824
+ - 14569
+ - 14571
+ - 14570
+ - 4233
+ - uid: 14598
+ components:
+ - type: MetaData
+ name: SMES array air alarm
+ - type: Transform
+ pos: 129.5,130.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9300
+ - 5428
+ - 5649
+ - 15181
+ - 14567
+ - 14553
+ - 5711
+ - uid: 14599
+ components:
+ - type: MetaData
+ name: telecommunications air alarm
+ - type: Transform
+ pos: 133.5,130.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5870
+ - 5711
+ - 14560
+ - 14568
+ - 14561
+ - 5919
+ - 360
+ - uid: 14600
+ components:
+ - type: MetaData
+ name: engineering locker room air alarm
+ - type: Transform
+ pos: 133.5,137.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4603
+ - 4602
+ - 5648
+ - 5918
+ - 5919
+ - 5649
+ - 15347
+ - 15350
+ - 15349
+ - uid: 14601
+ components:
+ - type: MetaData
+ name: CE's room air alarm
+ - type: Transform
+ pos: 126.5,147.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15274
+ - 15276
+ - 5648
+ - 5669
+ - 3092
+ - uid: 14603
+ components:
+ - type: MetaData
+ name: engineering hallway west air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3894
+ - 3892
+ - 3824
+ - 3774
+ - 3739
+ - 3657
+ - 3882
+ - 3822
+ - 3773
+ - 3737
+ - 14275
+ - 14276
+ - 13971
+ - 36757
+ - 15984
+ - 16017
+ - uid: 14667
+ components:
+ - type: MetaData
+ name: containment storage air alarm
+ - type: Transform
+ pos: 97.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14586
+ - 14666
+ - 14587
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - uid: 14669
+ components:
+ - type: MetaData
+ name: gravity air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,160.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14671
+ - 14668
+ - 14659
+ - 3819
+ - 4061
+ - uid: 14840
+ components:
+ - type: MetaData
+ name: AME air alarm
+ - type: Transform
+ pos: 109.5,163.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4392
+ - 14843
+ - 15980
+ - 14842
+ - 4736
+ - uid: 14846
+ components:
+ - type: MetaData
+ name: containment entrance air alarm
+ - type: Transform
+ pos: 119.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14621
+ - 14622
+ - 14623
+ - 5087
+ - 5003
+ - uid: 15521
+ components:
+ - type: MetaData
+ name: atmospherics central air alarm
+ - type: Transform
+ pos: 72.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2830
+ - 2829
+ - 2848
+ - 2847
+ - 15519
+ - 16009
+ - 36755
+ - 2516
+ - 2458
+ - 7390
+ - 15510
+ - 15437
+ - 15450
+ - 15448
+ - 15507
+ - uid: 15662
+ components:
+ - type: MetaData
+ name: salvage bay air alarm
+ - type: Transform
+ pos: 147.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 18415
+ - 29309
+ - 25080
+ - 6702
+ - 6703
+ - 22419
+ - 6828
+ - 1363
+ - 266
+ - 23406
+ - 1362
+ - uid: 15935
+ components:
+ - type: MetaData
+ name: arcade air alarm
+ - type: Transform
+ pos: 123.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25724
+ - 36613
+ - 36637
+ - 3667
+ - 23848
+ - 23847
+ - 5578
+ - 32008
+ - uid: 16599
+ components:
+ - type: MetaData
+ name: library air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2493
+ - 26139
+ - 26233
+ - 26128
+ - 2704
+ - 2815
+ - 26148
+ - 4065
+ - 27117
+ - uid: 17077
+ components:
+ - type: MetaData
+ name: morgue air alarm
+ - type: Transform
+ pos: 62.5,88.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1198
+ - 16794
+ - 17078
+ - 16795
+ - 2021
+ - uid: 17080
+ components:
+ - type: MetaData
+ name: medical locker room air alarm
+ - type: Transform
+ pos: 68.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 17023
+ - 17079
+ - 17024
+ - 2165
+ - 2479
+ - uid: 17081
+ components:
+ - type: MetaData
+ name: medical break room air alarm
+ - type: Transform
+ pos: 82.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3439
+ - 17026
+ - 17082
+ - 17025
+ - 3107
+ - uid: 17089
+ components:
+ - type: MetaData
+ name: CMO's room air alarm
+ - type: Transform
+ pos: 88.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3550
+ - 37411
+ - 10971
+ - 17038
+ - 3228
+ - uid: 17091
+ components:
+ - type: MetaData
+ name: chemistry desk south air alarm
+ - type: Transform
+ pos: 89.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3312
+ - 17075
+ - 17092
+ - 16993
+ - uid: 17097
+ components:
+ - type: MetaData
+ name: medical hallway east air alarm
+ - type: Transform
+ pos: 84.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2989
+ - 3106
+ - 3228
+ - 2918
+ - 2915
+ - 2858
+ - 2988
+ - 3050
+ - 3169
+ - 17006
+ - 17098
+ - 17008
+ - uid: 17102
+ components:
+ - type: MetaData
+ name: medical hallway south air alarm
+ - type: Transform
+ pos: 69.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2165
+ - 2021
+ - 2164
+ - 2279
+ - 2473
+ - 2749
+ - 3107
+ - 3238
+ - 3106
+ - 2989
+ - 2795
+ - 17101
+ - 17099
+ - 17100
+ - uid: 17103
+ components:
+ - type: MetaData
+ name: medical hallway west air alarm
+ - type: Transform
+ pos: 68.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2279
+ - 2164
+ - 2331
+ - 2328
+ - 2009
+ - 3333
+ - 1809
+ - 17005
+ - 17104
+ - 17007
+ - uid: 17106
+ components:
+ - type: MetaData
+ name: cryogenics air alarm
+ - type: Transform
+ pos: 73.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2473
+ - 16967
+ - 19623
+ - 16962
+ - 2795
+ - 2636
+ - 2596
+ - uid: 17107
+ components:
+ - type: MetaData
+ name: surgery theater air alarm
+ - type: Transform
+ pos: 62.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16753
+ - 17108
+ - 16752
+ - 2000
+ - uid: 17109
+ components:
+ - type: MetaData
+ name: medical front entrance air alarm
+ - type: Transform
+ pos: 68.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2594
+ - 2634
+ - 2858
+ - 2988
+ - 3050
+ - 17019
+ - 17022
+ - 17021
+ - 3104
+ - 3049
+ - 2987
+ - 2214
+ - 2162
+ - 2072
+ - 2000
+ - 3333
+ - 1809
+ - 16977
+ - 17110
+ - 16976
+ - uid: 17112
+ components:
+ - type: MetaData
+ name: surgery air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,102.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2009
+ - 1750
+ - 16782
+ - 17111
+ - 16762
+ - uid: 17614
+ components:
+ - type: MetaData
+ name: robotics air alarm
+ - type: Transform
+ pos: 62.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1615
+ - 1614
+ - 1613
+ - 16774
+ - 17615
+ - 16775
+ - 1605
+ - 1750
+ - uid: 18183
+ components:
+ - type: MetaData
+ name: EVA air alarm
+ - type: Transform
+ pos: 49.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 32244
+ - 23644
+ - 32366
+ - 29537
+ - 32367
+ - 23375
+ - 23637
+ - 23633
+ - uid: 18539
+ components:
+ - type: MetaData
+ name: hallway 10 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 505
+ - 506
+ - 507
+ - 5745
+ - 5744
+ - 5743
+ - 5726
+ - 5725
+ - 5724
+ - 23848
+ - 23847
+ - 5578
+ - 28128
+ - 28129
+ - 28130
+ - 28346
+ - 2129
+ - 1163
+ - 26556
+ - uid: 18610
+ components:
+ - type: MetaData
+ name: cargo storage room air alarm
+ - type: Transform
+ pos: 139.5,114.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6109
+ - 5929
+ - 5928
+ - 6022
+ - 6178
+ - 18502
+ - 18609
+ - 18501
+ - uid: 18612
+ components:
+ - type: MetaData
+ name: QM's room air alarm
+ - type: Transform
+ pos: 145.5,107.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6300
+ - 18601
+ - 18611
+ - 18602
+ - 6298
+ - uid: 18616
+ components:
+ - type: MetaData
+ name: cargo front desk air alarm
+ - type: Transform
+ pos: 140.5,108.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6256
+ - 6036
+ - 5427
+ - 30843
+ - 21677
+ - 35996
+ - 6300
+ - 6109
+ - 18503
+ - 18613
+ - 18504
+ - 30687
+ - 18632
+ - 18633
+ - uid: 18621
+ components:
+ - type: MetaData
+ name: cargo hallway air alarm
+ - type: Transform
+ pos: 146.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6928
+ - 22190
+ - 6929
+ - 6192
+ - 16223
+ - 11539
+ - 1362
+ - 23406
+ - 266
+ - 21677
+ - 35996
+ - 30687
+ - 1363
+ - 11484
+ - 30203
+ - uid: 18634
+ components:
+ - type: MetaData
+ name: cargo front entrance air alarm
+ - type: Transform
+ pos: 135.5,108.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5745
+ - 5744
+ - 5743
+ - 6256
+ - 6036
+ - 2809
+ - 18629
+ - 6025
+ - 18632
+ - 18633
+ - 5929
+ - 5928
+ - 18628
+ - 18631
+ - 18627
+ - 5726
+ - 5725
+ - 5724
+ - uid: 19097
+ components:
+ - type: MetaData
+ name: vault air alarm
+ - type: Transform
+ pos: 49.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2855
+ - 32584
+ - 2853
+ - 34188
+ - uid: 20038
+ components:
+ - type: MetaData
+ name: cargo bay air alarm
+ - type: Transform
+ pos: 157.5,112.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 11520
+ - 16223
+ - 6192
+ - 6929
+ - 6928
+ - 30688
+ - 3608
+ - 6921
+ - 6923
+ - 6924
+ - 6920
+ - 23365
+ - 29311
+ - 25145
+ - 18541
+ - 32940
+ - 32939
+ - uid: 20331
+ components:
+ - type: MetaData
+ name: xenoarcheology air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,90.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20332
+ - 20333
+ - uid: 20334
+ components:
+ - type: MetaData
+ name: xenoarcheology air alarm
+ - type: Transform
+ pos: 39.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19613
+ - 20330
+ - 19614
+ - 1381
+ - 631
+ - 479
+ - 489
+ - uid: 20336
+ components:
+ - type: MetaData
+ name: xenoarcheology airlock air alarm
+ - type: Transform
+ pos: 40.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 221
+ - 21070
+ - 5286
+ - 770
+ - 631
+ - uid: 20340
+ components:
+ - type: MetaData
+ name: science hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 860
+ - 939
+ - 770
+ - 933
+ - 932
+ - 19750
+ - 19751
+ - 19752
+ - 20337
+ - 20339
+ - 20338
+ - uid: 20343
+ components:
+ - type: MetaData
+ name: science storage room air alarm
+ - type: Transform
+ pos: 50.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 939
+ - 19612
+ - 20342
+ - 19611
+ - 1313
+ - uid: 20345
+ components:
+ - type: MetaData
+ name: research and development air alarm
+ - type: Transform
+ pos: 46.5,94.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 933
+ - 932
+ - 293
+ - 20346
+ - uid: 20352
+ components:
+ - type: MetaData
+ name: science front entrance air alarm
+ - type: Transform
+ pos: 52.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 1313
+ - 1404
+ - 1403
+ - 1402
+ - 20346
+ - 293
+ - 1391
+ - 1390
+ - 1389
+ - 926
+ - 925
+ - 19600
+ - 20351
+ - 19601
+ - uid: 20353
+ components:
+ - type: MetaData
+ name: science hallway north air alarm
+ - type: Transform
+ pos: 41.5,102.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 380
+ - 736
+ - 831
+ - 888
+ - 915
+ - 922
+ - 921
+ - 926
+ - 925
+ - 19750
+ - 19751
+ - 19752
+ - 20355
+ - 20354
+ - 20356
+ - 1256
+ - uid: 20359
+ components:
+ - type: MetaData
+ name: science canister storage air alarm
+ - type: Transform
+ pos: 49.5,104.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19721
+ - 20358
+ - 19722
+ - 922
+ - 921
+ - uid: 20362
+ components:
+ - type: MetaData
+ name: server room air alarm
+ - type: Transform
+ pos: 47.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 915
+ - 19741
+ - 20361
+ - 1131
+ - 19836
+ - uid: 20363
+ components:
+ - type: MetaData
+ name: RD's room air alarm
+ - type: Transform
+ pos: 37.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 556
+ - 19834
+ - 274
+ - 36634
+ - 736
+ - uid: 20372
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 3 air alarm
+ - type: Transform
+ pos: 26.5,110.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19816
+ - 20369
+ - 317
+ - 19810
+ - uid: 20373
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 2 air alarm
+ - type: Transform
+ pos: 26.5,114.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19817
+ - 20368
+ - 19814
+ - 310
+ - uid: 20374
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 1 air alarm
+ - type: Transform
+ pos: 26.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19818
+ - 20370
+ - 19815
+ - 303
+ - uid: 20375
+ components:
+ - type: MetaData
+ name: xenobiology lab air alarm
+ - type: Transform
+ pos: 33.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19808
+ - 20371
+ - 19809
+ - 379
+ - 317
+ - 310
+ - 303
+ - 1311
+ - uid: 20376
+ components:
+ - type: MetaData
+ name: science break room air alarm
+ - type: Transform
+ pos: 25.5,106.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 19840
+ - 171
+ - 20377
+ - 3722
+ - uid: 20378
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock air alarm
+ - type: Transform
+ pos: 30.5,106.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 380
+ - 19820
+ - 20379
+ - 379
+ - uid: 22154
+ components:
+ - type: MetaData
+ name: brig air alarm
+ - type: Transform
+ pos: 127.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21573
+ - 21572
+ - 21571
+ - 5687
+ - 22156
+ - 22157
+ - 22155
+ - 15976
+ - 20504
+ - 20502
+ - 20400
+ - 15972
+ - 20496
+ - 15973
+ - 8554
+ - uid: 22160
+ components:
+ - type: MetaData
+ name: security west hallway air alarm
+ - type: Transform
+ pos: 132.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21622
+ - 21623
+ - 22159
+ - 21574
+ - 21575
+ - 5655
+ - 21576
+ - 21573
+ - 21572
+ - 21571
+ - 5473
+ - 5476
+ - uid: 22164
+ components:
+ - type: MetaData
+ name: security hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,54.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 21576
+ - 21575
+ - 21574
+ - 6413
+ - 6605
+ - 6604
+ - 5994
+ - 21577
+ - 21578
+ - 21579
+ - 6207
+ - 21580
+ - 21581
+ - 21582
+ - 6600
+ - 21624
+ - 22162
+ - 21625
+ - 22230
+ - uid: 22209
+ components:
+ - type: MetaData
+ name: security breakroom air alarm
+ - type: Transform
+ pos: 150.5,54.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6414
+ - 22172
+ - 22208
+ - 22173
+ - 6413
+ - 7102
+ - uid: 22229
+ components:
+ - type: MetaData
+ name: security locker room air alarm
+ - type: Transform
+ pos: 154.5,59.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 7102
+ - 22226
+ - 22228
+ - 22225
+ - 6605
+ - 6604
+ - uid: 22246
+ components:
+ - type: MetaData
+ name: interrogation air alarm
+ - type: Transform
+ pos: 154.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6600
+ - 21699
+ - 22245
+ - 21700
+ - 6837
+ - uid: 22252
+ components:
+ - type: MetaData
+ name: security EVA air alarm
+ - type: Transform
+ pos: 142.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 22230
+ - 22244
+ - 22251
+ - 22248
+ - uid: 22258
+ components:
+ - type: MetaData
+ name: shooting range air alarm
+ - type: Transform
+ pos: 154.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6592
+ - 21717
+ - 22257
+ - 21716
+ - uid: 22263
+ components:
+ - type: MetaData
+ name: security front desk air alarm
+ - type: Transform
+ pos: 144.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21389
+ - 22264
+ - 5016
+ - 21726
+ - 22259
+ - 22260
+ - 22261
+ - 22262
+ - uid: 22267
+ components:
+ - type: MetaData
+ name: security hallway north air alarm
+ - type: Transform
+ pos: 149.5,73.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21580
+ - 21581
+ - 21582
+ - 6592
+ - 6511
+ - 21389
+ - 6116
+ - 6054
+ - 5985
+ - 21577
+ - 21578
+ - 21579
+ - 21718
+ - 22266
+ - 21719
+ - uid: 22269
+ components:
+ - type: MetaData
+ name: HOS's room air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,64.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6360
+ - 6207
+ - 21760
+ - 22268
+ - 21777
+ - uid: 22270
+ components:
+ - type: MetaData
+ name: armory entrance air alarm
+ - type: Transform
+ pos: 135.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 12432
+ - 23110
+ - 5889
+ - 5994
+ - 22277
+ - uid: 22271
+ components:
+ - type: MetaData
+ name: armory air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,63.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21732
+ - 8158
+ - 21733
+ - 6356
+ - 5889
+ - uid: 22634
+ components:
+ - type: MetaData
+ name: perma air alarm
+ - type: Transform
+ pos: 128.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21233
+ - 22633
+ - 22630
+ - 22602
+ - 22603
+ - 22601
+ - 5616
+ - 5617
+ - uid: 22635
+ components:
+ - type: MetaData
+ name: perma transfer air alarm
+ - type: Transform
+ pos: 123.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5388
+ - 22598
+ - 22631
+ - 22599
+ - 5655
+ - 5616
+ - uid: 22636
+ components:
+ - type: MetaData
+ name: perma EVA air alarm
+ - type: Transform
+ pos: 124.5,52.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5389
+ - 22588
+ - 22632
+ - 22587
+ - 5299
+ - 5388
+ - uid: 23328
+ components:
+ - type: MetaData
+ name: conference room air alarm
+ - type: Transform
+ pos: 136.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 35646
+ - 21066
+ - 18355
+ - 30391
+ - 23329
+ - uid: 23351
+ components:
+ - type: MetaData
+ name: lawyer's office south air alarm
+ - type: Transform
+ pos: 108.5,43.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 23442
+ - 30372
+ - 30030
+ - 36016
+ - 883
+ - uid: 25419
+ components:
+ - type: MetaData
+ name: hallway 14 air alarm
+ - type: Transform
+ pos: 99.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16030
+ - 2077
+ - 10727
+ - 10726
+ - 3181
+ - 1385
+ - 1884
+ - 30043
+ - 27518
+ - 27517
+ - 27516
+ - 25488
+ - 25487
+ - 1904
+ - 4960
+ - 4360
+ - 6611
+ - 30188
+ - uid: 25478
+ components:
+ - type: MetaData
+ name: arrivals air alarm
+ - type: Transform
+ pos: 80.5,44.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2290
+ - 2233
+ - 3141
+ - 3069
+ - 3066
+ - 2287
+ - 2285
+ - 2232
+ - 2172
+ - 2540
+ - 6730
+ - 2455
+ - 27413
+ - 2507
+ - 2506
+ - 339
+ - 2349
+ - 6011
+ - 751
+ - 6611
+ - 4360
+ - 4960
+ - 5992
+ - uid: 25534
+ components:
+ - type: MetaData
+ name: security checkpoint air alarm
+ - type: Transform
+ pos: 91.5,116.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25505
+ - 4357
+ - 25537
+ - 25521
+ - 25523
+ - 25535
+ - uid: 25615
+ components:
+ - type: MetaData
+ name: canteen air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4564
+ - 24349
+ - 18093
+ - 4236
+ - 4298
+ - 4353
+ - 4745
+ - 4818
+ - 4859
+ - 25609
+ - 3667
+ - 25599
+ - 25594
+ - 4523
+ - 25591
+ - 25593
+ - 25589
+ - 25715
+ - 25714
+ - 25712
+ - 25713
+ - uid: 26180
+ components:
+ - type: MetaData
+ name: ranch air alarm
+ - type: Transform
+ pos: 112.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25747
+ - 26179
+ - 25751
+ - 4671
+ - uid: 26182
+ components:
+ - type: MetaData
+ name: bartender's room air alarm
+ - type: Transform
+ pos: 110.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20798
+ - 26181
+ - 20797
+ - 4564
+ - 4565
+ - uid: 26183
+ components:
+ - type: MetaData
+ name: botany air alarm
+ - type: Transform
+ pos: 97.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4103
+ - 4240
+ - 26420
+ - 26422
+ - 25660
+ - 3226
+ - 16979
+ - 25715
+ - 25714
+ - 16639
+ - uid: 26186
+ components:
+ - type: MetaData
+ name: botany locker room air alarm
+ - type: Transform
+ pos: 101.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25661
+ - 26185
+ - 25662
+ - 3916
+ - 4103
+ - uid: 26188
+ components:
+ - type: MetaData
+ name: service hall air alarm
+ - type: Transform
+ pos: 110.5,100.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4361
+ - 4240
+ - 24349
+ - 4565
+ - 25609
+ - 4863
+ - 4671
+ - 25686
+ - 26187
+ - 25632
+ - 16639
+ - 20755
+ - uid: 26190
+ components:
+ - type: MetaData
+ name: boxing ring air alarm
+ - type: Transform
+ pos: 101.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3925
+ - 3924
+ - 3923
+ - 1846
+ - 1847
+ - 4985
+ - 4984
+ - 4983
+ - 4624
+ - 4308
+ - 4921
+ - 4361
+ - 26102
+ - 26191
+ - 26101
+ - 26103
+ - 26192
+ - 26059
+ - 26089
+ - 25976
+ - 1495
+ - uid: 26214
+ components:
+ - type: MetaData
+ name: crematorium air alarm
+ - type: Transform
+ pos: 64.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2223
+ - 25964
+ - 26213
+ - 25965
+ - 1867
+ - uid: 26215
+ components:
+ - type: MetaData
+ name: chaplain's office air alarm
+ - type: Transform
+ pos: 70.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5170
+ - 25979
+ - 2810
+ - 2223
+ - 25985
+ - 26211
+ - uid: 26231
+ components:
+ - type: MetaData
+ name: librarian's room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,48.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 26127
+ - 26232
+ - 26141
+ - 24312
+ - 2758
+ - uid: 26965
+ components:
+ - type: MetaData
+ name: chapel air alarm
+ - type: Transform
+ pos: 89.5,78.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3402
+ - 3452
+ - 2810
+ - 25959
+ - 26212
+ - 25960
+ - 4677
+ - uid: 27355
+ components:
+ - type: MetaData
+ name: triage air alarm
+ - type: Transform
+ pos: 79.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2636
+ - 2596
+ - 2331
+ - 2328
+ - 2594
+ - 2634
+ - 2918
+ - 2915
+ - 16791
+ - 17114
+ - 16789
+ - 16792
+ - 17113
+ - 16788
+ - uid: 27728
+ components:
+ - type: MetaData
+ name: hallway 5 air alarm
+ - type: Transform
+ pos: 55.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20738
+ - 20737
+ - 20736
+ - 1373
+ - 20739
+ - 20740
+ - 20741
+ - 27933
+ - 27935
+ - 27934
+ - 28230
+ - uid: 27729
+ components:
+ - type: MetaData
+ name: hallway 1 air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2285
+ - 2232
+ - 2172
+ - 10749
+ - 10748
+ - 10747
+ - 1849
+ - 6729
+ - 27725
+ - 27730
+ - 27727
+ - uid: 27831
+ components:
+ - type: MetaData
+ name: hallway 3 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27817
+ - 27816
+ - 27815
+ - 1626
+ - 122
+ - 27820
+ - 27819
+ - 27818
+ - 258
+ - 241
+ - 27821
+ - 23633
+ - 23637
+ - uid: 27854
+ components:
+ - type: MetaData
+ name: hallway 4 air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27820
+ - 27819
+ - 27818
+ - 1404
+ - 1403
+ - 1402
+ - 1391
+ - 1390
+ - 1389
+ - 20736
+ - 20737
+ - 20738
+ - 1605
+ - 1615
+ - 1614
+ - 1613
+ - 27851
+ - 4138
+ - 27848
+ - uid: 27986
+ components:
+ - type: MetaData
+ name: hallway 6 air alarm
+ - type: Transform
+ pos: 67.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20739
+ - 20740
+ - 20741
+ - 2072
+ - 2162
+ - 2214
+ - 2987
+ - 3049
+ - 3104
+ - 27977
+ - 27978
+ - 27979
+ - 2423
+ - 2319
+ - 2161
+ - 1927
+ - 15936
+ - 15937
+ - 674
+ - 577
+ - 616
+ - uid: 28247
+ components:
+ - type: MetaData
+ name: engineering front entrance air alarm
+ - type: Transform
+ pos: 118.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4511
+ - 3808
+ - 297
+ - 4233
+ - 4856
+ - 16581
+ - 16582
+ - 296
+ - 282
+ - 27980
+ - 4859
+ - 4818
+ - 4745
+ - 4353
+ - 4298
+ - 4236
+ - 28233
+ - 28235
+ - 28232
+ - 28234
+ - 28236
+ - 28231
+ - uid: 28288
+ components:
+ - type: MetaData
+ name: hallway 8 air alarm
+ - type: Transform
+ pos: 134.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28130
+ - 28128
+ - 28129
+ - 296
+ - 282
+ - 27980
+ - 11687
+ - 28133
+ - 28132
+ - 28131
+ - 28290
+ - 28292
+ - 28291
+ - uid: 28486
+ components:
+ - type: MetaData
+ name: hallway 11 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,87.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6115
+ - 6053
+ - 23305
+ - 23306
+ - 23307
+ - 22261
+ - 22262
+ - 6799
+ - 5756
+ - 5602
+ - 21066
+ - 505
+ - 506
+ - 507
+ - 28485
+ - 65
+ - 6
+ - uid: 28594
+ components:
+ - type: MetaData
+ name: green house air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,81.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28504
+ - 4058
+ - 28503
+ - 28531
+ - uid: 28597
+ components:
+ - type: MetaData
+ name: hallway 12 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,71.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27513
+ - 27514
+ - 27515
+ - 5055
+ - 5380
+ - 5466
+ - 23305
+ - 23306
+ - 23307
+ - 4985
+ - 4984
+ - 4983
+ - 28506
+ - 28502
+ - 28507
+ - uid: 28634
+ components:
+ - type: MetaData
+ name: hallway 13 air alarm
+ - type: Transform
+ pos: 113.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28437
+ - 28438
+ - 5291
+ - 5288
+ - 27513
+ - 27514
+ - 27515
+ - 26174
+ - 4882
+ - 27516
+ - 27517
+ - 27518
+ - 950
+ - 28631
+ - 28632
+ - 28630
+ - 1641
+ - uid: 28638
+ components:
+ - type: MetaData
+ name: medical clinic air alarm
+ - type: Transform
+ pos: 120.5,52.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5299
+ - 28438
+ - 28437
+ - 4882
+ - 5103
+ - 28636
+ - 28637
+ - 28635
+ - uid: 28741
+ components:
+ - type: MetaData
+ name: court north air alarm
+ - type: Transform
+ pos: 91.5,49.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 30037
+ - 19496
+ - 34474
+ - 35065
+ - 23364
+ - uid: 28908
+ components:
+ - type: MetaData
+ name: hallway 15 air alarm
+ - type: Transform
+ pos: 78.5,66.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3181
+ - 10726
+ - 10727
+ - 3601
+ - 2815
+ - 2704
+ - 2537
+ - 2536
+ - 2535
+ - 3402
+ - 3452
+ - 3841
+ - 3925
+ - 3924
+ - 3923
+ - 3754
+ - 28905
+ - 28906
+ - 28904
+ - uid: 29236
+ components:
+ - type: MetaData
+ name: janitor's closet air alarm
+ - type: Transform
+ pos: 158.5,129.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6787
+ - 6869
+ - 6916
+ - 6820
+ - 29233
+ - 29234
+ - 29232
+ - 35800
+ - uid: 29340
+ components:
+ - type: MetaData
+ name: lawyer's office north air alarm
+ - type: Transform
+ pos: 101.5,49.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 23380
+ - 883
+ - 18865
+ - 32439
+ - 874
+ - 30037
+ - 30043
+ - 33845
+ - uid: 29481
+ components:
+ - type: MetaData
+ name: dorms air alarm
+ - type: Transform
+ pos: 157.5,140.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27984
+ - 27983
+ - 27982
+ - 6624
+ - 8673
+ - 13735
+ - 13734
+ - 13733
+ - 5239
+ - 6688
+ - 6667
+ - 6783
+ - 6913
+ - 7044
+ - 6944
+ - 6814
+ - 29478
+ - 29480
+ - 29479
+ - uid: 29545
+ components:
+ - type: MetaData
+ name: hallway 9 air alarm
+ - type: Transform
+ pos: 153.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6243
+ - 28133
+ - 28132
+ - 28131
+ - 6475
+ - 6174
+ - 6337
+ - 6669
+ - 6787
+ - 6869
+ - 6916
+ - 6870
+ - 27984
+ - 27983
+ - 27982
+ - 3424
+ - 29229
+ - 1721
+ - uid: 29830
+ components:
+ - type: MetaData
+ name: evac air alarm
+ - type: Transform
+ pos: 144.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6009
+ - 1471
+ - 6127
+ - 6278
+ - 6005
+ - 6168
+ - 6272
+ - 6542
+ - 29822
+ - 13733
+ - 13734
+ - 13735
+ - 4007
+ - 8197
+ - 8194
+ - 29832
+ - 8140
+ - 8193
+ - 8172
+ - uid: 30227
+ components:
+ - type: MetaData
+ name: hallway 7 air alarm
+ - type: Transform
+ pos: 86.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4357
+ - 25537
+ - 27977
+ - 27978
+ - 27979
+ - 4511
+ - 3808
+ - 297
+ - 28225
+ - 28226
+ - 27932
+ - uid: 30395
+ components:
+ - type: MetaData
+ name: court south air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,38.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 550
+ - 35064
+ - 36014
+ - 18863
+ - 32979
+ - 35025
+ - 36004
+ - uid: 30728
+ components:
+ - type: MetaData
+ name: cloning lab air alarm
+ - type: Transform
+ pos: 89.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 18844
+ - 3238
+ - 35410
+ - 35224
+ - uid: 34374
+ components:
+ - type: MetaData
+ name: disposals air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 34373
+ - 34364
+ - uid: 34743
+ components:
+ - type: MetaData
+ name: evac holding cell air alarm
+ - type: Transform
+ pos: 155.5,154.5
+ parent: 1
+ - uid: 34969
+ components:
+ - type: MetaData
+ name: evac security checkpoint air alarm
+ - type: Transform
+ pos: 152.5,154.5
+ parent: 1
+ - uid: 35464
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,141.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 35465
+ - 35466
+ - 35467
+ - 35468
+ - 35469
+ - 35470
+ - 35471
+ - uid: 36741
+ components:
+ - type: MetaData
+ name: burn chamber air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,134.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9371
+ - uid: 36756
+ components:
+ - type: MetaData
+ name: thermo-electric generator air alarm
+ - type: Transform
+ pos: 88.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2848
+ - 2847
+ - 3385
+ - 3519
+ - 15514
+ - 15511
+ - 15513
+ - 3488
+ - 15515
+ - 15512
+ - 15516
+ - 2830
+ - 2829
+ - 36757
+ - 15984
+ - 16017
+ - 15519
+ - 16009
+ - 36755
+ - uid: 36963
+ components:
+ - type: MetaData
+ name: station anchor air alarm
+ - type: Transform
+ pos: 116.5,163.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5002
+ - 5168
+ - 36961
+ - 36960
+ - 36962
+ - uid: 37335
+ components:
+ - type: MetaData
+ name: anomaly lab air alarm
+ - type: Transform
+ pos: 45.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 888
+ - 831
+ - 19697
+ - 20364
+ - 19696
+ - 10700
+ - 13207
+ - uid: 37358
+ components:
+ - type: MetaData
+ name: cargo control room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 34731
+ - 19369
+ - 29396
+ - 11539
+ - 11520
+ - uid: 37459
+ components:
+ - type: MetaData
+ name: detective's office air alarm
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2077
+ - 8635
+ - 37455
+ - 19002
+ - 1361
+- proto: AirAlarmAssembly
+ entities:
+ - uid: 3803
+ components:
+ - type: Transform
+ pos: 112.5,32.5
+ parent: 1
+ - uid: 12730
+ components:
+ - type: Transform
+ pos: 97.5,24.5
+ parent: 1
+- proto: AirAlarmVox
+ entities:
+ - uid: 17093
+ components:
+ - type: MetaData
+ name: chemistry air alarm
+ - type: Transform
+ pos: 88.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3312
+ - 17003
+ - 18048
+ - 17004
+ - 17020
+ - 2013
+ - 3332
+ - 3169
+ - uid: 17096
+ components:
+ - type: MetaData
+ name: chemistry desk north air alarm
+ - type: Transform
+ pos: 85.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3332
+ - 17019
+ - 17022
+ - 17021
+ - 17076
+ - 17095
+ - 17074
+- proto: AirCanister
+ entities:
+ - uid: 2716
+ components:
+ - type: Transform
+ pos: 57.5,152.5
+ parent: 1
+ - uid: 12942
+ components:
+ - type: Transform
+ pos: 46.5,105.5
+ parent: 1
+ - uid: 13718
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 13747
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15702
+ components:
+ - type: Transform
+ pos: 160.5,115.5
+ parent: 1
+ - uid: 15957
+ components:
+ - type: Transform
+ pos: 72.5,116.5
+ parent: 1
+ - uid: 16520
+ components:
+ - type: Transform
+ pos: 116.5,74.5
+ parent: 1
+ - uid: 18891
+ components:
+ - type: Transform
+ pos: 148.5,85.5
+ parent: 1
+ - uid: 22736
+ components:
+ - type: Transform
+ pos: 83.5,117.5
+ parent: 1
+ - uid: 22738
+ components:
+ - type: Transform
+ pos: 83.5,116.5
+ parent: 1
+ - uid: 22739
+ components:
+ - type: Transform
+ pos: 83.5,118.5
+ parent: 1
+ - uid: 25176
+ components:
+ - type: Transform
+ pos: 161.5,121.5
+ parent: 1
+ - uid: 26184
+ components:
+ - type: Transform
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 26693
+ components:
+ - type: Transform
+ pos: 110.5,38.5
+ parent: 1
+ - uid: 28736
+ components:
+ - type: Transform
+ pos: 48.5,102.5
+ parent: 1
+ - uid: 30197
+ components:
+ - type: Transform
+ pos: 64.5,34.5
+ parent: 1
+ - uid: 30657
+ components:
+ - type: Transform
+ pos: 114.5,165.5
+ parent: 1
+ - uid: 30717
+ components:
+ - type: Transform
+ pos: 88.5,157.5
+ parent: 1
+ - uid: 32933
+ components:
+ - type: Transform
+ pos: 92.5,61.5
+ parent: 1
+ - uid: 34082
+ components:
+ - type: Transform
+ pos: 124.5,46.5
+ parent: 1
+ - uid: 34085
+ components:
+ - type: Transform
+ pos: 90.5,32.5
+ parent: 1
+ - uid: 34611
+ components:
+ - type: Transform
+ pos: 147.5,43.5
+ parent: 1
+ - uid: 34754
+ components:
+ - type: Transform
+ pos: 96.5,107.5
+ parent: 1
+ - uid: 34763
+ components:
+ - type: Transform
+ pos: 59.5,67.5
+ parent: 1
+ - uid: 34972
+ components:
+ - type: Transform
+ pos: 160.5,146.5
+ parent: 1
+ - uid: 35850
+ components:
+ - type: Transform
+ pos: 51.5,134.5
+ parent: 1
+ - uid: 36142
+ components:
+ - type: Transform
+ pos: 89.5,157.5
+ parent: 1
+ - uid: 36158
+ components:
+ - type: Transform
+ pos: 26.5,89.5
+ parent: 1
+ - uid: 37051
+ components:
+ - type: Transform
+ pos: 19.5,112.5
+ parent: 1
+ - uid: 37271
+ components:
+ - type: Transform
+ pos: 51.5,100.5
+ parent: 1
+- proto: Airlock
+ entities:
+ - uid: 5611
+ components:
+ - type: Transform
+ pos: 53.5,118.5
+ parent: 1
+ - uid: 22981
+ components:
+ - type: MetaData
+ name: bathroom airlock
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - uid: 28151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,118.5
+ parent: 1
+ - uid: 28154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,118.5
+ parent: 1
+ - uid: 28155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,118.5
+ parent: 1
+ - uid: 28156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,118.5
+ parent: 1
+ - uid: 28160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,115.5
+ parent: 1
+ - uid: 28161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 28883
+ components:
+ - type: Transform
+ pos: 81.5,69.5
+ parent: 1
+ - uid: 29740
+ components:
+ - type: MetaData
+ name: dorm six airlock
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - uid: 29741
+ components:
+ - type: MetaData
+ name: dorm four airlock
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - uid: 29742
+ components:
+ - type: MetaData
+ name: dorm two airlock
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - uid: 29743
+ components:
+ - type: MetaData
+ name: dorm one airlock
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - uid: 29744
+ components:
+ - type: MetaData
+ name: dorm three airlock
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - uid: 29745
+ components:
+ - type: MetaData
+ name: dorm five airlock
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - uid: 30116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,139.5
+ parent: 1
+ - uid: 33059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33312
+ components:
+ - type: Transform
+ pos: 103.5,19.5
+ parent: 1
+ - uid: 33314
+ components:
+ - type: Transform
+ pos: 111.5,19.5
+ parent: 1
+ - uid: 33316
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 33317
+ components:
+ - type: Transform
+ pos: 121.5,26.5
+ parent: 1
+ - uid: 33318
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 34380
+ components:
+ - type: Transform
+ pos: 140.5,82.5
+ parent: 1
+ - uid: 34382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,82.5
+ parent: 1
+ - uid: 35512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,142.5
+ parent: 1
+- proto: AirlockArmoryGlassLocked
+ entities:
+ - uid: 407
+ components:
+ - type: MetaData
+ name: warden office glass airlock
+ - type: Transform
+ pos: 136.5,68.5
+ parent: 1
+ - uid: 422
+ components:
+ - type: MetaData
+ name: warden office glass airlock
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+- proto: AirlockAtmosphericsGlassLocked
+ entities:
+ - uid: 790
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,152.5
+ parent: 1
+ - uid: 791
+ components:
+ - type: MetaData
+ name: atmospherics glass airlock
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,125.5
+ parent: 1
+ - uid: 795
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,126.5
+ parent: 1
+ - uid: 16128
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 16129
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+- proto: AirlockAtmosphericsLocked
+ entities:
+ - uid: 15947
+ components:
+ - type: MetaData
+ name: atmospherics airlock
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - uid: 15948
+ components:
+ - type: MetaData
+ name: atmospherics airlock
+ - type: Transform
+ pos: 72.5,124.5
+ parent: 1
+ - uid: 27987
+ components:
+ - type: MetaData
+ name: atmospherics hallway airlock
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - uid: 27988
+ components:
+ - type: MetaData
+ name: atmospherics hallway airlock
+ - type: Transform
+ pos: 69.5,115.5
+ parent: 1
+ - uid: 36768
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,138.5
+ parent: 1
+ - uid: 36769
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - uid: 36770
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,140.5
+ parent: 1
+- proto: AirlockBarLocked
+ entities:
+ - uid: 26535
+ components:
+ - type: MetaData
+ name: bartender's room airlock
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 26536
+ components:
+ - type: MetaData
+ name: bar airlock
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+- proto: AirlockBrigGlassLocked
+ entities:
+ - uid: 771
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 150.5,56.5
+ parent: 1
+ - uid: 772
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - uid: 828
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - uid: 22853
+ components:
+ - type: Transform
+ pos: 124.5,58.5
+ parent: 1
+ - uid: 22854
+ components:
+ - type: Transform
+ pos: 124.5,60.5
+ parent: 1
+ - uid: 22855
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - uid: 22856
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - uid: 22857
+ components:
+ - type: Transform
+ pos: 135.5,54.5
+ parent: 1
+ - uid: 22858
+ components:
+ - type: Transform
+ pos: 135.5,55.5
+ parent: 1
+ - uid: 22859
+ components:
+ - type: Transform
+ pos: 135.5,56.5
+ parent: 1
+ - uid: 22866
+ components:
+ - type: MetaData
+ name: security breakroom glass airlock
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 28607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,75.5
+ parent: 1
+ - uid: 28608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,75.5
+ parent: 1
+ - uid: 28644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,58.5
+ parent: 1
+ - uid: 28645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,60.5
+ parent: 1
+- proto: AirlockBrigLocked
+ entities:
+ - uid: 8163
+ components:
+ - type: MetaData
+ name: evac security checkpoint airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,148.5
+ parent: 1
+- proto: AirlockCaptainLocked
+ entities:
+ - uid: 13465
+ components:
+ - type: MetaData
+ name: captain's bathroom airlock
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 13466
+ components:
+ - type: MetaData
+ name: captain's bedroom airlock
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - uid: 13467
+ components:
+ - type: MetaData
+ name: captain's office airlock
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 18993
+ components:
+ - type: MetaData
+ name: captain's bathroom airlock
+ - type: Transform
+ pos: 34.5,65.5
+ parent: 1
+- proto: AirlockCargoGlassLocked
+ entities:
+ - uid: 321
+ components:
+ - type: MetaData
+ name: storage room glass airlock
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: MetaData
+ name: control room glass airlock
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: MetaData
+ name: cargo break room glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19343
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,101.5
+ parent: 1
+ - uid: 19344
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 19345
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,101.5
+ parent: 1
+- proto: AirlockCargoLocked
+ entities:
+ - uid: 19220
+ components:
+ - type: MetaData
+ name: cargo bay airlock
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - uid: 19337
+ components:
+ - type: MetaData
+ name: cargo front desk airlock
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+- proto: AirlockChapelLocked
+ entities:
+ - uid: 27050
+ components:
+ - type: MetaData
+ name: chaplain's room airlock
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - uid: 27051
+ components:
+ - type: MetaData
+ name: chaplain's office airlock
+ - type: Transform
+ pos: 78.5,70.5
+ parent: 1
+ - uid: 27052
+ components:
+ - type: MetaData
+ name: crematorium airlock
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 18037
+ components:
+ - type: MetaData
+ name: chemistry from desk glass airlock
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 18049
+ components:
+ - type: MetaData
+ name: chemistry storage room airlock
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - uid: 18050
+ components:
+ - type: MetaData
+ name: chemistry airlock
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - uid: 18051
+ components:
+ - type: MetaData
+ name: chemistry airlock
+ - type: Transform
+ pos: 89.5,100.5
+ parent: 1
+- proto: AirlockChiefEngineerLocked
+ entities:
+ - uid: 15395
+ components:
+ - type: MetaData
+ name: CE's office airlock
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - uid: 15396
+ components:
+ - type: MetaData
+ name: CE's bedroom airlock
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+- proto: AirlockChiefMedicalOfficerLocked
+ entities:
+ - uid: 18126
+ components:
+ - type: MetaData
+ name: CMO's office airlock
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - uid: 18127
+ components:
+ - type: MetaData
+ name: CMO's bedroom airlock
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 7105
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 7182
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,59.5
+ parent: 1
+ - uid: 9758
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - uid: 13236
+ components:
+ - type: MetaData
+ name: inner AI core glass airlock
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - uid: 13237
+ components:
+ - type: MetaData
+ name: inner AI core glass airlock
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - uid: 13238
+ components:
+ - type: MetaData
+ name: outer AI core glass airlock
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 13244
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,49.5
+ parent: 1
+ - uid: 13245
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - uid: 13246
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,51.5
+ parent: 1
+ - uid: 13270
+ components:
+ - type: MetaData
+ name: law board storage glass airlock
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 1
+ - uid: 14278
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,63.5
+ parent: 1
+ - uid: 27857
+ components:
+ - type: MetaData
+ name: bridge entrance glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 27858
+ components:
+ - type: MetaData
+ name: bridge entrance glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - uid: 28628
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,61.5
+ parent: 1
+ - uid: 36015
+ components:
+ - type: MetaData
+ name: command green room glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,53.5
+ parent: 1
+ - uid: 37329
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 839
+ components:
+ - type: MetaData
+ name: AI core airlock
+ - type: Transform
+ pos: 50.5,35.5
+ parent: 1
+ - uid: 4099
+ components:
+ - type: MetaData
+ name: AI entrance airlock
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 8072
+ components:
+ - type: MetaData
+ name: AI entrance airlock
+ - type: Transform
+ pos: 43.5,47.5
+ parent: 1
+ - uid: 13232
+ components:
+ - type: MetaData
+ name: bridge entrance airlock
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 13233
+ components:
+ - type: MetaData
+ name: bridge entrance airlock
+ - type: Transform
+ pos: 48.5,61.5
+ parent: 1
+ - uid: 13239
+ components:
+ - type: MetaData
+ name: AI core airlock
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13252
+ components:
+ - type: MetaData
+ name: AI upload airlock
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 15367
+ components:
+ - type: MetaData
+ name: secure telecommunications airlock
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 30302
+ components:
+ - type: MetaData
+ name: evac command longue airlock
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - uid: 30692
+ components:
+ - type: MetaData
+ name: conference room airlock
+ - type: Transform
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 32981
+ components:
+ - type: MetaData
+ name: EVA airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,69.5
+ parent: 1
+ - uid: 33809
+ components:
+ - type: MetaData
+ name: EVA airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,70.5
+ parent: 1
+- proto: AirlockDetectiveLocked
+ entities:
+ - uid: 37469
+ components:
+ - type: MetaData
+ name: detective's office airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+- proto: AirlockEngineeringGlassLocked
+ entities:
+ - uid: 323
+ components:
+ - type: MetaData
+ name: station anchor glass airlock
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - uid: 1123
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - uid: 1185
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 1600
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 90.5,122.5
+ parent: 1
+ - uid: 1761
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,139.5
+ parent: 1
+ - uid: 1774
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - uid: 1843
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - uid: 14988
+ components:
+ - type: MetaData
+ name: containment entrance glass airlock
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - uid: 14989
+ components:
+ - type: MetaData
+ name: containment entrance glass airlock
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 14995
+ components:
+ - type: MetaData
+ name: AME glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 14996
+ components:
+ - type: MetaData
+ name: gravity glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,157.5
+ parent: 1
+ - uid: 14999
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 124.5,138.5
+ parent: 1
+ - uid: 15000
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 124.5,136.5
+ parent: 1
+ - uid: 15001
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,126.5
+ parent: 1
+ - uid: 15002
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,126.5
+ parent: 1
+ - uid: 15003
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 15005
+ components:
+ - type: MetaData
+ name: SMES array glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,128.5
+ parent: 1
+ - uid: 15008
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,148.5
+ parent: 1
+ - uid: 15009
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 15010
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,148.5
+ parent: 1
+ - uid: 15011
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,148.5
+ parent: 1
+ - uid: 15012
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 15013
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,148.5
+ parent: 1
+ - uid: 15364
+ components:
+ - type: MetaData
+ name: SMES array glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 15365
+ components:
+ - type: MetaData
+ name: telecommunications glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 26979
+ components:
+ - type: MetaData
+ name: atmospherics and engineering glass airlock
+ - type: Transform
+ pos: 88.5,120.5
+ parent: 1
+ - uid: 36123
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 93.5,126.5
+ parent: 1
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 1412
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - type: Door
+ secondsUntilStateChange: -28749.21
+ state: Opening
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: True
+ - uid: 2530
+ components:
+ - type: MetaData
+ name: tech vault airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 5501
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 9685
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 14149
+ components:
+ - type: MetaData
+ name: emitters east airlock
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 14990
+ components:
+ - type: MetaData
+ name: emitters west airlock
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14991
+ components:
+ - type: MetaData
+ name: emitters west airlock
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14993
+ components:
+ - type: MetaData
+ name: PA airlock
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 14994
+ components:
+ - type: MetaData
+ name: PA airlock
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - uid: 14997
+ components:
+ - type: MetaData
+ name: emitters east airlock
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 15004
+ components:
+ - type: MetaData
+ name: SMES array airlock
+ - type: Transform
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 15133
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15366
+ components:
+ - type: MetaData
+ name: telecommunications airlock
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 16089
+ components:
+ - type: MetaData
+ name: substation airlock
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 23412
+ components:
+ - type: MetaData
+ name: telecommunications airlock
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 28271
+ components:
+ - type: MetaData
+ name: engineering west station airlock
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 28272
+ components:
+ - type: MetaData
+ name: engineering east station and front desk airlock
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 29548
+ components:
+ - type: MetaData
+ name: telecommunications entrance airlock
+ - type: Transform
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 29550
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 29551
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 30872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 31145
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 31148
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 33822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,91.5
+ parent: 1
+- proto: AirlockEVAGlassLocked
+ entities:
+ - uid: 2975
+ components:
+ - type: MetaData
+ name: EVA glass airlock
+ - type: Transform
+ pos: 54.5,70.5
+ parent: 1
+ - uid: 30732
+ components:
+ - type: MetaData
+ name: EVA glass airlock
+ - type: Transform
+ pos: 54.5,71.5
+ parent: 1
+- proto: AirlockExternalAtmosphericsLocked
+ entities:
+ - uid: 179
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers airlock
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 192:
+ - DoorStatus: DoorBolt
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 69.5,154.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 179:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalEngineeringLocked
+ entities:
+ - uid: 15025
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15394:
+ - DoorStatus: InputA
+ - uid: 15026
+ components:
+ - type: Transform
+ pos: 115.5,146.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15394:
+ - DoorStatus: InputB
+ - uid: 15027
+ components:
+ - type: Transform
+ pos: 115.5,149.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15393:
+ - DoorStatus: InputB
+ - uid: 15028
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15393:
+ - DoorStatus: InputA
+ - uid: 27046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,130.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27316:
+ - DoorStatus: DoorBolt
+ - uid: 27316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,130.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27046:
+ - DoorStatus: DoorBolt
+ - uid: 31149
+ components:
+ - type: Transform
+ pos: 28.5,66.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 160:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,78.5
+ parent: 1
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 27672
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - uid: 27674
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - uid: 27675
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - uid: 29154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,154.5
+ parent: 1
+ - uid: 29155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,154.5
+ parent: 1
+ - uid: 29156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,154.5
+ parent: 1
+ - uid: 29204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 29205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 29206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,88.5
+ parent: 1
+ - uid: 29207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,17.5
+ parent: 1
+ - uid: 29208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,17.5
+ parent: 1
+- proto: AirlockExternalGlassAtmosphericsLocked
+ entities:
+ - uid: 37267
+ components:
+ - type: MetaData
+ name: emergency airlock
+ - type: Transform
+ pos: 69.5,125.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+- proto: AirlockExternalGlassCargoLocked
+ entities:
+ - uid: 6971
+ components:
+ - type: Transform
+ pos: 153.5,90.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19497:
+ - DoorStatus: InputB
+ - uid: 19305
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - uid: 19306
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - uid: 19494
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19497:
+ - DoorStatus: InputA
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31149:
+ - DoorStatus: DoorBolt
+ - uid: 30873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,141.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30874:
+ - DoorStatus: DoorBolt
+ - uid: 30874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,141.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30873:
+ - DoorStatus: DoorBolt
+ - uid: 31756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,57.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31759:
+ - DoorStatus: DoorBolt
+ - uid: 31759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,57.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31756:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassLocked
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 140.5,41.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2:
+ - DoorStatus: DoorBolt
+ - uid: 147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,120.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 207:
+ - DoorStatus: DoorBolt
+ - uid: 908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,79.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20:
+ - DoorStatus: DoorBolt
+ - uid: 1075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,126.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5486:
+ - DoorStatus: DoorBolt
+ - uid: 23361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35643:
+ - DoorStatus: InputA
+ - uid: 28729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,159.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 131:
+ - DoorStatus: DoorBolt
+ - uid: 29210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,14.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29209:
+ - DoorStatus: DoorBolt
+ - uid: 30453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,90.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35643:
+ - DoorStatus: InputB
+- proto: AirlockExternalGlassShuttleArrivals
+ entities:
+ - uid: 1811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 1861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 1863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 1930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,27.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleEmergencyLocked
+ entities:
+ - uid: 29158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,157.5
+ parent: 1
+ - uid: 29159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,157.5
+ parent: 1
+ - uid: 29160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,157.5
+ parent: 1
+ - uid: 29161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,157.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleEscape
+ entities:
+ - uid: 7561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,173.5
+ parent: 1
+ - uid: 29183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,107.5
+ parent: 1
+ - uid: 29190
+ components:
+ - type: Transform
+ pos: 114.5,15.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,86.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,88.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,78.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,80.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 95.5,14.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 93.5,14.5
+ parent: 1
+ - uid: 19273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,107.5
+ parent: 1
+ - uid: 19274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,109.5
+ parent: 1
+- proto: AirlockExternalLocked
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,79.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 908:
+ - DoorStatus: DoorBolt
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,156.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28729:
+ - DoorStatus: DoorBolt
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,117.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 147:
+ - DoorStatus: DoorBolt
+ - uid: 5486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,128.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1075:
+ - DoorStatus: DoorBolt
+ - uid: 29209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29210:
+ - DoorStatus: DoorBolt
+- proto: AirlockFreezer
+ entities:
+ - uid: 34516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,43.5
+ parent: 1
+- proto: AirlockFreezerLocked
+ entities:
+ - uid: 25929
+ components:
+ - type: MetaData
+ name: freezer airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,95.5
+ parent: 1
+- proto: AirlockGlass
+ entities:
+ - uid: 661
+ components:
+ - type: MetaData
+ name: lawer's office glass airlock
+ - type: Transform
+ pos: 100.5,47.5
+ parent: 1
+ - uid: 768
+ components:
+ - type: MetaData
+ name: lawyer's office glass airlock
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - uid: 3122
+ components:
+ - type: Transform
+ pos: 84.5,49.5
+ parent: 1
+ - uid: 3182
+ components:
+ - type: Transform
+ pos: 139.5,146.5
+ parent: 1
+ - uid: 3284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,113.5
+ parent: 1
+ - uid: 3285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,112.5
+ parent: 1
+ - uid: 3719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - uid: 5041
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - uid: 8425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,141.5
+ parent: 1
+ - uid: 15320
+ components:
+ - type: Transform
+ pos: 82.5,61.5
+ parent: 1
+ - uid: 15326
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 21751
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - uid: 22778
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - uid: 26690
+ components:
+ - type: MetaData
+ name: arcade glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 26836
+ components:
+ - type: MetaData
+ name: red side glass airlock
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - uid: 26837
+ components:
+ - type: MetaData
+ name: blue side glass airlock
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - uid: 27755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,44.5
+ parent: 1
+ - uid: 27756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 27757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,44.5
+ parent: 1
+ - uid: 27828
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 1
+ - uid: 27829
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - uid: 27830
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - uid: 27834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,68.5
+ parent: 1
+ - uid: 27835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 27836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,68.5
+ parent: 1
+ - uid: 27942
+ components:
+ - type: Transform
+ pos: 57.5,99.5
+ parent: 1
+ - uid: 27943
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 27944
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - uid: 28244
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 28245
+ components:
+ - type: Transform
+ pos: 85.5,114.5
+ parent: 1
+ - uid: 28248
+ components:
+ - type: Transform
+ pos: 85.5,112.5
+ parent: 1
+ - uid: 28270
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 104.5,116.5
+ parent: 1
+ - uid: 28273
+ components:
+ - type: Transform
+ pos: 97.5,117.5
+ parent: 1
+ - uid: 28274
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 28275
+ components:
+ - type: Transform
+ pos: 97.5,119.5
+ parent: 1
+ - uid: 28276
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - uid: 28277
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - uid: 28278
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - uid: 28279
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 28280
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - uid: 28350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - uid: 28351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - uid: 28509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,94.5
+ parent: 1
+ - uid: 28510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,94.5
+ parent: 1
+ - uid: 28511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,94.5
+ parent: 1
+ - uid: 28601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,79.5
+ parent: 1
+ - uid: 28602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,79.5
+ parent: 1
+ - uid: 28603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,76.5
+ parent: 1
+ - uid: 28604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 28605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,78.5
+ parent: 1
+ - uid: 28646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,62.5
+ parent: 1
+ - uid: 28647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 28648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - uid: 28758
+ components:
+ - type: MetaData
+ name: court glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,49.5
+ parent: 1
+ - uid: 28759
+ components:
+ - type: MetaData
+ name: court glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,49.5
+ parent: 1
+ - uid: 28909
+ components:
+ - type: MetaData
+ name: tool shed glass airlock
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 28917
+ components:
+ - type: Transform
+ pos: 96.5,76.5
+ parent: 1
+ - uid: 28918
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 28919
+ components:
+ - type: Transform
+ pos: 96.5,78.5
+ parent: 1
+ - uid: 28922
+ components:
+ - type: MetaData
+ name: chapel glass airlock
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 28923
+ components:
+ - type: MetaData
+ name: chapel glass airlock
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - uid: 28925
+ components:
+ - type: MetaData
+ name: library glass airlock
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - uid: 28926
+ components:
+ - type: MetaData
+ name: library glass airlock
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - uid: 29231
+ components:
+ - type: Transform
+ pos: 136.5,117.5
+ parent: 1
+ - uid: 29546
+ components:
+ - type: Transform
+ pos: 136.5,118.5
+ parent: 1
+ - uid: 29547
+ components:
+ - type: Transform
+ pos: 136.5,119.5
+ parent: 1
+ - uid: 29721
+ components:
+ - type: MetaData
+ name: cryosleep glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 29824
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 30193
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - uid: 33291
+ components:
+ - type: Transform
+ pos: 86.5,18.5
+ parent: 1
+ - uid: 33292
+ components:
+ - type: Transform
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 33293
+ components:
+ - type: Transform
+ pos: 86.5,20.5
+ parent: 1
+ - uid: 33294
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33298
+ components:
+ - type: Transform
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33299
+ components:
+ - type: Transform
+ pos: 99.5,30.5
+ parent: 1
+ - uid: 33300
+ components:
+ - type: Transform
+ pos: 99.5,32.5
+ parent: 1
+ - uid: 33301
+ components:
+ - type: Transform
+ pos: 99.5,31.5
+ parent: 1
+ - uid: 33302
+ components:
+ - type: Transform
+ pos: 108.5,21.5
+ parent: 1
+ - uid: 33303
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33304
+ components:
+ - type: Transform
+ pos: 110.5,21.5
+ parent: 1
+ - uid: 33315
+ components:
+ - type: Transform
+ pos: 114.5,26.5
+ parent: 1
+ - uid: 33325
+ components:
+ - type: Transform
+ pos: 117.5,39.5
+ parent: 1
+ - uid: 35156
+ components:
+ - type: Transform
+ pos: 116.5,168.5
+ parent: 1
+ - uid: 35157
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 35158
+ components:
+ - type: Transform
+ pos: 116.5,170.5
+ parent: 1
+ - uid: 36545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 36546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,141.5
+ parent: 1
+- proto: AirlockHeadOfPersonnelLocked
+ entities:
+ - uid: 13664
+ components:
+ - type: MetaData
+ name: HOP's office airlock
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 13665
+ components:
+ - type: MetaData
+ name: HOP's bedroom airlock
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - uid: 13666
+ components:
+ - type: MetaData
+ name: HOP's bathroom airlock
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+- proto: AirlockHeadOfSecurityLocked
+ entities:
+ - uid: 22932
+ components:
+ - type: MetaData
+ name: HOS office airlock
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - uid: 22933
+ components:
+ - type: MetaData
+ name: HOS bedroom airlock
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+- proto: AirlockHydroponicsLocked
+ entities:
+ - uid: 26601
+ components:
+ - type: MetaData
+ name: bontanist's room airlock
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - uid: 26602
+ components:
+ - type: MetaData
+ name: hydroponics airlock
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 26603
+ components:
+ - type: MetaData
+ name: hydroponics airlock
+ - type: Transform
+ pos: 93.5,100.5
+ parent: 1
+- proto: AirlockJanitorLocked
+ entities:
+ - uid: 29552
+ components:
+ - type: MetaData
+ name: janitor garage airlock
+ - type: Transform
+ pos: 155.5,120.5
+ parent: 1
+ - uid: 29553
+ components:
+ - type: MetaData
+ name: janitor garage airlock
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+- proto: AirlockKitchenLocked
+ entities:
+ - uid: 26565
+ components:
+ - type: MetaData
+ name: kitchen airlock
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 35547
+ components:
+ - type: MetaData
+ desc: Solely made for the transition of pizza from the oven to the arcade.
+ name: pizza airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,105.5
+ parent: 1
+- proto: AirlockLawyerGlassLocked
+ entities:
+ - uid: 37478
+ components:
+ - type: MetaData
+ name: lawyer's office glass airlock
+ - type: Transform
+ pos: 103.5,40.5
+ parent: 1
+- proto: AirlockMaintAtmoLocked
+ entities:
+ - uid: 16012
+ components:
+ - type: MetaData
+ name: atmospherics hallway maintenance access
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+- proto: AirlockMaintCargoLocked
+ entities:
+ - uid: 19525
+ components:
+ - type: MetaData
+ name: storage room maintenance access
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 19528
+ components:
+ - type: MetaData
+ name: cargo front desk maintenance access
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 28294
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 30229
+ components:
+ - type: MetaData
+ name: conveyor maintenance access
+ - type: Transform
+ pos: 146.5,113.5
+ parent: 1
+ - uid: 35650
+ components:
+ - type: MetaData
+ name: cargo bay maintenance access
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+- proto: AirlockMaintChapelLocked
+ entities:
+ - uid: 26934
+ components:
+ - type: MetaData
+ name: crematorium maintenance access
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+- proto: AirlockMaintCommandLocked
+ entities:
+ - uid: 1356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,38.5
+ parent: 1
+ - uid: 13254
+ components:
+ - type: MetaData
+ name: bridge hallway maintenance access
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 13255
+ components:
+ - type: MetaData
+ name: bridge common room maintenance access
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 13257
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 29079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 29343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 29828
+ components:
+ - type: MetaData
+ name: EVA maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,76.5
+ parent: 1
+ - uid: 30303
+ components:
+ - type: MetaData
+ name: evac command longue maintenance access
+ - type: Transform
+ pos: 134.5,149.5
+ parent: 1
+ - uid: 30840
+ components:
+ - type: MetaData
+ name: conference room maintenance access
+ - type: Transform
+ pos: 134.5,87.5
+ parent: 1
+- proto: AirlockMaintDetectiveLocked
+ entities:
+ - uid: 37470
+ components:
+ - type: MetaData
+ name: detective's office maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,55.5
+ parent: 1
+- proto: AirlockMaintEngiLocked
+ entities:
+ - uid: 781
+ components:
+ - type: MetaData
+ name: tech vault maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,131.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: MetaData
+ name: thermo-electric generator maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,126.5
+ parent: 1
+ - uid: 953
+ components:
+ - type: MetaData
+ name: thermo-electric generator maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 15104
+ components:
+ - type: MetaData
+ name: station anchor maintenance access
+ - type: Transform
+ pos: 120.5,160.5
+ parent: 1
+ - uid: 15105
+ components:
+ - type: MetaData
+ name: AME maintenance access
+ - type: Transform
+ pos: 112.5,163.5
+ parent: 1
+ - uid: 15106
+ components:
+ - type: MetaData
+ name: gravity maintenance access
+ - type: Transform
+ pos: 95.5,159.5
+ parent: 1
+ - uid: 15107
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 15363
+ components:
+ - type: MetaData
+ name: locker room maintenance access
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 15986
+ components:
+ - type: MetaData
+ name: engineering hallway west maintenance access
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 15987
+ components:
+ - type: MetaData
+ name: engineering hallway north maintenance access
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - uid: 34872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,162.5
+ parent: 1
+ - uid: 35339
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 35340
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+- proto: AirlockMaintHOPLocked
+ entities:
+ - uid: 13663
+ components:
+ - type: MetaData
+ name: HOP's bedroom maintenance access
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+- proto: AirlockMaintHydroLocked
+ entities:
+ - uid: 26467
+ components:
+ - type: MetaData
+ name: bontanist's room maintenance access
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+- proto: AirlockMaintJanitorLocked
+ entities:
+ - uid: 29554
+ components:
+ - type: MetaData
+ name: janitor closet maintenance access
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29600
+ components:
+ - type: MetaData
+ name: reporter's office maintenance access
+ - type: Transform
+ pos: 142.5,128.5
+ parent: 1
+ - uid: 37158
+ components:
+ - type: MetaData
+ name: janitor garage maintenance access
+ - type: Transform
+ pos: 160.5,124.5
+ parent: 1
+- proto: AirlockMaintKitchenLocked
+ entities:
+ - uid: 26566
+ components:
+ - type: MetaData
+ name: kitchen maintenance access
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - uid: 37424
+ components:
+ - type: MetaData
+ name: freezer maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,89.5
+ parent: 1
+- proto: AirlockMaintLawyerLocked
+ entities:
+ - uid: 24757
+ components:
+ - type: Transform
+ pos: 107.5,37.5
+ parent: 1
+- proto: AirlockMaintLocked
+ entities:
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 687
+ components:
+ - type: MetaData
+ name: lawyer's office maintenance access
+ - type: Transform
+ pos: 108.5,46.5
+ parent: 1
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,23.5
+ parent: 1
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - uid: 1906
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - uid: 1961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 3073
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - uid: 3124
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 3436
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 3985
+ components:
+ - type: MetaData
+ name: tool shed maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 4056
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 4376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 4694
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 4903
+ components:
+ - type: Transform
+ pos: 106.5,168.5
+ parent: 1
+ - uid: 5042
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 5361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,109.5
+ parent: 1
+ - uid: 5538
+ components:
+ - type: Transform
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 5820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 6510
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 6570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,144.5
+ parent: 1
+ - uid: 8153
+ components:
+ - type: MetaData
+ name: evac maintenance access
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 8448
+ components:
+ - type: MetaData
+ name: library maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,50.5
+ parent: 1
+ - uid: 9669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 12692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 13491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 13575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 17648
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 18267
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 19116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 22771
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - uid: 22772
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 23674
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 24518
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24655
+ components:
+ - type: MetaData
+ name: chapel maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,78.5
+ parent: 1
+ - uid: 24689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 25292
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 26220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 26692
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - uid: 27385
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 27677
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - uid: 27717
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 27718
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 27720
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 27833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,78.5
+ parent: 1
+ - uid: 27976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 28138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,115.5
+ parent: 1
+ - uid: 28281
+ components:
+ - type: MetaData
+ name: canteen maintenance access
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 28512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 28513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,85.5
+ parent: 1
+ - uid: 28514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 28606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,73.5
+ parent: 1
+ - uid: 28643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,58.5
+ parent: 1
+ - uid: 28769
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 28920
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - uid: 28921
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 29328
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29330
+ components:
+ - type: Transform
+ pos: 152.5,120.5
+ parent: 1
+ - uid: 29483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,120.5
+ parent: 1
+ - uid: 29726
+ components:
+ - type: MetaData
+ name: dorms maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,138.5
+ parent: 1
+ - uid: 29727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,131.5
+ parent: 1
+ - uid: 30124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,137.5
+ parent: 1
+ - uid: 30183
+ components:
+ - type: MetaData
+ name: evac maintenance access
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - uid: 30753
+ components:
+ - type: MetaData
+ name: court maintenance access
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - uid: 31768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 32298
+ components:
+ - type: Transform
+ pos: 125.5,41.5
+ parent: 1
+ - uid: 32832
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - uid: 33295
+ components:
+ - type: Transform
+ pos: 89.5,31.5
+ parent: 1
+ - uid: 33296
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33297
+ components:
+ - type: Transform
+ pos: 93.5,31.5
+ parent: 1
+ - uid: 33305
+ components:
+ - type: Transform
+ pos: 107.5,28.5
+ parent: 1
+ - uid: 33306
+ components:
+ - type: Transform
+ pos: 110.5,27.5
+ parent: 1
+ - uid: 33307
+ components:
+ - type: Transform
+ pos: 115.5,32.5
+ parent: 1
+ - uid: 33308
+ components:
+ - type: Transform
+ pos: 112.5,38.5
+ parent: 1
+ - uid: 33309
+ components:
+ - type: Transform
+ pos: 119.5,43.5
+ parent: 1
+ - uid: 33311
+ components:
+ - type: Transform
+ pos: 121.5,41.5
+ parent: 1
+ - uid: 34392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 34529
+ components:
+ - type: Transform
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 34530
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 34580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 34639
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 34742
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 34782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 34833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,169.5
+ parent: 1
+ - uid: 34892
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 34893
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 35013
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 35154
+ components:
+ - type: Transform
+ pos: 118.5,166.5
+ parent: 1
+ - uid: 35191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 35192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 35193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,166.5
+ parent: 1
+ - uid: 35194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 35195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 35612
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 35613
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 35627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 35639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 35665
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 35666
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 35887
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 35984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 35985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 35986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,120.5
+ parent: 1
+ - uid: 35987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,122.5
+ parent: 1
+ - uid: 36179
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 36366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,95.5
+ parent: 1
+ - uid: 36367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 36368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 36369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 36371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 36372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 36373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 36496
+ components:
+ - type: Transform
+ pos: 22.5,77.5
+ parent: 1
+ - uid: 36497
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 36548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 36983
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 36995
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 37147
+ components:
+ - type: Transform
+ pos: 163.5,146.5
+ parent: 1
+ - uid: 37467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 37468
+ components:
+ - type: MetaData
+ name: tool shed maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,57.5
+ parent: 1
+- proto: AirlockMaintMedLocked
+ entities:
+ - uid: 2094
+ components:
+ - type: MetaData
+ name: morgue maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,79.5
+ parent: 1
+ - uid: 17747
+ components:
+ - type: MetaData
+ name: medical locker room maintenance access
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 17748
+ components:
+ - type: MetaData
+ name: medical hallway maintenance access
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - uid: 17749
+ components:
+ - type: MetaData
+ name: break room maintenance access
+ - type: Transform
+ pos: 80.5,81.5
+ parent: 1
+ - uid: 23344
+ components:
+ - type: MetaData
+ name: cloning lab maintenance access
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - uid: 28722
+ components:
+ - type: MetaData
+ name: medical checkpoint maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,46.5
+ parent: 1
+- proto: AirlockMaintRnDLocked
+ entities:
+ - uid: 72
+ components:
+ - type: MetaData
+ name: anomaly lab maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20746
+ components:
+ - type: MetaData
+ name: science hallway maintenance access
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - uid: 20747
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab maintenance access
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - uid: 20748
+ components:
+ - type: MetaData
+ name: science hallway maintenance access
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - uid: 20749
+ components:
+ - type: MetaData
+ name: break room maintenance access
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - uid: 20750
+ components:
+ - type: MetaData
+ name: xenobiology lab maintenance access
+ - type: Transform
+ pos: 35.5,118.5
+ parent: 1
+- proto: AirlockMaintSalvageLocked
+ entities:
+ - uid: 25197
+ components:
+ - type: MetaData
+ name: salvage bay maintenance access
+ - type: Transform
+ pos: 150.5,87.5
+ parent: 1
+- proto: AirlockMaintSecLocked
+ entities:
+ - uid: 23664
+ components:
+ - type: MetaData
+ name: perma EVA maintenance access
+ - type: Transform
+ pos: 123.5,45.5
+ parent: 1
+ - uid: 23665
+ components:
+ - type: MetaData
+ name: security breakroom maintenance access
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - uid: 23666
+ components:
+ - type: MetaData
+ name: interrogation maintenance access
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - uid: 23667
+ components:
+ - type: MetaData
+ name: security hallway maintenance access
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - uid: 28228
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 33869
+ components:
+ - type: MetaData
+ name: court maintenance access
+ - type: Transform
+ pos: 89.5,40.5
+ parent: 1
+ - uid: 34168
+ components:
+ - type: MetaData
+ name: court hallway maintenance access
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 35088
+ components:
+ - type: MetaData
+ name: evac security checkpoint maintenance access
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+- proto: AirlockMaintServiceLocked
+ entities:
+ - uid: 27284
+ components:
+ - type: MetaData
+ name: librarian's room maintenance access
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+- proto: AirlockMaintTheatreLocked
+ entities:
+ - uid: 24687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - uid: 26792
+ components:
+ - type: MetaData
+ name: mime's room maintenance access
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 26793
+ components:
+ - type: MetaData
+ name: clown's room maintenance access
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 26794
+ components:
+ - type: MetaData
+ name: musician's room maintenance access
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 31838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+- proto: AirlockMedical
+ entities:
+ - uid: 111
+ components:
+ - type: MetaData
+ name: surgery theater airlock
+ - type: Transform
+ pos: 58.5,107.5
+ parent: 1
+- proto: AirlockMedicalGlass
+ entities:
+ - uid: 18154
+ components:
+ - type: MetaData
+ name: surgery theater glass airlock
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 354
+ components:
+ - type: MetaData
+ name: medical locker room glass airlock
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 522
+ components:
+ - type: MetaData
+ name: break room glass airlock
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - uid: 17766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - uid: 17769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,89.5
+ parent: 1
+ - uid: 17770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,89.5
+ parent: 1
+ - uid: 17782
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,96.5
+ parent: 1
+ - uid: 17783
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,98.5
+ parent: 1
+ - uid: 17784
+ components:
+ - type: MetaData
+ name: cryogenics glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,93.5
+ parent: 1
+ - uid: 17785
+ components:
+ - type: MetaData
+ name: cryogenics glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,93.5
+ parent: 1
+ - uid: 17786
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,96.5
+ parent: 1
+ - uid: 17787
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,98.5
+ parent: 1
+- proto: AirlockMedicalLocked
+ entities:
+ - uid: 17696
+ components:
+ - type: MetaData
+ name: triage airlock
+ - type: Transform
+ pos: 75.5,101.5
+ parent: 1
+ - uid: 17697
+ components:
+ - type: MetaData
+ name: triage airlock
+ - type: Transform
+ pos: 74.5,101.5
+ parent: 1
+ - uid: 17763
+ components:
+ - type: MetaData
+ name: morgue airlock
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17767
+ components:
+ - type: MetaData
+ name: cryogenics airlock
+ - type: Transform
+ pos: 71.5,89.5
+ parent: 1
+ - uid: 17768
+ components:
+ - type: MetaData
+ name: cryogenics airlock
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - uid: 17772
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17773
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 66.5,105.5
+ parent: 1
+ - uid: 17774
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17775
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 81.5,105.5
+ parent: 1
+ - uid: 17776
+ components:
+ - type: MetaData
+ name: front desk airlock
+ - type: Transform
+ pos: 79.5,103.5
+ parent: 1
+ - uid: 17777
+ components:
+ - type: MetaData
+ name: surgery airlock
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - uid: 28661
+ components:
+ - type: MetaData
+ name: medical checkpoint airlock
+ - type: Transform
+ pos: 114.5,52.5
+ parent: 1
+ - uid: 31762
+ components:
+ - type: MetaData
+ name: cloning lab airlock
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+- proto: AirlockMedicalScienceLocked
+ entities:
+ - uid: 17778
+ components:
+ - type: MetaData
+ name: robotics airlock
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+- proto: AirlockQuartermasterGlassLocked
+ entities:
+ - uid: 19375
+ components:
+ - type: MetaData
+ name: QM's office glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,101.5
+ parent: 1
+- proto: AirlockQuartermasterLocked
+ entities:
+ - uid: 19374
+ components:
+ - type: MetaData
+ name: QM's bedroom airlock
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+- proto: AirlockResearchDirectorGlassLocked
+ entities:
+ - uid: 552
+ components:
+ - type: MetaData
+ name: server room glass airlock
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - uid: 562
+ components:
+ - type: MetaData
+ name: server room glass airlock
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - uid: 20407
+ components:
+ - type: MetaData
+ name: RD's office glass airlock
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+- proto: AirlockResearchDirectorLocked
+ entities:
+ - uid: 20870
+ components:
+ - type: MetaData
+ name: RD's bedroom airlock
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+- proto: AirlockSalvageGlassLocked
+ entities:
+ - uid: 30363
+ components:
+ - type: MetaData
+ name: salvage bay glass airlock
+ - type: Transform
+ pos: 151.5,97.5
+ parent: 1
+- proto: AirlockSalvageLocked
+ entities:
+ - uid: 1113
+ components:
+ - type: MetaData
+ name: salvage bay airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - uid: 19450
+ components:
+ - type: MetaData
+ name: salvage locker room airlock
+ - type: Transform
+ pos: 145.5,89.5
+ parent: 1
+ - uid: 19451
+ components:
+ - type: MetaData
+ name: cargo break room airlock
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+- proto: AirlockScienceGlassLocked
+ entities:
+ - uid: 563
+ components:
+ - type: MetaData
+ name: xenobiology lab glass airlock
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: MetaData
+ name: break room glass airlock
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 663
+ components:
+ - type: MetaData
+ name: science hallway glass airlock
+ - type: Transform
+ pos: 45.5,97.5
+ parent: 1
+ - uid: 694
+ components:
+ - type: MetaData
+ name: science hallway glass airlock
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 749
+ components:
+ - type: MetaData
+ name: storage room glass airlock
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20742
+ components:
+ - type: MetaData
+ name: anomaly lab glass airlock
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 20743
+ components:
+ - type: MetaData
+ name: anomaly lab glass airlock
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20744
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab glass airlock
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20745
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab glass airlock
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20761
+ components:
+ - type: MetaData
+ name: test chamber glass airlock
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - uid: 20762
+ components:
+ - type: MetaData
+ name: test chamber glass airlock
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - uid: 37558
+ components:
+ - type: MetaData
+ name: canister storage glass airlock
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - uid: 37559
+ components:
+ - type: MetaData
+ name: canister storage glass airlock
+ - type: Transform
+ pos: 45.5,101.5
+ parent: 1
+- proto: AirlockScienceLocked
+ entities:
+ - uid: 216
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 217
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 20756
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 45.5,89.5
+ parent: 1
+ - uid: 20757
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - uid: 20758
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 50.5,87.5
+ parent: 1
+ - uid: 20759
+ components:
+ - type: MetaData
+ name: storage airlock
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 20862
+ components:
+ - type: MetaData
+ name: robotics airlock
+ - type: Transform
+ pos: 58.5,96.5
+ parent: 1
+- proto: AirlockSecurityLawyerLocked
+ entities:
+ - uid: 23352
+ components:
+ - type: MetaData
+ name: court hallway airlock
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 30734
+ components:
+ - type: MetaData
+ name: court airlock
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 37479
+ components:
+ - type: MetaData
+ name: lawyer's office airlock
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+- proto: AirlockSecurityLocked
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: external security airlock
+ - type: Transform
+ pos: 140.5,43.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - DoorStatus: DoorBolt
+ - uid: 22926
+ components:
+ - type: MetaData
+ name: interrogation airlock
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - uid: 22929
+ components:
+ - type: MetaData
+ name: security breakroom airlock
+ - type: Transform
+ pos: 151.5,50.5
+ parent: 1
+ - uid: 22930
+ components:
+ - type: MetaData
+ name: security EVA airlock
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 22931
+ components:
+ - type: MetaData
+ name: security EVA airlock
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - uid: 22949
+ components:
+ - type: MetaData
+ name: shooting range airlock
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - uid: 22978
+ components:
+ - type: MetaData
+ name: perma transfer airlock
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - uid: 22979
+ components:
+ - type: MetaData
+ name: perma EVA airlock
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 22980
+ components:
+ - type: MetaData
+ name: perma transfer airlock
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 23543
+ components:
+ - type: MetaData
+ name: holding cell airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,150.5
+ parent: 1
+ - uid: 28227
+ components:
+ - type: MetaData
+ name: checkpoint airlock
+ - type: Transform
+ pos: 90.5,113.5
+ parent: 1
+ - uid: 28640
+ components:
+ - type: MetaData
+ name: perma EVA airlock
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+- proto: AirlockServiceGlassLocked
+ entities:
+ - uid: 912
+ components:
+ - type: MetaData
+ name: reporter's office glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,126.5
+ parent: 1
+ - uid: 26525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,106.5
+ parent: 1
+- proto: AirlockServiceLocked
+ entities:
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,84.5
+ parent: 1
+ - uid: 23399
+ components:
+ - type: MetaData
+ name: arcade storage airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,105.5
+ parent: 1
+ - uid: 26513
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - uid: 26514
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 103.5,105.5
+ parent: 1
+ - uid: 26515
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 104.5,95.5
+ parent: 1
+ - uid: 26516
+ components:
+ - type: MetaData
+ name: ranch airlock
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - uid: 27281
+ components:
+ - type: MetaData
+ name: librarian's room airlock
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - uid: 27282
+ components:
+ - type: MetaData
+ name: library desk airlock
+ - type: Transform
+ pos: 74.5,51.5
+ parent: 1
+ - uid: 29713
+ components:
+ - type: MetaData
+ name: news office airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,120.5
+ parent: 1
+- proto: AirlockTheatreLocked
+ entities:
+ - uid: 25864
+ components:
+ - type: MetaData
+ name: theater airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - uid: 26795
+ components:
+ - type: MetaData
+ name: musician's room airlock
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - uid: 26796
+ components:
+ - type: MetaData
+ name: clown's room airlock
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - uid: 26797
+ components:
+ - type: MetaData
+ name: mime's room airlock
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - uid: 31855
+ components:
+ - type: MetaData
+ name: theater airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,67.5
+ parent: 1
+- proto: AirSensor
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - uid: 274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - uid: 339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - uid: 1163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,133.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - uid: 3057
+ components:
+ - type: Transform
+ pos: 123.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - uid: 3092
+ components:
+ - type: Transform
+ pos: 128.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - uid: 3110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - uid: 3111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - uid: 3119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - uid: 3126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - uid: 4058
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - uid: 4065
+ components:
+ - type: Transform
+ pos: 77.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 4138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - uid: 4278
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - uid: 4527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - uid: 5286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - uid: 8140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - uid: 8158
+ components:
+ - type: Transform
+ pos: 133.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - uid: 9371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36741
+ - uid: 10316
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 10736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - uid: 10737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - uid: 10738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 10739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 10741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - uid: 10742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - uid: 10743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - uid: 10788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - uid: 10789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 10971
+ components:
+ - type: Transform
+ pos: 86.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - uid: 11484
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - uid: 12396
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 13224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - uid: 13225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - uid: 13226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - uid: 13227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - uid: 13231
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - uid: 13971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 14517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - uid: 14518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - uid: 14521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - uid: 14527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - uid: 14567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - uid: 14568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 14571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - uid: 14585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - uid: 14622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - uid: 14666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - uid: 14668
+ components:
+ - type: Transform
+ pos: 99.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - uid: 15350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - uid: 15409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - uid: 15433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - uid: 15448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - uid: 15510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - uid: 15511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 15512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 15980
+ components:
+ - type: Transform
+ pos: 109.5,158.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - uid: 17078
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: 67.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: 82.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - uid: 17092
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - uid: 17095
+ components:
+ - type: Transform
+ pos: 87.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - uid: 17098
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - uid: 17099
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - uid: 17104
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - uid: 17108
+ components:
+ - type: Transform
+ pos: 61.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - uid: 17110
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - uid: 17111
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - uid: 17113
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - uid: 17114
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - uid: 17615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - uid: 18048
+ components:
+ - type: Transform
+ pos: 86.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 18609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 18611
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - uid: 18613
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - uid: 18629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - uid: 18631
+ components:
+ - type: Transform
+ pos: 132.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - uid: 18863
+ components:
+ - type: Transform
+ pos: 94.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 18865
+ components:
+ - type: Transform
+ pos: 103.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 19369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - uid: 19623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - uid: 20330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 20332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20331
+ - uid: 20333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20331
+ - uid: 20339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - uid: 20342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - uid: 20344
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 20351
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - uid: 20354
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - uid: 20358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - uid: 20364
+ components:
+ - type: Transform
+ pos: 43.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 20368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - uid: 20369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - uid: 20370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - uid: 20371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - uid: 20377
+ components:
+ - type: Transform
+ pos: 26.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - uid: 20379
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20378
+ - uid: 21593
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - uid: 22157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - uid: 22159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - uid: 22162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - uid: 22208
+ components:
+ - type: Transform
+ pos: 147.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - uid: 22228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - uid: 22245
+ components:
+ - type: Transform
+ pos: 152.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - uid: 22251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - uid: 22257
+ components:
+ - type: Transform
+ pos: 153.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - uid: 22264
+ components:
+ - type: Transform
+ pos: 143.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22266
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - uid: 22268
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - uid: 22277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - uid: 22631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - uid: 22632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - uid: 22633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - uid: 25487
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - uid: 25535
+ components:
+ - type: Transform
+ pos: 92.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - uid: 25593
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - uid: 25594
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - uid: 25779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - uid: 26177
+ components:
+ - type: Transform
+ pos: 119.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 26179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - uid: 26181
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - uid: 26185
+ components:
+ - type: Transform
+ pos: 99.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - uid: 26187
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - uid: 26191
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 26192
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 26211
+ components:
+ - type: Transform
+ pos: 73.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - uid: 26212
+ components:
+ - type: Transform
+ pos: 87.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - uid: 26213
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - uid: 26232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 26233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 26420
+ components:
+ - type: Transform
+ pos: 98.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 27413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 27730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - uid: 27935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - uid: 28226
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - uid: 28235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - uid: 28236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - uid: 28292
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - uid: 28502
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - uid: 28632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - uid: 28637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - uid: 28906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - uid: 29229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - uid: 29234
+ components:
+ - type: Transform
+ pos: 158.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 29254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - uid: 29309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 29311
+ components:
+ - type: Transform
+ pos: 153.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 29480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - uid: 29537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - uid: 29829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - uid: 30391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - uid: 32584
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - uid: 32940
+ components:
+ - type: Transform
+ pos: 153.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 34373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 34374
+ - uid: 34474
+ components:
+ - type: Transform
+ pos: 95.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - uid: 35224
+ components:
+ - type: Transform
+ pos: 88.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - uid: 35465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,147.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 36613
+ components:
+ - type: Transform
+ pos: 121.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - uid: 36962
+ components:
+ - type: Transform
+ pos: 116.5,161.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - uid: 37162
+ components:
+ - type: Transform
+ pos: 156.5,152.5
+ parent: 1
+ - uid: 37455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - uid: 37466
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 37476
+ components:
+ - type: Transform
+ pos: 106.5,41.5
+ parent: 1
+- proto: AirSensorVox
+ entities:
+ - uid: 20361
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+- proto: AirTank
+ entities:
+ - uid: 20941
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 46.558414,103.22654
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 3364
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 3364
+- proto: AltarSpawner
+ entities:
+ - uid: 25492
+ components:
+ - type: Transform
+ pos: 83.5,74.5
+ parent: 1
+- proto: AmeController
+ entities:
+ - uid: 15044
+ components:
+ - type: Transform
+ pos: 106.5,162.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 67
+ components:
+ - type: MetaData
+ name: triage APC
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: MetaData
+ name: xenobiology lab APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: MetaData
+ name: arcade APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 630
+ components:
+ - type: MetaData
+ name: court north APC
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 752
+ components:
+ - type: MetaData
+ name: solars northwest APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 2648
+ components:
+ - type: MetaData
+ name: cargo front entrance APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 3120
+ components:
+ - type: MetaData
+ name: hallway 1 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 3350
+ components:
+ - type: MetaData
+ name: maintance 20 APC
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 3518
+ components:
+ - type: MetaData
+ name: cloning lab APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 3531
+ components:
+ - type: MetaData
+ name: solars southwest APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 3594
+ components:
+ - type: MetaData
+ name: telecommunications APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 3673
+ components:
+ - type: MetaData
+ name: canteen east APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 3727
+ components:
+ - type: MetaData
+ name: maintance 12 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 4761
+ components:
+ - type: MetaData
+ name: HOP's office APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 5237
+ components:
+ - type: MetaData
+ name: evac APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 6097
+ components:
+ - type: MetaData
+ name: maintance 18 APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 6528
+ components:
+ - type: MetaData
+ name: maintance 6 APC
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 7998
+ components:
+ - type: MetaData
+ name: security locker room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 10794
+ components:
+ - type: MetaData
+ name: canteen west APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 10972
+ components:
+ - type: MetaData
+ name: bridge common room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 10973
+ components:
+ - type: MetaData
+ name: bridge entrance APC
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 10975
+ components:
+ - type: MetaData
+ name: captain's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 10976
+ components:
+ - type: MetaData
+ name: captain's bedroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 10977
+ components:
+ - type: MetaData
+ name: bridge APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 10979
+ components:
+ - type: MetaData
+ name: bridge hallway north APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11338
+ components:
+ - type: MetaData
+ name: maintance 19 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 12414
+ components:
+ - type: MetaData
+ name: research and development APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 13021
+ components:
+ - type: MetaData
+ name: AI core APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13088
+ components:
+ - type: MetaData
+ name: AI upload APC
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13089
+ components:
+ - type: MetaData
+ name: AI entrance APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13133
+ components:
+ - type: MetaData
+ name: AI dome APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13217
+ components:
+ - type: MetaData
+ name: theater APC
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 14251
+ components:
+ - type: MetaData
+ name: containment entrance APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14308
+ components:
+ - type: MetaData
+ name: engineering east station and front desk APC
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14309
+ components:
+ - type: MetaData
+ name: engineering west station APC
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14310
+ components:
+ - type: MetaData
+ name: engineering hallway west APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14313
+ components:
+ - type: MetaData
+ name: engineering hallway north APC
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14724
+ components:
+ - type: MetaData
+ name: maintance 14 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 14955
+ components:
+ - type: MetaData
+ name: engineering hallway east APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 15114
+ components:
+ - type: MetaData
+ name: maintance 8 APC
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15173
+ components:
+ - type: MetaData
+ name: SMES array APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15214
+ components:
+ - type: MetaData
+ name: CE's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15230
+ components:
+ - type: MetaData
+ name: engineering locker room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15389
+ components:
+ - type: MetaData
+ name: PA APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15518
+ components:
+ - type: MetaData
+ name: atmospherics front desk APC
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15597
+ components:
+ - type: MetaData
+ name: thermo-electric generator APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15688
+ components:
+ - type: MetaData
+ name: atmospherics central APC
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 15877
+ components:
+ - type: MetaData
+ name: atmospherics canister storage APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 17228
+ components:
+ - type: MetaData
+ name: surgery APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17229
+ components:
+ - type: MetaData
+ name: medical hallway west APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17230
+ components:
+ - type: MetaData
+ name: medical hallway east APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17231
+ components:
+ - type: MetaData
+ name: chemistry APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17232
+ components:
+ - type: MetaData
+ name: medical hallway south APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17234
+ components:
+ - type: MetaData
+ name: medical locker room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17236
+ components:
+ - type: MetaData
+ name: CMO's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17378
+ components:
+ - type: MetaData
+ name: medical front entrance APC
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17534
+ components:
+ - type: MetaData
+ name: cryogenics APC
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17590
+ components:
+ - type: MetaData
+ name: robotics APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17896
+ components:
+ - type: MetaData
+ name: morgue APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 18388
+ components:
+ - type: MetaData
+ name: cargo break room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 18815
+ components:
+ - type: MetaData
+ name: anomaly lab APC
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 18908
+ components:
+ - type: MetaData
+ name: maintance 9 APC
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 18917
+ components:
+ - type: MetaData
+ name: cargo bay APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 18932
+ components:
+ - type: MetaData
+ name: salvage bay APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 18934
+ components:
+ - type: MetaData
+ name: cargo front desk APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 18936
+ components:
+ - type: MetaData
+ name: QM's room APC
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 18937
+ components:
+ - type: MetaData
+ name: cargo control room APC
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19860
+ components:
+ - type: MetaData
+ name: science break room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 19862
+ components:
+ - type: MetaData
+ name: RD's room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 19865
+ components:
+ - type: MetaData
+ name: science canister storage APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 19866
+ components:
+ - type: MetaData
+ name: science hallway north APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 19921
+ components:
+ - type: MetaData
+ name: xenoarcheology APC
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 21781
+ components:
+ - type: MetaData
+ name: security breakroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 21783
+ components:
+ - type: MetaData
+ name: interrogation APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 21784
+ components:
+ - type: MetaData
+ name: shooting range APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 21785
+ components:
+ - type: MetaData
+ name: security hallway north APC
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 21786
+ components:
+ - type: MetaData
+ name: security hallway south APC
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 21787
+ components:
+ - type: MetaData
+ name: security west hallway APC
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 21788
+ components:
+ - type: MetaData
+ name: brig APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 21789
+ components:
+ - type: MetaData
+ name: armory APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 21790
+ components:
+ - type: MetaData
+ name: warden office APC
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 21791
+ components:
+ - type: MetaData
+ name: perma APC
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21857
+ components:
+ - type: MetaData
+ name: security EVA APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 22076
+ components:
+ - type: MetaData
+ name: HOS's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 23462
+ components:
+ - type: MetaData
+ name: vault APC
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 23638
+ components:
+ - type: MetaData
+ name: EVA APC
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 23780
+ components:
+ - type: MetaData
+ name: kitchen APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 23781
+ components:
+ - type: MetaData
+ name: service hall APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 23985
+ components:
+ - type: MetaData
+ name: botany locker room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 24067
+ components:
+ - type: MetaData
+ name: HOP's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 24107
+ components:
+ - type: MetaData
+ name: pool APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 24504
+ components:
+ - type: MetaData
+ name: mime's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24505
+ components:
+ - type: MetaData
+ name: musician's room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24506
+ components:
+ - type: MetaData
+ name: clown's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24780
+ components:
+ - type: MetaData
+ name: boxing ring north APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24921
+ components:
+ - type: MetaData
+ name: chapel APC
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24964
+ components:
+ - type: MetaData
+ name: crematorium APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24965
+ components:
+ - type: MetaData
+ name: chaplain's office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 25543
+ components:
+ - type: MetaData
+ name: security checkpoint APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25958
+ components:
+ - type: MetaData
+ name: cargo storage room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 26319
+ components:
+ - type: MetaData
+ name: science hallway south APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 26394
+ components:
+ - type: MetaData
+ name: botany APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26446
+ components:
+ - type: MetaData
+ name: science storage room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 26548
+ components:
+ - type: MetaData
+ name: bartender's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 26720
+ components:
+ - type: MetaData
+ name: boxing ring south APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 26842
+ components:
+ - type: MetaData
+ name: gravity APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 27363
+ components:
+ - type: MetaData
+ name: bridge hallway south APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 27678
+ components:
+ - type: MetaData
+ name: hallway 2 APC
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27921
+ components:
+ - type: MetaData
+ name: hallway 5 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 28031
+ components:
+ - type: MetaData
+ name: hallway 7 APC
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28071
+ components:
+ - type: MetaData
+ name: hallway 8 APC
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28343
+ components:
+ - type: MetaData
+ name: hallway 10 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28480
+ components:
+ - type: MetaData
+ name: hallway 12 APC
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28481
+ components:
+ - type: MetaData
+ name: hallway 11 APC
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28560
+ components:
+ - type: MetaData
+ name: green house APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28698
+ components:
+ - type: MetaData
+ name: medical clinic APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28747
+ components:
+ - type: MetaData
+ name: hallway 14 APC
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 29017
+ components:
+ - type: MetaData
+ name: hallway 15 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29327
+ components:
+ - type: MetaData
+ name: hallway 9 APC
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29366
+ components:
+ - type: MetaData
+ name: janitor's closet APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29402
+ components:
+ - type: MetaData
+ name: maintance 2 APC
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29443
+ components:
+ - type: MetaData
+ name: cryosleep APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29705
+ components:
+ - type: MetaData
+ name: library APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 29836
+ components:
+ - type: MetaData
+ name: tool shed APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 29970
+ components:
+ - type: MetaData
+ name: combo cafe APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 29993
+ components:
+ - type: MetaData
+ name: tech vault APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30417
+ components:
+ - type: MetaData
+ name: lawyer's office APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 30511
+ components:
+ - type: MetaData
+ name: maintance 3 APC
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 32311
+ components:
+ - type: MetaData
+ name: arrivals APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 33089
+ components:
+ - type: MetaData
+ name: evac security checkpoint APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 33941
+ components:
+ - type: MetaData
+ name: maintance 17 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 34279
+ components:
+ - type: MetaData
+ name: solars southeast APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34302
+ components:
+ - type: MetaData
+ name: maintance 1 APC
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34607
+ components:
+ - type: MetaData
+ name: conference room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34698
+ components:
+ - type: MetaData
+ name: court south APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 34818
+ components:
+ - type: MetaData
+ name: maintance 15 APC
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34821
+ components:
+ - type: MetaData
+ name: maintance 16 APC
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 35037
+ components:
+ - type: MetaData
+ name: maintance 4 APC
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35122
+ components:
+ - type: MetaData
+ name: maintance 7 APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35872
+ components:
+ - type: MetaData
+ name: maintance 10 APC
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35954
+ components:
+ - type: MetaData
+ name: maintance 11 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35989
+ components:
+ - type: MetaData
+ name: bathroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 36236
+ components:
+ - type: MetaData
+ name: maintance 13 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36666
+ components:
+ - type: MetaData
+ name: server room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 36680
+ components:
+ - type: MetaData
+ name: AME APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36710
+ components:
+ - type: MetaData
+ name: station anchor APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 37460
+ components:
+ - type: MetaData
+ name: detective's office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 37499
+ components:
+ - type: MetaData
+ name: reporter's office APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,123.5
+ parent: 1
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 2558
+ components:
+ - type: Transform
+ pos: 82.5,28.5
+ parent: 1
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: 80.5,40.5
+ parent: 1
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: 68.5,28.5
+ parent: 1
+ - uid: 16659
+ components:
+ - type: Transform
+ pos: 70.5,40.5
+ parent: 1
+ - uid: 16660
+ components:
+ - type: Transform
+ pos: 82.5,35.5
+ parent: 1
+ - uid: 16661
+ components:
+ - type: Transform
+ pos: 68.5,35.5
+ parent: 1
+- proto: ArtistCircuitBoard
+ entities:
+ - uid: 13260
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.632015,39.492775
+ parent: 1
+- proto: Ash
+ entities:
+ - uid: 30527
+ components:
+ - type: Transform
+ pos: 53.5,157.5
+ parent: 1
+ - uid: 36343
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 55.461277,150.62411
+ parent: 1
+- proto: Ashtray
+ entities:
+ - uid: 18248
+ components:
+ - type: Transform
+ pos: 88.97407,57.510235
+ parent: 1
+ - uid: 26596
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 26744
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 106.463486,72.622665
+ parent: 1
+ - uid: 30173
+ components:
+ - type: Transform
+ pos: 135.00697,153.7087
+ parent: 1
+- proto: AsimovCircuitBoard
+ entities:
+ - uid: 13261
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.361183,39.273872
+ parent: 1
+- proto: AtmosDeviceFanDirectional
+ entities:
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 114.5,15.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,89.5
+ parent: 1
+ - uid: 2824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 2999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 3002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,27.5
+ parent: 1
+ - uid: 19275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,107.5
+ parent: 1
+ - uid: 19276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,109.5
+ parent: 1
+ - uid: 26451
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - uid: 29165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,157.5
+ parent: 1
+ - uid: 29166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,157.5
+ parent: 1
+ - uid: 29167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,157.5
+ parent: 1
+ - uid: 29168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,157.5
+ parent: 1
+ - uid: 29170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,173.5
+ parent: 1
+ - uid: 29184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,107.5
+ parent: 1
+ - uid: 29192
+ components:
+ - type: Transform
+ pos: 95.5,14.5
+ parent: 1
+ - uid: 29193
+ components:
+ - type: Transform
+ pos: 93.5,14.5
+ parent: 1
+ - uid: 29194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,78.5
+ parent: 1
+ - uid: 29195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,80.5
+ parent: 1
+ - uid: 29196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,86.5
+ parent: 1
+ - uid: 29197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,88.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 2420
+ components:
+ - type: Transform
+ pos: 101.5,137.5
+ parent: 1
+ - uid: 7266
+ components:
+ - type: Transform
+ pos: 65.5,134.5
+ parent: 1
+ - uid: 7267
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+ - uid: 7268
+ components:
+ - type: Transform
+ pos: 65.5,136.5
+ parent: 1
+ - uid: 7269
+ components:
+ - type: Transform
+ pos: 64.5,134.5
+ parent: 1
+ - uid: 7270
+ components:
+ - type: Transform
+ pos: 64.5,135.5
+ parent: 1
+ - uid: 7271
+ components:
+ - type: Transform
+ pos: 64.5,136.5
+ parent: 1
+ - uid: 7272
+ components:
+ - type: Transform
+ pos: 65.5,142.5
+ parent: 1
+ - uid: 7273
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+ - uid: 7274
+ components:
+ - type: Transform
+ pos: 65.5,144.5
+ parent: 1
+ - uid: 7275
+ components:
+ - type: Transform
+ pos: 64.5,142.5
+ parent: 1
+ - uid: 7276
+ components:
+ - type: Transform
+ pos: 64.5,143.5
+ parent: 1
+ - uid: 7277
+ components:
+ - type: Transform
+ pos: 64.5,144.5
+ parent: 1
+ - uid: 7278
+ components:
+ - type: Transform
+ pos: 66.5,146.5
+ parent: 1
+ - uid: 7279
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 7280
+ components:
+ - type: Transform
+ pos: 66.5,148.5
+ parent: 1
+ - uid: 7281
+ components:
+ - type: Transform
+ pos: 65.5,146.5
+ parent: 1
+ - uid: 7282
+ components:
+ - type: Transform
+ pos: 65.5,147.5
+ parent: 1
+ - uid: 7283
+ components:
+ - type: Transform
+ pos: 65.5,148.5
+ parent: 1
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: 67.5,150.5
+ parent: 1
+ - uid: 7285
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+ - uid: 7286
+ components:
+ - type: Transform
+ pos: 67.5,152.5
+ parent: 1
+ - uid: 7287
+ components:
+ - type: Transform
+ pos: 66.5,150.5
+ parent: 1
+ - uid: 7288
+ components:
+ - type: Transform
+ pos: 66.5,151.5
+ parent: 1
+ - uid: 7289
+ components:
+ - type: Transform
+ pos: 66.5,152.5
+ parent: 1
+ - uid: 14265
+ components:
+ - type: Transform
+ pos: 100.5,136.5
+ parent: 1
+ - uid: 14266
+ components:
+ - type: Transform
+ pos: 101.5,136.5
+ parent: 1
+ - uid: 14849
+ components:
+ - type: Transform
+ pos: 100.5,129.5
+ parent: 1
+ - uid: 14850
+ components:
+ - type: Transform
+ pos: 100.5,130.5
+ parent: 1
+ - uid: 14851
+ components:
+ - type: Transform
+ pos: 100.5,131.5
+ parent: 1
+ - uid: 14852
+ components:
+ - type: Transform
+ pos: 100.5,132.5
+ parent: 1
+ - uid: 14853
+ components:
+ - type: Transform
+ pos: 100.5,133.5
+ parent: 1
+ - uid: 14854
+ components:
+ - type: Transform
+ pos: 100.5,134.5
+ parent: 1
+ - uid: 14855
+ components:
+ - type: Transform
+ pos: 100.5,135.5
+ parent: 1
+ - uid: 14857
+ components:
+ - type: Transform
+ pos: 100.5,137.5
+ parent: 1
+ - uid: 14858
+ components:
+ - type: Transform
+ pos: 100.5,138.5
+ parent: 1
+ - uid: 14859
+ components:
+ - type: Transform
+ pos: 100.5,139.5
+ parent: 1
+ - uid: 14860
+ components:
+ - type: Transform
+ pos: 100.5,140.5
+ parent: 1
+ - uid: 14861
+ components:
+ - type: Transform
+ pos: 100.5,141.5
+ parent: 1
+ - uid: 14862
+ components:
+ - type: Transform
+ pos: 100.5,143.5
+ parent: 1
+ - uid: 14863
+ components:
+ - type: Transform
+ pos: 100.5,142.5
+ parent: 1
+ - uid: 14864
+ components:
+ - type: Transform
+ pos: 100.5,144.5
+ parent: 1
+ - uid: 14865
+ components:
+ - type: Transform
+ pos: 100.5,145.5
+ parent: 1
+ - uid: 14867
+ components:
+ - type: Transform
+ pos: 101.5,138.5
+ parent: 1
+ - uid: 14868
+ components:
+ - type: Transform
+ pos: 102.5,136.5
+ parent: 1
+ - uid: 14869
+ components:
+ - type: Transform
+ pos: 102.5,137.5
+ parent: 1
+ - uid: 14870
+ components:
+ - type: Transform
+ pos: 102.5,138.5
+ parent: 1
+ - uid: 14871
+ components:
+ - type: Transform
+ pos: 116.5,135.5
+ parent: 1
+ - uid: 14872
+ components:
+ - type: Transform
+ pos: 114.5,138.5
+ parent: 1
+ - uid: 14873
+ components:
+ - type: Transform
+ pos: 114.5,137.5
+ parent: 1
+ - uid: 14874
+ components:
+ - type: Transform
+ pos: 114.5,136.5
+ parent: 1
+ - uid: 14875
+ components:
+ - type: Transform
+ pos: 115.5,138.5
+ parent: 1
+ - uid: 14876
+ components:
+ - type: Transform
+ pos: 115.5,137.5
+ parent: 1
+ - uid: 14877
+ components:
+ - type: Transform
+ pos: 115.5,136.5
+ parent: 1
+ - uid: 14878
+ components:
+ - type: Transform
+ pos: 116.5,138.5
+ parent: 1
+ - uid: 14879
+ components:
+ - type: Transform
+ pos: 116.5,137.5
+ parent: 1
+ - uid: 14880
+ components:
+ - type: Transform
+ pos: 116.5,136.5
+ parent: 1
+ - uid: 14881
+ components:
+ - type: Transform
+ pos: 116.5,134.5
+ parent: 1
+ - uid: 14882
+ components:
+ - type: Transform
+ pos: 116.5,133.5
+ parent: 1
+ - uid: 14883
+ components:
+ - type: Transform
+ pos: 116.5,132.5
+ parent: 1
+ - uid: 14884
+ components:
+ - type: Transform
+ pos: 116.5,131.5
+ parent: 1
+ - uid: 14885
+ components:
+ - type: Transform
+ pos: 116.5,130.5
+ parent: 1
+ - uid: 14886
+ components:
+ - type: Transform
+ pos: 116.5,129.5
+ parent: 1
+ - uid: 14887
+ components:
+ - type: Transform
+ pos: 115.5,129.5
+ parent: 1
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: 114.5,129.5
+ parent: 1
+ - uid: 14889
+ components:
+ - type: Transform
+ pos: 113.5,129.5
+ parent: 1
+ - uid: 14890
+ components:
+ - type: Transform
+ pos: 112.5,129.5
+ parent: 1
+ - uid: 14891
+ components:
+ - type: Transform
+ pos: 111.5,129.5
+ parent: 1
+ - uid: 14892
+ components:
+ - type: Transform
+ pos: 110.5,129.5
+ parent: 1
+ - uid: 14893
+ components:
+ - type: Transform
+ pos: 109.5,129.5
+ parent: 1
+ - uid: 14894
+ components:
+ - type: Transform
+ pos: 108.5,129.5
+ parent: 1
+ - uid: 14895
+ components:
+ - type: Transform
+ pos: 107.5,129.5
+ parent: 1
+ - uid: 14896
+ components:
+ - type: Transform
+ pos: 105.5,129.5
+ parent: 1
+ - uid: 14897
+ components:
+ - type: Transform
+ pos: 106.5,129.5
+ parent: 1
+ - uid: 14898
+ components:
+ - type: Transform
+ pos: 104.5,129.5
+ parent: 1
+ - uid: 14899
+ components:
+ - type: Transform
+ pos: 103.5,129.5
+ parent: 1
+ - uid: 14900
+ components:
+ - type: Transform
+ pos: 102.5,129.5
+ parent: 1
+ - uid: 14901
+ components:
+ - type: Transform
+ pos: 101.5,129.5
+ parent: 1
+ - uid: 14902
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 14903
+ components:
+ - type: Transform
+ pos: 108.5,131.5
+ parent: 1
+ - uid: 14904
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 14905
+ components:
+ - type: Transform
+ pos: 109.5,131.5
+ parent: 1
+ - uid: 14906
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 14907
+ components:
+ - type: Transform
+ pos: 107.5,131.5
+ parent: 1
+ - uid: 14908
+ components:
+ - type: Transform
+ pos: 107.5,145.5
+ parent: 1
+ - uid: 14909
+ components:
+ - type: Transform
+ pos: 109.5,136.5
+ parent: 1
+ - uid: 14910
+ components:
+ - type: Transform
+ pos: 109.5,137.5
+ parent: 1
+ - uid: 14911
+ components:
+ - type: Transform
+ pos: 109.5,138.5
+ parent: 1
+ - uid: 14912
+ components:
+ - type: Transform
+ pos: 108.5,136.5
+ parent: 1
+ - uid: 14913
+ components:
+ - type: Transform
+ pos: 108.5,137.5
+ parent: 1
+ - uid: 14914
+ components:
+ - type: Transform
+ pos: 107.5,136.5
+ parent: 1
+ - uid: 14915
+ components:
+ - type: Transform
+ pos: 108.5,138.5
+ parent: 1
+ - uid: 14916
+ components:
+ - type: Transform
+ pos: 107.5,138.5
+ parent: 1
+ - uid: 14917
+ components:
+ - type: Transform
+ pos: 107.5,137.5
+ parent: 1
+ - uid: 14918
+ components:
+ - type: Transform
+ pos: 109.5,144.5
+ parent: 1
+ - uid: 14919
+ components:
+ - type: Transform
+ pos: 108.5,144.5
+ parent: 1
+ - uid: 14920
+ components:
+ - type: Transform
+ pos: 107.5,144.5
+ parent: 1
+ - uid: 14921
+ components:
+ - type: Transform
+ pos: 108.5,145.5
+ parent: 1
+ - uid: 14922
+ components:
+ - type: Transform
+ pos: 109.5,145.5
+ parent: 1
+ - uid: 14923
+ components:
+ - type: Transform
+ pos: 110.5,145.5
+ parent: 1
+ - uid: 14924
+ components:
+ - type: Transform
+ pos: 111.5,145.5
+ parent: 1
+ - uid: 14925
+ components:
+ - type: Transform
+ pos: 112.5,145.5
+ parent: 1
+ - uid: 14926
+ components:
+ - type: Transform
+ pos: 113.5,145.5
+ parent: 1
+ - uid: 14927
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14928
+ components:
+ - type: Transform
+ pos: 115.5,145.5
+ parent: 1
+ - uid: 14929
+ components:
+ - type: Transform
+ pos: 116.5,145.5
+ parent: 1
+ - uid: 14930
+ components:
+ - type: Transform
+ pos: 116.5,144.5
+ parent: 1
+ - uid: 14931
+ components:
+ - type: Transform
+ pos: 116.5,143.5
+ parent: 1
+ - uid: 14932
+ components:
+ - type: Transform
+ pos: 116.5,142.5
+ parent: 1
+ - uid: 14933
+ components:
+ - type: Transform
+ pos: 116.5,141.5
+ parent: 1
+ - uid: 14934
+ components:
+ - type: Transform
+ pos: 116.5,140.5
+ parent: 1
+ - uid: 14935
+ components:
+ - type: Transform
+ pos: 116.5,139.5
+ parent: 1
+ - uid: 14936
+ components:
+ - type: Transform
+ pos: 106.5,145.5
+ parent: 1
+ - uid: 14937
+ components:
+ - type: Transform
+ pos: 105.5,145.5
+ parent: 1
+ - uid: 14938
+ components:
+ - type: Transform
+ pos: 104.5,145.5
+ parent: 1
+ - uid: 14939
+ components:
+ - type: Transform
+ pos: 103.5,145.5
+ parent: 1
+ - uid: 14940
+ components:
+ - type: Transform
+ pos: 102.5,145.5
+ parent: 1
+ - uid: 14941
+ components:
+ - type: Transform
+ pos: 101.5,145.5
+ parent: 1
+ - uid: 14942
+ components:
+ - type: Transform
+ pos: 107.5,143.5
+ parent: 1
+ - uid: 14943
+ components:
+ - type: Transform
+ pos: 108.5,143.5
+ parent: 1
+ - uid: 14944
+ components:
+ - type: Transform
+ pos: 109.5,143.5
+ parent: 1
+ - uid: 15312
+ components:
+ - type: Transform
+ pos: 63.5,142.5
+ parent: 1
+ - uid: 30256
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 30797
+ components:
+ - type: Transform
+ pos: 64.5,146.5
+ parent: 1
+ - uid: 30798
+ components:
+ - type: Transform
+ pos: 65.5,150.5
+ parent: 1
+ - uid: 32353
+ components:
+ - type: Transform
+ pos: 80.5,132.5
+ parent: 1
+ - uid: 32354
+ components:
+ - type: Transform
+ pos: 84.5,131.5
+ parent: 1
+ - uid: 32355
+ components:
+ - type: Transform
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 32986
+ components:
+ - type: Transform
+ pos: 64.5,147.5
+ parent: 1
+ - uid: 32987
+ components:
+ - type: Transform
+ pos: 65.5,151.5
+ parent: 1
+ - uid: 34288
+ components:
+ - type: Transform
+ pos: 65.5,152.5
+ parent: 1
+ - uid: 34297
+ components:
+ - type: Transform
+ pos: 63.5,143.5
+ parent: 1
+ - uid: 34305
+ components:
+ - type: Transform
+ pos: 63.5,144.5
+ parent: 1
+ - uid: 34328
+ components:
+ - type: Transform
+ pos: 64.5,148.5
+ parent: 1
+ - uid: 34920
+ components:
+ - type: Transform
+ pos: 63.5,135.5
+ parent: 1
+ - uid: 35069
+ components:
+ - type: Transform
+ pos: 63.5,136.5
+ parent: 1
+ - uid: 35940
+ components:
+ - type: Transform
+ pos: 63.5,134.5
+ parent: 1
+ - uid: 36790
+ components:
+ - type: Transform
+ pos: 81.5,129.5
+ parent: 1
+ - uid: 36791
+ components:
+ - type: Transform
+ pos: 81.5,130.5
+ parent: 1
+ - uid: 36792
+ components:
+ - type: Transform
+ pos: 81.5,131.5
+ parent: 1
+ - uid: 36793
+ components:
+ - type: Transform
+ pos: 81.5,132.5
+ parent: 1
+ - uid: 36794
+ components:
+ - type: Transform
+ pos: 81.5,133.5
+ parent: 1
+ - uid: 36795
+ components:
+ - type: Transform
+ pos: 82.5,130.5
+ parent: 1
+ - uid: 36796
+ components:
+ - type: Transform
+ pos: 82.5,131.5
+ parent: 1
+ - uid: 36797
+ components:
+ - type: Transform
+ pos: 82.5,129.5
+ parent: 1
+ - uid: 36798
+ components:
+ - type: Transform
+ pos: 82.5,132.5
+ parent: 1
+ - uid: 36799
+ components:
+ - type: Transform
+ pos: 82.5,133.5
+ parent: 1
+ - uid: 36800
+ components:
+ - type: Transform
+ pos: 83.5,129.5
+ parent: 1
+ - uid: 36801
+ components:
+ - type: Transform
+ pos: 83.5,130.5
+ parent: 1
+ - uid: 36802
+ components:
+ - type: Transform
+ pos: 83.5,131.5
+ parent: 1
+ - uid: 36803
+ components:
+ - type: Transform
+ pos: 83.5,132.5
+ parent: 1
+ - uid: 36804
+ components:
+ - type: Transform
+ pos: 83.5,133.5
+ parent: 1
+ - uid: 36805
+ components:
+ - type: Transform
+ pos: 84.5,130.5
+ parent: 1
+ - uid: 36807
+ components:
+ - type: Transform
+ pos: 84.5,132.5
+ parent: 1
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 25673
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+ - uid: 26421
+ components:
+ - type: Transform
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 26423
+ components:
+ - type: Transform
+ pos: 119.5,93.5
+ parent: 1
+ - uid: 26424
+ components:
+ - type: Transform
+ pos: 119.5,91.5
+ parent: 1
+ - uid: 26425
+ components:
+ - type: Transform
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 26426
+ components:
+ - type: Transform
+ pos: 118.5,94.5
+ parent: 1
+ - uid: 26427
+ components:
+ - type: Transform
+ pos: 118.5,93.5
+ parent: 1
+ - uid: 26428
+ components:
+ - type: Transform
+ pos: 118.5,92.5
+ parent: 1
+ - uid: 26429
+ components:
+ - type: Transform
+ pos: 118.5,91.5
+ parent: 1
+ - uid: 26430
+ components:
+ - type: Transform
+ pos: 118.5,90.5
+ parent: 1
+ - uid: 26431
+ components:
+ - type: Transform
+ pos: 117.5,94.5
+ parent: 1
+ - uid: 26432
+ components:
+ - type: Transform
+ pos: 117.5,92.5
+ parent: 1
+ - uid: 26433
+ components:
+ - type: Transform
+ pos: 117.5,91.5
+ parent: 1
+ - uid: 26434
+ components:
+ - type: Transform
+ pos: 117.5,90.5
+ parent: 1
+ - uid: 26435
+ components:
+ - type: Transform
+ pos: 117.5,93.5
+ parent: 1
+ - uid: 26436
+ components:
+ - type: Transform
+ pos: 116.5,93.5
+ parent: 1
+ - uid: 26437
+ components:
+ - type: Transform
+ pos: 116.5,92.5
+ parent: 1
+ - uid: 26438
+ components:
+ - type: Transform
+ pos: 116.5,91.5
+ parent: 1
+ - uid: 26439
+ components:
+ - type: Transform
+ pos: 116.5,90.5
+ parent: 1
+ - uid: 26440
+ components:
+ - type: Transform
+ pos: 115.5,94.5
+ parent: 1
+ - uid: 26441
+ components:
+ - type: Transform
+ pos: 116.5,94.5
+ parent: 1
+ - uid: 26442
+ components:
+ - type: Transform
+ pos: 115.5,93.5
+ parent: 1
+ - uid: 26443
+ components:
+ - type: Transform
+ pos: 115.5,92.5
+ parent: 1
+ - uid: 26444
+ components:
+ - type: Transform
+ pos: 115.5,91.5
+ parent: 1
+ - uid: 26445
+ components:
+ - type: Transform
+ pos: 115.5,90.5
+ parent: 1
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 5679
+ components:
+ - type: Transform
+ pos: 66.5,130.5
+ parent: 1
+ - uid: 5884
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 7252
+ components:
+ - type: Transform
+ pos: 66.5,132.5
+ parent: 1
+ - uid: 7263
+ components:
+ - type: Transform
+ pos: 65.5,130.5
+ parent: 1
+ - uid: 7264
+ components:
+ - type: Transform
+ pos: 65.5,131.5
+ parent: 1
+ - uid: 7265
+ components:
+ - type: Transform
+ pos: 65.5,132.5
+ parent: 1
+ - uid: 23446
+ components:
+ - type: Transform
+ pos: 64.5,132.5
+ parent: 1
+ - uid: 30596
+ components:
+ - type: Transform
+ pos: 64.5,131.5
+ parent: 1
+ - uid: 30808
+ components:
+ - type: Transform
+ pos: 64.5,130.5
+ parent: 1
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 5708
+ components:
+ - type: Transform
+ pos: 66.5,127.5
+ parent: 1
+ - uid: 5781
+ components:
+ - type: Transform
+ pos: 67.5,126.5
+ parent: 1
+ - uid: 5885
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 5957
+ components:
+ - type: Transform
+ pos: 66.5,128.5
+ parent: 1
+ - uid: 5972
+ components:
+ - type: Transform
+ pos: 67.5,128.5
+ parent: 1
+ - uid: 6015
+ components:
+ - type: Transform
+ pos: 66.5,126.5
+ parent: 1
+ - uid: 30809
+ components:
+ - type: Transform
+ pos: 65.5,126.5
+ parent: 1
+ - uid: 34921
+ components:
+ - type: Transform
+ pos: 65.5,128.5
+ parent: 1
+ - uid: 35070
+ components:
+ - type: Transform
+ pos: 65.5,127.5
+ parent: 1
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 5803
+ components:
+ - type: Transform
+ pos: 63.5,139.5
+ parent: 1
+ - uid: 6020
+ components:
+ - type: Transform
+ pos: 63.5,140.5
+ parent: 1
+ - uid: 6079
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+ - uid: 6080
+ components:
+ - type: Transform
+ pos: 64.5,140.5
+ parent: 1
+ - uid: 6081
+ components:
+ - type: Transform
+ pos: 64.5,138.5
+ parent: 1
+ - uid: 6083
+ components:
+ - type: Transform
+ pos: 63.5,138.5
+ parent: 1
+ - uid: 34334
+ components:
+ - type: Transform
+ pos: 62.5,140.5
+ parent: 1
+ - uid: 34409
+ components:
+ - type: Transform
+ pos: 62.5,139.5
+ parent: 1
+ - uid: 35905
+ components:
+ - type: Transform
+ pos: 62.5,138.5
+ parent: 1
+- proto: Autolathe
+ entities:
+ - uid: 12475
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - uid: 16052
+ components:
+ - type: Transform
+ pos: 125.5,134.5
+ parent: 1
+ - uid: 20405
+ components:
+ - type: Transform
+ pos: 48.5,86.5
+ parent: 1
+ - uid: 27974
+ components:
+ - type: Transform
+ pos: 122.5,121.5
+ parent: 1
+- proto: BananaPhoneInstrument
+ entities:
+ - uid: 26775
+ components:
+ - type: Transform
+ pos: 106.76346,56.43621
+ parent: 1
+- proto: BannerCargo
+ entities:
+ - uid: 19353
+ components:
+ - type: Transform
+ pos: 136.5,107.5
+ parent: 1
+ - uid: 19354
+ components:
+ - type: Transform
+ pos: 135.5,98.5
+ parent: 1
+- proto: BannerEngineering
+ entities:
+ - uid: 15006
+ components:
+ - type: Transform
+ pos: 113.5,125.5
+ parent: 1
+ - uid: 15007
+ components:
+ - type: Transform
+ pos: 103.5,125.5
+ parent: 1
+- proto: BannerMedical
+ entities:
+ - uid: 17743
+ components:
+ - type: Transform
+ pos: 83.5,106.5
+ parent: 1
+ - uid: 17744
+ components:
+ - type: Transform
+ pos: 65.5,106.5
+ parent: 1
+- proto: BannerSecurity
+ entities:
+ - uid: 23131
+ components:
+ - type: Transform
+ pos: 143.5,58.5
+ parent: 1
+- proto: BarberScissors
+ entities:
+ - uid: 33458
+ components:
+ - type: Transform
+ pos: 89.5,28.5
+ parent: 1
+- proto: Barricade
+ entities:
+ - uid: 11333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,26.5
+ parent: 1
+ - uid: 33161
+ components:
+ - type: Transform
+ pos: 121.5,32.5
+ parent: 1
+ - uid: 33494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,21.5
+ parent: 1
+ - uid: 33495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,22.5
+ parent: 1
+ - uid: 33496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,21.5
+ parent: 1
+ - uid: 33730
+ components:
+ - type: Transform
+ pos: 86.5,20.5
+ parent: 1
+ - uid: 37022
+ components:
+ - type: Transform
+ pos: 98.5,166.5
+ parent: 1
+- proto: BarricadeBlock
+ entities:
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 5824
+ components:
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 33482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33483
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33551
+ components:
+ - type: Transform
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33729
+ components:
+ - type: Transform
+ pos: 86.5,18.5
+ parent: 1
+ - uid: 35341
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+ - uid: 35342
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 35660
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 36310
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 36587
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+- proto: BarSign
+ entities:
+ - uid: 8162
+ components:
+ - type: Transform
+ pos: 119.5,172.5
+ parent: 1
+ - uid: 13796
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+- proto: BarSignComboCafe
+ entities:
+ - uid: 6567
+ components:
+ - type: Transform
+ pos: 142.5,146.5
+ parent: 1
+- proto: BeachBall
+ entities:
+ - uid: 27403
+ components:
+ - type: Transform
+ pos: 118.255745,82.44549
+ parent: 1
+- proto: Beaker
+ entities:
+ - uid: 23042
+ components:
+ - type: Transform
+ pos: 128.6419,50.416183
+ parent: 1
+ - uid: 26351
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 93.942,104.71045
+ parent: 1
+ - uid: 27383
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 121.31486,98.78589
+ parent: 1
+- proto: Bed
+ entities:
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 40.5,66.5
+ parent: 1
+ - uid: 2794
+ components:
+ - type: Transform
+ pos: 71.5,92.5
+ parent: 1
+ - uid: 3165
+ components:
+ - type: Transform
+ pos: 78.5,92.5
+ parent: 1
+ - uid: 5316
+ components:
+ - type: Transform
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 13661
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 16146
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+ - uid: 16433
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+ - uid: 18096
+ components:
+ - type: Transform
+ pos: 93.5,90.5
+ parent: 1
+ - uid: 19383
+ components:
+ - type: Transform
+ pos: 144.5,110.5
+ parent: 1
+ - uid: 20878
+ components:
+ - type: Transform
+ pos: 33.5,103.5
+ parent: 1
+ - uid: 22810
+ components:
+ - type: Transform
+ pos: 122.5,65.5
+ parent: 1
+ - uid: 22811
+ components:
+ - type: Transform
+ pos: 122.5,68.5
+ parent: 1
+ - uid: 22812
+ components:
+ - type: Transform
+ pos: 122.5,71.5
+ parent: 1
+ - uid: 22813
+ components:
+ - type: Transform
+ pos: 122.5,74.5
+ parent: 1
+ - uid: 22814
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+ - uid: 22815
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+ - uid: 22816
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 22826
+ components:
+ - type: Transform
+ pos: 143.5,60.5
+ parent: 1
+ - uid: 22993
+ components:
+ - type: Transform
+ pos: 136.5,43.5
+ parent: 1
+ - uid: 26756
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+ - uid: 26757
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 26936
+ components:
+ - type: Transform
+ pos: 68.5,70.5
+ parent: 1
+ - uid: 27308
+ components:
+ - type: Transform
+ pos: 76.5,47.5
+ parent: 1
+ - uid: 28656
+ components:
+ - type: Transform
+ pos: 113.5,49.5
+ parent: 1
+ - uid: 29764
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+ - uid: 29765
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+ - uid: 29766
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 29767
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+ - uid: 29768
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+ - uid: 29769
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+- proto: BedsheetBlack
+ entities:
+ - uid: 22817
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+- proto: BedsheetBlue
+ entities:
+ - uid: 22823
+ components:
+ - type: Transform
+ pos: 122.5,65.5
+ parent: 1
+ - uid: 29758
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 37189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,137.5
+ parent: 1
+- proto: BedsheetBrown
+ entities:
+ - uid: 26937
+ components:
+ - type: Transform
+ pos: 68.5,70.5
+ parent: 1
+- proto: BedsheetCaptain
+ entities:
+ - uid: 13654
+ components:
+ - type: Transform
+ pos: 40.5,66.5
+ parent: 1
+- proto: BedsheetCE
+ entities:
+ - uid: 16147
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+- proto: BedsheetClown
+ entities:
+ - uid: 26758
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+- proto: BedsheetCMO
+ entities:
+ - uid: 18099
+ components:
+ - type: Transform
+ pos: 93.5,90.5
+ parent: 1
+- proto: BedsheetGreen
+ entities:
+ - uid: 22820
+ components:
+ - type: Transform
+ pos: 122.5,74.5
+ parent: 1
+ - uid: 27309
+ components:
+ - type: Transform
+ pos: 76.5,47.5
+ parent: 1
+ - uid: 29761
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+ - uid: 37190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 169.5,133.5
+ parent: 1
+- proto: BedsheetGrey
+ entities:
+ - uid: 22819
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+- proto: BedsheetHOP
+ entities:
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+- proto: BedsheetHOS
+ entities:
+ - uid: 22827
+ components:
+ - type: Transform
+ pos: 143.5,60.5
+ parent: 1
+- proto: BedsheetMedical
+ entities:
+ - uid: 17654
+ components:
+ - type: Transform
+ pos: 72.5,94.5
+ parent: 1
+ - uid: 17655
+ components:
+ - type: Transform
+ pos: 70.5,100.5
+ parent: 1
+ - uid: 17656
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 17657
+ components:
+ - type: Transform
+ pos: 79.5,94.5
+ parent: 1
+ - uid: 17661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,100.5
+ parent: 1
+ - uid: 17663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,94.5
+ parent: 1
+ - uid: 28246
+ components:
+ - type: Transform
+ pos: 78.5,92.5
+ parent: 1
+ - uid: 28249
+ components:
+ - type: Transform
+ pos: 71.5,92.5
+ parent: 1
+ - uid: 28723
+ components:
+ - type: Transform
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 28724
+ components:
+ - type: Transform
+ pos: 113.5,49.5
+ parent: 1
+- proto: BedsheetMime
+ entities:
+ - uid: 26754
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+- proto: BedsheetOrange
+ entities:
+ - uid: 29762
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+- proto: BedsheetPurple
+ entities:
+ - uid: 22822
+ components:
+ - type: Transform
+ pos: 122.5,68.5
+ parent: 1
+ - uid: 29763
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+- proto: BedsheetQM
+ entities:
+ - uid: 19379
+ components:
+ - type: Transform
+ pos: 144.5,110.5
+ parent: 1
+- proto: BedsheetRD
+ entities:
+ - uid: 20879
+ components:
+ - type: Transform
+ pos: 33.5,103.5
+ parent: 1
+- proto: BedsheetRed
+ entities:
+ - uid: 29759
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+- proto: BedsheetSpawner
+ entities:
+ - uid: 16846
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+- proto: BedsheetSyndie
+ entities:
+ - uid: 22990
+ components:
+ - type: Transform
+ pos: 136.5,43.5
+ parent: 1
+- proto: BedsheetWhite
+ entities:
+ - uid: 22818
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 29760
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+- proto: BedsheetYellow
+ entities:
+ - uid: 22821
+ components:
+ - type: Transform
+ pos: 122.5,71.5
+ parent: 1
+- proto: BigBox
+ entities:
+ - uid: 3401
+ components:
+ - type: Transform
+ pos: 87.5,88.5
+ parent: 1
+- proto: BikeHorn
+ entities:
+ - uid: 26776
+ components:
+ - type: Transform
+ pos: 108.35666,59.403328
+ parent: 1
+- proto: Biogenerator
+ entities:
+ - uid: 23013
+ components:
+ - type: Transform
+ pos: 129.5,46.5
+ parent: 1
+ - uid: 27379
+ components:
+ - type: Transform
+ pos: 101.5,102.5
+ parent: 1
+- proto: BlankFlag
+ entities:
+ - uid: 27726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,42.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 4387
+ components:
+ - type: Transform
+ pos: 80.5,120.5
+ parent: 1
+ - uid: 15029
+ components:
+ - type: Transform
+ pos: 98.5,153.5
+ parent: 1
+ - uid: 15030
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 15031
+ components:
+ - type: Transform
+ pos: 100.5,153.5
+ parent: 1
+ - uid: 15032
+ components:
+ - type: Transform
+ pos: 101.5,153.5
+ parent: 1
+ - uid: 15967
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - uid: 15969
+ components:
+ - type: Transform
+ pos: 84.5,120.5
+ parent: 1
+ - uid: 15978
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15979
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - uid: 19529
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19532
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19533
+ components:
+ - type: Transform
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 19534
+ components:
+ - type: Transform
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19666
+ components:
+ - type: Transform
+ pos: 30.5,86.5
+ parent: 1
+ - uid: 19667
+ components:
+ - type: Transform
+ pos: 30.5,87.5
+ parent: 1
+ - uid: 19668
+ components:
+ - type: Transform
+ pos: 30.5,88.5
+ parent: 1
+ - uid: 19669
+ components:
+ - type: Transform
+ pos: 30.5,89.5
+ parent: 1
+ - uid: 19670
+ components:
+ - type: Transform
+ pos: 30.5,91.5
+ parent: 1
+ - uid: 19671
+ components:
+ - type: Transform
+ pos: 30.5,93.5
+ parent: 1
+ - uid: 19672
+ components:
+ - type: Transform
+ pos: 30.5,94.5
+ parent: 1
+ - uid: 19673
+ components:
+ - type: Transform
+ pos: 30.5,92.5
+ parent: 1
+ - uid: 34326
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34327
+ components:
+ - type: Transform
+ pos: 160.5,84.5
+ parent: 1
+- proto: BlastDoorBridge
+ entities:
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: 132.5,58.5
+ parent: 1
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 132.5,59.5
+ parent: 1
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 132.5,60.5
+ parent: 1
+ - uid: 23360
+ components:
+ - type: MetaData
+ name: emergency containment access blast door
+ - type: Transform
+ pos: 102.5,146.5
+ parent: 1
+- proto: BlastDoorBridgeOpen
+ entities:
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 37366
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+- proto: BlastDoorEngineering
+ entities:
+ - uid: 23097
+ components:
+ - type: MetaData
+ name: emergency blast door
+ - type: Transform
+ pos: 69.5,124.5
+ parent: 1
+- proto: BlastDoorOpen
+ entities:
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 3358
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 3642
+ components:
+ - type: Transform
+ pos: 84.5,131.5
+ parent: 1
+ - uid: 3878
+ components:
+ - type: Transform
+ pos: 84.5,132.5
+ parent: 1
+ - uid: 15764
+ components:
+ - type: Transform
+ pos: 84.5,130.5
+ parent: 1
+ - uid: 30218
+ components:
+ - type: Transform
+ pos: 80.5,132.5
+ parent: 1
+- proto: BlockGameArcade
+ entities:
+ - uid: 4216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 4341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,111.5
+ parent: 1
+ - uid: 4383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,112.5
+ parent: 1
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,112.5
+ parent: 1
+- proto: Bloodpack
+ entities:
+ - uid: 17679
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 74.01784,97.61638
+ parent: 1
+- proto: Blunt
+ entities:
+ - uid: 37152
+ components:
+ - type: Transform
+ pos: 167.87863,135.80937
+ parent: 1
+- proto: BodyBag
+ entities:
+ - uid: 33532
+ components:
+ - type: Transform
+ pos: 92.499886,22.935501
+ parent: 1
+ - uid: 33627
+ components:
+ - type: Transform
+ pos: 119.86151,29.864613
+ parent: 1
+- proto: BodyBagFolded
+ entities:
+ - uid: 17690
+ components:
+ - type: Transform
+ pos: 75.854324,97.67393
+ parent: 1
+ - uid: 26991
+ components:
+ - type: Transform
+ pos: 61.51531,75.246796
+ parent: 1
+ - uid: 28658
+ components:
+ - type: Transform
+ pos: 120.509995,48.82377
+ parent: 1
+- proto: BookAtmosAirAlarms
+ entities:
+ - uid: 27305
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosDistro
+ entities:
+ - uid: 27304
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosVentsMore
+ entities:
+ - uid: 27303
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosWaste
+ entities:
+ - uid: 27302
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookBartendersManual
+ entities:
+ - uid: 26540
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 104.53802,107.54664
+ parent: 1
+ - uid: 27295
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookChemicalCompendium
+ entities:
+ - uid: 27291
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookEngineersHandbook
+ entities:
+ - uid: 27290
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToCookForFortySpaceman
+ entities:
+ - uid: 27289
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToKeepStationClean
+ entities:
+ - uid: 27297
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToRockAndStone
+ entities:
+ - uid: 27298
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToSurvive
+ entities:
+ - uid: 27300
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookJanitorTale
+ entities:
+ - uid: 34569
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 153.42917,130.58275
+ parent: 1
+- proto: BookLeafLoversSecret
+ entities:
+ - uid: 27301
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookMedicalReferenceBook
+ entities:
+ - uid: 23683
+ components:
+ - type: Transform
+ pos: 84.5,92.5
+ parent: 1
+ - uid: 27299
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookNames
+ entities:
+ - uid: 34565
+ components:
+ - type: Transform
+ pos: 161.5,74.5
+ parent: 1
+ - uid: 34567
+ components:
+ - type: Transform
+ pos: 158.5,68.5
+ parent: 1
+- proto: BookNarsieLegend
+ entities:
+ - uid: 27926
+ components:
+ - type: Transform
+ pos: 66.5,70.5
+ parent: 1
+- proto: BooksBag
+ entities:
+ - uid: 27307
+ components:
+ - type: Transform
+ pos: 80.522736,49.414192
+ parent: 1
+- proto: BookScientistsGuidebook
+ entities:
+ - uid: 27294
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookSecurity
+ entities:
+ - uid: 27293
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: Bookshelf
+ entities:
+ - uid: 27287
+ components:
+ - type: Transform
+ pos: 78.5,47.5
+ parent: 1
+ - type: Storage
+ storedItems:
+ 27288:
+ position: 0,0
+ _rotation: South
+ 27289:
+ position: 1,0
+ _rotation: South
+ 27290:
+ position: 2,0
+ _rotation: South
+ 27291:
+ position: 3,0
+ _rotation: South
+ 27292:
+ position: 4,0
+ _rotation: South
+ 27293:
+ position: 5,0
+ _rotation: South
+ 27294:
+ position: 6,0
+ _rotation: South
+ 27295:
+ position: 7,0
+ _rotation: South
+ 27296:
+ position: 8,0
+ _rotation: South
+ 27297:
+ position: 9,0
+ _rotation: South
+ 27298:
+ position: 10,0
+ _rotation: South
+ 27299:
+ position: 11,0
+ _rotation: South
+ 27300:
+ position: 12,0
+ _rotation: South
+ 27301:
+ position: 13,0
+ _rotation: South
+ 27302:
+ position: 14,0
+ _rotation: South
+ 27303:
+ position: 15,0
+ _rotation: South
+ 27304:
+ position: 0,2
+ _rotation: South
+ 27305:
+ position: 1,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27288
+ - 27289
+ - 27290
+ - 27291
+ - 27292
+ - 27293
+ - 27294
+ - 27295
+ - 27296
+ - 27297
+ - 27298
+ - 27299
+ - 27300
+ - 27301
+ - 27302
+ - 27303
+ - 27304
+ - 27305
+- proto: BookshelfFilled
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 58.5,120.5
+ parent: 1
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 74.5,61.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 40.5,76.5
+ parent: 1
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 32.5,70.5
+ parent: 1
+ - uid: 2357
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - uid: 6412
+ components:
+ - type: Transform
+ pos: 135.5,44.5
+ parent: 1
+ - uid: 6477
+ components:
+ - type: Transform
+ pos: 80.5,51.5
+ parent: 1
+ - uid: 7578
+ components:
+ - type: Transform
+ pos: 72.5,55.5
+ parent: 1
+ - uid: 7579
+ components:
+ - type: Transform
+ pos: 72.5,57.5
+ parent: 1
+ - uid: 7581
+ components:
+ - type: Transform
+ pos: 72.5,59.5
+ parent: 1
+ - uid: 7583
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - uid: 23394
+ components:
+ - type: Transform
+ pos: 80.5,54.5
+ parent: 1
+ - uid: 23416
+ components:
+ - type: Transform
+ pos: 75.5,54.5
+ parent: 1
+ - uid: 23819
+ components:
+ - type: Transform
+ pos: 72.5,61.5
+ parent: 1
+ - uid: 24296
+ components:
+ - type: Transform
+ pos: 72.5,58.5
+ parent: 1
+ - uid: 24762
+ components:
+ - type: Transform
+ pos: 70.5,51.5
+ parent: 1
+ - uid: 25310
+ components:
+ - type: Transform
+ pos: 74.5,52.5
+ parent: 1
+ - uid: 25613
+ components:
+ - type: Transform
+ pos: 110.5,101.5
+ parent: 1
+ - uid: 26534
+ components:
+ - type: Transform
+ pos: 109.5,101.5
+ parent: 1
+ - uid: 26930
+ components:
+ - type: Transform
+ pos: 70.5,67.5
+ parent: 1
+ - uid: 26931
+ components:
+ - type: Transform
+ pos: 68.5,67.5
+ parent: 1
+ - uid: 26932
+ components:
+ - type: Transform
+ pos: 69.5,67.5
+ parent: 1
+ - uid: 26942
+ components:
+ - type: Transform
+ pos: 85.5,70.5
+ parent: 1
+ - uid: 26945
+ components:
+ - type: Transform
+ pos: 85.5,78.5
+ parent: 1
+ - uid: 26958
+ components:
+ - type: Transform
+ pos: 86.5,78.5
+ parent: 1
+ - uid: 26964
+ components:
+ - type: Transform
+ pos: 86.5,70.5
+ parent: 1
+ - uid: 27109
+ components:
+ - type: Transform
+ pos: 73.5,61.5
+ parent: 1
+ - uid: 27110
+ components:
+ - type: Transform
+ pos: 80.5,61.5
+ parent: 1
+ - uid: 27599
+ components:
+ - type: Transform
+ pos: 71.5,51.5
+ parent: 1
+ - uid: 34545
+ components:
+ - type: Transform
+ pos: 158.5,76.5
+ parent: 1
+ - uid: 34546
+ components:
+ - type: Transform
+ pos: 161.5,76.5
+ parent: 1
+ - uid: 34547
+ components:
+ - type: Transform
+ pos: 161.5,73.5
+ parent: 1
+ - uid: 34548
+ components:
+ - type: Transform
+ pos: 158.5,73.5
+ parent: 1
+ - uid: 34549
+ components:
+ - type: Transform
+ pos: 160.5,73.5
+ parent: 1
+ - uid: 34550
+ components:
+ - type: Transform
+ pos: 158.5,71.5
+ parent: 1
+ - uid: 34551
+ components:
+ - type: Transform
+ pos: 159.5,71.5
+ parent: 1
+ - uid: 34552
+ components:
+ - type: Transform
+ pos: 160.5,71.5
+ parent: 1
+ - uid: 34553
+ components:
+ - type: Transform
+ pos: 161.5,71.5
+ parent: 1
+ - uid: 34554
+ components:
+ - type: Transform
+ pos: 161.5,70.5
+ parent: 1
+ - uid: 34555
+ components:
+ - type: Transform
+ pos: 161.5,69.5
+ parent: 1
+ - uid: 34556
+ components:
+ - type: Transform
+ pos: 161.5,68.5
+ parent: 1
+ - uid: 35213
+ components:
+ - type: Transform
+ pos: 74.5,53.5
+ parent: 1
+ - uid: 35419
+ components:
+ - type: Transform
+ pos: 75.5,53.5
+ parent: 1
+ - uid: 35425
+ components:
+ - type: Transform
+ pos: 79.5,54.5
+ parent: 1
+- proto: BookSpaceEncyclopedia
+ entities:
+ - uid: 27296
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookSpaceLaw
+ entities:
+ - uid: 3404
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+ - uid: 23057
+ components:
+ - type: Transform
+ pos: 135.49847,45.54976
+ parent: 1
+ - uid: 27292
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+ - uid: 33870
+ components:
+ - type: Transform
+ pos: 104.57031,41.499874
+ parent: 1
+ - uid: 35619
+ components:
+ - type: Transform
+ pos: 63.538307,159.75052
+ parent: 1
+- proto: BookTemple
+ entities:
+ - uid: 34568
+ components:
+ - type: Transform
+ pos: 83.5,75.5
+ parent: 1
+- proto: BookTheBookOfControl
+ entities:
+ - uid: 27288
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BoozeDispenser
+ entities:
+ - uid: 2959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 32102
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+- proto: BoozeDispenserEmpty
+ entities:
+ - uid: 35140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,169.5
+ parent: 1
+- proto: BorgCharger
+ entities:
+ - uid: 4928
+ components:
+ - type: Transform
+ pos: 54.5,116.5
+ parent: 1
+ - uid: 6136
+ components:
+ - type: Transform
+ pos: 48.5,35.5
+ parent: 1
+ - uid: 6137
+ components:
+ - type: Transform
+ pos: 46.5,35.5
+ parent: 1
+ - uid: 13543
+ components:
+ - type: Transform
+ pos: 44.5,18.5
+ parent: 1
+ - uid: 13544
+ components:
+ - type: Transform
+ pos: 44.5,30.5
+ parent: 1
+ - uid: 20896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,93.5
+ parent: 1
+ - uid: 20897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,94.5
+ parent: 1
+ - uid: 22740
+ components:
+ - type: Transform
+ pos: 124.5,83.5
+ parent: 1
+ - uid: 23938
+ components:
+ - type: Transform
+ pos: 42.5,44.5
+ parent: 1
+ - uid: 24718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,67.5
+ parent: 1
+- proto: BoxBeaker
+ entities:
+ - uid: 18057
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 88.592926,106.61727
+ parent: 1
+ - uid: 18058
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 89.50947,101.514656
+ parent: 1
+ - uid: 18212
+ components:
+ - type: Transform
+ pos: 65.58365,96.59052
+ parent: 1
+ - uid: 20473
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.060738,110.85934
+ parent: 1
+- proto: BoxBeanbag
+ entities:
+ - uid: 22781
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 135.69716,63.84542
+ parent: 1
+ - uid: 22788
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.31812,63.877724
+ parent: 1
+ - uid: 26644
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 110.34818,104.72892
+ parent: 1
+- proto: BoxBodyBag
+ entities:
+ - uid: 17974
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.523254,82.9161
+ parent: 1
+ - uid: 18094
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.53573,92.77651
+ parent: 1
+- proto: BoxCandle
+ entities:
+ - uid: 27062
+ components:
+ - type: Transform
+ pos: 72.56927,74.39125
+ parent: 1
+- proto: BoxFlashbang
+ entities:
+ - uid: 22803
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.31812,63.44717
+ parent: 1
+- proto: BoxFolderBase
+ entities:
+ - uid: 4524
+ components:
+ - type: Transform
+ pos: 101.40392,46.406807
+ parent: 1
+ - uid: 4532
+ components:
+ - type: Transform
+ pos: 101.54976,46.594307
+ parent: 1
+ - uid: 18935
+ components:
+ - type: Transform
+ pos: 106.90365,39.72788
+ parent: 1
+ - uid: 23099
+ components:
+ - type: Transform
+ pos: 101.664345,46.438057
+ parent: 1
+- proto: BoxFolderBlack
+ entities:
+ - uid: 4422
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 94.75453,42.530785
+ parent: 1
+- proto: BoxFolderBlue
+ entities:
+ - uid: 4412
+ components:
+ - type: Transform
+ pos: 91.56149,43.48955
+ parent: 1
+ - uid: 13642
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 33545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.68781,22.167282
+ parent: 1
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 96.47501,41.751804
+ parent: 1
+ - uid: 4480
+ components:
+ - type: Transform
+ pos: 101.49985,43.48957
+ parent: 1
+ - uid: 4481
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 93.18654,48.61397
+ parent: 1
+ - uid: 4483
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 93.57811,48.393818
+ parent: 1
+ - uid: 4525
+ components:
+ - type: Transform
+ pos: 71.52162,61.557404
+ parent: 1
+ - uid: 13537
+ components:
+ - type: Transform
+ pos: 40.484188,58.718796
+ parent: 1
+ - uid: 13631
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 136.69763,90.41654
+ parent: 1
+ - uid: 13633
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 134.36858,92.19319
+ parent: 1
+ - uid: 18148
+ components:
+ - type: Transform
+ pos: 61.86632,110.61483
+ parent: 1
+ - uid: 18149
+ components:
+ - type: Transform
+ pos: 62.477432,110.510666
+ parent: 1
+ - uid: 19518
+ components:
+ - type: Transform
+ pos: 143.5,110.5
+ parent: 1
+ - uid: 19539
+ components:
+ - type: Transform
+ pos: 137.5,97.5
+ parent: 1
+ - uid: 21007
+ components:
+ - type: Transform
+ pos: 40.5824,91.72987
+ parent: 1
+ - uid: 21008
+ components:
+ - type: Transform
+ pos: 35.540737,89.58404
+ parent: 1
+ - uid: 21009
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 36.200592,113.804245
+ parent: 1
+ - uid: 21010
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.474518,114.85446
+ parent: 1
+ - uid: 23274
+ components:
+ - type: Transform
+ pos: 77.51595,54.507233
+ parent: 1
+ - uid: 23772
+ components:
+ - type: Transform
+ pos: 59.678555,57.596046
+ parent: 1
+ - uid: 27072
+ components:
+ - type: Transform
+ pos: 72.64537,75.59257
+ parent: 1
+ - uid: 33160
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 101.91225,19.403854
+ parent: 1
+ - uid: 35618
+ components:
+ - type: Transform
+ pos: 68.6225,160.56998
+ parent: 1
+- proto: BoxFolderGrey
+ entities:
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 34.5,113.5
+ parent: 1
+- proto: BoxFolderRed
+ entities:
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 93.539665,41.662113
+ parent: 1
+ - uid: 13643
+ components:
+ - type: Transform
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 23102
+ components:
+ - type: Transform
+ pos: 153.4666,63.480404
+ parent: 1
+- proto: BoxFolderYellow
+ entities:
+ - uid: 4420
+ components:
+ - type: Transform
+ pos: 98.50941,43.479153
+ parent: 1
+ - uid: 13641
+ components:
+ - type: Transform
+ pos: 36.56971,48.55757
+ parent: 1
+- proto: BoxHandcuff
+ entities:
+ - uid: 22721
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 153.83658,58.557808
+ parent: 1
+ - uid: 22806
+ components:
+ - type: Transform
+ pos: 135.56174,72.2539
+ parent: 1
+ - uid: 23138
+ components:
+ - type: Transform
+ pos: 142.50137,52.19984
+ parent: 1
+- proto: BoxInflatable
+ entities:
+ - uid: 4735
+ components:
+ - type: Transform
+ pos: 94.5,107.5
+ parent: 1
+- proto: BoxingBell
+ entities:
+ - uid: 26835
+ components:
+ - type: Transform
+ pos: 102.5,89.5
+ parent: 1
+- proto: BoxLatexGloves
+ entities:
+ - uid: 17700
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.4576,93.57337
+ parent: 1
+- proto: BoxLightbulb
+ entities:
+ - uid: 29649
+ components:
+ - type: Transform
+ pos: 159.48875,127.97202
+ parent: 1
+- proto: BoxLightMixed
+ entities:
+ - uid: 29650
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 159.55157,126.8925
+ parent: 1
+- proto: BoxLighttube
+ entities:
+ - uid: 29648
+ components:
+ - type: Transform
+ pos: 159.67625,127.97202
+ parent: 1
+- proto: BoxMouthSwab
+ entities:
+ - uid: 23067
+ components:
+ - type: Transform
+ pos: 128.44514,49.81559
+ parent: 1
+- proto: BoxPillCanister
+ entities:
+ - uid: 18059
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 87.43667,110.63811
+ parent: 1
+- proto: BoxShotgunPractice
+ entities:
+ - uid: 22697
+ components:
+ - type: Transform
+ pos: 152.47392,66.59027
+ parent: 1
+- proto: BoxSyringe
+ entities:
+ - uid: 17695
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 74.541824,97.56976
+ parent: 1
+- proto: BoxZiptie
+ entities:
+ - uid: 22722
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.5877,57.619534
+ parent: 1
+ - uid: 22758
+ components:
+ - type: Transform
+ pos: 135.43674,73.41015
+ parent: 1
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 105.440575,44.543713
+ parent: 1
+ - uid: 13611
+ components:
+ - type: Transform
+ pos: 34.48313,70.586555
+ parent: 1
+- proto: BrigTimer
+ entities:
+ - uid: 22837
+ components:
+ - type: MetaData
+ name: cell 1 green brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,72.5
+ parent: 1
+ - uid: 22838
+ components:
+ - type: MetaData
+ name: cell 2 orange brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,69.5
+ parent: 1
+ - uid: 22839
+ components:
+ - type: MetaData
+ name: cell 3 purple brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,66.5
+ parent: 1
+ - uid: 22840
+ components:
+ - type: MetaData
+ name: cell 4 blue brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,63.5
+ parent: 1
+- proto: BrokenBottle
+ entities:
+ - uid: 33540
+ components:
+ - type: Transform
+ pos: 101.46009,28.48259
+ parent: 1
+- proto: Brutepack10Lingering
+ entities:
+ - uid: 17677
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 71.46992,94.604095
+ parent: 1
+- proto: Bucket
+ entities:
+ - uid: 26635
+ components:
+ - type: Transform
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26664
+ components:
+ - type: Transform
+ pos: 101.641075,91.62194
+ parent: 1
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 7722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,146.5
+ parent: 1
+ - uid: 9389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,120.5
+ parent: 1
+ - uid: 13202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,144.5
+ parent: 1
+ - uid: 15033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,153.5
+ parent: 1
+ - uid: 15039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,153.5
+ parent: 1
+ - uid: 15040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,153.5
+ parent: 1
+ - uid: 15041
+ components:
+ - type: MetaData
+ name: button frame
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,139.5
+ parent: 1
+ - uid: 15042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,139.5
+ parent: 1
+ - uid: 19537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,111.5
+ parent: 1
+ - uid: 19538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,111.5
+ parent: 1
+ - uid: 19674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,85.5
+ parent: 1
+ - uid: 19675
+ components:
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - uid: 20905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,88.5
+ parent: 1
+ - uid: 22947
+ components:
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - uid: 23620
+ components:
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - uid: 29090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,95.5
+ parent: 1
+ - uid: 33910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,100.5
+ parent: 1
+ - uid: 35230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,141.5
+ parent: 1
+ - uid: 36774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,134.5
+ parent: 1
+ - uid: 37305
+ components:
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - uid: 37306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,124.5
+ parent: 1
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - uid: 2547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,61.5
+ parent: 1
+ - uid: 37368
+ components:
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+- proto: ButtonFrameExit
+ entities:
+ - uid: 22927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 25493
+ components:
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - uid: 31969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,102.5
+ parent: 1
+ - uid: 37372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,67.5
+ parent: 1
+- proto: ButtonFrameGrey
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,91.5
+ parent: 1
+ - uid: 2610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,96.5
+ parent: 1
+ - uid: 4927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,119.5
+ parent: 1
+ - uid: 5735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - uid: 14519
+ components:
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - uid: 21065
+ components:
+ - type: Transform
+ pos: 123.5,102.5
+ parent: 1
+ - uid: 23276
+ components:
+ - type: MetaData
+ name: button frame
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,61.5
+ parent: 1
+ - uid: 25502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,61.5
+ parent: 1
+ - uid: 26491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,104.5
+ parent: 1
+ - uid: 28137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,96.5
+ parent: 1
+ - uid: 29590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,125.5
+ parent: 1
+ - uid: 29746
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - uid: 29747
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - uid: 29748
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - uid: 29749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,140.5
+ parent: 1
+ - uid: 29750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,140.5
+ parent: 1
+ - uid: 29751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,140.5
+ parent: 1
+ - uid: 34636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,62.5
+ parent: 1
+ - uid: 34909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,119.5
+ parent: 1
+ - uid: 34910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,119.5
+ parent: 1
+ - uid: 34936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,119.5
+ parent: 1
+ - uid: 37409
+ components:
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - uid: 37422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,104.5
+ parent: 1
+ - uid: 37564
+ components:
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+- proto: ButtonFrameJanitor
+ entities:
+ - uid: 23316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,95.5
+ parent: 1
+ - uid: 36816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,101.5
+ parent: 1
+ - uid: 36823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,122.5
+ parent: 1
+ - uid: 36833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,104.5
+ parent: 1
+ - uid: 36836
+ components:
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - uid: 36840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,62.5
+ parent: 1
+ - uid: 36842
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 120.5,58.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 135.5,118.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 132.5,118.5
+ parent: 1
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 133.5,118.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 77.5,151.5
+ parent: 1
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 71.5,56.5
+ parent: 1
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 59.5,107.5
+ parent: 1
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 56.5,80.5
+ parent: 1
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 56.5,81.5
+ parent: 1
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: 61.5,37.5
+ parent: 1
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: 60.5,36.5
+ parent: 1
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: 57.5,36.5
+ parent: 1
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: 58.5,36.5
+ parent: 1
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 57.5,37.5
+ parent: 1
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 57.5,38.5
+ parent: 1
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 59.5,36.5
+ parent: 1
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 70.5,17.5
+ parent: 1
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 71.5,17.5
+ parent: 1
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 1770
+ components:
+ - type: Transform
+ pos: 72.5,17.5
+ parent: 1
+ - uid: 1771
+ components:
+ - type: Transform
+ pos: 73.5,17.5
+ parent: 1
+ - uid: 1779
+ components:
+ - type: Transform
+ pos: 74.5,17.5
+ parent: 1
+ - uid: 1781
+ components:
+ - type: Transform
+ pos: 76.5,17.5
+ parent: 1
+ - uid: 1782
+ components:
+ - type: Transform
+ pos: 77.5,17.5
+ parent: 1
+ - uid: 1787
+ components:
+ - type: Transform
+ pos: 78.5,17.5
+ parent: 1
+ - uid: 1789
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 1
+ - uid: 1790
+ components:
+ - type: Transform
+ pos: 80.5,17.5
+ parent: 1
+ - uid: 1792
+ components:
+ - type: Transform
+ pos: 81.5,17.5
+ parent: 1
+ - uid: 1794
+ components:
+ - type: Transform
+ pos: 82.5,17.5
+ parent: 1
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 83.5,17.5
+ parent: 1
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: 123.5,170.5
+ parent: 1
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 1878
+ components:
+ - type: Transform
+ pos: 64.5,15.5
+ parent: 1
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - uid: 1921
+ components:
+ - type: Transform
+ pos: 87.5,85.5
+ parent: 1
+ - uid: 1922
+ components:
+ - type: Transform
+ pos: 88.5,87.5
+ parent: 1
+ - uid: 1923
+ components:
+ - type: Transform
+ pos: 90.5,85.5
+ parent: 1
+ - uid: 1934
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 76.5,133.5
+ parent: 1
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: 76.5,128.5
+ parent: 1
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: 64.5,17.5
+ parent: 1
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 76.5,129.5
+ parent: 1
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: 81.5,149.5
+ parent: 1
+ - uid: 2139
+ components:
+ - type: Transform
+ pos: 76.5,132.5
+ parent: 1
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 76.5,131.5
+ parent: 1
+ - uid: 2213
+ components:
+ - type: Transform
+ pos: 42.5,48.5
+ parent: 1
+ - uid: 2283
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - uid: 2288
+ components:
+ - type: Transform
+ pos: 61.5,38.5
+ parent: 1
+ - uid: 2425
+ components:
+ - type: Transform
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 2427
+ components:
+ - type: Transform
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 2440
+ components:
+ - type: Transform
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 2441
+ components:
+ - type: Transform
+ pos: 61.5,39.5
+ parent: 1
+ - uid: 2463
+ components:
+ - type: Transform
+ pos: 76.5,135.5
+ parent: 1
+ - uid: 2465
+ components:
+ - type: Transform
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 2466
+ components:
+ - type: Transform
+ pos: 76.5,139.5
+ parent: 1
+ - uid: 2483
+ components:
+ - type: Transform
+ pos: 75.5,148.5
+ parent: 1
+ - uid: 2484
+ components:
+ - type: Transform
+ pos: 75.5,125.5
+ parent: 1
+ - uid: 2487
+ components:
+ - type: Transform
+ pos: 76.5,137.5
+ parent: 1
+ - uid: 2492
+ components:
+ - type: Transform
+ pos: 70.5,64.5
+ parent: 1
+ - uid: 2497
+ components:
+ - type: Transform
+ pos: 56.5,116.5
+ parent: 1
+ - uid: 2514
+ components:
+ - type: Transform
+ pos: 76.5,146.5
+ parent: 1
+ - uid: 2545
+ components:
+ - type: Transform
+ pos: 59.5,40.5
+ parent: 1
+ - uid: 2549
+ components:
+ - type: Transform
+ pos: 76.5,147.5
+ parent: 1
+ - uid: 2614
+ components:
+ - type: Transform
+ pos: 57.5,39.5
+ parent: 1
+ - uid: 2629
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 2631
+ components:
+ - type: Transform
+ pos: 106.5,41.5
+ parent: 1
+ - uid: 2645
+ components:
+ - type: Transform
+ pos: 80.5,58.5
+ parent: 1
+ - uid: 2646
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - uid: 2647
+ components:
+ - type: Transform
+ pos: 74.5,57.5
+ parent: 1
+ - uid: 2649
+ components:
+ - type: Transform
+ pos: 80.5,56.5
+ parent: 1
+ - uid: 2652
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 2666
+ components:
+ - type: Transform
+ pos: 74.5,56.5
+ parent: 1
+ - uid: 2687
+ components:
+ - type: Transform
+ pos: 74.5,58.5
+ parent: 1
+ - uid: 2705
+ components:
+ - type: Transform
+ pos: 74.5,59.5
+ parent: 1
+ - uid: 2718
+ components:
+ - type: Transform
+ pos: 76.5,138.5
+ parent: 1
+ - uid: 2719
+ components:
+ - type: Transform
+ pos: 79.5,139.5
+ parent: 1
+ - uid: 2723
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 2726
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 2727
+ components:
+ - type: Transform
+ pos: 85.5,142.5
+ parent: 1
+ - uid: 2728
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 2729
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 2730
+ components:
+ - type: Transform
+ pos: 79.5,149.5
+ parent: 1
+ - uid: 2733
+ components:
+ - type: Transform
+ pos: 76.5,145.5
+ parent: 1
+ - uid: 2734
+ components:
+ - type: Transform
+ pos: 76.5,144.5
+ parent: 1
+ - uid: 2735
+ components:
+ - type: Transform
+ pos: 80.5,149.5
+ parent: 1
+ - uid: 2739
+ components:
+ - type: Transform
+ pos: 99.5,130.5
+ parent: 1
+ - uid: 2757
+ components:
+ - type: Transform
+ pos: 76.5,51.5
+ parent: 1
+ - uid: 2764
+ components:
+ - type: Transform
+ pos: 61.5,40.5
+ parent: 1
+ - uid: 2765
+ components:
+ - type: Transform
+ pos: 61.5,36.5
+ parent: 1
+ - uid: 2770
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 2772
+ components:
+ - type: Transform
+ pos: 77.5,127.5
+ parent: 1
+ - uid: 2773
+ components:
+ - type: Transform
+ pos: 77.5,128.5
+ parent: 1
+ - uid: 2774
+ components:
+ - type: Transform
+ pos: 77.5,126.5
+ parent: 1
+ - uid: 2776
+ components:
+ - type: Transform
+ pos: 85.5,136.5
+ parent: 1
+ - uid: 2777
+ components:
+ - type: Transform
+ pos: 85.5,137.5
+ parent: 1
+ - uid: 2802
+ components:
+ - type: Transform
+ pos: 75.5,51.5
+ parent: 1
+ - uid: 2816
+ components:
+ - type: Transform
+ pos: 74.5,51.5
+ parent: 1
+ - uid: 2826
+ components:
+ - type: Transform
+ pos: 57.5,40.5
+ parent: 1
+ - uid: 2834
+ components:
+ - type: Transform
+ pos: 85.5,141.5
+ parent: 1
+ - uid: 2836
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 2837
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 2840
+ components:
+ - type: Transform
+ pos: 85.5,133.5
+ parent: 1
+ - uid: 2841
+ components:
+ - type: Transform
+ pos: 85.5,134.5
+ parent: 1
+ - uid: 2843
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 2844
+ components:
+ - type: Transform
+ pos: 85.5,129.5
+ parent: 1
+ - uid: 2880
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 2881
+ components:
+ - type: Transform
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 2883
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 2885
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 2897
+ components:
+ - type: Transform
+ pos: 80.5,145.5
+ parent: 1
+ - uid: 2898
+ components:
+ - type: Transform
+ pos: 79.5,145.5
+ parent: 1
+ - uid: 2899
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 2902
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 2903
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 2947
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - uid: 2949
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 2981
+ components:
+ - type: Transform
+ pos: 71.5,54.5
+ parent: 1
+ - uid: 3042
+ components:
+ - type: Transform
+ pos: 85.5,144.5
+ parent: 1
+ - uid: 3079
+ components:
+ - type: Transform
+ pos: 109.5,147.5
+ parent: 1
+ - uid: 3081
+ components:
+ - type: Transform
+ pos: 110.5,147.5
+ parent: 1
+ - uid: 3128
+ components:
+ - type: Transform
+ pos: 106.5,103.5
+ parent: 1
+ - uid: 3135
+ components:
+ - type: Transform
+ pos: 78.5,51.5
+ parent: 1
+ - uid: 3151
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 3179
+ components:
+ - type: Transform
+ pos: 79.5,51.5
+ parent: 1
+ - uid: 3201
+ components:
+ - type: Transform
+ pos: 76.5,141.5
+ parent: 1
+ - uid: 3203
+ components:
+ - type: Transform
+ pos: 99.5,160.5
+ parent: 1
+ - uid: 3209
+ components:
+ - type: Transform
+ pos: 76.5,140.5
+ parent: 1
+ - uid: 3211
+ components:
+ - type: Transform
+ pos: 76.5,136.5
+ parent: 1
+ - uid: 3212
+ components:
+ - type: Transform
+ pos: 84.5,127.5
+ parent: 1
+ - uid: 3262
+ components:
+ - type: Transform
+ pos: 113.5,170.5
+ parent: 1
+ - uid: 3268
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 3288
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 3319
+ components:
+ - type: Transform
+ pos: 144.5,127.5
+ parent: 1
+ - uid: 3339
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 3345
+ components:
+ - type: Transform
+ pos: 144.5,126.5
+ parent: 1
+ - uid: 3347
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 1
+ - uid: 3352
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 3355
+ components:
+ - type: Transform
+ pos: 76.5,134.5
+ parent: 1
+ - uid: 3356
+ components:
+ - type: Transform
+ pos: 76.5,150.5
+ parent: 1
+ - uid: 3363
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 3386
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 1
+ - uid: 3400
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 3407
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 3446
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 3447
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 3455
+ components:
+ - type: Transform
+ pos: 99.5,64.5
+ parent: 1
+ - uid: 3468
+ components:
+ - type: Transform
+ pos: 63.5,20.5
+ parent: 1
+ - uid: 3469
+ components:
+ - type: Transform
+ pos: 65.5,19.5
+ parent: 1
+ - uid: 3470
+ components:
+ - type: Transform
+ pos: 64.5,19.5
+ parent: 1
+ - uid: 3482
+ components:
+ - type: Transform
+ pos: 157.5,149.5
+ parent: 1
+ - uid: 3497
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 3502
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 3527
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 3558
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 3566
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 3574
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 3575
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 3580
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 3610
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 3613
+ components:
+ - type: Transform
+ pos: 64.5,16.5
+ parent: 1
+ - uid: 3614
+ components:
+ - type: Transform
+ pos: 64.5,18.5
+ parent: 1
+ - uid: 3620
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 3628
+ components:
+ - type: Transform
+ pos: 133.5,122.5
+ parent: 1
+ - uid: 3639
+ components:
+ - type: Transform
+ pos: 78.5,139.5
+ parent: 1
+ - uid: 3645
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 3646
+ components:
+ - type: Transform
+ pos: 85.5,149.5
+ parent: 1
+ - uid: 3648
+ components:
+ - type: Transform
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 3649
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 3668
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 3675
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 3693
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 3694
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 3698
+ components:
+ - type: Transform
+ pos: 156.5,98.5
+ parent: 1
+ - uid: 3712
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 3724
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 3729
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 3730
+ components:
+ - type: Transform
+ pos: 95.5,109.5
+ parent: 1
+ - uid: 3732
+ components:
+ - type: Transform
+ pos: 95.5,107.5
+ parent: 1
+ - uid: 3751
+ components:
+ - type: Transform
+ pos: 146.5,89.5
+ parent: 1
+ - uid: 3752
+ components:
+ - type: Transform
+ pos: 144.5,89.5
+ parent: 1
+ - uid: 3753
+ components:
+ - type: Transform
+ pos: 150.5,88.5
+ parent: 1
+ - uid: 3759
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 3760
+ components:
+ - type: Transform
+ pos: 150.5,89.5
+ parent: 1
+ - uid: 3768
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 3771
+ components:
+ - type: Transform
+ pos: 151.5,94.5
+ parent: 1
+ - uid: 3778
+ components:
+ - type: Transform
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: 149.5,95.5
+ parent: 1
+ - uid: 3787
+ components:
+ - type: Transform
+ pos: 147.5,95.5
+ parent: 1
+ - uid: 3800
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 3830
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 3831
+ components:
+ - type: Transform
+ pos: 98.5,113.5
+ parent: 1
+ - uid: 3844
+ components:
+ - type: Transform
+ pos: 108.5,167.5
+ parent: 1
+ - uid: 3856
+ components:
+ - type: Transform
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 3859
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 3906
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 3907
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 3908
+ components:
+ - type: Transform
+ pos: 98.5,109.5
+ parent: 1
+ - uid: 3909
+ components:
+ - type: Transform
+ pos: 98.5,110.5
+ parent: 1
+ - uid: 3910
+ components:
+ - type: Transform
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 3911
+ components:
+ - type: Transform
+ pos: 118.5,109.5
+ parent: 1
+ - uid: 3927
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 3928
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 3941
+ components:
+ - type: Transform
+ pos: 64.5,14.5
+ parent: 1
+ - uid: 3945
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 3981
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 3982
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 3983
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 3984
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 3991
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 4002
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 4003
+ components:
+ - type: Transform
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 4034
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 4045
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 4101
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 4105
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 4113
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 4222
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 4235
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - uid: 4267
+ components:
+ - type: Transform
+ pos: 114.5,39.5
+ parent: 1
+ - uid: 4301
+ components:
+ - type: Transform
+ pos: 43.5,46.5
+ parent: 1
+ - uid: 4304
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 4311
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 4331
+ components:
+ - type: Transform
+ pos: 105.5,40.5
+ parent: 1
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 4339
+ components:
+ - type: Transform
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 4362
+ components:
+ - type: Transform
+ pos: 86.5,35.5
+ parent: 1
+ - uid: 4384
+ components:
+ - type: Transform
+ pos: 95.5,108.5
+ parent: 1
+ - uid: 4390
+ components:
+ - type: Transform
+ pos: 114.5,168.5
+ parent: 1
+ - uid: 4423
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 4489
+ components:
+ - type: Transform
+ pos: 60.5,40.5
+ parent: 1
+ - uid: 4533
+ components:
+ - type: Transform
+ pos: 87.5,35.5
+ parent: 1
+ - uid: 4539
+ components:
+ - type: Transform
+ pos: 58.5,40.5
+ parent: 1
+ - uid: 4545
+ components:
+ - type: Transform
+ pos: 93.5,46.5
+ parent: 1
+ - uid: 4573
+ components:
+ - type: Transform
+ pos: 94.5,46.5
+ parent: 1
+ - uid: 4580
+ components:
+ - type: Transform
+ pos: 95.5,46.5
+ parent: 1
+ - uid: 4582
+ components:
+ - type: Transform
+ pos: 96.5,46.5
+ parent: 1
+ - uid: 4586
+ components:
+ - type: Transform
+ pos: 91.5,46.5
+ parent: 1
+ - uid: 4591
+ components:
+ - type: Transform
+ pos: 92.5,46.5
+ parent: 1
+ - uid: 4612
+ components:
+ - type: Transform
+ pos: 91.5,47.5
+ parent: 1
+ - uid: 4627
+ components:
+ - type: Transform
+ pos: 91.5,48.5
+ parent: 1
+ - uid: 4642
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 4651
+ components:
+ - type: Transform
+ pos: 94.5,48.5
+ parent: 1
+ - uid: 4667
+ components:
+ - type: Transform
+ pos: 93.5,48.5
+ parent: 1
+ - uid: 4682
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 4686
+ components:
+ - type: Transform
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 4687
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4724
+ components:
+ - type: Transform
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 4726
+ components:
+ - type: Transform
+ pos: 106.5,42.5
+ parent: 1
+ - uid: 4733
+ components:
+ - type: Transform
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 4734
+ components:
+ - type: Transform
+ pos: 110.5,170.5
+ parent: 1
+ - uid: 4752
+ components:
+ - type: Transform
+ pos: 44.5,45.5
+ parent: 1
+ - uid: 4757
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 4760
+ components:
+ - type: Transform
+ pos: 76.5,149.5
+ parent: 1
+ - uid: 4822
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 4837
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 4924
+ components:
+ - type: Transform
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 4932
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 4933
+ components:
+ - type: Transform
+ pos: 106.5,44.5
+ parent: 1
+ - uid: 4969
+ components:
+ - type: Transform
+ pos: 148.5,149.5
+ parent: 1
+ - uid: 5015
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 5040
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - uid: 5044
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 5136
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 5159
+ components:
+ - type: Transform
+ pos: 85.5,19.5
+ parent: 1
+ - uid: 5160
+ components:
+ - type: Transform
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 5217
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 5227
+ components:
+ - type: Transform
+ pos: 87.5,19.5
+ parent: 1
+ - uid: 5228
+ components:
+ - type: Transform
+ pos: 88.5,19.5
+ parent: 1
+ - uid: 5240
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 5255
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 5256
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 5257
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 5258
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 5308
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 5322
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 5324
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 5325
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 5336
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 5337
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 5344
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 5350
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 5354
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 5356
+ components:
+ - type: Transform
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 5366
+ components:
+ - type: Transform
+ pos: 71.5,55.5
+ parent: 1
+ - uid: 5375
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 5385
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 5390
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 5417
+ components:
+ - type: Transform
+ pos: 121.5,160.5
+ parent: 1
+ - uid: 5418
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 5419
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 5442
+ components:
+ - type: Transform
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 5443
+ components:
+ - type: Transform
+ pos: 98.5,112.5
+ parent: 1
+ - uid: 5444
+ components:
+ - type: Transform
+ pos: 118.5,110.5
+ parent: 1
+ - uid: 5445
+ components:
+ - type: Transform
+ pos: 118.5,112.5
+ parent: 1
+ - uid: 5446
+ components:
+ - type: Transform
+ pos: 118.5,113.5
+ parent: 1
+ - uid: 5449
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 5459
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 5462
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 5464
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 5499
+ components:
+ - type: Transform
+ pos: 128.5,93.5
+ parent: 1
+ - uid: 5500
+ components:
+ - type: Transform
+ pos: 128.5,92.5
+ parent: 1
+ - uid: 5593
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 5594
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 5595
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 5776
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 5816
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 5823
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 5834
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 5914
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 5916
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 5954
+ components:
+ - type: Transform
+ pos: 76.5,116.5
+ parent: 1
+ - uid: 6075
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 6077
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 6082
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 6086
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 6105
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 6110
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 6112
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 6217
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 6231
+ components:
+ - type: Transform
+ pos: 71.5,53.5
+ parent: 1
+ - uid: 6234
+ components:
+ - type: Transform
+ pos: 71.5,52.5
+ parent: 1
+ - uid: 6245
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6249
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 6252
+ components:
+ - type: Transform
+ pos: 140.5,80.5
+ parent: 1
+ - uid: 6275
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 6280
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 6301
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 6323
+ components:
+ - type: Transform
+ pos: 72.5,52.5
+ parent: 1
+ - uid: 6345
+ components:
+ - type: Transform
+ pos: 72.5,51.5
+ parent: 1
+ - uid: 6352
+ components:
+ - type: Transform
+ pos: 150.5,86.5
+ parent: 1
+ - uid: 6390
+ components:
+ - type: Transform
+ pos: 73.5,51.5
+ parent: 1
+ - uid: 6394
+ components:
+ - type: Transform
+ pos: 159.5,61.5
+ parent: 1
+ - uid: 6430
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 6433
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 6478
+ components:
+ - type: Transform
+ pos: 73.5,60.5
+ parent: 1
+ - uid: 6479
+ components:
+ - type: Transform
+ pos: 72.5,60.5
+ parent: 1
+ - uid: 6480
+ components:
+ - type: Transform
+ pos: 71.5,60.5
+ parent: 1
+ - uid: 6482
+ components:
+ - type: Transform
+ pos: 70.5,60.5
+ parent: 1
+ - uid: 6515
+ components:
+ - type: Transform
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 6530
+ components:
+ - type: Transform
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 6641
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 6779
+ components:
+ - type: Transform
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 6811
+ components:
+ - type: Transform
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 6871
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 6873
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6911
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 6982
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 7022
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 7108
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 7116
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 7171
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 7219
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 7230
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 7235
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 7239
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 7244
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 7247
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 7248
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 7249
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 7290
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 7293
+ components:
+ - type: Transform
+ pos: 163.5,57.5
+ parent: 1
+ - uid: 7298
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 7299
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 7412
+ components:
+ - type: Transform
+ pos: 97.5,130.5
+ parent: 1
+ - uid: 7489
+ components:
+ - type: Transform
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 7587
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 7588
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 7589
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 7591
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 7592
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 7593
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 7594
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7596
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 7600
+ components:
+ - type: Transform
+ pos: 96.5,50.5
+ parent: 1
+ - uid: 7605
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 8141
+ components:
+ - type: Transform
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 8148
+ components:
+ - type: Transform
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 8149
+ components:
+ - type: Transform
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 8152
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 8159
+ components:
+ - type: Transform
+ pos: 138.5,147.5
+ parent: 1
+ - uid: 8161
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 8164
+ components:
+ - type: Transform
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 8206
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 8222
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 8237
+ components:
+ - type: Transform
+ pos: 102.5,20.5
+ parent: 1
+ - uid: 8516
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 8638
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 8701
+ components:
+ - type: Transform
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 8703
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 8705
+ components:
+ - type: Transform
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 8708
+ components:
+ - type: Transform
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 8710
+ components:
+ - type: Transform
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 8735
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 8744
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 8747
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 8765
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 9116
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 9253
+ components:
+ - type: Transform
+ pos: 51.5,106.5
+ parent: 1
+ - uid: 9263
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 9418
+ components:
+ - type: Transform
+ pos: 35.5,96.5
+ parent: 1
+ - uid: 9420
+ components:
+ - type: Transform
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 9421
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 9423
+ components:
+ - type: Transform
+ pos: 77.5,150.5
+ parent: 1
+ - uid: 9427
+ components:
+ - type: Transform
+ pos: 76.5,148.5
+ parent: 1
+ - uid: 9441
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 9484
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 9672
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 9684
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 9697
+ components:
+ - type: Transform
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 9740
+ components:
+ - type: Transform
+ pos: 102.5,21.5
+ parent: 1
+ - uid: 9808
+ components:
+ - type: Transform
+ pos: 114.5,41.5
+ parent: 1
+ - uid: 9995
+ components:
+ - type: Transform
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 10044
+ components:
+ - type: Transform
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 10321
+ components:
+ - type: Transform
+ pos: 157.5,148.5
+ parent: 1
+ - uid: 10384
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 10387
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 10441
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 10442
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 10443
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 10463
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 10487
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 10493
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 10561
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 10719
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 10720
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 10721
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 10791
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 11118
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11119
+ components:
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 11120
+ components:
+ - type: Transform
+ pos: 33.5,67.5
+ parent: 1
+ - uid: 11121
+ components:
+ - type: Transform
+ pos: 34.5,67.5
+ parent: 1
+ - uid: 11122
+ components:
+ - type: Transform
+ pos: 35.5,67.5
+ parent: 1
+ - uid: 11123
+ components:
+ - type: Transform
+ pos: 37.5,67.5
+ parent: 1
+ - uid: 11124
+ components:
+ - type: Transform
+ pos: 38.5,67.5
+ parent: 1
+ - uid: 11125
+ components:
+ - type: Transform
+ pos: 40.5,67.5
+ parent: 1
+ - uid: 11126
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 11127
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11128
+ components:
+ - type: Transform
+ pos: 36.5,71.5
+ parent: 1
+ - uid: 11129
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+ - uid: 11130
+ components:
+ - type: Transform
+ pos: 35.5,71.5
+ parent: 1
+ - uid: 11131
+ components:
+ - type: Transform
+ pos: 34.5,71.5
+ parent: 1
+ - uid: 11132
+ components:
+ - type: Transform
+ pos: 33.5,71.5
+ parent: 1
+ - uid: 11133
+ components:
+ - type: Transform
+ pos: 33.5,72.5
+ parent: 1
+ - uid: 11134
+ components:
+ - type: Transform
+ pos: 33.5,73.5
+ parent: 1
+ - uid: 11135
+ components:
+ - type: Transform
+ pos: 33.5,74.5
+ parent: 1
+ - uid: 11136
+ components:
+ - type: Transform
+ pos: 33.5,75.5
+ parent: 1
+ - uid: 11137
+ components:
+ - type: Transform
+ pos: 34.5,75.5
+ parent: 1
+ - uid: 11138
+ components:
+ - type: Transform
+ pos: 35.5,75.5
+ parent: 1
+ - uid: 11139
+ components:
+ - type: Transform
+ pos: 36.5,75.5
+ parent: 1
+ - uid: 11140
+ components:
+ - type: Transform
+ pos: 37.5,75.5
+ parent: 1
+ - uid: 11141
+ components:
+ - type: Transform
+ pos: 39.5,75.5
+ parent: 1
+ - uid: 11142
+ components:
+ - type: Transform
+ pos: 38.5,75.5
+ parent: 1
+ - uid: 11143
+ components:
+ - type: Transform
+ pos: 39.5,74.5
+ parent: 1
+ - uid: 11144
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - uid: 11145
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11146
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 11147
+ components:
+ - type: Transform
+ pos: 38.5,71.5
+ parent: 1
+ - uid: 11148
+ components:
+ - type: Transform
+ pos: 37.5,71.5
+ parent: 1
+ - uid: 11149
+ components:
+ - type: Transform
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11150
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11151
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 11152
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 11153
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 11154
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 11155
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 11156
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 11157
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11158
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 11159
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 11171
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 11184
+ components:
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 11185
+ components:
+ - type: Transform
+ pos: 49.5,66.5
+ parent: 1
+ - uid: 11186
+ components:
+ - type: Transform
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11187
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11188
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11189
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11190
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11191
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 11192
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 11193
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 11194
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 11195
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 11196
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 11197
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 11198
+ components:
+ - type: Transform
+ pos: 43.5,57.5
+ parent: 1
+ - uid: 11199
+ components:
+ - type: Transform
+ pos: 43.5,56.5
+ parent: 1
+ - uid: 11200
+ components:
+ - type: Transform
+ pos: 43.5,55.5
+ parent: 1
+ - uid: 11201
+ components:
+ - type: Transform
+ pos: 43.5,54.5
+ parent: 1
+ - uid: 11202
+ components:
+ - type: Transform
+ pos: 43.5,52.5
+ parent: 1
+ - uid: 11203
+ components:
+ - type: Transform
+ pos: 43.5,51.5
+ parent: 1
+ - uid: 11204
+ components:
+ - type: Transform
+ pos: 43.5,53.5
+ parent: 1
+ - uid: 11205
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11206
+ components:
+ - type: Transform
+ pos: 43.5,50.5
+ parent: 1
+ - uid: 11208
+ components:
+ - type: Transform
+ pos: 43.5,48.5
+ parent: 1
+ - uid: 11209
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 11210
+ components:
+ - type: Transform
+ pos: 33.5,50.5
+ parent: 1
+ - uid: 11211
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 11212
+ components:
+ - type: Transform
+ pos: 34.5,51.5
+ parent: 1
+ - uid: 11213
+ components:
+ - type: Transform
+ pos: 34.5,52.5
+ parent: 1
+ - uid: 11214
+ components:
+ - type: Transform
+ pos: 34.5,53.5
+ parent: 1
+ - uid: 11215
+ components:
+ - type: Transform
+ pos: 34.5,54.5
+ parent: 1
+ - uid: 11216
+ components:
+ - type: Transform
+ pos: 34.5,55.5
+ parent: 1
+ - uid: 11217
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 1
+ - uid: 11218
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 1
+ - uid: 11219
+ components:
+ - type: Transform
+ pos: 34.5,59.5
+ parent: 1
+ - uid: 11220
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 1
+ - uid: 11221
+ components:
+ - type: Transform
+ pos: 34.5,61.5
+ parent: 1
+ - uid: 11222
+ components:
+ - type: Transform
+ pos: 34.5,62.5
+ parent: 1
+ - uid: 11223
+ components:
+ - type: Transform
+ pos: 34.5,57.5
+ parent: 1
+ - uid: 11224
+ components:
+ - type: Transform
+ pos: 35.5,62.5
+ parent: 1
+ - uid: 11225
+ components:
+ - type: Transform
+ pos: 36.5,62.5
+ parent: 1
+ - uid: 11226
+ components:
+ - type: Transform
+ pos: 37.5,62.5
+ parent: 1
+ - uid: 11227
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - uid: 11228
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - uid: 11229
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - uid: 11230
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - uid: 11231
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - uid: 11232
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - uid: 11233
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - uid: 11234
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - uid: 11235
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - uid: 11236
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - uid: 11237
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - uid: 11238
+ components:
+ - type: Transform
+ pos: 37.5,52.5
+ parent: 1
+ - uid: 11239
+ components:
+ - type: Transform
+ pos: 36.5,52.5
+ parent: 1
+ - uid: 11240
+ components:
+ - type: Transform
+ pos: 35.5,52.5
+ parent: 1
+ - uid: 11241
+ components:
+ - type: Transform
+ pos: 38.5,51.5
+ parent: 1
+ - uid: 11242
+ components:
+ - type: Transform
+ pos: 38.5,50.5
+ parent: 1
+ - uid: 11243
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11244
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 11245
+ components:
+ - type: Transform
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 11246
+ components:
+ - type: Transform
+ pos: 52.5,60.5
+ parent: 1
+ - uid: 11247
+ components:
+ - type: Transform
+ pos: 52.5,59.5
+ parent: 1
+ - uid: 11248
+ components:
+ - type: Transform
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11249
+ components:
+ - type: Transform
+ pos: 52.5,57.5
+ parent: 1
+ - uid: 11250
+ components:
+ - type: Transform
+ pos: 52.5,56.5
+ parent: 1
+ - uid: 11251
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 11252
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 11253
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 11254
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11255
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11259
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 11261
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 11262
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11263
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11264
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11265
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11267
+ components:
+ - type: Transform
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 11268
+ components:
+ - type: Transform
+ pos: 61.5,57.5
+ parent: 1
+ - uid: 11269
+ components:
+ - type: Transform
+ pos: 61.5,58.5
+ parent: 1
+ - uid: 11270
+ components:
+ - type: Transform
+ pos: 60.5,58.5
+ parent: 1
+ - uid: 11271
+ components:
+ - type: Transform
+ pos: 59.5,58.5
+ parent: 1
+ - uid: 11272
+ components:
+ - type: Transform
+ pos: 58.5,58.5
+ parent: 1
+ - uid: 11273
+ components:
+ - type: Transform
+ pos: 57.5,58.5
+ parent: 1
+ - uid: 11274
+ components:
+ - type: Transform
+ pos: 56.5,58.5
+ parent: 1
+ - uid: 11275
+ components:
+ - type: Transform
+ pos: 56.5,57.5
+ parent: 1
+ - uid: 11276
+ components:
+ - type: Transform
+ pos: 56.5,56.5
+ parent: 1
+ - uid: 11277
+ components:
+ - type: Transform
+ pos: 56.5,55.5
+ parent: 1
+ - uid: 11278
+ components:
+ - type: Transform
+ pos: 57.5,55.5
+ parent: 1
+ - uid: 11279
+ components:
+ - type: Transform
+ pos: 58.5,55.5
+ parent: 1
+ - uid: 11280
+ components:
+ - type: Transform
+ pos: 59.5,55.5
+ parent: 1
+ - uid: 11281
+ components:
+ - type: Transform
+ pos: 60.5,55.5
+ parent: 1
+ - uid: 11282
+ components:
+ - type: Transform
+ pos: 61.5,55.5
+ parent: 1
+ - uid: 11283
+ components:
+ - type: Transform
+ pos: 61.5,56.5
+ parent: 1
+ - uid: 11285
+ components:
+ - type: Transform
+ pos: 54.5,51.5
+ parent: 1
+ - uid: 11286
+ components:
+ - type: Transform
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 11287
+ components:
+ - type: Transform
+ pos: 56.5,51.5
+ parent: 1
+ - uid: 11288
+ components:
+ - type: Transform
+ pos: 57.5,51.5
+ parent: 1
+ - uid: 11289
+ components:
+ - type: Transform
+ pos: 58.5,51.5
+ parent: 1
+ - uid: 11290
+ components:
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+ - uid: 11291
+ components:
+ - type: Transform
+ pos: 60.5,51.5
+ parent: 1
+ - uid: 11293
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 11294
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 11295
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 11296
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 11297
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 11298
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 11299
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 11300
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 11301
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 11302
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 11303
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 11304
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 11305
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 11306
+ components:
+ - type: Transform
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 11307
+ components:
+ - type: Transform
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 11308
+ components:
+ - type: Transform
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 11309
+ components:
+ - type: Transform
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 11310
+ components:
+ - type: Transform
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 11311
+ components:
+ - type: Transform
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 11312
+ components:
+ - type: Transform
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 11313
+ components:
+ - type: Transform
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 11314
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 11315
+ components:
+ - type: Transform
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 11316
+ components:
+ - type: Transform
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 11317
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 11318
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 11319
+ components:
+ - type: Transform
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 11320
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 11321
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 11322
+ components:
+ - type: Transform
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 11323
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 11324
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 11325
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 11326
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 11327
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 11328
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 11329
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 11330
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 11331
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 11332
+ components:
+ - type: Transform
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 11369
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 11370
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 11421
+ components:
+ - type: Transform
+ pos: 95.5,106.5
+ parent: 1
+ - uid: 11509
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11510
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 11511
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 11513
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 11514
+ components:
+ - type: Transform
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 11515
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - uid: 11516
+ components:
+ - type: Transform
+ pos: 40.5,50.5
+ parent: 1
+ - uid: 11517
+ components:
+ - type: Transform
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11518
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 11519
+ components:
+ - type: Transform
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 11532
+ components:
+ - type: Transform
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 11864
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - uid: 11865
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 11866
+ components:
+ - type: Transform
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 11902
+ components:
+ - type: Transform
+ pos: 90.5,34.5
+ parent: 1
+ - uid: 11959
+ components:
+ - type: Transform
+ pos: 47.5,70.5
+ parent: 1
+ - uid: 11963
+ components:
+ - type: Transform
+ pos: 46.5,70.5
+ parent: 1
+ - uid: 12013
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 12014
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 12015
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 12042
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 12057
+ components:
+ - type: Transform
+ pos: 159.5,112.5
+ parent: 1
+ - uid: 12058
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 12059
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 12060
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 12062
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 12171
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 12172
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 12173
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 12174
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 12181
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 12182
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 12183
+ components:
+ - type: Transform
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 12212
+ components:
+ - type: Transform
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 12476
+ components:
+ - type: Transform
+ pos: 156.5,97.5
+ parent: 1
+ - uid: 12486
+ components:
+ - type: Transform
+ pos: 147.5,96.5
+ parent: 1
+ - uid: 12496
+ components:
+ - type: Transform
+ pos: 147.5,94.5
+ parent: 1
+ - uid: 12498
+ components:
+ - type: Transform
+ pos: 148.5,95.5
+ parent: 1
+ - uid: 12499
+ components:
+ - type: Transform
+ pos: 150.5,95.5
+ parent: 1
+ - uid: 12500
+ components:
+ - type: Transform
+ pos: 148.5,89.5
+ parent: 1
+ - uid: 12502
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - uid: 12509
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 12549
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 12550
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 12555
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 12575
+ components:
+ - type: Transform
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 12576
+ components:
+ - type: Transform
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 12580
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 12581
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 12632
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 12633
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 12634
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 12635
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 12636
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 12637
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 12638
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 12639
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 12640
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 12641
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 12642
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 12644
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 12702
+ components:
+ - type: Transform
+ pos: 107.5,41.5
+ parent: 1
+ - uid: 12705
+ components:
+ - type: Transform
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: 115.5,39.5
+ parent: 1
+ - uid: 13022
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13023
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13024
+ components:
+ - type: Transform
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13025
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - uid: 13026
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 1
+ - uid: 13027
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 1
+ - uid: 13028
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 1
+ - uid: 13029
+ components:
+ - type: Transform
+ pos: 44.5,21.5
+ parent: 1
+ - uid: 13030
+ components:
+ - type: Transform
+ pos: 43.5,21.5
+ parent: 1
+ - uid: 13031
+ components:
+ - type: Transform
+ pos: 45.5,25.5
+ parent: 1
+ - uid: 13032
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 1
+ - uid: 13033
+ components:
+ - type: Transform
+ pos: 45.5,27.5
+ parent: 1
+ - uid: 13034
+ components:
+ - type: Transform
+ pos: 44.5,27.5
+ parent: 1
+ - uid: 13035
+ components:
+ - type: Transform
+ pos: 43.5,27.5
+ parent: 1
+ - uid: 13036
+ components:
+ - type: Transform
+ pos: 46.5,24.5
+ parent: 1
+ - uid: 13037
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 13038
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 13039
+ components:
+ - type: Transform
+ pos: 48.5,29.5
+ parent: 1
+ - uid: 13040
+ components:
+ - type: Transform
+ pos: 48.5,28.5
+ parent: 1
+ - uid: 13041
+ components:
+ - type: Transform
+ pos: 48.5,30.5
+ parent: 1
+ - uid: 13042
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 1
+ - uid: 13043
+ components:
+ - type: Transform
+ pos: 49.5,27.5
+ parent: 1
+ - uid: 13044
+ components:
+ - type: Transform
+ pos: 49.5,26.5
+ parent: 1
+ - uid: 13045
+ components:
+ - type: Transform
+ pos: 49.5,25.5
+ parent: 1
+ - uid: 13046
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+ - uid: 13047
+ components:
+ - type: Transform
+ pos: 49.5,23.5
+ parent: 1
+ - uid: 13048
+ components:
+ - type: Transform
+ pos: 49.5,22.5
+ parent: 1
+ - uid: 13049
+ components:
+ - type: Transform
+ pos: 49.5,20.5
+ parent: 1
+ - uid: 13050
+ components:
+ - type: Transform
+ pos: 49.5,21.5
+ parent: 1
+ - uid: 13051
+ components:
+ - type: Transform
+ pos: 48.5,20.5
+ parent: 1
+ - uid: 13052
+ components:
+ - type: Transform
+ pos: 48.5,19.5
+ parent: 1
+ - uid: 13053
+ components:
+ - type: Transform
+ pos: 48.5,18.5
+ parent: 1
+ - uid: 13054
+ components:
+ - type: Transform
+ pos: 48.5,17.5
+ parent: 1
+ - uid: 13055
+ components:
+ - type: Transform
+ pos: 50.5,24.5
+ parent: 1
+ - uid: 13056
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 13057
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 13058
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 13059
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 13060
+ components:
+ - type: Transform
+ pos: 54.5,23.5
+ parent: 1
+ - uid: 13061
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13062
+ components:
+ - type: Transform
+ pos: 54.5,21.5
+ parent: 1
+ - uid: 13063
+ components:
+ - type: Transform
+ pos: 54.5,20.5
+ parent: 1
+ - uid: 13064
+ components:
+ - type: Transform
+ pos: 54.5,19.5
+ parent: 1
+ - uid: 13065
+ components:
+ - type: Transform
+ pos: 53.5,19.5
+ parent: 1
+ - uid: 13066
+ components:
+ - type: Transform
+ pos: 52.5,19.5
+ parent: 1
+ - uid: 13067
+ components:
+ - type: Transform
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 13068
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13069
+ components:
+ - type: Transform
+ pos: 54.5,29.5
+ parent: 1
+ - uid: 13070
+ components:
+ - type: Transform
+ pos: 53.5,29.5
+ parent: 1
+ - uid: 13071
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - uid: 13072
+ components:
+ - type: Transform
+ pos: 54.5,28.5
+ parent: 1
+ - uid: 13073
+ components:
+ - type: Transform
+ pos: 54.5,27.5
+ parent: 1
+ - uid: 13074
+ components:
+ - type: Transform
+ pos: 54.5,26.5
+ parent: 1
+ - uid: 13075
+ components:
+ - type: Transform
+ pos: 54.5,25.5
+ parent: 1
+ - uid: 13076
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13077
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 13078
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 13079
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13080
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 13081
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 13082
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 13083
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 13084
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 13085
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 13086
+ components:
+ - type: Transform
+ pos: 51.5,42.5
+ parent: 1
+ - uid: 13087
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13135
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 13136
+ components:
+ - type: Transform
+ pos: 56.5,24.5
+ parent: 1
+ - uid: 13137
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 13138
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13178
+ components:
+ - type: Transform
+ pos: 49.5,38.5
+ parent: 1
+ - uid: 13180
+ components:
+ - type: Transform
+ pos: 50.5,38.5
+ parent: 1
+ - uid: 13181
+ components:
+ - type: Transform
+ pos: 48.5,38.5
+ parent: 1
+ - uid: 13182
+ components:
+ - type: Transform
+ pos: 47.5,38.5
+ parent: 1
+ - uid: 13183
+ components:
+ - type: Transform
+ pos: 46.5,38.5
+ parent: 1
+ - uid: 13184
+ components:
+ - type: Transform
+ pos: 44.5,38.5
+ parent: 1
+ - uid: 13185
+ components:
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 1
+ - uid: 13186
+ components:
+ - type: Transform
+ pos: 47.5,39.5
+ parent: 1
+ - uid: 13187
+ components:
+ - type: Transform
+ pos: 47.5,40.5
+ parent: 1
+ - uid: 13188
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 13189
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13190
+ components:
+ - type: Transform
+ pos: 47.5,37.5
+ parent: 1
+ - uid: 13191
+ components:
+ - type: Transform
+ pos: 47.5,36.5
+ parent: 1
+ - uid: 13192
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13193
+ components:
+ - type: Transform
+ pos: 50.5,46.5
+ parent: 1
+ - uid: 13194
+ components:
+ - type: Transform
+ pos: 49.5,46.5
+ parent: 1
+ - uid: 13195
+ components:
+ - type: Transform
+ pos: 48.5,46.5
+ parent: 1
+ - uid: 13196
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13197
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13198
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - uid: 13199
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+ - uid: 13200
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 13304
+ components:
+ - type: Transform
+ pos: 97.5,48.5
+ parent: 1
+ - uid: 13306
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 13307
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 13622
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 13623
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 13624
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 13625
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 13630
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 13683
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 13922
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 14050
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 14052
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 14053
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 14058
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 14103
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 14176
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 14178
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 14183
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 14189
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 14190
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 14191
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 14192
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 14193
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 14194
+ components:
+ - type: Transform
+ pos: 102.5,138.5
+ parent: 1
+ - uid: 14195
+ components:
+ - type: Transform
+ pos: 102.5,137.5
+ parent: 1
+ - uid: 14196
+ components:
+ - type: Transform
+ pos: 102.5,136.5
+ parent: 1
+ - uid: 14197
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 14198
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 14199
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 14200
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 14201
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 14202
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 14203
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 14204
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 14205
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 14206
+ components:
+ - type: Transform
+ pos: 107.5,131.5
+ parent: 1
+ - uid: 14207
+ components:
+ - type: Transform
+ pos: 108.5,131.5
+ parent: 1
+ - uid: 14208
+ components:
+ - type: Transform
+ pos: 109.5,131.5
+ parent: 1
+ - uid: 14209
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 14211
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 14212
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 14213
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 14214
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 14215
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 14216
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 14217
+ components:
+ - type: Transform
+ pos: 114.5,136.5
+ parent: 1
+ - uid: 14218
+ components:
+ - type: Transform
+ pos: 114.5,137.5
+ parent: 1
+ - uid: 14219
+ components:
+ - type: Transform
+ pos: 114.5,138.5
+ parent: 1
+ - uid: 14220
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 14221
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 14222
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 14223
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 14224
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 14225
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 14226
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 14227
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 14229
+ components:
+ - type: Transform
+ pos: 109.5,143.5
+ parent: 1
+ - uid: 14230
+ components:
+ - type: Transform
+ pos: 108.5,143.5
+ parent: 1
+ - uid: 14231
+ components:
+ - type: Transform
+ pos: 107.5,143.5
+ parent: 1
+ - uid: 14232
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 14233
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 14234
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 14235
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 14237
+ components:
+ - type: Transform
+ pos: 114.5,144.5
+ parent: 1
+ - uid: 14238
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14239
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - uid: 14240
+ components:
+ - type: Transform
+ pos: 114.5,147.5
+ parent: 1
+ - uid: 14241
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - uid: 14242
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - uid: 14243
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - uid: 14244
+ components:
+ - type: Transform
+ pos: 114.5,151.5
+ parent: 1
+ - uid: 14245
+ components:
+ - type: Transform
+ pos: 115.5,151.5
+ parent: 1
+ - uid: 14246
+ components:
+ - type: Transform
+ pos: 116.5,151.5
+ parent: 1
+ - uid: 14247
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 14248
+ components:
+ - type: Transform
+ pos: 118.5,151.5
+ parent: 1
+ - uid: 14249
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - uid: 14250
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14281
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 14282
+ components:
+ - type: Transform
+ pos: 74.5,116.5
+ parent: 1
+ - uid: 14311
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 14314
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 14315
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 14316
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 14317
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 14318
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 14319
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 14320
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 14321
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 14322
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 14323
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 14324
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 14325
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 14326
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 14327
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 14328
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 14329
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 14330
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 14331
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 14332
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 14333
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 14334
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 14335
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 14336
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 14337
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 14338
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 14339
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 14340
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 14341
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 14342
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 14343
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 14344
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 14345
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 14346
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 14347
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 14348
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 14349
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 14350
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 14351
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 14352
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 14353
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 14354
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 14355
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14365
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 14367
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14368
+ components:
+ - type: Transform
+ pos: 96.5,125.5
+ parent: 1
+ - uid: 14369
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 14370
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 14371
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 14372
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 14373
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 14374
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 14375
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 14376
+ components:
+ - type: Transform
+ pos: 94.5,123.5
+ parent: 1
+ - uid: 14377
+ components:
+ - type: Transform
+ pos: 94.5,122.5
+ parent: 1
+ - uid: 14378
+ components:
+ - type: Transform
+ pos: 93.5,122.5
+ parent: 1
+ - uid: 14379
+ components:
+ - type: Transform
+ pos: 92.5,122.5
+ parent: 1
+ - uid: 14380
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14381
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 14382
+ components:
+ - type: Transform
+ pos: 93.5,132.5
+ parent: 1
+ - uid: 14383
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 14384
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 14385
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 14386
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 14387
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 14388
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 14389
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 14390
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 14391
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 14392
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 14393
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 14394
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 14395
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 14396
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 14397
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 14398
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 14399
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 14400
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 14401
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 14402
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 14403
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14404
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 14405
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 14406
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 14407
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14408
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 14410
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 14411
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 14412
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 14413
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 14414
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 14415
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 14416
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 14417
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 14418
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 14419
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 14420
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 14421
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 14422
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 14423
+ components:
+ - type: Transform
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 14424
+ components:
+ - type: Transform
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 14425
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 14426
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14427
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 14428
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 14429
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 14430
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 14431
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 14432
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 14434
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 14435
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 14436
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 14438
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 14439
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 14440
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 14441
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 14442
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 14443
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 14444
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 14445
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 14446
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 14447
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 14481
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 14485
+ components:
+ - type: Transform
+ pos: 134.5,122.5
+ parent: 1
+ - uid: 14486
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 14487
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 14488
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 14491
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 14494
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 14495
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 14496
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 14501
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 14502
+ components:
+ - type: Transform
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 14504
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 14505
+ components:
+ - type: Transform
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 14507
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 14508
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 14647
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 14648
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 14656
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 14657
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 14658
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 14689
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 14690
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 14691
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 14692
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 14720
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 14725
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 14958
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 14984
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 15036
+ components:
+ - type: Transform
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 15045
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 15056
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 15073
+ components:
+ - type: Transform
+ pos: 111.5,170.5
+ parent: 1
+ - uid: 15084
+ components:
+ - type: Transform
+ pos: 99.5,159.5
+ parent: 1
+ - uid: 15085
+ components:
+ - type: Transform
+ pos: 100.5,159.5
+ parent: 1
+ - uid: 15086
+ components:
+ - type: Transform
+ pos: 101.5,159.5
+ parent: 1
+ - uid: 15088
+ components:
+ - type: Transform
+ pos: 97.5,159.5
+ parent: 1
+ - uid: 15089
+ components:
+ - type: Transform
+ pos: 98.5,159.5
+ parent: 1
+ - uid: 15090
+ components:
+ - type: Transform
+ pos: 96.5,159.5
+ parent: 1
+ - uid: 15097
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 15115
+ components:
+ - type: Transform
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 15116
+ components:
+ - type: Transform
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 15117
+ components:
+ - type: Transform
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 15118
+ components:
+ - type: Transform
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 15119
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15121
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 15122
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 15123
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 15124
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 15125
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 15126
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 15127
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 15128
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 15174
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15175
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - uid: 15177
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 15178
+ components:
+ - type: Transform
+ pos: 128.5,121.5
+ parent: 1
+ - uid: 15179
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 15183
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 15184
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 15185
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 15186
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 15187
+ components:
+ - type: Transform
+ pos: 127.5,125.5
+ parent: 1
+ - uid: 15188
+ components:
+ - type: Transform
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 15189
+ components:
+ - type: Transform
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 15190
+ components:
+ - type: Transform
+ pos: 125.5,126.5
+ parent: 1
+ - uid: 15191
+ components:
+ - type: Transform
+ pos: 125.5,127.5
+ parent: 1
+ - uid: 15192
+ components:
+ - type: Transform
+ pos: 125.5,128.5
+ parent: 1
+ - uid: 15193
+ components:
+ - type: Transform
+ pos: 125.5,124.5
+ parent: 1
+ - uid: 15194
+ components:
+ - type: Transform
+ pos: 125.5,123.5
+ parent: 1
+ - uid: 15195
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 15196
+ components:
+ - type: Transform
+ pos: 129.5,123.5
+ parent: 1
+ - uid: 15197
+ components:
+ - type: Transform
+ pos: 129.5,124.5
+ parent: 1
+ - uid: 15198
+ components:
+ - type: Transform
+ pos: 129.5,125.5
+ parent: 1
+ - uid: 15199
+ components:
+ - type: Transform
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 15200
+ components:
+ - type: Transform
+ pos: 129.5,127.5
+ parent: 1
+ - uid: 15201
+ components:
+ - type: Transform
+ pos: 129.5,128.5
+ parent: 1
+ - uid: 15202
+ components:
+ - type: Transform
+ pos: 129.5,129.5
+ parent: 1
+ - uid: 15215
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15216
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - uid: 15217
+ components:
+ - type: Transform
+ pos: 128.5,142.5
+ parent: 1
+ - uid: 15218
+ components:
+ - type: Transform
+ pos: 128.5,144.5
+ parent: 1
+ - uid: 15219
+ components:
+ - type: Transform
+ pos: 128.5,145.5
+ parent: 1
+ - uid: 15220
+ components:
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+ - uid: 15221
+ components:
+ - type: Transform
+ pos: 130.5,145.5
+ parent: 1
+ - uid: 15222
+ components:
+ - type: Transform
+ pos: 131.5,145.5
+ parent: 1
+ - uid: 15223
+ components:
+ - type: Transform
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 15224
+ components:
+ - type: Transform
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 15231
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15232
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 15233
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - uid: 15234
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 15235
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 15236
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 15237
+ components:
+ - type: Transform
+ pos: 128.5,139.5
+ parent: 1
+ - uid: 15238
+ components:
+ - type: Transform
+ pos: 127.5,139.5
+ parent: 1
+ - uid: 15239
+ components:
+ - type: Transform
+ pos: 126.5,139.5
+ parent: 1
+ - uid: 15240
+ components:
+ - type: Transform
+ pos: 125.5,138.5
+ parent: 1
+ - uid: 15241
+ components:
+ - type: Transform
+ pos: 125.5,136.5
+ parent: 1
+ - uid: 15242
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - uid: 15243
+ components:
+ - type: Transform
+ pos: 126.5,137.5
+ parent: 1
+ - uid: 15244
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - uid: 15245
+ components:
+ - type: Transform
+ pos: 126.5,135.5
+ parent: 1
+ - uid: 15246
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 15247
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 15248
+ components:
+ - type: Transform
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 15249
+ components:
+ - type: Transform
+ pos: 127.5,132.5
+ parent: 1
+ - uid: 15250
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 15251
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 15252
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 15253
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 15254
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 15255
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 15256
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 15257
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 15258
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 15259
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 15260
+ components:
+ - type: Transform
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 15261
+ components:
+ - type: Transform
+ pos: 133.5,135.5
+ parent: 1
+ - uid: 15262
+ components:
+ - type: Transform
+ pos: 132.5,135.5
+ parent: 1
+ - uid: 15263
+ components:
+ - type: Transform
+ pos: 131.5,135.5
+ parent: 1
+ - uid: 15264
+ components:
+ - type: Transform
+ pos: 131.5,136.5
+ parent: 1
+ - uid: 15265
+ components:
+ - type: Transform
+ pos: 131.5,137.5
+ parent: 1
+ - uid: 15268
+ components:
+ - type: Transform
+ pos: 35.5,119.5
+ parent: 1
+ - uid: 15269
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 15270
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 15271
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15272
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15273
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15369
+ components:
+ - type: Transform
+ pos: 108.5,147.5
+ parent: 1
+ - uid: 15370
+ components:
+ - type: Transform
+ pos: 107.5,147.5
+ parent: 1
+ - uid: 15371
+ components:
+ - type: Transform
+ pos: 106.5,147.5
+ parent: 1
+ - uid: 15372
+ components:
+ - type: Transform
+ pos: 105.5,147.5
+ parent: 1
+ - uid: 15373
+ components:
+ - type: Transform
+ pos: 105.5,148.5
+ parent: 1
+ - uid: 15374
+ components:
+ - type: Transform
+ pos: 105.5,149.5
+ parent: 1
+ - uid: 15375
+ components:
+ - type: Transform
+ pos: 105.5,150.5
+ parent: 1
+ - uid: 15376
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - uid: 15377
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - uid: 15378
+ components:
+ - type: Transform
+ pos: 106.5,152.5
+ parent: 1
+ - uid: 15379
+ components:
+ - type: Transform
+ pos: 107.5,152.5
+ parent: 1
+ - uid: 15380
+ components:
+ - type: Transform
+ pos: 108.5,152.5
+ parent: 1
+ - uid: 15381
+ components:
+ - type: Transform
+ pos: 109.5,152.5
+ parent: 1
+ - uid: 15382
+ components:
+ - type: Transform
+ pos: 110.5,152.5
+ parent: 1
+ - uid: 15383
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 15384
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 15385
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 15386
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 15387
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 15391
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15392
+ components:
+ - type: Transform
+ pos: 104.5,149.5
+ parent: 1
+ - uid: 15418
+ components:
+ - type: Transform
+ pos: 148.5,150.5
+ parent: 1
+ - uid: 15522
+ components:
+ - type: Transform
+ pos: 71.5,125.5
+ parent: 1
+ - uid: 15523
+ components:
+ - type: Transform
+ pos: 71.5,126.5
+ parent: 1
+ - uid: 15524
+ components:
+ - type: Transform
+ pos: 71.5,127.5
+ parent: 1
+ - uid: 15525
+ components:
+ - type: Transform
+ pos: 71.5,128.5
+ parent: 1
+ - uid: 15526
+ components:
+ - type: Transform
+ pos: 71.5,129.5
+ parent: 1
+ - uid: 15527
+ components:
+ - type: Transform
+ pos: 71.5,130.5
+ parent: 1
+ - uid: 15528
+ components:
+ - type: Transform
+ pos: 71.5,131.5
+ parent: 1
+ - uid: 15529
+ components:
+ - type: Transform
+ pos: 71.5,132.5
+ parent: 1
+ - uid: 15530
+ components:
+ - type: Transform
+ pos: 70.5,132.5
+ parent: 1
+ - uid: 15531
+ components:
+ - type: Transform
+ pos: 70.5,133.5
+ parent: 1
+ - uid: 15532
+ components:
+ - type: Transform
+ pos: 70.5,134.5
+ parent: 1
+ - uid: 15533
+ components:
+ - type: Transform
+ pos: 70.5,135.5
+ parent: 1
+ - uid: 15534
+ components:
+ - type: Transform
+ pos: 70.5,136.5
+ parent: 1
+ - uid: 15535
+ components:
+ - type: Transform
+ pos: 69.5,136.5
+ parent: 1
+ - uid: 15536
+ components:
+ - type: Transform
+ pos: 69.5,137.5
+ parent: 1
+ - uid: 15537
+ components:
+ - type: Transform
+ pos: 69.5,138.5
+ parent: 1
+ - uid: 15538
+ components:
+ - type: Transform
+ pos: 69.5,139.5
+ parent: 1
+ - uid: 15539
+ components:
+ - type: Transform
+ pos: 69.5,140.5
+ parent: 1
+ - uid: 15540
+ components:
+ - type: Transform
+ pos: 69.5,141.5
+ parent: 1
+ - uid: 15541
+ components:
+ - type: Transform
+ pos: 69.5,142.5
+ parent: 1
+ - uid: 15542
+ components:
+ - type: Transform
+ pos: 70.5,142.5
+ parent: 1
+ - uid: 15543
+ components:
+ - type: Transform
+ pos: 70.5,143.5
+ parent: 1
+ - uid: 15544
+ components:
+ - type: Transform
+ pos: 70.5,144.5
+ parent: 1
+ - uid: 15545
+ components:
+ - type: Transform
+ pos: 70.5,145.5
+ parent: 1
+ - uid: 15546
+ components:
+ - type: Transform
+ pos: 70.5,146.5
+ parent: 1
+ - uid: 15547
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 15548
+ components:
+ - type: Transform
+ pos: 69.5,127.5
+ parent: 1
+ - uid: 15549
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 15550
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 15551
+ components:
+ - type: Transform
+ pos: 66.5,127.5
+ parent: 1
+ - uid: 15552
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 15553
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 15554
+ components:
+ - type: Transform
+ pos: 68.5,131.5
+ parent: 1
+ - uid: 15555
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 15556
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 15557
+ components:
+ - type: Transform
+ pos: 65.5,131.5
+ parent: 1
+ - uid: 15558
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 15559
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 15560
+ components:
+ - type: Transform
+ pos: 67.5,135.5
+ parent: 1
+ - uid: 15561
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 15562
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+ - uid: 15563
+ components:
+ - type: Transform
+ pos: 64.5,135.5
+ parent: 1
+ - uid: 15564
+ components:
+ - type: Transform
+ pos: 63.5,139.5
+ parent: 1
+ - uid: 15565
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+ - uid: 15566
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 15567
+ components:
+ - type: Transform
+ pos: 66.5,139.5
+ parent: 1
+ - uid: 15568
+ components:
+ - type: Transform
+ pos: 67.5,139.5
+ parent: 1
+ - uid: 15569
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 15570
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 15571
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 15572
+ components:
+ - type: Transform
+ pos: 67.5,143.5
+ parent: 1
+ - uid: 15573
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 15574
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+ - uid: 15575
+ components:
+ - type: Transform
+ pos: 64.5,143.5
+ parent: 1
+ - uid: 15576
+ components:
+ - type: Transform
+ pos: 65.5,147.5
+ parent: 1
+ - uid: 15577
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 15578
+ components:
+ - type: Transform
+ pos: 68.5,147.5
+ parent: 1
+ - uid: 15579
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 15580
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 15581
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 15582
+ components:
+ - type: Transform
+ pos: 71.5,146.5
+ parent: 1
+ - uid: 15583
+ components:
+ - type: Transform
+ pos: 71.5,147.5
+ parent: 1
+ - uid: 15584
+ components:
+ - type: Transform
+ pos: 71.5,148.5
+ parent: 1
+ - uid: 15585
+ components:
+ - type: Transform
+ pos: 71.5,149.5
+ parent: 1
+ - uid: 15586
+ components:
+ - type: Transform
+ pos: 71.5,150.5
+ parent: 1
+ - uid: 15587
+ components:
+ - type: Transform
+ pos: 71.5,151.5
+ parent: 1
+ - uid: 15588
+ components:
+ - type: Transform
+ pos: 71.5,152.5
+ parent: 1
+ - uid: 15589
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - uid: 15590
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 15591
+ components:
+ - type: Transform
+ pos: 69.5,151.5
+ parent: 1
+ - uid: 15592
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 15593
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+ - uid: 15594
+ components:
+ - type: Transform
+ pos: 66.5,151.5
+ parent: 1
+ - uid: 15595
+ components:
+ - type: Transform
+ pos: 72.5,153.5
+ parent: 1
+ - uid: 15596
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 15598
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 15599
+ components:
+ - type: Transform
+ pos: 77.5,153.5
+ parent: 1
+ - uid: 15600
+ components:
+ - type: Transform
+ pos: 78.5,153.5
+ parent: 1
+ - uid: 15601
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15602
+ components:
+ - type: Transform
+ pos: 80.5,153.5
+ parent: 1
+ - uid: 15603
+ components:
+ - type: Transform
+ pos: 81.5,153.5
+ parent: 1
+ - uid: 15604
+ components:
+ - type: Transform
+ pos: 82.5,153.5
+ parent: 1
+ - uid: 15605
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 15606
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - uid: 15607
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+ - uid: 15608
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 15609
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - uid: 15610
+ components:
+ - type: Transform
+ pos: 88.5,153.5
+ parent: 1
+ - uid: 15611
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - uid: 15612
+ components:
+ - type: Transform
+ pos: 76.5,153.5
+ parent: 1
+ - uid: 15613
+ components:
+ - type: Transform
+ pos: 89.5,152.5
+ parent: 1
+ - uid: 15614
+ components:
+ - type: Transform
+ pos: 89.5,151.5
+ parent: 1
+ - uid: 15615
+ components:
+ - type: Transform
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 15616
+ components:
+ - type: Transform
+ pos: 89.5,149.5
+ parent: 1
+ - uid: 15617
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 15618
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 15619
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 15620
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 15621
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 15622
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 15623
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 15624
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 15625
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 15626
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 15627
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 15628
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 15629
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 15630
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 15631
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15632
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 15633
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 15634
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 15635
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 15636
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 15637
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 15638
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 15639
+ components:
+ - type: Transform
+ pos: 89.5,125.5
+ parent: 1
+ - uid: 15640
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 15641
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - uid: 15642
+ components:
+ - type: Transform
+ pos: 87.5,125.5
+ parent: 1
+ - uid: 15643
+ components:
+ - type: Transform
+ pos: 86.5,125.5
+ parent: 1
+ - uid: 15644
+ components:
+ - type: Transform
+ pos: 85.5,125.5
+ parent: 1
+ - uid: 15645
+ components:
+ - type: Transform
+ pos: 84.5,125.5
+ parent: 1
+ - uid: 15646
+ components:
+ - type: Transform
+ pos: 83.5,125.5
+ parent: 1
+ - uid: 15647
+ components:
+ - type: Transform
+ pos: 82.5,125.5
+ parent: 1
+ - uid: 15648
+ components:
+ - type: Transform
+ pos: 81.5,125.5
+ parent: 1
+ - uid: 15649
+ components:
+ - type: Transform
+ pos: 80.5,125.5
+ parent: 1
+ - uid: 15651
+ components:
+ - type: Transform
+ pos: 78.5,125.5
+ parent: 1
+ - uid: 15652
+ components:
+ - type: Transform
+ pos: 77.5,125.5
+ parent: 1
+ - uid: 15653
+ components:
+ - type: Transform
+ pos: 76.5,125.5
+ parent: 1
+ - uid: 15655
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 15656
+ components:
+ - type: Transform
+ pos: 73.5,125.5
+ parent: 1
+ - uid: 15657
+ components:
+ - type: Transform
+ pos: 72.5,125.5
+ parent: 1
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: 72.5,130.5
+ parent: 1
+ - uid: 15659
+ components:
+ - type: Transform
+ pos: 73.5,130.5
+ parent: 1
+ - uid: 15660
+ components:
+ - type: Transform
+ pos: 74.5,130.5
+ parent: 1
+ - uid: 15671
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 15672
+ components:
+ - type: Transform
+ pos: 87.5,130.5
+ parent: 1
+ - uid: 15673
+ components:
+ - type: Transform
+ pos: 88.5,130.5
+ parent: 1
+ - uid: 15675
+ components:
+ - type: Transform
+ pos: 88.5,135.5
+ parent: 1
+ - uid: 15676
+ components:
+ - type: Transform
+ pos: 87.5,135.5
+ parent: 1
+ - uid: 15677
+ components:
+ - type: Transform
+ pos: 86.5,135.5
+ parent: 1
+ - uid: 15678
+ components:
+ - type: Transform
+ pos: 85.5,135.5
+ parent: 1
+ - uid: 15679
+ components:
+ - type: Transform
+ pos: 84.5,135.5
+ parent: 1
+ - uid: 15680
+ components:
+ - type: Transform
+ pos: 83.5,135.5
+ parent: 1
+ - uid: 15681
+ components:
+ - type: Transform
+ pos: 81.5,135.5
+ parent: 1
+ - uid: 15689
+ components:
+ - type: Transform
+ pos: 74.5,135.5
+ parent: 1
+ - uid: 15690
+ components:
+ - type: Transform
+ pos: 73.5,135.5
+ parent: 1
+ - uid: 15691
+ components:
+ - type: Transform
+ pos: 72.5,135.5
+ parent: 1
+ - uid: 15692
+ components:
+ - type: Transform
+ pos: 71.5,135.5
+ parent: 1
+ - uid: 15693
+ components:
+ - type: Transform
+ pos: 88.5,143.5
+ parent: 1
+ - uid: 15694
+ components:
+ - type: Transform
+ pos: 87.5,143.5
+ parent: 1
+ - uid: 15695
+ components:
+ - type: Transform
+ pos: 86.5,143.5
+ parent: 1
+ - uid: 15697
+ components:
+ - type: Transform
+ pos: 84.5,143.5
+ parent: 1
+ - uid: 15698
+ components:
+ - type: Transform
+ pos: 83.5,143.5
+ parent: 1
+ - uid: 15700
+ components:
+ - type: Transform
+ pos: 81.5,143.5
+ parent: 1
+ - uid: 15707
+ components:
+ - type: Transform
+ pos: 74.5,143.5
+ parent: 1
+ - uid: 15708
+ components:
+ - type: Transform
+ pos: 73.5,143.5
+ parent: 1
+ - uid: 15709
+ components:
+ - type: Transform
+ pos: 72.5,143.5
+ parent: 1
+ - uid: 15710
+ components:
+ - type: Transform
+ pos: 71.5,143.5
+ parent: 1
+ - uid: 15712
+ components:
+ - type: Transform
+ pos: 77.5,152.5
+ parent: 1
+ - uid: 15716
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+ - uid: 15718
+ components:
+ - type: Transform
+ pos: 81.5,139.5
+ parent: 1
+ - uid: 15719
+ components:
+ - type: Transform
+ pos: 80.5,139.5
+ parent: 1
+ - uid: 15722
+ components:
+ - type: Transform
+ pos: 75.5,143.5
+ parent: 1
+ - uid: 15724
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+ - uid: 15726
+ components:
+ - type: Transform
+ pos: 73.5,139.5
+ parent: 1
+ - uid: 15727
+ components:
+ - type: Transform
+ pos: 72.5,139.5
+ parent: 1
+ - uid: 15728
+ components:
+ - type: Transform
+ pos: 71.5,139.5
+ parent: 1
+ - uid: 15729
+ components:
+ - type: Transform
+ pos: 70.5,139.5
+ parent: 1
+ - uid: 15730
+ components:
+ - type: Transform
+ pos: 87.5,148.5
+ parent: 1
+ - uid: 15731
+ components:
+ - type: Transform
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 15733
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 15741
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15742
+ components:
+ - type: Transform
+ pos: 74.5,148.5
+ parent: 1
+ - uid: 15743
+ components:
+ - type: Transform
+ pos: 73.5,148.5
+ parent: 1
+ - uid: 15744
+ components:
+ - type: Transform
+ pos: 72.5,148.5
+ parent: 1
+ - uid: 15745
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 15746
+ components:
+ - type: Transform
+ pos: 88.5,148.5
+ parent: 1
+ - uid: 15747
+ components:
+ - type: Transform
+ pos: 81.5,152.5
+ parent: 1
+ - uid: 15748
+ components:
+ - type: Transform
+ pos: 81.5,151.5
+ parent: 1
+ - uid: 15749
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 15750
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 15754
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 15755
+ components:
+ - type: Transform
+ pos: 81.5,142.5
+ parent: 1
+ - uid: 15756
+ components:
+ - type: Transform
+ pos: 81.5,140.5
+ parent: 1
+ - uid: 15757
+ components:
+ - type: Transform
+ pos: 81.5,141.5
+ parent: 1
+ - uid: 15758
+ components:
+ - type: Transform
+ pos: 81.5,138.5
+ parent: 1
+ - uid: 15759
+ components:
+ - type: Transform
+ pos: 81.5,137.5
+ parent: 1
+ - uid: 15760
+ components:
+ - type: Transform
+ pos: 81.5,136.5
+ parent: 1
+ - uid: 15761
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15766
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 15767
+ components:
+ - type: Transform
+ pos: 81.5,127.5
+ parent: 1
+ - uid: 15768
+ components:
+ - type: Transform
+ pos: 81.5,126.5
+ parent: 1
+ - uid: 15819
+ components:
+ - type: Transform
+ pos: 148.5,151.5
+ parent: 1
+ - uid: 15878
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 15879
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15880
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 15881
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 15882
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - uid: 15883
+ components:
+ - type: Transform
+ pos: 83.5,117.5
+ parent: 1
+ - uid: 15884
+ components:
+ - type: Transform
+ pos: 84.5,117.5
+ parent: 1
+ - uid: 15885
+ components:
+ - type: Transform
+ pos: 82.5,118.5
+ parent: 1
+ - uid: 15886
+ components:
+ - type: Transform
+ pos: 82.5,119.5
+ parent: 1
+ - uid: 15887
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15888
+ components:
+ - type: Transform
+ pos: 82.5,121.5
+ parent: 1
+ - uid: 15889
+ components:
+ - type: Transform
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 15890
+ components:
+ - type: Transform
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 15891
+ components:
+ - type: Transform
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 15892
+ components:
+ - type: Transform
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 15893
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 15894
+ components:
+ - type: Transform
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 15895
+ components:
+ - type: Transform
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 15896
+ components:
+ - type: Transform
+ pos: 88.5,123.5
+ parent: 1
+ - uid: 15897
+ components:
+ - type: Transform
+ pos: 89.5,122.5
+ parent: 1
+ - uid: 15898
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15901
+ components:
+ - type: Transform
+ pos: 73.5,117.5
+ parent: 1
+ - uid: 15902
+ components:
+ - type: Transform
+ pos: 74.5,117.5
+ parent: 1
+ - uid: 15903
+ components:
+ - type: Transform
+ pos: 76.5,117.5
+ parent: 1
+ - uid: 15904
+ components:
+ - type: Transform
+ pos: 75.5,117.5
+ parent: 1
+ - uid: 15905
+ components:
+ - type: Transform
+ pos: 72.5,117.5
+ parent: 1
+ - uid: 15906
+ components:
+ - type: Transform
+ pos: 71.5,117.5
+ parent: 1
+ - uid: 15907
+ components:
+ - type: Transform
+ pos: 70.5,117.5
+ parent: 1
+ - uid: 15908
+ components:
+ - type: Transform
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 15909
+ components:
+ - type: Transform
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 15910
+ components:
+ - type: Transform
+ pos: 69.5,119.5
+ parent: 1
+ - uid: 15911
+ components:
+ - type: Transform
+ pos: 69.5,120.5
+ parent: 1
+ - uid: 15912
+ components:
+ - type: Transform
+ pos: 69.5,121.5
+ parent: 1
+ - uid: 15913
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - uid: 15914
+ components:
+ - type: Transform
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 15915
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 15916
+ components:
+ - type: Transform
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 15917
+ components:
+ - type: Transform
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 15918
+ components:
+ - type: Transform
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 15919
+ components:
+ - type: Transform
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 15920
+ components:
+ - type: Transform
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 15921
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 15922
+ components:
+ - type: Transform
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 15923
+ components:
+ - type: Transform
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 15924
+ components:
+ - type: Transform
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 15925
+ components:
+ - type: Transform
+ pos: 68.5,121.5
+ parent: 1
+ - uid: 15926
+ components:
+ - type: Transform
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 15927
+ components:
+ - type: Transform
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 15928
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - uid: 15929
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 16008
+ components:
+ - type: Transform
+ pos: 75.5,139.5
+ parent: 1
+ - uid: 16023
+ components:
+ - type: Transform
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 16216
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 16217
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 16218
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 16224
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 16230
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 16235
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 16236
+ components:
+ - type: Transform
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 16237
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 16240
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 16241
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 16242
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 16243
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 16244
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 16245
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 16246
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 16247
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 16248
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 16249
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 16250
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 16251
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 16252
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 16253
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 16254
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 16257
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 16258
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 16259
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 16260
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 16261
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 16263
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 16264
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 16265
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 16266
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 16267
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 16268
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 16269
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 16270
+ components:
+ - type: Transform
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 16272
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 16273
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 16274
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 16275
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 16276
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 16277
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 16278
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 16279
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 16280
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 16291
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16294
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 16296
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 16297
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 16302
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 16303
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 16594
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 16595
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 16611
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 16688
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 16830
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 16875
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 16876
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 16954
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 17239
+ components:
+ - type: Transform
+ pos: 62.5,85.5
+ parent: 1
+ - uid: 17240
+ components:
+ - type: Transform
+ pos: 62.5,86.5
+ parent: 1
+ - uid: 17241
+ components:
+ - type: Transform
+ pos: 61.5,86.5
+ parent: 1
+ - uid: 17242
+ components:
+ - type: Transform
+ pos: 60.5,86.5
+ parent: 1
+ - uid: 17243
+ components:
+ - type: Transform
+ pos: 60.5,85.5
+ parent: 1
+ - uid: 17244
+ components:
+ - type: Transform
+ pos: 60.5,84.5
+ parent: 1
+ - uid: 17245
+ components:
+ - type: Transform
+ pos: 60.5,83.5
+ parent: 1
+ - uid: 17246
+ components:
+ - type: Transform
+ pos: 60.5,82.5
+ parent: 1
+ - uid: 17247
+ components:
+ - type: Transform
+ pos: 61.5,82.5
+ parent: 1
+ - uid: 17248
+ components:
+ - type: Transform
+ pos: 62.5,82.5
+ parent: 1
+ - uid: 17249
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - uid: 17250
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - uid: 17251
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17252
+ components:
+ - type: Transform
+ pos: 70.5,81.5
+ parent: 1
+ - uid: 17253
+ components:
+ - type: Transform
+ pos: 69.5,81.5
+ parent: 1
+ - uid: 17254
+ components:
+ - type: Transform
+ pos: 68.5,81.5
+ parent: 1
+ - uid: 17255
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - uid: 17256
+ components:
+ - type: Transform
+ pos: 66.5,81.5
+ parent: 1
+ - uid: 17257
+ components:
+ - type: Transform
+ pos: 66.5,82.5
+ parent: 1
+ - uid: 17258
+ components:
+ - type: Transform
+ pos: 66.5,83.5
+ parent: 1
+ - uid: 17259
+ components:
+ - type: Transform
+ pos: 67.5,83.5
+ parent: 1
+ - uid: 17260
+ components:
+ - type: Transform
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 17261
+ components:
+ - type: Transform
+ pos: 69.5,83.5
+ parent: 1
+ - uid: 17262
+ components:
+ - type: Transform
+ pos: 69.5,82.5
+ parent: 1
+ - uid: 17263
+ components:
+ - type: Transform
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17264
+ components:
+ - type: Transform
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17265
+ components:
+ - type: Transform
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17266
+ components:
+ - type: Transform
+ pos: 62.5,81.5
+ parent: 1
+ - uid: 17267
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17268
+ components:
+ - type: Transform
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17269
+ components:
+ - type: Transform
+ pos: 71.5,87.5
+ parent: 1
+ - uid: 17270
+ components:
+ - type: Transform
+ pos: 70.5,87.5
+ parent: 1
+ - uid: 17271
+ components:
+ - type: Transform
+ pos: 69.5,87.5
+ parent: 1
+ - uid: 17272
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17273
+ components:
+ - type: Transform
+ pos: 67.5,87.5
+ parent: 1
+ - uid: 17274
+ components:
+ - type: Transform
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 17275
+ components:
+ - type: Transform
+ pos: 72.5,87.5
+ parent: 1
+ - uid: 17276
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17277
+ components:
+ - type: Transform
+ pos: 73.5,86.5
+ parent: 1
+ - uid: 17278
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - uid: 17279
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - uid: 17280
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - uid: 17281
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - uid: 17282
+ components:
+ - type: Transform
+ pos: 77.5,87.5
+ parent: 1
+ - uid: 17283
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - uid: 17284
+ components:
+ - type: Transform
+ pos: 79.5,87.5
+ parent: 1
+ - uid: 17285
+ components:
+ - type: Transform
+ pos: 80.5,87.5
+ parent: 1
+ - uid: 17286
+ components:
+ - type: Transform
+ pos: 81.5,87.5
+ parent: 1
+ - uid: 17287
+ components:
+ - type: Transform
+ pos: 82.5,87.5
+ parent: 1
+ - uid: 17288
+ components:
+ - type: Transform
+ pos: 82.5,88.5
+ parent: 1
+ - uid: 17306
+ components:
+ - type: Transform
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 17307
+ components:
+ - type: Transform
+ pos: 83.5,86.5
+ parent: 1
+ - uid: 17308
+ components:
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17309
+ components:
+ - type: Transform
+ pos: 83.5,84.5
+ parent: 1
+ - uid: 17310
+ components:
+ - type: Transform
+ pos: 83.5,83.5
+ parent: 1
+ - uid: 17311
+ components:
+ - type: Transform
+ pos: 82.5,83.5
+ parent: 1
+ - uid: 17312
+ components:
+ - type: Transform
+ pos: 81.5,83.5
+ parent: 1
+ - uid: 17313
+ components:
+ - type: Transform
+ pos: 80.5,83.5
+ parent: 1
+ - uid: 17314
+ components:
+ - type: Transform
+ pos: 80.5,82.5
+ parent: 1
+ - uid: 17315
+ components:
+ - type: Transform
+ pos: 84.5,87.5
+ parent: 1
+ - uid: 17316
+ components:
+ - type: Transform
+ pos: 67.5,88.5
+ parent: 1
+ - uid: 17317
+ components:
+ - type: Transform
+ pos: 71.5,88.5
+ parent: 1
+ - uid: 17318
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - uid: 17319
+ components:
+ - type: Transform
+ pos: 77.5,85.5
+ parent: 1
+ - uid: 17343
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 17381
+ components:
+ - type: Transform
+ pos: 60.5,108.5
+ parent: 1
+ - uid: 17383
+ components:
+ - type: Transform
+ pos: 62.5,108.5
+ parent: 1
+ - uid: 17384
+ components:
+ - type: Transform
+ pos: 63.5,108.5
+ parent: 1
+ - uid: 17385
+ components:
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+ - uid: 17386
+ components:
+ - type: Transform
+ pos: 65.5,108.5
+ parent: 1
+ - uid: 17387
+ components:
+ - type: Transform
+ pos: 66.5,108.5
+ parent: 1
+ - uid: 17388
+ components:
+ - type: Transform
+ pos: 66.5,109.5
+ parent: 1
+ - uid: 17389
+ components:
+ - type: Transform
+ pos: 66.5,110.5
+ parent: 1
+ - uid: 17390
+ components:
+ - type: Transform
+ pos: 66.5,107.5
+ parent: 1
+ - uid: 17391
+ components:
+ - type: Transform
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17392
+ components:
+ - type: Transform
+ pos: 68.5,107.5
+ parent: 1
+ - uid: 17393
+ components:
+ - type: Transform
+ pos: 69.5,107.5
+ parent: 1
+ - uid: 17394
+ components:
+ - type: Transform
+ pos: 70.5,107.5
+ parent: 1
+ - uid: 17395
+ components:
+ - type: Transform
+ pos: 71.5,107.5
+ parent: 1
+ - uid: 17396
+ components:
+ - type: Transform
+ pos: 72.5,107.5
+ parent: 1
+ - uid: 17397
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - uid: 17398
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - uid: 17399
+ components:
+ - type: Transform
+ pos: 75.5,107.5
+ parent: 1
+ - uid: 17400
+ components:
+ - type: Transform
+ pos: 77.5,107.5
+ parent: 1
+ - uid: 17401
+ components:
+ - type: Transform
+ pos: 78.5,107.5
+ parent: 1
+ - uid: 17402
+ components:
+ - type: Transform
+ pos: 79.5,107.5
+ parent: 1
+ - uid: 17403
+ components:
+ - type: Transform
+ pos: 76.5,107.5
+ parent: 1
+ - uid: 17404
+ components:
+ - type: Transform
+ pos: 81.5,107.5
+ parent: 1
+ - uid: 17405
+ components:
+ - type: Transform
+ pos: 80.5,107.5
+ parent: 1
+ - uid: 17406
+ components:
+ - type: Transform
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17407
+ components:
+ - type: Transform
+ pos: 82.5,108.5
+ parent: 1
+ - uid: 17408
+ components:
+ - type: Transform
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17409
+ components:
+ - type: Transform
+ pos: 82.5,110.5
+ parent: 1
+ - uid: 17410
+ components:
+ - type: Transform
+ pos: 74.5,106.5
+ parent: 1
+ - uid: 17411
+ components:
+ - type: Transform
+ pos: 74.5,105.5
+ parent: 1
+ - uid: 17412
+ components:
+ - type: Transform
+ pos: 74.5,104.5
+ parent: 1
+ - uid: 17413
+ components:
+ - type: Transform
+ pos: 74.5,103.5
+ parent: 1
+ - uid: 17414
+ components:
+ - type: Transform
+ pos: 75.5,103.5
+ parent: 1
+ - uid: 17415
+ components:
+ - type: Transform
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 17416
+ components:
+ - type: Transform
+ pos: 77.5,103.5
+ parent: 1
+ - uid: 17417
+ components:
+ - type: Transform
+ pos: 73.5,103.5
+ parent: 1
+ - uid: 17418
+ components:
+ - type: Transform
+ pos: 72.5,103.5
+ parent: 1
+ - uid: 17419
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 17420
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17421
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17422
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 17423
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 17424
+ components:
+ - type: Transform
+ pos: 87.5,103.5
+ parent: 1
+ - uid: 17425
+ components:
+ - type: Transform
+ pos: 87.5,104.5
+ parent: 1
+ - uid: 17426
+ components:
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+ - uid: 17427
+ components:
+ - type: Transform
+ pos: 87.5,106.5
+ parent: 1
+ - uid: 17428
+ components:
+ - type: Transform
+ pos: 87.5,107.5
+ parent: 1
+ - uid: 17429
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+ - uid: 17430
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - uid: 17431
+ components:
+ - type: Transform
+ pos: 86.5,107.5
+ parent: 1
+ - uid: 17432
+ components:
+ - type: Transform
+ pos: 86.5,108.5
+ parent: 1
+ - uid: 17433
+ components:
+ - type: Transform
+ pos: 86.5,109.5
+ parent: 1
+ - uid: 17434
+ components:
+ - type: Transform
+ pos: 88.5,107.5
+ parent: 1
+ - uid: 17435
+ components:
+ - type: Transform
+ pos: 88.5,108.5
+ parent: 1
+ - uid: 17436
+ components:
+ - type: Transform
+ pos: 88.5,109.5
+ parent: 1
+ - uid: 17437
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 17438
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 17439
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 17440
+ components:
+ - type: Transform
+ pos: 88.5,110.5
+ parent: 1
+ - uid: 17441
+ components:
+ - type: Transform
+ pos: 87.5,99.5
+ parent: 1
+ - uid: 17442
+ components:
+ - type: Transform
+ pos: 87.5,100.5
+ parent: 1
+ - uid: 17443
+ components:
+ - type: Transform
+ pos: 86.5,99.5
+ parent: 1
+ - uid: 17444
+ components:
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - uid: 17445
+ components:
+ - type: Transform
+ pos: 86.5,97.5
+ parent: 1
+ - uid: 17446
+ components:
+ - type: Transform
+ pos: 86.5,96.5
+ parent: 1
+ - uid: 17447
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - uid: 17448
+ components:
+ - type: Transform
+ pos: 88.5,96.5
+ parent: 1
+ - uid: 17449
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17450
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 17451
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 17452
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - uid: 17453
+ components:
+ - type: Transform
+ pos: 86.5,93.5
+ parent: 1
+ - uid: 17454
+ components:
+ - type: Transform
+ pos: 86.5,92.5
+ parent: 1
+ - uid: 17455
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 17456
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 17457
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 17458
+ components:
+ - type: Transform
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 17459
+ components:
+ - type: Transform
+ pos: 89.5,91.5
+ parent: 1
+ - uid: 17460
+ components:
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+ - uid: 17461
+ components:
+ - type: Transform
+ pos: 91.5,91.5
+ parent: 1
+ - uid: 17462
+ components:
+ - type: Transform
+ pos: 92.5,91.5
+ parent: 1
+ - uid: 17463
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - uid: 17464
+ components:
+ - type: Transform
+ pos: 85.5,102.5
+ parent: 1
+ - uid: 17465
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17466
+ components:
+ - type: Transform
+ pos: 81.5,101.5
+ parent: 1
+ - uid: 17467
+ components:
+ - type: Transform
+ pos: 82.5,101.5
+ parent: 1
+ - uid: 17468
+ components:
+ - type: Transform
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 17469
+ components:
+ - type: Transform
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17470
+ components:
+ - type: Transform
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17471
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 17472
+ components:
+ - type: Transform
+ pos: 81.5,103.5
+ parent: 1
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: 80.5,103.5
+ parent: 1
+ - uid: 17474
+ components:
+ - type: Transform
+ pos: 78.5,103.5
+ parent: 1
+ - uid: 17475
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17476
+ components:
+ - type: Transform
+ pos: 82.5,100.5
+ parent: 1
+ - uid: 17477
+ components:
+ - type: Transform
+ pos: 82.5,99.5
+ parent: 1
+ - uid: 17478
+ components:
+ - type: Transform
+ pos: 82.5,98.5
+ parent: 1
+ - uid: 17479
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - uid: 17480
+ components:
+ - type: Transform
+ pos: 82.5,95.5
+ parent: 1
+ - uid: 17481
+ components:
+ - type: Transform
+ pos: 82.5,94.5
+ parent: 1
+ - uid: 17482
+ components:
+ - type: Transform
+ pos: 82.5,93.5
+ parent: 1
+ - uid: 17483
+ components:
+ - type: Transform
+ pos: 82.5,92.5
+ parent: 1
+ - uid: 17484
+ components:
+ - type: Transform
+ pos: 82.5,91.5
+ parent: 1
+ - uid: 17485
+ components:
+ - type: Transform
+ pos: 82.5,90.5
+ parent: 1
+ - uid: 17486
+ components:
+ - type: Transform
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17487
+ components:
+ - type: Transform
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17488
+ components:
+ - type: Transform
+ pos: 84.5,94.5
+ parent: 1
+ - uid: 17489
+ components:
+ - type: Transform
+ pos: 81.5,97.5
+ parent: 1
+ - uid: 17490
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17491
+ components:
+ - type: Transform
+ pos: 67.5,90.5
+ parent: 1
+ - uid: 17492
+ components:
+ - type: Transform
+ pos: 67.5,91.5
+ parent: 1
+ - uid: 17493
+ components:
+ - type: Transform
+ pos: 67.5,92.5
+ parent: 1
+ - uid: 17494
+ components:
+ - type: Transform
+ pos: 67.5,93.5
+ parent: 1
+ - uid: 17495
+ components:
+ - type: Transform
+ pos: 67.5,94.5
+ parent: 1
+ - uid: 17496
+ components:
+ - type: Transform
+ pos: 67.5,95.5
+ parent: 1
+ - uid: 17497
+ components:
+ - type: Transform
+ pos: 67.5,96.5
+ parent: 1
+ - uid: 17498
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - uid: 17499
+ components:
+ - type: Transform
+ pos: 67.5,98.5
+ parent: 1
+ - uid: 17500
+ components:
+ - type: Transform
+ pos: 67.5,99.5
+ parent: 1
+ - uid: 17501
+ components:
+ - type: Transform
+ pos: 67.5,100.5
+ parent: 1
+ - uid: 17502
+ components:
+ - type: Transform
+ pos: 67.5,101.5
+ parent: 1
+ - uid: 17503
+ components:
+ - type: Transform
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17504
+ components:
+ - type: Transform
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17505
+ components:
+ - type: Transform
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17506
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17507
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17508
+ components:
+ - type: Transform
+ pos: 71.5,99.5
+ parent: 1
+ - uid: 17509
+ components:
+ - type: Transform
+ pos: 71.5,98.5
+ parent: 1
+ - uid: 17510
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17511
+ components:
+ - type: Transform
+ pos: 71.5,96.5
+ parent: 1
+ - uid: 17512
+ components:
+ - type: Transform
+ pos: 71.5,95.5
+ parent: 1
+ - uid: 17513
+ components:
+ - type: Transform
+ pos: 72.5,95.5
+ parent: 1
+ - uid: 17514
+ components:
+ - type: Transform
+ pos: 73.5,95.5
+ parent: 1
+ - uid: 17515
+ components:
+ - type: Transform
+ pos: 74.5,95.5
+ parent: 1
+ - uid: 17516
+ components:
+ - type: Transform
+ pos: 75.5,95.5
+ parent: 1
+ - uid: 17517
+ components:
+ - type: Transform
+ pos: 76.5,95.5
+ parent: 1
+ - uid: 17518
+ components:
+ - type: Transform
+ pos: 77.5,95.5
+ parent: 1
+ - uid: 17519
+ components:
+ - type: Transform
+ pos: 78.5,95.5
+ parent: 1
+ - uid: 17520
+ components:
+ - type: Transform
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17521
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - uid: 17522
+ components:
+ - type: Transform
+ pos: 78.5,98.5
+ parent: 1
+ - uid: 17523
+ components:
+ - type: Transform
+ pos: 78.5,99.5
+ parent: 1
+ - uid: 17524
+ components:
+ - type: Transform
+ pos: 77.5,99.5
+ parent: 1
+ - uid: 17525
+ components:
+ - type: Transform
+ pos: 76.5,99.5
+ parent: 1
+ - uid: 17526
+ components:
+ - type: Transform
+ pos: 75.5,99.5
+ parent: 1
+ - uid: 17527
+ components:
+ - type: Transform
+ pos: 74.5,99.5
+ parent: 1
+ - uid: 17528
+ components:
+ - type: Transform
+ pos: 73.5,99.5
+ parent: 1
+ - uid: 17529
+ components:
+ - type: Transform
+ pos: 72.5,99.5
+ parent: 1
+ - uid: 17532
+ components:
+ - type: Transform
+ pos: 79.5,97.5
+ parent: 1
+ - uid: 17533
+ components:
+ - type: Transform
+ pos: 70.5,97.5
+ parent: 1
+ - uid: 17543
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17544
+ components:
+ - type: Transform
+ pos: 76.5,92.5
+ parent: 1
+ - uid: 17545
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - uid: 17546
+ components:
+ - type: Transform
+ pos: 77.5,91.5
+ parent: 1
+ - uid: 17547
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - uid: 17548
+ components:
+ - type: Transform
+ pos: 75.5,91.5
+ parent: 1
+ - uid: 17549
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+ - uid: 17550
+ components:
+ - type: Transform
+ pos: 73.5,91.5
+ parent: 1
+ - uid: 17551
+ components:
+ - type: Transform
+ pos: 72.5,91.5
+ parent: 1
+ - uid: 17552
+ components:
+ - type: Transform
+ pos: 71.5,91.5
+ parent: 1
+ - uid: 17553
+ components:
+ - type: Transform
+ pos: 71.5,90.5
+ parent: 1
+ - uid: 17554
+ components:
+ - type: Transform
+ pos: 78.5,90.5
+ parent: 1
+ - uid: 17555
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17556
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+ - uid: 17557
+ components:
+ - type: Transform
+ pos: 62.5,101.5
+ parent: 1
+ - uid: 17558
+ components:
+ - type: Transform
+ pos: 62.5,100.5
+ parent: 1
+ - uid: 17559
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - uid: 17560
+ components:
+ - type: Transform
+ pos: 60.5,100.5
+ parent: 1
+ - uid: 17561
+ components:
+ - type: Transform
+ pos: 60.5,101.5
+ parent: 1
+ - uid: 17562
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+ - uid: 17563
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+ - uid: 17564
+ components:
+ - type: Transform
+ pos: 61.5,103.5
+ parent: 1
+ - uid: 17565
+ components:
+ - type: Transform
+ pos: 62.5,103.5
+ parent: 1
+ - uid: 17566
+ components:
+ - type: Transform
+ pos: 62.5,102.5
+ parent: 1
+ - uid: 17567
+ components:
+ - type: Transform
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17568
+ components:
+ - type: Transform
+ pos: 63.5,99.5
+ parent: 1
+ - uid: 17569
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - uid: 17570
+ components:
+ - type: Transform
+ pos: 62.5,107.5
+ parent: 1
+ - uid: 17571
+ components:
+ - type: Transform
+ pos: 61.5,107.5
+ parent: 1
+ - uid: 17572
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - uid: 17573
+ components:
+ - type: Transform
+ pos: 60.5,109.5
+ parent: 1
+ - uid: 17574
+ components:
+ - type: Transform
+ pos: 61.5,109.5
+ parent: 1
+ - uid: 17575
+ components:
+ - type: Transform
+ pos: 62.5,109.5
+ parent: 1
+ - uid: 17591
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17592
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+ - uid: 17593
+ components:
+ - type: Transform
+ pos: 62.5,89.5
+ parent: 1
+ - uid: 17594
+ components:
+ - type: Transform
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17595
+ components:
+ - type: Transform
+ pos: 60.5,89.5
+ parent: 1
+ - uid: 17596
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 17597
+ components:
+ - type: Transform
+ pos: 59.5,90.5
+ parent: 1
+ - uid: 17598
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - uid: 17599
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 17600
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 17601
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 17602
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - uid: 17603
+ components:
+ - type: Transform
+ pos: 60.5,96.5
+ parent: 1
+ - uid: 17604
+ components:
+ - type: Transform
+ pos: 61.5,96.5
+ parent: 1
+ - uid: 17605
+ components:
+ - type: Transform
+ pos: 62.5,96.5
+ parent: 1
+ - uid: 17606
+ components:
+ - type: Transform
+ pos: 62.5,95.5
+ parent: 1
+ - uid: 17607
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+ - uid: 17608
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+ - uid: 17609
+ components:
+ - type: Transform
+ pos: 62.5,92.5
+ parent: 1
+ - uid: 17610
+ components:
+ - type: Transform
+ pos: 62.5,91.5
+ parent: 1
+ - uid: 17611
+ components:
+ - type: Transform
+ pos: 62.5,90.5
+ parent: 1
+ - uid: 17612
+ components:
+ - type: Transform
+ pos: 59.5,96.5
+ parent: 1
+ - uid: 17613
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - uid: 18022
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 18089
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 18171
+ components:
+ - type: Transform
+ pos: 58.5,120.5
+ parent: 1
+ - uid: 18207
+ components:
+ - type: Transform
+ pos: 58.5,116.5
+ parent: 1
+ - uid: 18234
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 18235
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18250
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 18279
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 18280
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 18282
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 18283
+ components:
+ - type: Transform
+ pos: 111.5,45.5
+ parent: 1
+ - uid: 18308
+ components:
+ - type: Transform
+ pos: 61.5,43.5
+ parent: 1
+ - uid: 18325
+ components:
+ - type: Transform
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 18332
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 18345
+ components:
+ - type: Transform
+ pos: 110.5,33.5
+ parent: 1
+ - uid: 18354
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 18358
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 18378
+ components:
+ - type: Transform
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 18379
+ components:
+ - type: Transform
+ pos: 146.5,96.5
+ parent: 1
+ - uid: 18426
+ components:
+ - type: Transform
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 18456
+ components:
+ - type: Transform
+ pos: 148.5,86.5
+ parent: 1
+ - uid: 18457
+ components:
+ - type: Transform
+ pos: 151.5,86.5
+ parent: 1
+ - uid: 18458
+ components:
+ - type: Transform
+ pos: 149.5,86.5
+ parent: 1
+ - uid: 18480
+ components:
+ - type: Transform
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 18481
+ components:
+ - type: Transform
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 18546
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 18547
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 18572
+ components:
+ - type: Transform
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 18573
+ components:
+ - type: Transform
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 18579
+ components:
+ - type: Transform
+ pos: 24.5,110.5
+ parent: 1
+ - uid: 18711
+ components:
+ - type: Transform
+ pos: 34.5,96.5
+ parent: 1
+ - uid: 18793
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 18867
+ components:
+ - type: Transform
+ pos: 90.5,47.5
+ parent: 1
+ - uid: 18872
+ components:
+ - type: Transform
+ pos: 99.5,47.5
+ parent: 1
+ - uid: 18938
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 18940
+ components:
+ - type: Transform
+ pos: 135.5,100.5
+ parent: 1
+ - uid: 18941
+ components:
+ - type: Transform
+ pos: 134.5,100.5
+ parent: 1
+ - uid: 18943
+ components:
+ - type: Transform
+ pos: 132.5,100.5
+ parent: 1
+ - uid: 18944
+ components:
+ - type: Transform
+ pos: 132.5,99.5
+ parent: 1
+ - uid: 18945
+ components:
+ - type: Transform
+ pos: 132.5,98.5
+ parent: 1
+ - uid: 18946
+ components:
+ - type: Transform
+ pos: 132.5,97.5
+ parent: 1
+ - uid: 18948
+ components:
+ - type: Transform
+ pos: 134.5,97.5
+ parent: 1
+ - uid: 18949
+ components:
+ - type: Transform
+ pos: 134.5,98.5
+ parent: 1
+ - uid: 18950
+ components:
+ - type: Transform
+ pos: 134.5,99.5
+ parent: 1
+ - uid: 18951
+ components:
+ - type: Transform
+ pos: 135.5,101.5
+ parent: 1
+ - uid: 18952
+ components:
+ - type: Transform
+ pos: 135.5,102.5
+ parent: 1
+ - uid: 18953
+ components:
+ - type: Transform
+ pos: 135.5,103.5
+ parent: 1
+ - uid: 18954
+ components:
+ - type: Transform
+ pos: 135.5,104.5
+ parent: 1
+ - uid: 18955
+ components:
+ - type: Transform
+ pos: 135.5,105.5
+ parent: 1
+ - uid: 18956
+ components:
+ - type: Transform
+ pos: 135.5,106.5
+ parent: 1
+ - uid: 18957
+ components:
+ - type: Transform
+ pos: 132.5,101.5
+ parent: 1
+ - uid: 18958
+ components:
+ - type: Transform
+ pos: 132.5,102.5
+ parent: 1
+ - uid: 18959
+ components:
+ - type: Transform
+ pos: 132.5,104.5
+ parent: 1
+ - uid: 18960
+ components:
+ - type: Transform
+ pos: 132.5,103.5
+ parent: 1
+ - uid: 18961
+ components:
+ - type: Transform
+ pos: 132.5,105.5
+ parent: 1
+ - uid: 18962
+ components:
+ - type: Transform
+ pos: 132.5,106.5
+ parent: 1
+ - uid: 18963
+ components:
+ - type: Transform
+ pos: 132.5,107.5
+ parent: 1
+ - uid: 18964
+ components:
+ - type: Transform
+ pos: 132.5,109.5
+ parent: 1
+ - uid: 18965
+ components:
+ - type: Transform
+ pos: 132.5,108.5
+ parent: 1
+ - uid: 18966
+ components:
+ - type: Transform
+ pos: 133.5,109.5
+ parent: 1
+ - uid: 18967
+ components:
+ - type: Transform
+ pos: 134.5,109.5
+ parent: 1
+ - uid: 18968
+ components:
+ - type: Transform
+ pos: 134.5,108.5
+ parent: 1
+ - uid: 18969
+ components:
+ - type: Transform
+ pos: 134.5,107.5
+ parent: 1
+ - uid: 18970
+ components:
+ - type: Transform
+ pos: 135.5,107.5
+ parent: 1
+ - uid: 18971
+ components:
+ - type: Transform
+ pos: 136.5,105.5
+ parent: 1
+ - uid: 18972
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 18974
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 18976
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - uid: 18977
+ components:
+ - type: Transform
+ pos: 139.5,100.5
+ parent: 1
+ - uid: 18978
+ components:
+ - type: Transform
+ pos: 139.5,101.5
+ parent: 1
+ - uid: 18979
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+ - uid: 18980
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 18981
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 18982
+ components:
+ - type: Transform
+ pos: 139.5,106.5
+ parent: 1
+ - uid: 18983
+ components:
+ - type: Transform
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 18984
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 18985
+ components:
+ - type: Transform
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 18986
+ components:
+ - type: Transform
+ pos: 139.5,98.5
+ parent: 1
+ - uid: 18987
+ components:
+ - type: Transform
+ pos: 139.5,97.5
+ parent: 1
+ - uid: 18988
+ components:
+ - type: Transform
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 18989
+ components:
+ - type: Transform
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 18990
+ components:
+ - type: Transform
+ pos: 132.5,96.5
+ parent: 1
+ - uid: 18991
+ components:
+ - type: Transform
+ pos: 133.5,96.5
+ parent: 1
+ - uid: 18992
+ components:
+ - type: Transform
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 18994
+ components:
+ - type: Transform
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 18995
+ components:
+ - type: Transform
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 18997
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 18999
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 19000
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19003
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19004
+ components:
+ - type: Transform
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 19005
+ components:
+ - type: Transform
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 19006
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - uid: 19007
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - uid: 19008
+ components:
+ - type: Transform
+ pos: 137.5,110.5
+ parent: 1
+ - uid: 19009
+ components:
+ - type: Transform
+ pos: 137.5,111.5
+ parent: 1
+ - uid: 19010
+ components:
+ - type: Transform
+ pos: 138.5,110.5
+ parent: 1
+ - uid: 19011
+ components:
+ - type: Transform
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19012
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19013
+ components:
+ - type: Transform
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19014
+ components:
+ - type: Transform
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19015
+ components:
+ - type: Transform
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19016
+ components:
+ - type: Transform
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19018
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 19019
+ components:
+ - type: Transform
+ pos: 132.5,112.5
+ parent: 1
+ - uid: 19021
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 19022
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 19023
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - uid: 19024
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 19025
+ components:
+ - type: Transform
+ pos: 156.5,104.5
+ parent: 1
+ - uid: 19026
+ components:
+ - type: Transform
+ pos: 156.5,103.5
+ parent: 1
+ - uid: 19027
+ components:
+ - type: Transform
+ pos: 155.5,103.5
+ parent: 1
+ - uid: 19028
+ components:
+ - type: Transform
+ pos: 154.5,103.5
+ parent: 1
+ - uid: 19029
+ components:
+ - type: Transform
+ pos: 153.5,103.5
+ parent: 1
+ - uid: 19030
+ components:
+ - type: Transform
+ pos: 152.5,103.5
+ parent: 1
+ - uid: 19031
+ components:
+ - type: Transform
+ pos: 151.5,103.5
+ parent: 1
+ - uid: 19032
+ components:
+ - type: Transform
+ pos: 150.5,103.5
+ parent: 1
+ - uid: 19033
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 19034
+ components:
+ - type: Transform
+ pos: 148.5,103.5
+ parent: 1
+ - uid: 19035
+ components:
+ - type: Transform
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 19036
+ components:
+ - type: Transform
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 19037
+ components:
+ - type: Transform
+ pos: 148.5,106.5
+ parent: 1
+ - uid: 19038
+ components:
+ - type: Transform
+ pos: 148.5,107.5
+ parent: 1
+ - uid: 19039
+ components:
+ - type: Transform
+ pos: 148.5,108.5
+ parent: 1
+ - uid: 19040
+ components:
+ - type: Transform
+ pos: 148.5,109.5
+ parent: 1
+ - uid: 19052
+ components:
+ - type: Transform
+ pos: 156.5,111.5
+ parent: 1
+ - uid: 19053
+ components:
+ - type: Transform
+ pos: 156.5,110.5
+ parent: 1
+ - uid: 19054
+ components:
+ - type: Transform
+ pos: 156.5,109.5
+ parent: 1
+ - uid: 19055
+ components:
+ - type: Transform
+ pos: 156.5,108.5
+ parent: 1
+ - uid: 19056
+ components:
+ - type: Transform
+ pos: 156.5,107.5
+ parent: 1
+ - uid: 19057
+ components:
+ - type: Transform
+ pos: 156.5,106.5
+ parent: 1
+ - uid: 19058
+ components:
+ - type: Transform
+ pos: 157.5,109.5
+ parent: 1
+ - uid: 19059
+ components:
+ - type: Transform
+ pos: 159.5,109.5
+ parent: 1
+ - uid: 19060
+ components:
+ - type: Transform
+ pos: 160.5,109.5
+ parent: 1
+ - uid: 19061
+ components:
+ - type: Transform
+ pos: 161.5,109.5
+ parent: 1
+ - uid: 19062
+ components:
+ - type: Transform
+ pos: 162.5,109.5
+ parent: 1
+ - uid: 19063
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - uid: 19064
+ components:
+ - type: Transform
+ pos: 157.5,107.5
+ parent: 1
+ - uid: 19065
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - uid: 19066
+ components:
+ - type: Transform
+ pos: 159.5,107.5
+ parent: 1
+ - uid: 19067
+ components:
+ - type: Transform
+ pos: 160.5,107.5
+ parent: 1
+ - uid: 19068
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - uid: 19069
+ components:
+ - type: Transform
+ pos: 162.5,107.5
+ parent: 1
+ - uid: 19072
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19073
+ components:
+ - type: Transform
+ pos: 158.5,100.5
+ parent: 1
+ - uid: 19074
+ components:
+ - type: Transform
+ pos: 122.5,169.5
+ parent: 1
+ - uid: 19075
+ components:
+ - type: Transform
+ pos: 124.5,168.5
+ parent: 1
+ - uid: 19076
+ components:
+ - type: Transform
+ pos: 158.5,99.5
+ parent: 1
+ - uid: 19077
+ components:
+ - type: Transform
+ pos: 155.5,109.5
+ parent: 1
+ - uid: 19078
+ components:
+ - type: Transform
+ pos: 154.5,109.5
+ parent: 1
+ - uid: 19079
+ components:
+ - type: Transform
+ pos: 153.5,109.5
+ parent: 1
+ - uid: 19080
+ components:
+ - type: Transform
+ pos: 152.5,109.5
+ parent: 1
+ - uid: 19081
+ components:
+ - type: Transform
+ pos: 151.5,109.5
+ parent: 1
+ - uid: 19082
+ components:
+ - type: Transform
+ pos: 150.5,109.5
+ parent: 1
+ - uid: 19083
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 19084
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 19085
+ components:
+ - type: Transform
+ pos: 150.5,106.5
+ parent: 1
+ - uid: 19086
+ components:
+ - type: Transform
+ pos: 151.5,106.5
+ parent: 1
+ - uid: 19087
+ components:
+ - type: Transform
+ pos: 152.5,106.5
+ parent: 1
+ - uid: 19088
+ components:
+ - type: Transform
+ pos: 153.5,106.5
+ parent: 1
+ - uid: 19089
+ components:
+ - type: Transform
+ pos: 154.5,106.5
+ parent: 1
+ - uid: 19090
+ components:
+ - type: Transform
+ pos: 155.5,106.5
+ parent: 1
+ - uid: 19091
+ components:
+ - type: Transform
+ pos: 125.5,168.5
+ parent: 1
+ - uid: 19095
+ components:
+ - type: Transform
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 19099
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 19101
+ components:
+ - type: Transform
+ pos: 91.5,85.5
+ parent: 1
+ - uid: 19102
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 19103
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 19104
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - uid: 19105
+ components:
+ - type: Transform
+ pos: 147.5,93.5
+ parent: 1
+ - uid: 19108
+ components:
+ - type: Transform
+ pos: 151.5,93.5
+ parent: 1
+ - uid: 19110
+ components:
+ - type: Transform
+ pos: 151.5,92.5
+ parent: 1
+ - uid: 19111
+ components:
+ - type: Transform
+ pos: 151.5,91.5
+ parent: 1
+ - uid: 19112
+ components:
+ - type: Transform
+ pos: 151.5,90.5
+ parent: 1
+ - uid: 19113
+ components:
+ - type: Transform
+ pos: 151.5,89.5
+ parent: 1
+ - uid: 19114
+ components:
+ - type: Transform
+ pos: 93.5,40.5
+ parent: 1
+ - uid: 19115
+ components:
+ - type: Transform
+ pos: 90.5,41.5
+ parent: 1
+ - uid: 19119
+ components:
+ - type: Transform
+ pos: 147.5,89.5
+ parent: 1
+ - uid: 19120
+ components:
+ - type: Transform
+ pos: 147.5,90.5
+ parent: 1
+ - uid: 19121
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - uid: 19122
+ components:
+ - type: Transform
+ pos: 152.5,91.5
+ parent: 1
+ - uid: 19123
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - uid: 19124
+ components:
+ - type: Transform
+ pos: 154.5,91.5
+ parent: 1
+ - uid: 19125
+ components:
+ - type: Transform
+ pos: 155.5,91.5
+ parent: 1
+ - uid: 19126
+ components:
+ - type: Transform
+ pos: 156.5,91.5
+ parent: 1
+ - uid: 19127
+ components:
+ - type: Transform
+ pos: 157.5,91.5
+ parent: 1
+ - uid: 19128
+ components:
+ - type: Transform
+ pos: 158.5,91.5
+ parent: 1
+ - uid: 19129
+ components:
+ - type: Transform
+ pos: 159.5,91.5
+ parent: 1
+ - uid: 19130
+ components:
+ - type: Transform
+ pos: 160.5,91.5
+ parent: 1
+ - uid: 19131
+ components:
+ - type: Transform
+ pos: 161.5,91.5
+ parent: 1
+ - uid: 19132
+ components:
+ - type: Transform
+ pos: 162.5,91.5
+ parent: 1
+ - uid: 19133
+ components:
+ - type: Transform
+ pos: 163.5,91.5
+ parent: 1
+ - uid: 19134
+ components:
+ - type: Transform
+ pos: 163.5,90.5
+ parent: 1
+ - uid: 19136
+ components:
+ - type: Transform
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 19137
+ components:
+ - type: Transform
+ pos: 143.5,94.5
+ parent: 1
+ - uid: 19138
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+ - uid: 19140
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - uid: 19141
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 19142
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - uid: 19143
+ components:
+ - type: Transform
+ pos: 142.5,90.5
+ parent: 1
+ - uid: 19144
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 19145
+ components:
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+ - uid: 19146
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 19147
+ components:
+ - type: Transform
+ pos: 143.5,88.5
+ parent: 1
+ - uid: 19148
+ components:
+ - type: Transform
+ pos: 143.5,90.5
+ parent: 1
+ - uid: 19149
+ components:
+ - type: Transform
+ pos: 143.5,108.5
+ parent: 1
+ - uid: 19150
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+ - uid: 19151
+ components:
+ - type: Transform
+ pos: 143.5,106.5
+ parent: 1
+ - uid: 19152
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19153
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19154
+ components:
+ - type: Transform
+ pos: 143.5,103.5
+ parent: 1
+ - uid: 19155
+ components:
+ - type: Transform
+ pos: 143.5,102.5
+ parent: 1
+ - uid: 19156
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19213
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 19237
+ components:
+ - type: Transform
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 19347
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 19396
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 19409
+ components:
+ - type: Transform
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 19541
+ components:
+ - type: Transform
+ pos: 90.5,87.5
+ parent: 1
+ - uid: 19732
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 19853
+ components:
+ - type: Transform
+ pos: 96.5,130.5
+ parent: 1
+ - uid: 19869
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 19870
+ components:
+ - type: Transform
+ pos: 52.5,86.5
+ parent: 1
+ - uid: 19871
+ components:
+ - type: Transform
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 19872
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - uid: 19873
+ components:
+ - type: Transform
+ pos: 52.5,89.5
+ parent: 1
+ - uid: 19874
+ components:
+ - type: Transform
+ pos: 52.5,90.5
+ parent: 1
+ - uid: 19875
+ components:
+ - type: Transform
+ pos: 52.5,91.5
+ parent: 1
+ - uid: 19876
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - uid: 19877
+ components:
+ - type: Transform
+ pos: 52.5,93.5
+ parent: 1
+ - uid: 19878
+ components:
+ - type: Transform
+ pos: 52.5,94.5
+ parent: 1
+ - uid: 19879
+ components:
+ - type: Transform
+ pos: 52.5,95.5
+ parent: 1
+ - uid: 19880
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 19881
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 19882
+ components:
+ - type: Transform
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 19883
+ components:
+ - type: Transform
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 19884
+ components:
+ - type: Transform
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 19885
+ components:
+ - type: Transform
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 19886
+ components:
+ - type: Transform
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 19887
+ components:
+ - type: Transform
+ pos: 52.5,84.5
+ parent: 1
+ - uid: 19888
+ components:
+ - type: Transform
+ pos: 52.5,83.5
+ parent: 1
+ - uid: 19889
+ components:
+ - type: Transform
+ pos: 52.5,82.5
+ parent: 1
+ - uid: 19890
+ components:
+ - type: Transform
+ pos: 52.5,81.5
+ parent: 1
+ - uid: 19891
+ components:
+ - type: Transform
+ pos: 51.5,81.5
+ parent: 1
+ - uid: 19892
+ components:
+ - type: Transform
+ pos: 50.5,81.5
+ parent: 1
+ - uid: 19893
+ components:
+ - type: Transform
+ pos: 49.5,81.5
+ parent: 1
+ - uid: 19894
+ components:
+ - type: Transform
+ pos: 48.5,81.5
+ parent: 1
+ - uid: 19895
+ components:
+ - type: Transform
+ pos: 47.5,81.5
+ parent: 1
+ - uid: 19896
+ components:
+ - type: Transform
+ pos: 47.5,82.5
+ parent: 1
+ - uid: 19897
+ components:
+ - type: Transform
+ pos: 47.5,83.5
+ parent: 1
+ - uid: 19898
+ components:
+ - type: Transform
+ pos: 48.5,83.5
+ parent: 1
+ - uid: 19899
+ components:
+ - type: Transform
+ pos: 49.5,83.5
+ parent: 1
+ - uid: 19900
+ components:
+ - type: Transform
+ pos: 50.5,83.5
+ parent: 1
+ - uid: 19901
+ components:
+ - type: Transform
+ pos: 51.5,83.5
+ parent: 1
+ - uid: 19904
+ components:
+ - type: Transform
+ pos: 47.5,87.5
+ parent: 1
+ - uid: 19905
+ components:
+ - type: Transform
+ pos: 47.5,88.5
+ parent: 1
+ - uid: 19906
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 19907
+ components:
+ - type: Transform
+ pos: 47.5,90.5
+ parent: 1
+ - uid: 19908
+ components:
+ - type: Transform
+ pos: 47.5,91.5
+ parent: 1
+ - uid: 19909
+ components:
+ - type: Transform
+ pos: 47.5,92.5
+ parent: 1
+ - uid: 19910
+ components:
+ - type: Transform
+ pos: 48.5,92.5
+ parent: 1
+ - uid: 19911
+ components:
+ - type: Transform
+ pos: 49.5,92.5
+ parent: 1
+ - uid: 19912
+ components:
+ - type: Transform
+ pos: 49.5,91.5
+ parent: 1
+ - uid: 19913
+ components:
+ - type: Transform
+ pos: 49.5,90.5
+ parent: 1
+ - uid: 19914
+ components:
+ - type: Transform
+ pos: 49.5,89.5
+ parent: 1
+ - uid: 19915
+ components:
+ - type: Transform
+ pos: 49.5,88.5
+ parent: 1
+ - uid: 19916
+ components:
+ - type: Transform
+ pos: 49.5,87.5
+ parent: 1
+ - uid: 19917
+ components:
+ - type: Transform
+ pos: 49.5,86.5
+ parent: 1
+ - uid: 19918
+ components:
+ - type: Transform
+ pos: 48.5,86.5
+ parent: 1
+ - uid: 19919
+ components:
+ - type: Transform
+ pos: 47.5,86.5
+ parent: 1
+ - uid: 19920
+ components:
+ - type: Transform
+ pos: 46.5,90.5
+ parent: 1
+ - uid: 19922
+ components:
+ - type: Transform
+ pos: 32.5,88.5
+ parent: 1
+ - uid: 19923
+ components:
+ - type: Transform
+ pos: 32.5,87.5
+ parent: 1
+ - uid: 19924
+ components:
+ - type: Transform
+ pos: 33.5,87.5
+ parent: 1
+ - uid: 19925
+ components:
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - uid: 19926
+ components:
+ - type: Transform
+ pos: 35.5,87.5
+ parent: 1
+ - uid: 19927
+ components:
+ - type: Transform
+ pos: 36.5,87.5
+ parent: 1
+ - uid: 19928
+ components:
+ - type: Transform
+ pos: 36.5,88.5
+ parent: 1
+ - uid: 19929
+ components:
+ - type: Transform
+ pos: 36.5,89.5
+ parent: 1
+ - uid: 19930
+ components:
+ - type: Transform
+ pos: 36.5,90.5
+ parent: 1
+ - uid: 19931
+ components:
+ - type: Transform
+ pos: 36.5,91.5
+ parent: 1
+ - uid: 19932
+ components:
+ - type: Transform
+ pos: 36.5,92.5
+ parent: 1
+ - uid: 19933
+ components:
+ - type: Transform
+ pos: 36.5,93.5
+ parent: 1
+ - uid: 19934
+ components:
+ - type: Transform
+ pos: 35.5,93.5
+ parent: 1
+ - uid: 19935
+ components:
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - uid: 19936
+ components:
+ - type: Transform
+ pos: 33.5,93.5
+ parent: 1
+ - uid: 19937
+ components:
+ - type: Transform
+ pos: 32.5,93.5
+ parent: 1
+ - uid: 19938
+ components:
+ - type: Transform
+ pos: 32.5,92.5
+ parent: 1
+ - uid: 19939
+ components:
+ - type: Transform
+ pos: 37.5,93.5
+ parent: 1
+ - uid: 19940
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - uid: 19941
+ components:
+ - type: Transform
+ pos: 39.5,93.5
+ parent: 1
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 39.5,92.5
+ parent: 1
+ - uid: 19943
+ components:
+ - type: Transform
+ pos: 39.5,91.5
+ parent: 1
+ - uid: 19944
+ components:
+ - type: Transform
+ pos: 39.5,90.5
+ parent: 1
+ - uid: 19945
+ components:
+ - type: Transform
+ pos: 39.5,89.5
+ parent: 1
+ - uid: 19946
+ components:
+ - type: Transform
+ pos: 39.5,88.5
+ parent: 1
+ - uid: 19947
+ components:
+ - type: Transform
+ pos: 39.5,87.5
+ parent: 1
+ - uid: 19948
+ components:
+ - type: Transform
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 19949
+ components:
+ - type: Transform
+ pos: 37.5,87.5
+ parent: 1
+ - uid: 19950
+ components:
+ - type: Transform
+ pos: 38.5,94.5
+ parent: 1
+ - uid: 19951
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 19952
+ components:
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - uid: 19953
+ components:
+ - type: Transform
+ pos: 37.5,96.5
+ parent: 1
+ - uid: 19957
+ components:
+ - type: Transform
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 19958
+ components:
+ - type: Transform
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 19959
+ components:
+ - type: Transform
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 19960
+ components:
+ - type: Transform
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 19961
+ components:
+ - type: Transform
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 19962
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 19963
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 19964
+ components:
+ - type: Transform
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 19965
+ components:
+ - type: Transform
+ pos: 37.5,83.5
+ parent: 1
+ - uid: 19967
+ components:
+ - type: Transform
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 19968
+ components:
+ - type: Transform
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 19969
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - uid: 19970
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 19971
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 19972
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 19973
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 19974
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 19975
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 19976
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 19977
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 19978
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 19979
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 19980
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 19981
+ components:
+ - type: Transform
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 19982
+ components:
+ - type: Transform
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 19987
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - uid: 19988
+ components:
+ - type: Transform
+ pos: 47.5,106.5
+ parent: 1
+ - uid: 19989
+ components:
+ - type: Transform
+ pos: 47.5,105.5
+ parent: 1
+ - uid: 19990
+ components:
+ - type: Transform
+ pos: 48.5,105.5
+ parent: 1
+ - uid: 19991
+ components:
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - uid: 19992
+ components:
+ - type: Transform
+ pos: 50.5,105.5
+ parent: 1
+ - uid: 19993
+ components:
+ - type: Transform
+ pos: 51.5,105.5
+ parent: 1
+ - uid: 19995
+ components:
+ - type: Transform
+ pos: 52.5,106.5
+ parent: 1
+ - uid: 19996
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 19997
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 19998
+ components:
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - uid: 19999
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 20000
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 20001
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 20002
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 20003
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 20004
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 20005
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 20006
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 20007
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 20008
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 20009
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20010
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 20011
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20012
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 20013
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 20014
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20015
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 20016
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 20017
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 20018
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 20019
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 20020
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 20021
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 20022
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 20023
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 20024
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 20025
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 20026
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20027
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20028
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20029
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 20030
+ components:
+ - type: Transform
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20031
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 20032
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - uid: 20033
+ components:
+ - type: Transform
+ pos: 50.5,100.5
+ parent: 1
+ - uid: 20034
+ components:
+ - type: Transform
+ pos: 51.5,100.5
+ parent: 1
+ - uid: 20035
+ components:
+ - type: Transform
+ pos: 52.5,100.5
+ parent: 1
+ - uid: 20036
+ components:
+ - type: Transform
+ pos: 52.5,101.5
+ parent: 1
+ - uid: 20037
+ components:
+ - type: Transform
+ pos: 52.5,102.5
+ parent: 1
+ - uid: 20039
+ components:
+ - type: Transform
+ pos: 50.5,102.5
+ parent: 1
+ - uid: 20040
+ components:
+ - type: Transform
+ pos: 48.5,102.5
+ parent: 1
+ - uid: 20041
+ components:
+ - type: Transform
+ pos: 47.5,102.5
+ parent: 1
+ - uid: 20042
+ components:
+ - type: Transform
+ pos: 49.5,102.5
+ parent: 1
+ - uid: 20043
+ components:
+ - type: Transform
+ pos: 47.5,101.5
+ parent: 1
+ - uid: 20044
+ components:
+ - type: Transform
+ pos: 47.5,100.5
+ parent: 1
+ - uid: 20045
+ components:
+ - type: Transform
+ pos: 48.5,100.5
+ parent: 1
+ - uid: 20046
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 20047
+ components:
+ - type: Transform
+ pos: 46.5,100.5
+ parent: 1
+ - uid: 20048
+ components:
+ - type: Transform
+ pos: 34.5,104.5
+ parent: 1
+ - uid: 20049
+ components:
+ - type: Transform
+ pos: 35.5,104.5
+ parent: 1
+ - uid: 20050
+ components:
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+ - uid: 20051
+ components:
+ - type: Transform
+ pos: 37.5,104.5
+ parent: 1
+ - uid: 20052
+ components:
+ - type: Transform
+ pos: 38.5,104.5
+ parent: 1
+ - uid: 20053
+ components:
+ - type: Transform
+ pos: 39.5,104.5
+ parent: 1
+ - uid: 20054
+ components:
+ - type: Transform
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 20055
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20056
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20057
+ components:
+ - type: Transform
+ pos: 39.5,108.5
+ parent: 1
+ - uid: 20058
+ components:
+ - type: Transform
+ pos: 40.5,105.5
+ parent: 1
+ - uid: 20059
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 20060
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 20061
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 20062
+ components:
+ - type: Transform
+ pos: 40.5,107.5
+ parent: 1
+ - uid: 20063
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20064
+ components:
+ - type: Transform
+ pos: 37.5,106.5
+ parent: 1
+ - uid: 20065
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 20066
+ components:
+ - type: Transform
+ pos: 27.5,116.5
+ parent: 1
+ - uid: 20067
+ components:
+ - type: Transform
+ pos: 28.5,116.5
+ parent: 1
+ - uid: 20068
+ components:
+ - type: Transform
+ pos: 29.5,116.5
+ parent: 1
+ - uid: 20069
+ components:
+ - type: Transform
+ pos: 30.5,116.5
+ parent: 1
+ - uid: 20070
+ components:
+ - type: Transform
+ pos: 32.5,116.5
+ parent: 1
+ - uid: 20071
+ components:
+ - type: Transform
+ pos: 33.5,116.5
+ parent: 1
+ - uid: 20072
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - uid: 20073
+ components:
+ - type: Transform
+ pos: 34.5,116.5
+ parent: 1
+ - uid: 20074
+ components:
+ - type: Transform
+ pos: 35.5,116.5
+ parent: 1
+ - uid: 20075
+ components:
+ - type: Transform
+ pos: 35.5,115.5
+ parent: 1
+ - uid: 20076
+ components:
+ - type: Transform
+ pos: 35.5,114.5
+ parent: 1
+ - uid: 20077
+ components:
+ - type: Transform
+ pos: 35.5,113.5
+ parent: 1
+ - uid: 20078
+ components:
+ - type: Transform
+ pos: 35.5,112.5
+ parent: 1
+ - uid: 20079
+ components:
+ - type: Transform
+ pos: 35.5,111.5
+ parent: 1
+ - uid: 20080
+ components:
+ - type: Transform
+ pos: 34.5,111.5
+ parent: 1
+ - uid: 20081
+ components:
+ - type: Transform
+ pos: 34.5,110.5
+ parent: 1
+ - uid: 20082
+ components:
+ - type: Transform
+ pos: 34.5,109.5
+ parent: 1
+ - uid: 20083
+ components:
+ - type: Transform
+ pos: 34.5,108.5
+ parent: 1
+ - uid: 20084
+ components:
+ - type: Transform
+ pos: 33.5,108.5
+ parent: 1
+ - uid: 20085
+ components:
+ - type: Transform
+ pos: 32.5,108.5
+ parent: 1
+ - uid: 20086
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20087
+ components:
+ - type: Transform
+ pos: 30.5,108.5
+ parent: 1
+ - uid: 20088
+ components:
+ - type: Transform
+ pos: 29.5,108.5
+ parent: 1
+ - uid: 20089
+ components:
+ - type: Transform
+ pos: 28.5,108.5
+ parent: 1
+ - uid: 20090
+ components:
+ - type: Transform
+ pos: 27.5,108.5
+ parent: 1
+ - uid: 20091
+ components:
+ - type: Transform
+ pos: 27.5,112.5
+ parent: 1
+ - uid: 20092
+ components:
+ - type: Transform
+ pos: 28.5,112.5
+ parent: 1
+ - uid: 20093
+ components:
+ - type: Transform
+ pos: 29.5,112.5
+ parent: 1
+ - uid: 20094
+ components:
+ - type: Transform
+ pos: 30.5,112.5
+ parent: 1
+ - uid: 20095
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20096
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20097
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20098
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20099
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20100
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20101
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20102
+ components:
+ - type: Transform
+ pos: 35.5,117.5
+ parent: 1
+ - uid: 20103
+ components:
+ - type: Transform
+ pos: 36.5,115.5
+ parent: 1
+ - uid: 20104
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 20105
+ components:
+ - type: Transform
+ pos: 41.5,117.5
+ parent: 1
+ - uid: 20106
+ components:
+ - type: Transform
+ pos: 41.5,116.5
+ parent: 1
+ - uid: 20107
+ components:
+ - type: Transform
+ pos: 41.5,114.5
+ parent: 1
+ - uid: 20108
+ components:
+ - type: Transform
+ pos: 41.5,113.5
+ parent: 1
+ - uid: 20109
+ components:
+ - type: Transform
+ pos: 41.5,115.5
+ parent: 1
+ - uid: 20110
+ components:
+ - type: Transform
+ pos: 40.5,113.5
+ parent: 1
+ - uid: 20111
+ components:
+ - type: Transform
+ pos: 39.5,113.5
+ parent: 1
+ - uid: 20112
+ components:
+ - type: Transform
+ pos: 39.5,112.5
+ parent: 1
+ - uid: 20113
+ components:
+ - type: Transform
+ pos: 39.5,111.5
+ parent: 1
+ - uid: 20114
+ components:
+ - type: Transform
+ pos: 40.5,111.5
+ parent: 1
+ - uid: 20115
+ components:
+ - type: Transform
+ pos: 41.5,111.5
+ parent: 1
+ - uid: 20116
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 20117
+ components:
+ - type: Transform
+ pos: 43.5,111.5
+ parent: 1
+ - uid: 20118
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 20119
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 20120
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 20121
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20122
+ components:
+ - type: Transform
+ pos: 47.5,112.5
+ parent: 1
+ - uid: 20123
+ components:
+ - type: Transform
+ pos: 47.5,113.5
+ parent: 1
+ - uid: 20124
+ components:
+ - type: Transform
+ pos: 46.5,113.5
+ parent: 1
+ - uid: 20125
+ components:
+ - type: Transform
+ pos: 45.5,113.5
+ parent: 1
+ - uid: 20126
+ components:
+ - type: Transform
+ pos: 45.5,114.5
+ parent: 1
+ - uid: 20127
+ components:
+ - type: Transform
+ pos: 45.5,115.5
+ parent: 1
+ - uid: 20128
+ components:
+ - type: Transform
+ pos: 45.5,116.5
+ parent: 1
+ - uid: 20129
+ components:
+ - type: Transform
+ pos: 45.5,117.5
+ parent: 1
+ - uid: 20130
+ components:
+ - type: Transform
+ pos: 44.5,117.5
+ parent: 1
+ - uid: 20131
+ components:
+ - type: Transform
+ pos: 43.5,117.5
+ parent: 1
+ - uid: 20132
+ components:
+ - type: Transform
+ pos: 42.5,117.5
+ parent: 1
+ - uid: 20134
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20135
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 20136
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 20137
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20138
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 20141
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20142
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20143
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20144
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20145
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20146
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 20147
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20148
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20149
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20150
+ components:
+ - type: Transform
+ pos: 27.5,104.5
+ parent: 1
+ - uid: 20151
+ components:
+ - type: Transform
+ pos: 26.5,104.5
+ parent: 1
+ - uid: 20152
+ components:
+ - type: Transform
+ pos: 25.5,104.5
+ parent: 1
+ - uid: 20153
+ components:
+ - type: Transform
+ pos: 25.5,103.5
+ parent: 1
+ - uid: 20154
+ components:
+ - type: Transform
+ pos: 25.5,102.5
+ parent: 1
+ - uid: 20155
+ components:
+ - type: Transform
+ pos: 25.5,101.5
+ parent: 1
+ - uid: 20156
+ components:
+ - type: Transform
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 20157
+ components:
+ - type: Transform
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 20158
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20159
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20160
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20161
+ components:
+ - type: Transform
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 20314
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 20315
+ components:
+ - type: Transform
+ pos: 44.5,78.5
+ parent: 1
+ - uid: 20316
+ components:
+ - type: Transform
+ pos: 44.5,79.5
+ parent: 1
+ - uid: 20317
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 20318
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 20319
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 20321
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 20322
+ components:
+ - type: Transform
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 20323
+ components:
+ - type: Transform
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 20324
+ components:
+ - type: Transform
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 20325
+ components:
+ - type: Transform
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 20326
+ components:
+ - type: Transform
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 20327
+ components:
+ - type: Transform
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 20329
+ components:
+ - type: Transform
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 20365
+ components:
+ - type: Transform
+ pos: 38.5,112.5
+ parent: 1
+ - uid: 20367
+ components:
+ - type: Transform
+ pos: 36.5,112.5
+ parent: 1
+ - uid: 20424
+ components:
+ - type: Transform
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 20434
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 20484
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 20492
+ components:
+ - type: Transform
+ pos: 51.5,102.5
+ parent: 1
+ - uid: 20493
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 20731
+ components:
+ - type: Transform
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 20732
+ components:
+ - type: Transform
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 20733
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 20735
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 20772
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 20793
+ components:
+ - type: Transform
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 20828
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 21042
+ components:
+ - type: Transform
+ pos: 52.5,75.5
+ parent: 1
+ - uid: 21046
+ components:
+ - type: Transform
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 21060
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 21064
+ components:
+ - type: Transform
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 21137
+ components:
+ - type: Transform
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 21247
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 21382
+ components:
+ - type: Transform
+ pos: 107.5,40.5
+ parent: 1
+ - uid: 21387
+ components:
+ - type: Transform
+ pos: 52.5,70.5
+ parent: 1
+ - uid: 21388
+ components:
+ - type: Transform
+ pos: 51.5,74.5
+ parent: 1
+ - uid: 21499
+ components:
+ - type: Transform
+ pos: 143.5,56.5
+ parent: 1
+ - uid: 21585
+ components:
+ - type: Transform
+ pos: 52.5,74.5
+ parent: 1
+ - uid: 21649
+ components:
+ - type: Transform
+ pos: 52.5,73.5
+ parent: 1
+ - uid: 21650
+ components:
+ - type: Transform
+ pos: 52.5,72.5
+ parent: 1
+ - uid: 21686
+ components:
+ - type: Transform
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 21799
+ components:
+ - type: Transform
+ pos: 123.5,46.5
+ parent: 1
+ - uid: 21800
+ components:
+ - type: Transform
+ pos: 123.5,47.5
+ parent: 1
+ - uid: 21801
+ components:
+ - type: Transform
+ pos: 123.5,49.5
+ parent: 1
+ - uid: 21802
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 21803
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 21804
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 21805
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 21806
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 21807
+ components:
+ - type: Transform
+ pos: 123.5,48.5
+ parent: 1
+ - uid: 21808
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 21810
+ components:
+ - type: Transform
+ pos: 122.5,50.5
+ parent: 1
+ - uid: 21811
+ components:
+ - type: Transform
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 21812
+ components:
+ - type: Transform
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 21813
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 21814
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21815
+ components:
+ - type: Transform
+ pos: 122.5,59.5
+ parent: 1
+ - uid: 21816
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - uid: 21817
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 21818
+ components:
+ - type: Transform
+ pos: 125.5,59.5
+ parent: 1
+ - uid: 21819
+ components:
+ - type: Transform
+ pos: 126.5,59.5
+ parent: 1
+ - uid: 21820
+ components:
+ - type: Transform
+ pos: 127.5,59.5
+ parent: 1
+ - uid: 21821
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 21822
+ components:
+ - type: Transform
+ pos: 129.5,59.5
+ parent: 1
+ - uid: 21823
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - uid: 21824
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 21825
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - uid: 21826
+ components:
+ - type: Transform
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 21827
+ components:
+ - type: Transform
+ pos: 130.5,57.5
+ parent: 1
+ - uid: 21828
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - uid: 21829
+ components:
+ - type: Transform
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 21830
+ components:
+ - type: Transform
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 21831
+ components:
+ - type: Transform
+ pos: 132.5,55.5
+ parent: 1
+ - uid: 21832
+ components:
+ - type: Transform
+ pos: 133.5,55.5
+ parent: 1
+ - uid: 21833
+ components:
+ - type: Transform
+ pos: 134.5,55.5
+ parent: 1
+ - uid: 21834
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 21835
+ components:
+ - type: Transform
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 21836
+ components:
+ - type: Transform
+ pos: 126.5,54.5
+ parent: 1
+ - uid: 21837
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - uid: 21838
+ components:
+ - type: Transform
+ pos: 126.5,52.5
+ parent: 1
+ - uid: 21839
+ components:
+ - type: Transform
+ pos: 126.5,51.5
+ parent: 1
+ - uid: 21840
+ components:
+ - type: Transform
+ pos: 126.5,50.5
+ parent: 1
+ - uid: 21841
+ components:
+ - type: Transform
+ pos: 126.5,49.5
+ parent: 1
+ - uid: 21842
+ components:
+ - type: Transform
+ pos: 126.5,47.5
+ parent: 1
+ - uid: 21843
+ components:
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - uid: 21844
+ components:
+ - type: Transform
+ pos: 126.5,45.5
+ parent: 1
+ - uid: 21845
+ components:
+ - type: Transform
+ pos: 126.5,48.5
+ parent: 1
+ - uid: 21846
+ components:
+ - type: Transform
+ pos: 141.5,52.5
+ parent: 1
+ - uid: 21847
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - uid: 21848
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 21849
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 21850
+ components:
+ - type: Transform
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 21851
+ components:
+ - type: Transform
+ pos: 138.5,55.5
+ parent: 1
+ - uid: 21852
+ components:
+ - type: Transform
+ pos: 137.5,55.5
+ parent: 1
+ - uid: 21853
+ components:
+ - type: Transform
+ pos: 131.5,45.5
+ parent: 1
+ - uid: 21854
+ components:
+ - type: Transform
+ pos: 136.5,55.5
+ parent: 1
+ - uid: 21855
+ components:
+ - type: Transform
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 21856
+ components:
+ - type: Transform
+ pos: 131.5,51.5
+ parent: 1
+ - uid: 21858
+ components:
+ - type: Transform
+ pos: 132.5,52.5
+ parent: 1
+ - uid: 21859
+ components:
+ - type: Transform
+ pos: 133.5,52.5
+ parent: 1
+ - uid: 21860
+ components:
+ - type: Transform
+ pos: 134.5,52.5
+ parent: 1
+ - uid: 21862
+ components:
+ - type: Transform
+ pos: 132.5,49.5
+ parent: 1
+ - uid: 21863
+ components:
+ - type: Transform
+ pos: 133.5,49.5
+ parent: 1
+ - uid: 21864
+ components:
+ - type: Transform
+ pos: 134.5,49.5
+ parent: 1
+ - uid: 21865
+ components:
+ - type: Transform
+ pos: 132.5,46.5
+ parent: 1
+ - uid: 21866
+ components:
+ - type: Transform
+ pos: 134.5,46.5
+ parent: 1
+ - uid: 21867
+ components:
+ - type: Transform
+ pos: 133.5,46.5
+ parent: 1
+ - uid: 21868
+ components:
+ - type: Transform
+ pos: 127.5,60.5
+ parent: 1
+ - uid: 21869
+ components:
+ - type: Transform
+ pos: 127.5,61.5
+ parent: 1
+ - uid: 21870
+ components:
+ - type: Transform
+ pos: 122.5,58.5
+ parent: 1
+ - uid: 21873
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 21874
+ components:
+ - type: Transform
+ pos: 127.5,63.5
+ parent: 1
+ - uid: 21875
+ components:
+ - type: Transform
+ pos: 127.5,64.5
+ parent: 1
+ - uid: 21876
+ components:
+ - type: Transform
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 21877
+ components:
+ - type: Transform
+ pos: 127.5,66.5
+ parent: 1
+ - uid: 21878
+ components:
+ - type: Transform
+ pos: 127.5,67.5
+ parent: 1
+ - uid: 21879
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+ - uid: 21880
+ components:
+ - type: Transform
+ pos: 127.5,69.5
+ parent: 1
+ - uid: 21881
+ components:
+ - type: Transform
+ pos: 127.5,70.5
+ parent: 1
+ - uid: 21882
+ components:
+ - type: Transform
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 21883
+ components:
+ - type: Transform
+ pos: 127.5,72.5
+ parent: 1
+ - uid: 21884
+ components:
+ - type: Transform
+ pos: 127.5,73.5
+ parent: 1
+ - uid: 21885
+ components:
+ - type: Transform
+ pos: 127.5,74.5
+ parent: 1
+ - uid: 21886
+ components:
+ - type: Transform
+ pos: 126.5,74.5
+ parent: 1
+ - uid: 21887
+ components:
+ - type: Transform
+ pos: 125.5,74.5
+ parent: 1
+ - uid: 21888
+ components:
+ - type: Transform
+ pos: 124.5,74.5
+ parent: 1
+ - uid: 21889
+ components:
+ - type: Transform
+ pos: 123.5,74.5
+ parent: 1
+ - uid: 21890
+ components:
+ - type: Transform
+ pos: 126.5,71.5
+ parent: 1
+ - uid: 21891
+ components:
+ - type: Transform
+ pos: 125.5,71.5
+ parent: 1
+ - uid: 21892
+ components:
+ - type: Transform
+ pos: 124.5,71.5
+ parent: 1
+ - uid: 21893
+ components:
+ - type: Transform
+ pos: 123.5,71.5
+ parent: 1
+ - uid: 21894
+ components:
+ - type: Transform
+ pos: 123.5,68.5
+ parent: 1
+ - uid: 21895
+ components:
+ - type: Transform
+ pos: 124.5,68.5
+ parent: 1
+ - uid: 21896
+ components:
+ - type: Transform
+ pos: 125.5,68.5
+ parent: 1
+ - uid: 21897
+ components:
+ - type: Transform
+ pos: 126.5,68.5
+ parent: 1
+ - uid: 21898
+ components:
+ - type: Transform
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 21899
+ components:
+ - type: Transform
+ pos: 124.5,65.5
+ parent: 1
+ - uid: 21900
+ components:
+ - type: Transform
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 21901
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 21902
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 21903
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 21904
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 21905
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 21906
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+ - uid: 21907
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+ - uid: 21908
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+ - uid: 21909
+ components:
+ - type: Transform
+ pos: 131.5,64.5
+ parent: 1
+ - uid: 21910
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - uid: 21911
+ components:
+ - type: Transform
+ pos: 134.5,62.5
+ parent: 1
+ - uid: 21912
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 21913
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - uid: 21914
+ components:
+ - type: Transform
+ pos: 134.5,59.5
+ parent: 1
+ - uid: 21915
+ components:
+ - type: Transform
+ pos: 135.5,59.5
+ parent: 1
+ - uid: 21916
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - uid: 21917
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 21918
+ components:
+ - type: Transform
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 21919
+ components:
+ - type: Transform
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 21920
+ components:
+ - type: Transform
+ pos: 131.5,73.5
+ parent: 1
+ - uid: 21921
+ components:
+ - type: Transform
+ pos: 131.5,72.5
+ parent: 1
+ - uid: 21922
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 21923
+ components:
+ - type: Transform
+ pos: 131.5,70.5
+ parent: 1
+ - uid: 21924
+ components:
+ - type: Transform
+ pos: 131.5,69.5
+ parent: 1
+ - uid: 21925
+ components:
+ - type: Transform
+ pos: 131.5,68.5
+ parent: 1
+ - uid: 21926
+ components:
+ - type: Transform
+ pos: 132.5,68.5
+ parent: 1
+ - uid: 21927
+ components:
+ - type: Transform
+ pos: 133.5,68.5
+ parent: 1
+ - uid: 21928
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - uid: 21929
+ components:
+ - type: Transform
+ pos: 134.5,69.5
+ parent: 1
+ - uid: 21930
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 21931
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 21932
+ components:
+ - type: Transform
+ pos: 134.5,72.5
+ parent: 1
+ - uid: 21933
+ components:
+ - type: Transform
+ pos: 134.5,73.5
+ parent: 1
+ - uid: 21934
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 21935
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+ - uid: 21936
+ components:
+ - type: Transform
+ pos: 130.5,51.5
+ parent: 1
+ - uid: 21937
+ components:
+ - type: Transform
+ pos: 128.5,51.5
+ parent: 1
+ - uid: 21938
+ components:
+ - type: Transform
+ pos: 129.5,51.5
+ parent: 1
+ - uid: 21939
+ components:
+ - type: Transform
+ pos: 127.5,51.5
+ parent: 1
+ - uid: 21940
+ components:
+ - type: Transform
+ pos: 127.5,48.5
+ parent: 1
+ - uid: 21941
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 21942
+ components:
+ - type: Transform
+ pos: 129.5,48.5
+ parent: 1
+ - uid: 21943
+ components:
+ - type: Transform
+ pos: 130.5,48.5
+ parent: 1
+ - uid: 21944
+ components:
+ - type: Transform
+ pos: 130.5,47.5
+ parent: 1
+ - uid: 21945
+ components:
+ - type: Transform
+ pos: 130.5,46.5
+ parent: 1
+ - uid: 21946
+ components:
+ - type: Transform
+ pos: 130.5,45.5
+ parent: 1
+ - uid: 21947
+ components:
+ - type: Transform
+ pos: 132.5,45.5
+ parent: 1
+ - uid: 21948
+ components:
+ - type: Transform
+ pos: 132.5,47.5
+ parent: 1
+ - uid: 21949
+ components:
+ - type: Transform
+ pos: 132.5,48.5
+ parent: 1
+ - uid: 21950
+ components:
+ - type: Transform
+ pos: 132.5,50.5
+ parent: 1
+ - uid: 21951
+ components:
+ - type: Transform
+ pos: 132.5,51.5
+ parent: 1
+ - uid: 21954
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 21955
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 21956
+ components:
+ - type: Transform
+ pos: 139.5,47.5
+ parent: 1
+ - uid: 21957
+ components:
+ - type: Transform
+ pos: 139.5,48.5
+ parent: 1
+ - uid: 21958
+ components:
+ - type: Transform
+ pos: 140.5,48.5
+ parent: 1
+ - uid: 21959
+ components:
+ - type: Transform
+ pos: 141.5,48.5
+ parent: 1
+ - uid: 21960
+ components:
+ - type: Transform
+ pos: 141.5,47.5
+ parent: 1
+ - uid: 21961
+ components:
+ - type: Transform
+ pos: 141.5,46.5
+ parent: 1
+ - uid: 21962
+ components:
+ - type: Transform
+ pos: 141.5,45.5
+ parent: 1
+ - uid: 21963
+ components:
+ - type: Transform
+ pos: 140.5,45.5
+ parent: 1
+ - uid: 21964
+ components:
+ - type: Transform
+ pos: 139.5,45.5
+ parent: 1
+ - uid: 21965
+ components:
+ - type: Transform
+ pos: 139.5,46.5
+ parent: 1
+ - uid: 21966
+ components:
+ - type: Transform
+ pos: 140.5,44.5
+ parent: 1
+ - uid: 21967
+ components:
+ - type: Transform
+ pos: 140.5,43.5
+ parent: 1
+ - uid: 21968
+ components:
+ - type: Transform
+ pos: 140.5,42.5
+ parent: 1
+ - uid: 21969
+ components:
+ - type: Transform
+ pos: 140.5,41.5
+ parent: 1
+ - uid: 21970
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 21971
+ components:
+ - type: Transform
+ pos: 141.5,53.5
+ parent: 1
+ - uid: 21972
+ components:
+ - type: Transform
+ pos: 141.5,54.5
+ parent: 1
+ - uid: 21973
+ components:
+ - type: Transform
+ pos: 141.5,55.5
+ parent: 1
+ - uid: 21974
+ components:
+ - type: Transform
+ pos: 141.5,56.5
+ parent: 1
+ - uid: 21976
+ components:
+ - type: Transform
+ pos: 142.5,56.5
+ parent: 1
+ - uid: 21977
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - uid: 21978
+ components:
+ - type: Transform
+ pos: 141.5,57.5
+ parent: 1
+ - uid: 21979
+ components:
+ - type: Transform
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 21980
+ components:
+ - type: Transform
+ pos: 138.5,58.5
+ parent: 1
+ - uid: 21981
+ components:
+ - type: Transform
+ pos: 138.5,59.5
+ parent: 1
+ - uid: 21982
+ components:
+ - type: Transform
+ pos: 138.5,60.5
+ parent: 1
+ - uid: 21983
+ components:
+ - type: Transform
+ pos: 138.5,61.5
+ parent: 1
+ - uid: 21984
+ components:
+ - type: Transform
+ pos: 138.5,62.5
+ parent: 1
+ - uid: 21985
+ components:
+ - type: Transform
+ pos: 138.5,63.5
+ parent: 1
+ - uid: 21986
+ components:
+ - type: Transform
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 21987
+ components:
+ - type: Transform
+ pos: 140.5,58.5
+ parent: 1
+ - uid: 21988
+ components:
+ - type: Transform
+ pos: 140.5,59.5
+ parent: 1
+ - uid: 21989
+ components:
+ - type: Transform
+ pos: 140.5,60.5
+ parent: 1
+ - uid: 21990
+ components:
+ - type: Transform
+ pos: 140.5,61.5
+ parent: 1
+ - uid: 21991
+ components:
+ - type: Transform
+ pos: 139.5,61.5
+ parent: 1
+ - uid: 21992
+ components:
+ - type: Transform
+ pos: 138.5,56.5
+ parent: 1
+ - uid: 21993
+ components:
+ - type: Transform
+ pos: 144.5,56.5
+ parent: 1
+ - uid: 21994
+ components:
+ - type: Transform
+ pos: 145.5,56.5
+ parent: 1
+ - uid: 21995
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - uid: 21996
+ components:
+ - type: Transform
+ pos: 147.5,56.5
+ parent: 1
+ - uid: 21997
+ components:
+ - type: Transform
+ pos: 148.5,56.5
+ parent: 1
+ - uid: 21998
+ components:
+ - type: Transform
+ pos: 148.5,57.5
+ parent: 1
+ - uid: 21999
+ components:
+ - type: Transform
+ pos: 148.5,58.5
+ parent: 1
+ - uid: 22000
+ components:
+ - type: Transform
+ pos: 148.5,59.5
+ parent: 1
+ - uid: 22001
+ components:
+ - type: Transform
+ pos: 148.5,60.5
+ parent: 1
+ - uid: 22002
+ components:
+ - type: Transform
+ pos: 148.5,61.5
+ parent: 1
+ - uid: 22003
+ components:
+ - type: Transform
+ pos: 148.5,62.5
+ parent: 1
+ - uid: 22004
+ components:
+ - type: Transform
+ pos: 148.5,63.5
+ parent: 1
+ - uid: 22005
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - uid: 22006
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - uid: 22007
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 22008
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 22009
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22010
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 22011
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 22012
+ components:
+ - type: Transform
+ pos: 146.5,49.5
+ parent: 1
+ - uid: 22013
+ components:
+ - type: Transform
+ pos: 147.5,49.5
+ parent: 1
+ - uid: 22014
+ components:
+ - type: Transform
+ pos: 148.5,49.5
+ parent: 1
+ - uid: 22015
+ components:
+ - type: Transform
+ pos: 149.5,49.5
+ parent: 1
+ - uid: 22016
+ components:
+ - type: Transform
+ pos: 149.5,50.5
+ parent: 1
+ - uid: 22017
+ components:
+ - type: Transform
+ pos: 149.5,51.5
+ parent: 1
+ - uid: 22018
+ components:
+ - type: Transform
+ pos: 149.5,52.5
+ parent: 1
+ - uid: 22019
+ components:
+ - type: Transform
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 22020
+ components:
+ - type: Transform
+ pos: 147.5,52.5
+ parent: 1
+ - uid: 22021
+ components:
+ - type: Transform
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 22022
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 22023
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 22027
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - uid: 22028
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - uid: 22029
+ components:
+ - type: Transform
+ pos: 154.5,52.5
+ parent: 1
+ - uid: 22030
+ components:
+ - type: Transform
+ pos: 154.5,51.5
+ parent: 1
+ - uid: 22031
+ components:
+ - type: Transform
+ pos: 154.5,50.5
+ parent: 1
+ - uid: 22032
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - uid: 22033
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22034
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 22035
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 22036
+ components:
+ - type: Transform
+ pos: 151.5,57.5
+ parent: 1
+ - uid: 22037
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 22052
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 22053
+ components:
+ - type: Transform
+ pos: 152.5,60.5
+ parent: 1
+ - uid: 22054
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - uid: 22055
+ components:
+ - type: Transform
+ pos: 152.5,62.5
+ parent: 1
+ - uid: 22056
+ components:
+ - type: Transform
+ pos: 153.5,62.5
+ parent: 1
+ - uid: 22057
+ components:
+ - type: Transform
+ pos: 154.5,62.5
+ parent: 1
+ - uid: 22058
+ components:
+ - type: Transform
+ pos: 155.5,62.5
+ parent: 1
+ - uid: 22059
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 22060
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - uid: 22061
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - uid: 22062
+ components:
+ - type: Transform
+ pos: 151.5,61.5
+ parent: 1
+ - uid: 22063
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 22064
+ components:
+ - type: Transform
+ pos: 151.5,68.5
+ parent: 1
+ - uid: 22065
+ components:
+ - type: Transform
+ pos: 152.5,68.5
+ parent: 1
+ - uid: 22066
+ components:
+ - type: Transform
+ pos: 153.5,68.5
+ parent: 1
+ - uid: 22067
+ components:
+ - type: Transform
+ pos: 153.5,67.5
+ parent: 1
+ - uid: 22068
+ components:
+ - type: Transform
+ pos: 153.5,69.5
+ parent: 1
+ - uid: 22069
+ components:
+ - type: Transform
+ pos: 153.5,70.5
+ parent: 1
+ - uid: 22070
+ components:
+ - type: Transform
+ pos: 153.5,71.5
+ parent: 1
+ - uid: 22071
+ components:
+ - type: Transform
+ pos: 153.5,72.5
+ parent: 1
+ - uid: 22072
+ components:
+ - type: Transform
+ pos: 153.5,73.5
+ parent: 1
+ - uid: 22079
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 22080
+ components:
+ - type: Transform
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22081
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 22082
+ components:
+ - type: Transform
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 22083
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 22084
+ components:
+ - type: Transform
+ pos: 144.5,65.5
+ parent: 1
+ - uid: 22085
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - uid: 22086
+ components:
+ - type: Transform
+ pos: 144.5,62.5
+ parent: 1
+ - uid: 22087
+ components:
+ - type: Transform
+ pos: 144.5,61.5
+ parent: 1
+ - uid: 22088
+ components:
+ - type: Transform
+ pos: 138.5,65.5
+ parent: 1
+ - uid: 22089
+ components:
+ - type: Transform
+ pos: 138.5,66.5
+ parent: 1
+ - uid: 22090
+ components:
+ - type: Transform
+ pos: 138.5,67.5
+ parent: 1
+ - uid: 22091
+ components:
+ - type: Transform
+ pos: 138.5,69.5
+ parent: 1
+ - uid: 22092
+ components:
+ - type: Transform
+ pos: 138.5,70.5
+ parent: 1
+ - uid: 22093
+ components:
+ - type: Transform
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 22094
+ components:
+ - type: Transform
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22095
+ components:
+ - type: Transform
+ pos: 138.5,71.5
+ parent: 1
+ - uid: 22096
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 22097
+ components:
+ - type: Transform
+ pos: 138.5,73.5
+ parent: 1
+ - uid: 22098
+ components:
+ - type: Transform
+ pos: 138.5,74.5
+ parent: 1
+ - uid: 22099
+ components:
+ - type: Transform
+ pos: 137.5,74.5
+ parent: 1
+ - uid: 22101
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - uid: 22103
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 22104
+ components:
+ - type: Transform
+ pos: 140.5,70.5
+ parent: 1
+ - uid: 22105
+ components:
+ - type: Transform
+ pos: 141.5,70.5
+ parent: 1
+ - uid: 22106
+ components:
+ - type: Transform
+ pos: 142.5,70.5
+ parent: 1
+ - uid: 22107
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - uid: 22108
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - uid: 22109
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 22110
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - uid: 22111
+ components:
+ - type: Transform
+ pos: 148.5,70.5
+ parent: 1
+ - uid: 22112
+ components:
+ - type: Transform
+ pos: 144.5,70.5
+ parent: 1
+ - uid: 22113
+ components:
+ - type: Transform
+ pos: 148.5,69.5
+ parent: 1
+ - uid: 22114
+ components:
+ - type: Transform
+ pos: 148.5,68.5
+ parent: 1
+ - uid: 22115
+ components:
+ - type: Transform
+ pos: 148.5,67.5
+ parent: 1
+ - uid: 22116
+ components:
+ - type: Transform
+ pos: 148.5,66.5
+ parent: 1
+ - uid: 22117
+ components:
+ - type: Transform
+ pos: 148.5,65.5
+ parent: 1
+ - uid: 22118
+ components:
+ - type: Transform
+ pos: 149.5,67.5
+ parent: 1
+ - uid: 22119
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - uid: 22120
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - uid: 22121
+ components:
+ - type: Transform
+ pos: 145.5,71.5
+ parent: 1
+ - uid: 22122
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 22139
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - uid: 22140
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 22141
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 22142
+ components:
+ - type: Transform
+ pos: 143.5,71.5
+ parent: 1
+ - uid: 22143
+ components:
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - uid: 22144
+ components:
+ - type: Transform
+ pos: 143.5,73.5
+ parent: 1
+ - uid: 22145
+ components:
+ - type: Transform
+ pos: 143.5,74.5
+ parent: 1
+ - uid: 22146
+ components:
+ - type: Transform
+ pos: 142.5,74.5
+ parent: 1
+ - uid: 22147
+ components:
+ - type: Transform
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 22148
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - uid: 22149
+ components:
+ - type: Transform
+ pos: 135.5,68.5
+ parent: 1
+ - uid: 22150
+ components:
+ - type: Transform
+ pos: 133.5,74.5
+ parent: 1
+ - uid: 22151
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 22152
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 22153
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22548
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 22560
+ components:
+ - type: Transform
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 22597
+ components:
+ - type: Transform
+ pos: 96.5,48.5
+ parent: 1
+ - uid: 22600
+ components:
+ - type: Transform
+ pos: 105.5,41.5
+ parent: 1
+ - uid: 22664
+ components:
+ - type: Transform
+ pos: 98.5,47.5
+ parent: 1
+ - uid: 22706
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 22745
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 22917
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 22985
+ components:
+ - type: Transform
+ pos: 77.5,70.5
+ parent: 1
+ - uid: 23204
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 23243
+ components:
+ - type: Transform
+ pos: 52.5,71.5
+ parent: 1
+ - uid: 23263
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - uid: 23309
+ components:
+ - type: Transform
+ pos: 76.5,143.5
+ parent: 1
+ - uid: 23310
+ components:
+ - type: Transform
+ pos: 76.5,130.5
+ parent: 1
+ - uid: 23320
+ components:
+ - type: Transform
+ pos: 85.5,145.5
+ parent: 1
+ - uid: 23324
+ components:
+ - type: Transform
+ pos: 94.5,40.5
+ parent: 1
+ - uid: 23327
+ components:
+ - type: Transform
+ pos: 107.5,45.5
+ parent: 1
+ - uid: 23335
+ components:
+ - type: Transform
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 23339
+ components:
+ - type: Transform
+ pos: 99.5,41.5
+ parent: 1
+ - uid: 23350
+ components:
+ - type: Transform
+ pos: 106.5,47.5
+ parent: 1
+ - uid: 23367
+ components:
+ - type: Transform
+ pos: 90.5,40.5
+ parent: 1
+ - uid: 23419
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 23420
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 23425
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 23443
+ components:
+ - type: Transform
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 23456
+ components:
+ - type: Transform
+ pos: 58.5,134.5
+ parent: 1
+ - uid: 23465
+ components:
+ - type: Transform
+ pos: 51.5,70.5
+ parent: 1
+ - uid: 23466
+ components:
+ - type: Transform
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 23469
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 23470
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 23480
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 23483
+ components:
+ - type: Transform
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 23499
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 23505
+ components:
+ - type: Transform
+ pos: 102.5,46.5
+ parent: 1
+ - uid: 23530
+ components:
+ - type: Transform
+ pos: 79.5,131.5
+ parent: 1
+ - uid: 23548
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 23564
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 23565
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 23566
+ components:
+ - type: Transform
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 23587
+ components:
+ - type: Transform
+ pos: 36.5,96.5
+ parent: 1
+ - uid: 23600
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 23602
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 23613
+ components:
+ - type: Transform
+ pos: 71.5,58.5
+ parent: 1
+ - uid: 23646
+ components:
+ - type: Transform
+ pos: 50.5,70.5
+ parent: 1
+ - uid: 23647
+ components:
+ - type: Transform
+ pos: 49.5,70.5
+ parent: 1
+ - uid: 23659
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 23675
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 23676
+ components:
+ - type: Transform
+ pos: 58.5,133.5
+ parent: 1
+ - uid: 23688
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 23690
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 23698
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 23707
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 23708
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 23709
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 23714
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 23715
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 23733
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 23734
+ components:
+ - type: Transform
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 23735
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 23736
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 23737
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 23738
+ components:
+ - type: Transform
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 23741
+ components:
+ - type: Transform
+ pos: 81.5,132.5
+ parent: 1
+ - uid: 23748
+ components:
+ - type: Transform
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 23749
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 23783
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+ - uid: 23793
+ components:
+ - type: Transform
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 23794
+ components:
+ - type: Transform
+ pos: 117.5,114.5
+ parent: 1
+ - uid: 23795
+ components:
+ - type: Transform
+ pos: 116.5,114.5
+ parent: 1
+ - uid: 23796
+ components:
+ - type: Transform
+ pos: 115.5,114.5
+ parent: 1
+ - uid: 23797
+ components:
+ - type: Transform
+ pos: 114.5,114.5
+ parent: 1
+ - uid: 23798
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 23799
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 23800
+ components:
+ - type: Transform
+ pos: 110.5,114.5
+ parent: 1
+ - uid: 23801
+ components:
+ - type: Transform
+ pos: 111.5,114.5
+ parent: 1
+ - uid: 23802
+ components:
+ - type: Transform
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 23803
+ components:
+ - type: Transform
+ pos: 109.5,113.5
+ parent: 1
+ - uid: 23804
+ components:
+ - type: Transform
+ pos: 109.5,112.5
+ parent: 1
+ - uid: 23805
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 23806
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 23807
+ components:
+ - type: Transform
+ pos: 109.5,109.5
+ parent: 1
+ - uid: 23808
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+ - uid: 23809
+ components:
+ - type: Transform
+ pos: 109.5,107.5
+ parent: 1
+ - uid: 23810
+ components:
+ - type: Transform
+ pos: 110.5,107.5
+ parent: 1
+ - uid: 23811
+ components:
+ - type: Transform
+ pos: 111.5,107.5
+ parent: 1
+ - uid: 23812
+ components:
+ - type: Transform
+ pos: 112.5,107.5
+ parent: 1
+ - uid: 23813
+ components:
+ - type: Transform
+ pos: 113.5,107.5
+ parent: 1
+ - uid: 23814
+ components:
+ - type: Transform
+ pos: 114.5,107.5
+ parent: 1
+ - uid: 23815
+ components:
+ - type: Transform
+ pos: 115.5,107.5
+ parent: 1
+ - uid: 23816
+ components:
+ - type: Transform
+ pos: 116.5,107.5
+ parent: 1
+ - uid: 23817
+ components:
+ - type: Transform
+ pos: 117.5,107.5
+ parent: 1
+ - uid: 23818
+ components:
+ - type: Transform
+ pos: 118.5,107.5
+ parent: 1
+ - uid: 23825
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 23827
+ components:
+ - type: Transform
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 23828
+ components:
+ - type: Transform
+ pos: 107.5,113.5
+ parent: 1
+ - uid: 23829
+ components:
+ - type: Transform
+ pos: 107.5,112.5
+ parent: 1
+ - uid: 23830
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 23831
+ components:
+ - type: Transform
+ pos: 107.5,110.5
+ parent: 1
+ - uid: 23832
+ components:
+ - type: Transform
+ pos: 107.5,109.5
+ parent: 1
+ - uid: 23833
+ components:
+ - type: Transform
+ pos: 107.5,107.5
+ parent: 1
+ - uid: 23834
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+ - uid: 23835
+ components:
+ - type: Transform
+ pos: 106.5,107.5
+ parent: 1
+ - uid: 23836
+ components:
+ - type: Transform
+ pos: 105.5,107.5
+ parent: 1
+ - uid: 23837
+ components:
+ - type: Transform
+ pos: 104.5,107.5
+ parent: 1
+ - uid: 23838
+ components:
+ - type: Transform
+ pos: 103.5,107.5
+ parent: 1
+ - uid: 23839
+ components:
+ - type: Transform
+ pos: 102.5,107.5
+ parent: 1
+ - uid: 23840
+ components:
+ - type: Transform
+ pos: 101.5,107.5
+ parent: 1
+ - uid: 23841
+ components:
+ - type: Transform
+ pos: 100.5,107.5
+ parent: 1
+ - uid: 23842
+ components:
+ - type: Transform
+ pos: 99.5,107.5
+ parent: 1
+ - uid: 23843
+ components:
+ - type: Transform
+ pos: 98.5,107.5
+ parent: 1
+ - uid: 23854
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 23858
+ components:
+ - type: Transform
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 23859
+ components:
+ - type: Transform
+ pos: 99.5,114.5
+ parent: 1
+ - uid: 23860
+ components:
+ - type: Transform
+ pos: 100.5,114.5
+ parent: 1
+ - uid: 23861
+ components:
+ - type: Transform
+ pos: 101.5,114.5
+ parent: 1
+ - uid: 23862
+ components:
+ - type: Transform
+ pos: 102.5,114.5
+ parent: 1
+ - uid: 23863
+ components:
+ - type: Transform
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 23864
+ components:
+ - type: Transform
+ pos: 103.5,114.5
+ parent: 1
+ - uid: 23865
+ components:
+ - type: Transform
+ pos: 106.5,114.5
+ parent: 1
+ - uid: 23866
+ components:
+ - type: Transform
+ pos: 105.5,114.5
+ parent: 1
+ - uid: 23867
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 23868
+ components:
+ - type: Transform
+ pos: 105.5,111.5
+ parent: 1
+ - uid: 23869
+ components:
+ - type: Transform
+ pos: 104.5,111.5
+ parent: 1
+ - uid: 23870
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 23871
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 23872
+ components:
+ - type: Transform
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 23873
+ components:
+ - type: Transform
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 23874
+ components:
+ - type: Transform
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 23875
+ components:
+ - type: Transform
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 23876
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 23878
+ components:
+ - type: Transform
+ pos: 98.5,130.5
+ parent: 1
+ - uid: 23881
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 23882
+ components:
+ - type: Transform
+ pos: 111.5,111.5
+ parent: 1
+ - uid: 23883
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 23884
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 23885
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - uid: 23886
+ components:
+ - type: Transform
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 23887
+ components:
+ - type: Transform
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 23888
+ components:
+ - type: Transform
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 23889
+ components:
+ - type: Transform
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 23890
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 23894
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 23895
+ components:
+ - type: Transform
+ pos: 120.5,96.5
+ parent: 1
+ - uid: 23896
+ components:
+ - type: Transform
+ pos: 120.5,97.5
+ parent: 1
+ - uid: 23897
+ components:
+ - type: Transform
+ pos: 121.5,97.5
+ parent: 1
+ - uid: 23898
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - uid: 23899
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - uid: 23900
+ components:
+ - type: Transform
+ pos: 122.5,99.5
+ parent: 1
+ - uid: 23901
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - uid: 23902
+ components:
+ - type: Transform
+ pos: 122.5,101.5
+ parent: 1
+ - uid: 23903
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 122.5,103.5
+ parent: 1
+ - uid: 23905
+ components:
+ - type: Transform
+ pos: 121.5,103.5
+ parent: 1
+ - uid: 23906
+ components:
+ - type: Transform
+ pos: 120.5,103.5
+ parent: 1
+ - uid: 23907
+ components:
+ - type: Transform
+ pos: 119.5,103.5
+ parent: 1
+ - uid: 23908
+ components:
+ - type: Transform
+ pos: 118.5,103.5
+ parent: 1
+ - uid: 23909
+ components:
+ - type: Transform
+ pos: 117.5,103.5
+ parent: 1
+ - uid: 23910
+ components:
+ - type: Transform
+ pos: 116.5,103.5
+ parent: 1
+ - uid: 23911
+ components:
+ - type: Transform
+ pos: 115.5,103.5
+ parent: 1
+ - uid: 23912
+ components:
+ - type: Transform
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 23913
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 23914
+ components:
+ - type: Transform
+ pos: 115.5,100.5
+ parent: 1
+ - uid: 23915
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 23916
+ components:
+ - type: Transform
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 23917
+ components:
+ - type: Transform
+ pos: 115.5,97.5
+ parent: 1
+ - uid: 23918
+ components:
+ - type: Transform
+ pos: 116.5,97.5
+ parent: 1
+ - uid: 23919
+ components:
+ - type: Transform
+ pos: 117.5,97.5
+ parent: 1
+ - uid: 23920
+ components:
+ - type: Transform
+ pos: 118.5,97.5
+ parent: 1
+ - uid: 23921
+ components:
+ - type: Transform
+ pos: 119.5,97.5
+ parent: 1
+ - uid: 23922
+ components:
+ - type: Transform
+ pos: 117.5,96.5
+ parent: 1
+ - uid: 23923
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - uid: 23924
+ components:
+ - type: Transform
+ pos: 117.5,94.5
+ parent: 1
+ - uid: 23925
+ components:
+ - type: Transform
+ pos: 117.5,93.5
+ parent: 1
+ - uid: 23926
+ components:
+ - type: Transform
+ pos: 116.5,93.5
+ parent: 1
+ - uid: 23927
+ components:
+ - type: Transform
+ pos: 116.5,92.5
+ parent: 1
+ - uid: 23928
+ components:
+ - type: Transform
+ pos: 116.5,91.5
+ parent: 1
+ - uid: 23929
+ components:
+ - type: Transform
+ pos: 117.5,91.5
+ parent: 1
+ - uid: 23930
+ components:
+ - type: Transform
+ pos: 118.5,91.5
+ parent: 1
+ - uid: 23931
+ components:
+ - type: Transform
+ pos: 118.5,92.5
+ parent: 1
+ - uid: 23932
+ components:
+ - type: Transform
+ pos: 118.5,93.5
+ parent: 1
+ - uid: 23936
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 23939
+ components:
+ - type: Transform
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 23942
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 23943
+ components:
+ - type: Transform
+ pos: 107.5,103.5
+ parent: 1
+ - uid: 23944
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - uid: 23945
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - uid: 23946
+ components:
+ - type: Transform
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 23948
+ components:
+ - type: Transform
+ pos: 108.5,102.5
+ parent: 1
+ - uid: 23949
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 23950
+ components:
+ - type: Transform
+ pos: 108.5,104.5
+ parent: 1
+ - uid: 23951
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 23952
+ components:
+ - type: Transform
+ pos: 103.5,115.5
+ parent: 1
+ - uid: 23953
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 23955
+ components:
+ - type: Transform
+ pos: 43.5,45.5
+ parent: 1
+ - uid: 23957
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - uid: 23958
+ components:
+ - type: Transform
+ pos: 100.5,101.5
+ parent: 1
+ - uid: 23959
+ components:
+ - type: Transform
+ pos: 100.5,102.5
+ parent: 1
+ - uid: 23960
+ components:
+ - type: Transform
+ pos: 100.5,103.5
+ parent: 1
+ - uid: 23961
+ components:
+ - type: Transform
+ pos: 99.5,103.5
+ parent: 1
+ - uid: 23962
+ components:
+ - type: Transform
+ pos: 98.5,103.5
+ parent: 1
+ - uid: 23963
+ components:
+ - type: Transform
+ pos: 97.5,103.5
+ parent: 1
+ - uid: 23964
+ components:
+ - type: Transform
+ pos: 96.5,103.5
+ parent: 1
+ - uid: 23965
+ components:
+ - type: Transform
+ pos: 95.5,103.5
+ parent: 1
+ - uid: 23966
+ components:
+ - type: Transform
+ pos: 95.5,102.5
+ parent: 1
+ - uid: 23967
+ components:
+ - type: Transform
+ pos: 95.5,101.5
+ parent: 1
+ - uid: 23968
+ components:
+ - type: Transform
+ pos: 95.5,100.5
+ parent: 1
+ - uid: 23969
+ components:
+ - type: Transform
+ pos: 95.5,99.5
+ parent: 1
+ - uid: 23970
+ components:
+ - type: Transform
+ pos: 95.5,98.5
+ parent: 1
+ - uid: 23971
+ components:
+ - type: Transform
+ pos: 95.5,97.5
+ parent: 1
+ - uid: 23972
+ components:
+ - type: Transform
+ pos: 96.5,97.5
+ parent: 1
+ - uid: 23973
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+ - uid: 23974
+ components:
+ - type: Transform
+ pos: 98.5,97.5
+ parent: 1
+ - uid: 23975
+ components:
+ - type: Transform
+ pos: 99.5,97.5
+ parent: 1
+ - uid: 23976
+ components:
+ - type: Transform
+ pos: 100.5,97.5
+ parent: 1
+ - uid: 23977
+ components:
+ - type: Transform
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 23978
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - uid: 23979
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 23980
+ components:
+ - type: Transform
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 23981
+ components:
+ - type: Transform
+ pos: 93.5,104.5
+ parent: 1
+ - uid: 23982
+ components:
+ - type: Transform
+ pos: 94.5,100.5
+ parent: 1
+ - uid: 23983
+ components:
+ - type: Transform
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 23984
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - uid: 23986
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 23987
+ components:
+ - type: Transform
+ pos: 97.5,91.5
+ parent: 1
+ - uid: 23988
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+ - uid: 23989
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 23990
+ components:
+ - type: Transform
+ pos: 100.5,91.5
+ parent: 1
+ - uid: 23991
+ components:
+ - type: Transform
+ pos: 100.5,92.5
+ parent: 1
+ - uid: 23992
+ components:
+ - type: Transform
+ pos: 100.5,93.5
+ parent: 1
+ - uid: 23993
+ components:
+ - type: Transform
+ pos: 98.5,93.5
+ parent: 1
+ - uid: 23994
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 23995
+ components:
+ - type: Transform
+ pos: 99.5,93.5
+ parent: 1
+ - uid: 23996
+ components:
+ - type: Transform
+ pos: 97.5,93.5
+ parent: 1
+ - uid: 23997
+ components:
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+ - uid: 23998
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 23999
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 24000
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 24001
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 24002
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 24003
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 24004
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 24005
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 24006
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 24007
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 24008
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 24009
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 24010
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 24011
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 24012
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 24013
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 24014
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 24015
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 24016
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 24017
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 24018
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 24019
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 24020
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 24022
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 24023
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 24024
+ components:
+ - type: Transform
+ pos: 91.5,114.5
+ parent: 1
+ - uid: 24026
+ components:
+ - type: Transform
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 24027
+ components:
+ - type: Transform
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 24028
+ components:
+ - type: Transform
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 24030
+ components:
+ - type: Transform
+ pos: 99.5,94.5
+ parent: 1
+ - uid: 24031
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 24032
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24033
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 24034
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 24035
+ components:
+ - type: Transform
+ pos: 109.5,96.5
+ parent: 1
+ - uid: 24036
+ components:
+ - type: Transform
+ pos: 110.5,96.5
+ parent: 1
+ - uid: 24037
+ components:
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - uid: 24038
+ components:
+ - type: Transform
+ pos: 110.5,94.5
+ parent: 1
+ - uid: 24039
+ components:
+ - type: Transform
+ pos: 110.5,93.5
+ parent: 1
+ - uid: 24040
+ components:
+ - type: Transform
+ pos: 109.5,93.5
+ parent: 1
+ - uid: 24041
+ components:
+ - type: Transform
+ pos: 108.5,93.5
+ parent: 1
+ - uid: 24042
+ components:
+ - type: Transform
+ pos: 108.5,92.5
+ parent: 1
+ - uid: 24043
+ components:
+ - type: Transform
+ pos: 108.5,91.5
+ parent: 1
+ - uid: 24044
+ components:
+ - type: Transform
+ pos: 109.5,91.5
+ parent: 1
+ - uid: 24045
+ components:
+ - type: Transform
+ pos: 110.5,91.5
+ parent: 1
+ - uid: 24046
+ components:
+ - type: Transform
+ pos: 111.5,91.5
+ parent: 1
+ - uid: 24047
+ components:
+ - type: Transform
+ pos: 112.5,91.5
+ parent: 1
+ - uid: 24048
+ components:
+ - type: Transform
+ pos: 107.5,97.5
+ parent: 1
+ - uid: 24049
+ components:
+ - type: Transform
+ pos: 112.5,92.5
+ parent: 1
+ - uid: 24050
+ components:
+ - type: Transform
+ pos: 112.5,93.5
+ parent: 1
+ - uid: 24051
+ components:
+ - type: Transform
+ pos: 111.5,93.5
+ parent: 1
+ - uid: 24052
+ components:
+ - type: Transform
+ pos: 106.5,97.5
+ parent: 1
+ - uid: 24053
+ components:
+ - type: Transform
+ pos: 105.5,97.5
+ parent: 1
+ - uid: 24054
+ components:
+ - type: Transform
+ pos: 104.5,97.5
+ parent: 1
+ - uid: 24055
+ components:
+ - type: Transform
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 24056
+ components:
+ - type: Transform
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 24058
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 24059
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 24060
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 24061
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 24062
+ components:
+ - type: Transform
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 24063
+ components:
+ - type: Transform
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 24064
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - uid: 24068
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 24069
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 24073
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 24074
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 24075
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 24084
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 24085
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 24086
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 24087
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 24088
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 24089
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 24090
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 24091
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 24092
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+ - uid: 24093
+ components:
+ - type: Transform
+ pos: 125.5,114.5
+ parent: 1
+ - uid: 24094
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 24095
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 24100
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 24101
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 24102
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 24103
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 24104
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 24105
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 24106
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 24335
+ components:
+ - type: Transform
+ pos: 80.5,60.5
+ parent: 1
+ - uid: 24336
+ components:
+ - type: Transform
+ pos: 79.5,60.5
+ parent: 1
+ - uid: 24337
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 24338
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 24339
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 24340
+ components:
+ - type: Transform
+ pos: 75.5,60.5
+ parent: 1
+ - uid: 24341
+ components:
+ - type: Transform
+ pos: 74.5,60.5
+ parent: 1
+ - uid: 24344
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 24351
+ components:
+ - type: Transform
+ pos: 74.5,55.5
+ parent: 1
+ - uid: 24352
+ components:
+ - type: Transform
+ pos: 75.5,55.5
+ parent: 1
+ - uid: 24353
+ components:
+ - type: Transform
+ pos: 76.5,55.5
+ parent: 1
+ - uid: 24354
+ components:
+ - type: Transform
+ pos: 77.5,55.5
+ parent: 1
+ - uid: 24355
+ components:
+ - type: Transform
+ pos: 78.5,55.5
+ parent: 1
+ - uid: 24356
+ components:
+ - type: Transform
+ pos: 79.5,55.5
+ parent: 1
+ - uid: 24357
+ components:
+ - type: Transform
+ pos: 80.5,55.5
+ parent: 1
+ - uid: 24358
+ components:
+ - type: Transform
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 24359
+ components:
+ - type: Transform
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 24360
+ components:
+ - type: Transform
+ pos: 77.5,52.5
+ parent: 1
+ - uid: 24361
+ components:
+ - type: Transform
+ pos: 77.5,51.5
+ parent: 1
+ - uid: 24362
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - uid: 24363
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - uid: 24364
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+ - uid: 24365
+ components:
+ - type: Transform
+ pos: 76.5,48.5
+ parent: 1
+ - uid: 24366
+ components:
+ - type: Transform
+ pos: 75.5,48.5
+ parent: 1
+ - uid: 24367
+ components:
+ - type: Transform
+ pos: 78.5,48.5
+ parent: 1
+ - uid: 24368
+ components:
+ - type: Transform
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 24407
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 24549
+ components:
+ - type: Transform
+ pos: 62.5,80.5
+ parent: 1
+ - uid: 24572
+ components:
+ - type: Transform
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 24574
+ components:
+ - type: Transform
+ pos: 99.5,65.5
+ parent: 1
+ - uid: 24576
+ components:
+ - type: Transform
+ pos: 99.5,63.5
+ parent: 1
+ - uid: 24577
+ components:
+ - type: Transform
+ pos: 100.5,63.5
+ parent: 1
+ - uid: 24578
+ components:
+ - type: Transform
+ pos: 101.5,63.5
+ parent: 1
+ - uid: 24579
+ components:
+ - type: Transform
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 24580
+ components:
+ - type: Transform
+ pos: 103.5,63.5
+ parent: 1
+ - uid: 24581
+ components:
+ - type: Transform
+ pos: 104.5,63.5
+ parent: 1
+ - uid: 24582
+ components:
+ - type: Transform
+ pos: 105.5,63.5
+ parent: 1
+ - uid: 24583
+ components:
+ - type: Transform
+ pos: 106.5,63.5
+ parent: 1
+ - uid: 24584
+ components:
+ - type: Transform
+ pos: 107.5,63.5
+ parent: 1
+ - uid: 24585
+ components:
+ - type: Transform
+ pos: 108.5,63.5
+ parent: 1
+ - uid: 24586
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 1
+ - uid: 24587
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 24588
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - uid: 24589
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 1
+ - uid: 24590
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 1
+ - uid: 24591
+ components:
+ - type: Transform
+ pos: 114.5,63.5
+ parent: 1
+ - uid: 24595
+ components:
+ - type: Transform
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 24596
+ components:
+ - type: Transform
+ pos: 112.5,66.5
+ parent: 1
+ - uid: 24597
+ components:
+ - type: Transform
+ pos: 111.5,66.5
+ parent: 1
+ - uid: 24598
+ components:
+ - type: Transform
+ pos: 110.5,66.5
+ parent: 1
+ - uid: 24599
+ components:
+ - type: Transform
+ pos: 109.5,66.5
+ parent: 1
+ - uid: 24600
+ components:
+ - type: Transform
+ pos: 108.5,66.5
+ parent: 1
+ - uid: 24601
+ components:
+ - type: Transform
+ pos: 107.5,66.5
+ parent: 1
+ - uid: 24602
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 24603
+ components:
+ - type: Transform
+ pos: 105.5,66.5
+ parent: 1
+ - uid: 24604
+ components:
+ - type: Transform
+ pos: 104.5,66.5
+ parent: 1
+ - uid: 24605
+ components:
+ - type: Transform
+ pos: 103.5,66.5
+ parent: 1
+ - uid: 24606
+ components:
+ - type: Transform
+ pos: 102.5,66.5
+ parent: 1
+ - uid: 24607
+ components:
+ - type: Transform
+ pos: 100.5,66.5
+ parent: 1
+ - uid: 24608
+ components:
+ - type: Transform
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 24609
+ components:
+ - type: Transform
+ pos: 101.5,66.5
+ parent: 1
+ - uid: 24614
+ components:
+ - type: Transform
+ pos: 102.5,68.5
+ parent: 1
+ - uid: 24616
+ components:
+ - type: Transform
+ pos: 103.5,69.5
+ parent: 1
+ - uid: 24617
+ components:
+ - type: Transform
+ pos: 104.5,69.5
+ parent: 1
+ - uid: 24618
+ components:
+ - type: Transform
+ pos: 105.5,69.5
+ parent: 1
+ - uid: 24619
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+ - uid: 24620
+ components:
+ - type: Transform
+ pos: 107.5,69.5
+ parent: 1
+ - uid: 24621
+ components:
+ - type: Transform
+ pos: 108.5,69.5
+ parent: 1
+ - uid: 24622
+ components:
+ - type: Transform
+ pos: 109.5,69.5
+ parent: 1
+ - uid: 24624
+ components:
+ - type: Transform
+ pos: 110.5,68.5
+ parent: 1
+ - uid: 24625
+ components:
+ - type: Transform
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 24626
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24627
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+ - uid: 24628
+ components:
+ - type: Transform
+ pos: 108.5,57.5
+ parent: 1
+ - uid: 24629
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 24630
+ components:
+ - type: Transform
+ pos: 107.5,58.5
+ parent: 1
+ - uid: 24631
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+ - uid: 24632
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 1
+ - uid: 24633
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 24634
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - uid: 24635
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - uid: 24636
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - uid: 24637
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24638
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 24639
+ components:
+ - type: Transform
+ pos: 101.5,60.5
+ parent: 1
+ - uid: 24640
+ components:
+ - type: Transform
+ pos: 100.5,60.5
+ parent: 1
+ - uid: 24641
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 24642
+ components:
+ - type: Transform
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 24643
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - uid: 24644
+ components:
+ - type: Transform
+ pos: 99.5,57.5
+ parent: 1
+ - uid: 24645
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24646
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+ - uid: 24647
+ components:
+ - type: Transform
+ pos: 111.5,60.5
+ parent: 1
+ - uid: 24648
+ components:
+ - type: Transform
+ pos: 112.5,60.5
+ parent: 1
+ - uid: 24649
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+ - uid: 24650
+ components:
+ - type: Transform
+ pos: 112.5,58.5
+ parent: 1
+ - uid: 24651
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 24652
+ components:
+ - type: Transform
+ pos: 113.5,57.5
+ parent: 1
+ - uid: 24653
+ components:
+ - type: Transform
+ pos: 114.5,57.5
+ parent: 1
+ - uid: 24654
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 24656
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 24657
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 24658
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 24659
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 24664
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 24665
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 24667
+ components:
+ - type: Transform
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 24670
+ components:
+ - type: Transform
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 24672
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 24673
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 24674
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 24675
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 24676
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 24677
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 24678
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 24679
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 24680
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 24681
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 24682
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 24683
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 24684
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 24685
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 24686
+ components:
+ - type: Transform
+ pos: 89.5,59.5
+ parent: 1
+ - uid: 24691
+ components:
+ - type: Transform
+ pos: 89.5,55.5
+ parent: 1
+ - uid: 24700
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 24702
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 24703
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 24704
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 24705
+ components:
+ - type: Transform
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 24706
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 24707
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 24708
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 1
+ - uid: 24710
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 24711
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 24712
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 24713
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 24716
+ components:
+ - type: Transform
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 24723
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 24813
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24814
+ components:
+ - type: Transform
+ pos: 98.5,86.5
+ parent: 1
+ - uid: 24815
+ components:
+ - type: Transform
+ pos: 99.5,86.5
+ parent: 1
+ - uid: 24816
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 24817
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 24818
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 24819
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 24820
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 24821
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 24822
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 24823
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 24824
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 24825
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 24826
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 24827
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 24828
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 24829
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 24830
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 24831
+ components:
+ - type: Transform
+ pos: 113.5,86.5
+ parent: 1
+ - uid: 24832
+ components:
+ - type: Transform
+ pos: 113.5,85.5
+ parent: 1
+ - uid: 24833
+ components:
+ - type: Transform
+ pos: 113.5,84.5
+ parent: 1
+ - uid: 24834
+ components:
+ - type: Transform
+ pos: 113.5,83.5
+ parent: 1
+ - uid: 24835
+ components:
+ - type: Transform
+ pos: 113.5,82.5
+ parent: 1
+ - uid: 24836
+ components:
+ - type: Transform
+ pos: 113.5,81.5
+ parent: 1
+ - uid: 24837
+ components:
+ - type: Transform
+ pos: 113.5,80.5
+ parent: 1
+ - uid: 24838
+ components:
+ - type: Transform
+ pos: 113.5,79.5
+ parent: 1
+ - uid: 24839
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 24840
+ components:
+ - type: Transform
+ pos: 113.5,78.5
+ parent: 1
+ - uid: 24841
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 24842
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 24843
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 24844
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 24845
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 24846
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 24847
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 24848
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 24849
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 24850
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 24851
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 24852
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 24853
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 24854
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 24855
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 24856
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 24857
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 24858
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 24859
+ components:
+ - type: Transform
+ pos: 99.5,78.5
+ parent: 1
+ - uid: 24860
+ components:
+ - type: Transform
+ pos: 99.5,79.5
+ parent: 1
+ - uid: 24861
+ components:
+ - type: Transform
+ pos: 99.5,80.5
+ parent: 1
+ - uid: 24862
+ components:
+ - type: Transform
+ pos: 99.5,81.5
+ parent: 1
+ - uid: 24863
+ components:
+ - type: Transform
+ pos: 99.5,82.5
+ parent: 1
+ - uid: 24864
+ components:
+ - type: Transform
+ pos: 99.5,83.5
+ parent: 1
+ - uid: 24865
+ components:
+ - type: Transform
+ pos: 99.5,84.5
+ parent: 1
+ - uid: 24866
+ components:
+ - type: Transform
+ pos: 99.5,85.5
+ parent: 1
+ - uid: 24867
+ components:
+ - type: Transform
+ pos: 100.5,84.5
+ parent: 1
+ - uid: 24868
+ components:
+ - type: Transform
+ pos: 101.5,84.5
+ parent: 1
+ - uid: 24869
+ components:
+ - type: Transform
+ pos: 102.5,84.5
+ parent: 1
+ - uid: 24870
+ components:
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - uid: 24871
+ components:
+ - type: Transform
+ pos: 104.5,84.5
+ parent: 1
+ - uid: 24872
+ components:
+ - type: Transform
+ pos: 105.5,84.5
+ parent: 1
+ - uid: 24873
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - uid: 24874
+ components:
+ - type: Transform
+ pos: 106.5,83.5
+ parent: 1
+ - uid: 24875
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+ - uid: 24876
+ components:
+ - type: Transform
+ pos: 106.5,81.5
+ parent: 1
+ - uid: 24877
+ components:
+ - type: Transform
+ pos: 106.5,80.5
+ parent: 1
+ - uid: 24878
+ components:
+ - type: Transform
+ pos: 107.5,80.5
+ parent: 1
+ - uid: 24879
+ components:
+ - type: Transform
+ pos: 108.5,80.5
+ parent: 1
+ - uid: 24880
+ components:
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - uid: 24881
+ components:
+ - type: Transform
+ pos: 110.5,80.5
+ parent: 1
+ - uid: 24882
+ components:
+ - type: Transform
+ pos: 111.5,80.5
+ parent: 1
+ - uid: 24883
+ components:
+ - type: Transform
+ pos: 112.5,80.5
+ parent: 1
+ - uid: 24885
+ components:
+ - type: Transform
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 24886
+ components:
+ - type: Transform
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 24887
+ components:
+ - type: Transform
+ pos: 112.5,75.5
+ parent: 1
+ - uid: 24888
+ components:
+ - type: Transform
+ pos: 111.5,75.5
+ parent: 1
+ - uid: 24889
+ components:
+ - type: Transform
+ pos: 110.5,75.5
+ parent: 1
+ - uid: 24890
+ components:
+ - type: Transform
+ pos: 109.5,75.5
+ parent: 1
+ - uid: 24891
+ components:
+ - type: Transform
+ pos: 108.5,75.5
+ parent: 1
+ - uid: 24892
+ components:
+ - type: Transform
+ pos: 107.5,75.5
+ parent: 1
+ - uid: 24893
+ components:
+ - type: Transform
+ pos: 105.5,75.5
+ parent: 1
+ - uid: 24894
+ components:
+ - type: Transform
+ pos: 104.5,75.5
+ parent: 1
+ - uid: 24895
+ components:
+ - type: Transform
+ pos: 103.5,75.5
+ parent: 1
+ - uid: 24896
+ components:
+ - type: Transform
+ pos: 102.5,75.5
+ parent: 1
+ - uid: 24897
+ components:
+ - type: Transform
+ pos: 106.5,75.5
+ parent: 1
+ - uid: 24898
+ components:
+ - type: Transform
+ pos: 101.5,75.5
+ parent: 1
+ - uid: 24899
+ components:
+ - type: Transform
+ pos: 100.5,75.5
+ parent: 1
+ - uid: 24900
+ components:
+ - type: Transform
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 24901
+ components:
+ - type: Transform
+ pos: 99.5,74.5
+ parent: 1
+ - uid: 24902
+ components:
+ - type: Transform
+ pos: 99.5,73.5
+ parent: 1
+ - uid: 24903
+ components:
+ - type: Transform
+ pos: 99.5,72.5
+ parent: 1
+ - uid: 24904
+ components:
+ - type: Transform
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 24905
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - uid: 24906
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - uid: 24907
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - uid: 24908
+ components:
+ - type: Transform
+ pos: 113.5,74.5
+ parent: 1
+ - uid: 24909
+ components:
+ - type: Transform
+ pos: 113.5,73.5
+ parent: 1
+ - uid: 24910
+ components:
+ - type: Transform
+ pos: 113.5,72.5
+ parent: 1
+ - uid: 24911
+ components:
+ - type: Transform
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 24912
+ components:
+ - type: Transform
+ pos: 113.5,70.5
+ parent: 1
+ - uid: 24913
+ components:
+ - type: Transform
+ pos: 113.5,69.5
+ parent: 1
+ - uid: 24914
+ components:
+ - type: Transform
+ pos: 113.5,68.5
+ parent: 1
+ - uid: 24915
+ components:
+ - type: Transform
+ pos: 106.5,74.5
+ parent: 1
+ - uid: 24916
+ components:
+ - type: Transform
+ pos: 106.5,72.5
+ parent: 1
+ - uid: 24917
+ components:
+ - type: Transform
+ pos: 106.5,73.5
+ parent: 1
+ - uid: 24937
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24938
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 24941
+ components:
+ - type: Transform
+ pos: 87.5,74.5
+ parent: 1
+ - uid: 24942
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - uid: 24943
+ components:
+ - type: Transform
+ pos: 89.5,74.5
+ parent: 1
+ - uid: 24946
+ components:
+ - type: Transform
+ pos: 86.5,74.5
+ parent: 1
+ - uid: 24947
+ components:
+ - type: Transform
+ pos: 85.5,74.5
+ parent: 1
+ - uid: 24948
+ components:
+ - type: Transform
+ pos: 84.5,74.5
+ parent: 1
+ - uid: 24949
+ components:
+ - type: Transform
+ pos: 83.5,74.5
+ parent: 1
+ - uid: 24950
+ components:
+ - type: Transform
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 24951
+ components:
+ - type: Transform
+ pos: 81.5,74.5
+ parent: 1
+ - uid: 24952
+ components:
+ - type: Transform
+ pos: 81.5,73.5
+ parent: 1
+ - uid: 24953
+ components:
+ - type: Transform
+ pos: 81.5,72.5
+ parent: 1
+ - uid: 24954
+ components:
+ - type: Transform
+ pos: 81.5,71.5
+ parent: 1
+ - uid: 24955
+ components:
+ - type: Transform
+ pos: 81.5,70.5
+ parent: 1
+ - uid: 24956
+ components:
+ - type: Transform
+ pos: 80.5,70.5
+ parent: 1
+ - uid: 24957
+ components:
+ - type: Transform
+ pos: 79.5,70.5
+ parent: 1
+ - uid: 24958
+ components:
+ - type: Transform
+ pos: 81.5,75.5
+ parent: 1
+ - uid: 24959
+ components:
+ - type: Transform
+ pos: 81.5,76.5
+ parent: 1
+ - uid: 24960
+ components:
+ - type: Transform
+ pos: 81.5,77.5
+ parent: 1
+ - uid: 24961
+ components:
+ - type: Transform
+ pos: 81.5,78.5
+ parent: 1
+ - uid: 24962
+ components:
+ - type: Transform
+ pos: 80.5,78.5
+ parent: 1
+ - uid: 24963
+ components:
+ - type: Transform
+ pos: 79.5,78.5
+ parent: 1
+ - uid: 24997
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24998
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+ - uid: 24999
+ components:
+ - type: Transform
+ pos: 64.5,73.5
+ parent: 1
+ - uid: 25000
+ components:
+ - type: Transform
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 25001
+ components:
+ - type: Transform
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 25002
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 25003
+ components:
+ - type: Transform
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 25004
+ components:
+ - type: Transform
+ pos: 62.5,75.5
+ parent: 1
+ - uid: 25005
+ components:
+ - type: Transform
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 25006
+ components:
+ - type: Transform
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 25007
+ components:
+ - type: Transform
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 25008
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 25009
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 25010
+ components:
+ - type: Transform
+ pos: 70.5,72.5
+ parent: 1
+ - uid: 25011
+ components:
+ - type: Transform
+ pos: 71.5,72.5
+ parent: 1
+ - uid: 25012
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 25013
+ components:
+ - type: Transform
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 25014
+ components:
+ - type: Transform
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 25015
+ components:
+ - type: Transform
+ pos: 73.5,74.5
+ parent: 1
+ - uid: 25016
+ components:
+ - type: Transform
+ pos: 74.5,74.5
+ parent: 1
+ - uid: 25017
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+ - uid: 25018
+ components:
+ - type: Transform
+ pos: 74.5,76.5
+ parent: 1
+ - uid: 25019
+ components:
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - uid: 25020
+ components:
+ - type: Transform
+ pos: 74.5,78.5
+ parent: 1
+ - uid: 25021
+ components:
+ - type: Transform
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 25022
+ components:
+ - type: Transform
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 25023
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 25024
+ components:
+ - type: Transform
+ pos: 74.5,71.5
+ parent: 1
+ - uid: 25025
+ components:
+ - type: Transform
+ pos: 74.5,70.5
+ parent: 1
+ - uid: 25026
+ components:
+ - type: Transform
+ pos: 75.5,70.5
+ parent: 1
+ - uid: 25027
+ components:
+ - type: Transform
+ pos: 76.5,70.5
+ parent: 1
+ - uid: 25028
+ components:
+ - type: Transform
+ pos: 74.5,69.5
+ parent: 1
+ - uid: 25029
+ components:
+ - type: Transform
+ pos: 74.5,68.5
+ parent: 1
+ - uid: 25030
+ components:
+ - type: Transform
+ pos: 73.5,68.5
+ parent: 1
+ - uid: 25031
+ components:
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - uid: 25032
+ components:
+ - type: Transform
+ pos: 71.5,68.5
+ parent: 1
+ - uid: 25033
+ components:
+ - type: Transform
+ pos: 69.5,68.5
+ parent: 1
+ - uid: 25034
+ components:
+ - type: Transform
+ pos: 70.5,68.5
+ parent: 1
+ - uid: 25035
+ components:
+ - type: Transform
+ pos: 68.5,68.5
+ parent: 1
+ - uid: 25046
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 25047
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - uid: 25048
+ components:
+ - type: Transform
+ pos: 121.5,84.5
+ parent: 1
+ - uid: 25049
+ components:
+ - type: Transform
+ pos: 121.5,85.5
+ parent: 1
+ - uid: 25050
+ components:
+ - type: Transform
+ pos: 121.5,86.5
+ parent: 1
+ - uid: 25051
+ components:
+ - type: Transform
+ pos: 120.5,86.5
+ parent: 1
+ - uid: 25052
+ components:
+ - type: Transform
+ pos: 119.5,86.5
+ parent: 1
+ - uid: 25053
+ components:
+ - type: Transform
+ pos: 118.5,86.5
+ parent: 1
+ - uid: 25054
+ components:
+ - type: Transform
+ pos: 117.5,86.5
+ parent: 1
+ - uid: 25055
+ components:
+ - type: Transform
+ pos: 116.5,86.5
+ parent: 1
+ - uid: 25056
+ components:
+ - type: Transform
+ pos: 116.5,85.5
+ parent: 1
+ - uid: 25057
+ components:
+ - type: Transform
+ pos: 116.5,84.5
+ parent: 1
+ - uid: 25058
+ components:
+ - type: Transform
+ pos: 116.5,83.5
+ parent: 1
+ - uid: 25059
+ components:
+ - type: Transform
+ pos: 116.5,82.5
+ parent: 1
+ - uid: 25060
+ components:
+ - type: Transform
+ pos: 116.5,81.5
+ parent: 1
+ - uid: 25061
+ components:
+ - type: Transform
+ pos: 116.5,80.5
+ parent: 1
+ - uid: 25062
+ components:
+ - type: Transform
+ pos: 117.5,80.5
+ parent: 1
+ - uid: 25063
+ components:
+ - type: Transform
+ pos: 118.5,80.5
+ parent: 1
+ - uid: 25064
+ components:
+ - type: Transform
+ pos: 119.5,80.5
+ parent: 1
+ - uid: 25065
+ components:
+ - type: Transform
+ pos: 120.5,80.5
+ parent: 1
+ - uid: 25066
+ components:
+ - type: Transform
+ pos: 121.5,80.5
+ parent: 1
+ - uid: 25067
+ components:
+ - type: Transform
+ pos: 121.5,81.5
+ parent: 1
+ - uid: 25068
+ components:
+ - type: Transform
+ pos: 121.5,82.5
+ parent: 1
+ - uid: 25069
+ components:
+ - type: Transform
+ pos: 121.5,83.5
+ parent: 1
+ - uid: 25070
+ components:
+ - type: Transform
+ pos: 122.5,82.5
+ parent: 1
+ - uid: 25071
+ components:
+ - type: Transform
+ pos: 123.5,82.5
+ parent: 1
+ - uid: 25072
+ components:
+ - type: Transform
+ pos: 124.5,82.5
+ parent: 1
+ - uid: 25073
+ components:
+ - type: Transform
+ pos: 124.5,81.5
+ parent: 1
+ - uid: 25074
+ components:
+ - type: Transform
+ pos: 124.5,80.5
+ parent: 1
+ - uid: 25075
+ components:
+ - type: Transform
+ pos: 125.5,82.5
+ parent: 1
+ - uid: 25076
+ components:
+ - type: Transform
+ pos: 125.5,83.5
+ parent: 1
+ - uid: 25077
+ components:
+ - type: Transform
+ pos: 125.5,84.5
+ parent: 1
+ - uid: 25078
+ components:
+ - type: Transform
+ pos: 125.5,85.5
+ parent: 1
+ - uid: 25079
+ components:
+ - type: Transform
+ pos: 125.5,86.5
+ parent: 1
+ - uid: 25106
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 25109
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 25114
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 25120
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 25148
+ components:
+ - type: Transform
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 25151
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 25171
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 25203
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 25204
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 25212
+ components:
+ - type: Transform
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 25244
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 25257
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 25264
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 25268
+ components:
+ - type: Transform
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 25269
+ components:
+ - type: Transform
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 25270
+ components:
+ - type: Transform
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 25271
+ components:
+ - type: Transform
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 25273
+ components:
+ - type: Transform
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 25274
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 25275
+ components:
+ - type: Transform
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 25277
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 25295
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 25297
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 25300
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 25315
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 25500
+ components:
+ - type: Transform
+ pos: 92.5,114.5
+ parent: 1
+ - uid: 25501
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+ - uid: 25503
+ components:
+ - type: Transform
+ pos: 95.5,114.5
+ parent: 1
+ - uid: 25504
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 25526
+ components:
+ - type: Transform
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 25542
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25548
+ components:
+ - type: Transform
+ pos: 98.5,46.5
+ parent: 1
+ - uid: 25553
+ components:
+ - type: Transform
+ pos: 94.5,114.5
+ parent: 1
+ - uid: 25554
+ components:
+ - type: Transform
+ pos: 94.5,113.5
+ parent: 1
+ - uid: 25555
+ components:
+ - type: Transform
+ pos: 94.5,112.5
+ parent: 1
+ - uid: 25556
+ components:
+ - type: Transform
+ pos: 96.5,114.5
+ parent: 1
+ - uid: 25608
+ components:
+ - type: Transform
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 25683
+ components:
+ - type: Transform
+ pos: 104.5,96.5
+ parent: 1
+ - uid: 25753
+ components:
+ - type: Transform
+ pos: 104.5,88.5
+ parent: 1
+ - uid: 25754
+ components:
+ - type: Transform
+ pos: 104.5,89.5
+ parent: 1
+ - uid: 25755
+ components:
+ - type: Transform
+ pos: 104.5,90.5
+ parent: 1
+ - uid: 25756
+ components:
+ - type: Transform
+ pos: 104.5,91.5
+ parent: 1
+ - uid: 25757
+ components:
+ - type: Transform
+ pos: 104.5,92.5
+ parent: 1
+ - uid: 25758
+ components:
+ - type: Transform
+ pos: 104.5,94.5
+ parent: 1
+ - uid: 25759
+ components:
+ - type: Transform
+ pos: 104.5,93.5
+ parent: 1
+ - uid: 25773
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 25776
+ components:
+ - type: Transform
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 25805
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 25806
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 25862
+ components:
+ - type: Transform
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 26347
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 26348
+ components:
+ - type: Transform
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 26349
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 26381
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 26382
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - uid: 26383
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - uid: 26384
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26385
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - uid: 26386
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - uid: 26387
+ components:
+ - type: Transform
+ pos: 113.5,106.5
+ parent: 1
+ - uid: 26388
+ components:
+ - type: Transform
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 26389
+ components:
+ - type: Transform
+ pos: 103.5,101.5
+ parent: 1
+ - uid: 26390
+ components:
+ - type: Transform
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26391
+ components:
+ - type: Transform
+ pos: 103.5,103.5
+ parent: 1
+ - uid: 26392
+ components:
+ - type: Transform
+ pos: 103.5,104.5
+ parent: 1
+ - uid: 26393
+ components:
+ - type: Transform
+ pos: 103.5,100.5
+ parent: 1
+ - uid: 26402
+ components:
+ - type: Transform
+ pos: 94.5,102.5
+ parent: 1
+ - uid: 26403
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26404
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - uid: 26405
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - uid: 26406
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - uid: 26407
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - uid: 26413
+ components:
+ - type: Transform
+ pos: 75.5,130.5
+ parent: 1
+ - uid: 26490
+ components:
+ - type: Transform
+ pos: 75.5,135.5
+ parent: 1
+ - uid: 26509
+ components:
+ - type: Transform
+ pos: 90.5,74.5
+ parent: 1
+ - uid: 26559
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 26841
+ components:
+ - type: Transform
+ pos: 99.5,158.5
+ parent: 1
+ - uid: 26903
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 26906
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - uid: 26907
+ components:
+ - type: Transform
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 26908
+ components:
+ - type: Transform
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 26909
+ components:
+ - type: Transform
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 26910
+ components:
+ - type: Transform
+ pos: 85.5,71.5
+ parent: 1
+ - uid: 26911
+ components:
+ - type: Transform
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 26912
+ components:
+ - type: Transform
+ pos: 85.5,76.5
+ parent: 1
+ - uid: 26913
+ components:
+ - type: Transform
+ pos: 85.5,77.5
+ parent: 1
+ - uid: 26914
+ components:
+ - type: Transform
+ pos: 85.5,78.5
+ parent: 1
+ - uid: 26915
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 26916
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - uid: 26917
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - uid: 26918
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - uid: 26919
+ components:
+ - type: Transform
+ pos: 89.5,68.5
+ parent: 1
+ - uid: 26920
+ components:
+ - type: Transform
+ pos: 90.5,68.5
+ parent: 1
+ - uid: 26921
+ components:
+ - type: Transform
+ pos: 87.5,67.5
+ parent: 1
+ - uid: 26922
+ components:
+ - type: Transform
+ pos: 86.5,67.5
+ parent: 1
+ - uid: 26926
+ components:
+ - type: Transform
+ pos: 116.5,39.5
+ parent: 1
+ - uid: 26976
+ components:
+ - type: Transform
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 27171
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 27387
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 27412
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 27500
+ components:
+ - type: Transform
+ pos: 97.5,46.5
+ parent: 1
+ - uid: 27519
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 27520
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 27521
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 27522
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 27523
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 27524
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 27525
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 27526
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 27527
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 27528
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 27529
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 27530
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 27531
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 27532
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 27533
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 27534
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 27535
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 27536
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 27537
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 27538
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 27539
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 27540
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 27541
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 27542
+ components:
+ - type: Transform
+ pos: 73.5,42.5
+ parent: 1
+ - uid: 27543
+ components:
+ - type: Transform
+ pos: 74.5,42.5
+ parent: 1
+ - uid: 27544
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 27545
+ components:
+ - type: Transform
+ pos: 76.5,42.5
+ parent: 1
+ - uid: 27546
+ components:
+ - type: Transform
+ pos: 77.5,42.5
+ parent: 1
+ - uid: 27547
+ components:
+ - type: Transform
+ pos: 78.5,42.5
+ parent: 1
+ - uid: 27548
+ components:
+ - type: Transform
+ pos: 79.5,42.5
+ parent: 1
+ - uid: 27549
+ components:
+ - type: Transform
+ pos: 80.5,42.5
+ parent: 1
+ - uid: 27550
+ components:
+ - type: Transform
+ pos: 81.5,42.5
+ parent: 1
+ - uid: 27551
+ components:
+ - type: Transform
+ pos: 82.5,42.5
+ parent: 1
+ - uid: 27552
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - uid: 27553
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 27554
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 27555
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 27556
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 27557
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 27558
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 27559
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 27560
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 27561
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 27562
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 27563
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 27564
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 27565
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 27566
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 27567
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 27568
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 27569
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - uid: 27570
+ components:
+ - type: Transform
+ pos: 81.5,27.5
+ parent: 1
+ - uid: 27571
+ components:
+ - type: Transform
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 27572
+ components:
+ - type: Transform
+ pos: 70.5,27.5
+ parent: 1
+ - uid: 27573
+ components:
+ - type: Transform
+ pos: 69.5,27.5
+ parent: 1
+ - uid: 27574
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - uid: 27575
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - uid: 27576
+ components:
+ - type: Transform
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 27577
+ components:
+ - type: Transform
+ pos: 69.5,34.5
+ parent: 1
+ - uid: 27578
+ components:
+ - type: Transform
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 27579
+ components:
+ - type: Transform
+ pos: 81.5,34.5
+ parent: 1
+ - uid: 27580
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - uid: 27585
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 27586
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 27588
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 27607
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 27608
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 27609
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 27610
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 27611
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 27612
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 27613
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 27614
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 27616
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 27643
+ components:
+ - type: Transform
+ pos: 67.5,23.5
+ parent: 1
+ - uid: 27644
+ components:
+ - type: Transform
+ pos: 67.5,22.5
+ parent: 1
+ - uid: 27645
+ components:
+ - type: Transform
+ pos: 67.5,21.5
+ parent: 1
+ - uid: 27646
+ components:
+ - type: Transform
+ pos: 67.5,20.5
+ parent: 1
+ - uid: 27647
+ components:
+ - type: Transform
+ pos: 67.5,19.5
+ parent: 1
+ - uid: 27648
+ components:
+ - type: Transform
+ pos: 67.5,18.5
+ parent: 1
+ - uid: 27663
+ components:
+ - type: Transform
+ pos: 83.5,18.5
+ parent: 1
+ - uid: 27665
+ components:
+ - type: Transform
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 27666
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 27667
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 27668
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 27669
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 27670
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 27722
+ components:
+ - type: Transform
+ pos: 66.5,36.5
+ parent: 1
+ - uid: 27731
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 27733
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 27734
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 27735
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 27736
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 27737
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 27738
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 27739
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 27740
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 1
+ - uid: 27741
+ components:
+ - type: Transform
+ pos: 67.5,54.5
+ parent: 1
+ - uid: 27742
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 1
+ - uid: 27743
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 27744
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 1
+ - uid: 27745
+ components:
+ - type: Transform
+ pos: 67.5,57.5
+ parent: 1
+ - uid: 27746
+ components:
+ - type: Transform
+ pos: 67.5,58.5
+ parent: 1
+ - uid: 27747
+ components:
+ - type: Transform
+ pos: 67.5,59.5
+ parent: 1
+ - uid: 27748
+ components:
+ - type: Transform
+ pos: 67.5,60.5
+ parent: 1
+ - uid: 27749
+ components:
+ - type: Transform
+ pos: 67.5,61.5
+ parent: 1
+ - uid: 27751
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - uid: 27771
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27772
+ components:
+ - type: Transform
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 27773
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 27774
+ components:
+ - type: Transform
+ pos: 61.5,64.5
+ parent: 1
+ - uid: 27775
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - uid: 27776
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - uid: 27777
+ components:
+ - type: Transform
+ pos: 64.5,64.5
+ parent: 1
+ - uid: 27778
+ components:
+ - type: Transform
+ pos: 65.5,64.5
+ parent: 1
+ - uid: 27779
+ components:
+ - type: Transform
+ pos: 66.5,64.5
+ parent: 1
+ - uid: 27780
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 1
+ - uid: 27781
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 1
+ - uid: 27782
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 1
+ - uid: 27783
+ components:
+ - type: Transform
+ pos: 71.5,64.5
+ parent: 1
+ - uid: 27785
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 27786
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 27787
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 27788
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 27789
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 27790
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 27791
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 27792
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 27793
+ components:
+ - type: Transform
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 27794
+ components:
+ - type: Transform
+ pos: 56.5,67.5
+ parent: 1
+ - uid: 27795
+ components:
+ - type: Transform
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 27796
+ components:
+ - type: Transform
+ pos: 56.5,69.5
+ parent: 1
+ - uid: 27797
+ components:
+ - type: Transform
+ pos: 56.5,70.5
+ parent: 1
+ - uid: 27798
+ components:
+ - type: Transform
+ pos: 56.5,66.5
+ parent: 1
+ - uid: 27799
+ components:
+ - type: Transform
+ pos: 56.5,72.5
+ parent: 1
+ - uid: 27800
+ components:
+ - type: Transform
+ pos: 56.5,73.5
+ parent: 1
+ - uid: 27801
+ components:
+ - type: Transform
+ pos: 56.5,74.5
+ parent: 1
+ - uid: 27802
+ components:
+ - type: Transform
+ pos: 56.5,75.5
+ parent: 1
+ - uid: 27803
+ components:
+ - type: Transform
+ pos: 56.5,76.5
+ parent: 1
+ - uid: 27804
+ components:
+ - type: Transform
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 27805
+ components:
+ - type: Transform
+ pos: 56.5,78.5
+ parent: 1
+ - uid: 27806
+ components:
+ - type: Transform
+ pos: 56.5,79.5
+ parent: 1
+ - uid: 27807
+ components:
+ - type: Transform
+ pos: 56.5,71.5
+ parent: 1
+ - uid: 27808
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 27809
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 27810
+ components:
+ - type: Transform
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 27811
+ components:
+ - type: Transform
+ pos: 64.5,63.5
+ parent: 1
+ - uid: 27812
+ components:
+ - type: Transform
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 27859
+ components:
+ - type: Transform
+ pos: 56.5,83.5
+ parent: 1
+ - uid: 27860
+ components:
+ - type: Transform
+ pos: 56.5,82.5
+ parent: 1
+ - uid: 27861
+ components:
+ - type: Transform
+ pos: 53.5,87.5
+ parent: 1
+ - uid: 27862
+ components:
+ - type: Transform
+ pos: 51.5,87.5
+ parent: 1
+ - uid: 27863
+ components:
+ - type: Transform
+ pos: 53.5,96.5
+ parent: 1
+ - uid: 27865
+ components:
+ - type: Transform
+ pos: 53.5,84.5
+ parent: 1
+ - uid: 27867
+ components:
+ - type: Transform
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 27869
+ components:
+ - type: Transform
+ pos: 56.5,85.5
+ parent: 1
+ - uid: 27870
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - uid: 27871
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - uid: 27872
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 27874
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 27875
+ components:
+ - type: Transform
+ pos: 56.5,87.5
+ parent: 1
+ - uid: 27876
+ components:
+ - type: Transform
+ pos: 56.5,86.5
+ parent: 1
+ - uid: 27877
+ components:
+ - type: Transform
+ pos: 56.5,88.5
+ parent: 1
+ - uid: 27878
+ components:
+ - type: Transform
+ pos: 56.5,89.5
+ parent: 1
+ - uid: 27879
+ components:
+ - type: Transform
+ pos: 56.5,90.5
+ parent: 1
+ - uid: 27880
+ components:
+ - type: Transform
+ pos: 56.5,91.5
+ parent: 1
+ - uid: 27881
+ components:
+ - type: Transform
+ pos: 56.5,92.5
+ parent: 1
+ - uid: 27882
+ components:
+ - type: Transform
+ pos: 56.5,93.5
+ parent: 1
+ - uid: 27883
+ components:
+ - type: Transform
+ pos: 56.5,94.5
+ parent: 1
+ - uid: 27884
+ components:
+ - type: Transform
+ pos: 56.5,95.5
+ parent: 1
+ - uid: 27885
+ components:
+ - type: Transform
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 27886
+ components:
+ - type: Transform
+ pos: 56.5,97.5
+ parent: 1
+ - uid: 27887
+ components:
+ - type: Transform
+ pos: 56.5,98.5
+ parent: 1
+ - uid: 27888
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 27889
+ components:
+ - type: Transform
+ pos: 56.5,102.5
+ parent: 1
+ - uid: 27890
+ components:
+ - type: Transform
+ pos: 56.5,103.5
+ parent: 1
+ - uid: 27891
+ components:
+ - type: Transform
+ pos: 56.5,101.5
+ parent: 1
+ - uid: 27892
+ components:
+ - type: Transform
+ pos: 56.5,100.5
+ parent: 1
+ - uid: 27893
+ components:
+ - type: Transform
+ pos: 56.5,105.5
+ parent: 1
+ - uid: 27894
+ components:
+ - type: Transform
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 27895
+ components:
+ - type: Transform
+ pos: 56.5,104.5
+ parent: 1
+ - uid: 27896
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 27897
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 27898
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 27899
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 27900
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 27901
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 27902
+ components:
+ - type: Transform
+ pos: 56.5,106.5
+ parent: 1
+ - uid: 27903
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 27904
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 27905
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 27906
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 27922
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 27923
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 27952
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 27953
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 27989
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 27990
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 27991
+ components:
+ - type: Transform
+ pos: 64.5,113.5
+ parent: 1
+ - uid: 27992
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - uid: 27993
+ components:
+ - type: Transform
+ pos: 66.5,113.5
+ parent: 1
+ - uid: 27994
+ components:
+ - type: Transform
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 27995
+ components:
+ - type: Transform
+ pos: 68.5,113.5
+ parent: 1
+ - uid: 27996
+ components:
+ - type: Transform
+ pos: 69.5,113.5
+ parent: 1
+ - uid: 27997
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 27998
+ components:
+ - type: Transform
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 27999
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 28000
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 28001
+ components:
+ - type: Transform
+ pos: 75.5,113.5
+ parent: 1
+ - uid: 28002
+ components:
+ - type: Transform
+ pos: 71.5,113.5
+ parent: 1
+ - uid: 28003
+ components:
+ - type: Transform
+ pos: 76.5,113.5
+ parent: 1
+ - uid: 28004
+ components:
+ - type: Transform
+ pos: 77.5,113.5
+ parent: 1
+ - uid: 28005
+ components:
+ - type: Transform
+ pos: 78.5,113.5
+ parent: 1
+ - uid: 28006
+ components:
+ - type: Transform
+ pos: 79.5,113.5
+ parent: 1
+ - uid: 28007
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 28008
+ components:
+ - type: Transform
+ pos: 80.5,113.5
+ parent: 1
+ - uid: 28009
+ components:
+ - type: Transform
+ pos: 82.5,113.5
+ parent: 1
+ - uid: 28010
+ components:
+ - type: Transform
+ pos: 83.5,113.5
+ parent: 1
+ - uid: 28011
+ components:
+ - type: Transform
+ pos: 84.5,113.5
+ parent: 1
+ - uid: 28012
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 28013
+ components:
+ - type: Transform
+ pos: 87.5,113.5
+ parent: 1
+ - uid: 28014
+ components:
+ - type: Transform
+ pos: 88.5,113.5
+ parent: 1
+ - uid: 28015
+ components:
+ - type: Transform
+ pos: 86.5,113.5
+ parent: 1
+ - uid: 28016
+ components:
+ - type: Transform
+ pos: 88.5,114.5
+ parent: 1
+ - uid: 28017
+ components:
+ - type: Transform
+ pos: 88.5,115.5
+ parent: 1
+ - uid: 28018
+ components:
+ - type: Transform
+ pos: 88.5,116.5
+ parent: 1
+ - uid: 28019
+ components:
+ - type: Transform
+ pos: 88.5,117.5
+ parent: 1
+ - uid: 28020
+ components:
+ - type: Transform
+ pos: 88.5,118.5
+ parent: 1
+ - uid: 28021
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - uid: 28022
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - uid: 28023
+ components:
+ - type: Transform
+ pos: 91.5,118.5
+ parent: 1
+ - uid: 28024
+ components:
+ - type: Transform
+ pos: 92.5,118.5
+ parent: 1
+ - uid: 28025
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 28026
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 28027
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 28028
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 28029
+ components:
+ - type: Transform
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 28030
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28072
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 28073
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 28074
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 28075
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 28076
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 28077
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 28078
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 28079
+ components:
+ - type: Transform
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 28080
+ components:
+ - type: Transform
+ pos: 104.5,120.5
+ parent: 1
+ - uid: 28081
+ components:
+ - type: Transform
+ pos: 104.5,121.5
+ parent: 1
+ - uid: 28082
+ components:
+ - type: Transform
+ pos: 104.5,122.5
+ parent: 1
+ - uid: 28083
+ components:
+ - type: Transform
+ pos: 104.5,123.5
+ parent: 1
+ - uid: 28084
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 28085
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 28086
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 28087
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 28088
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 28089
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 28090
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 28091
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 28092
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 28093
+ components:
+ - type: Transform
+ pos: 112.5,123.5
+ parent: 1
+ - uid: 28094
+ components:
+ - type: Transform
+ pos: 112.5,122.5
+ parent: 1
+ - uid: 28095
+ components:
+ - type: Transform
+ pos: 112.5,121.5
+ parent: 1
+ - uid: 28096
+ components:
+ - type: Transform
+ pos: 112.5,120.5
+ parent: 1
+ - uid: 28097
+ components:
+ - type: Transform
+ pos: 112.5,119.5
+ parent: 1
+ - uid: 28098
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 28099
+ components:
+ - type: Transform
+ pos: 111.5,118.5
+ parent: 1
+ - uid: 28100
+ components:
+ - type: Transform
+ pos: 110.5,118.5
+ parent: 1
+ - uid: 28101
+ components:
+ - type: Transform
+ pos: 109.5,118.5
+ parent: 1
+ - uid: 28102
+ components:
+ - type: Transform
+ pos: 108.5,118.5
+ parent: 1
+ - uid: 28103
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - uid: 28104
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 28105
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - uid: 28106
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 28107
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 28108
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 28109
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 28110
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 28111
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 28112
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28113
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 28114
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 28115
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 28116
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 28117
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 28118
+ components:
+ - type: Transform
+ pos: 125.5,118.5
+ parent: 1
+ - uid: 28119
+ components:
+ - type: Transform
+ pos: 126.5,118.5
+ parent: 1
+ - uid: 28120
+ components:
+ - type: Transform
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 28121
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 28122
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 28123
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 28124
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 28125
+ components:
+ - type: Transform
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 28126
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28134
+ components:
+ - type: Transform
+ pos: 134.5,118.5
+ parent: 1
+ - uid: 28194
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - uid: 28195
+ components:
+ - type: Transform
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 28198
+ components:
+ - type: Transform
+ pos: 58.5,117.5
+ parent: 1
+ - uid: 28199
+ components:
+ - type: Transform
+ pos: 59.5,117.5
+ parent: 1
+ - uid: 28200
+ components:
+ - type: Transform
+ pos: 60.5,117.5
+ parent: 1
+ - uid: 28201
+ components:
+ - type: Transform
+ pos: 61.5,117.5
+ parent: 1
+ - uid: 28202
+ components:
+ - type: Transform
+ pos: 63.5,117.5
+ parent: 1
+ - uid: 28203
+ components:
+ - type: Transform
+ pos: 64.5,117.5
+ parent: 1
+ - uid: 28204
+ components:
+ - type: Transform
+ pos: 62.5,117.5
+ parent: 1
+ - uid: 28205
+ components:
+ - type: Transform
+ pos: 58.5,118.5
+ parent: 1
+ - uid: 28206
+ components:
+ - type: Transform
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 28207
+ components:
+ - type: Transform
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 28208
+ components:
+ - type: Transform
+ pos: 60.5,118.5
+ parent: 1
+ - uid: 28209
+ components:
+ - type: Transform
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 28210
+ components:
+ - type: Transform
+ pos: 62.5,118.5
+ parent: 1
+ - uid: 28211
+ components:
+ - type: Transform
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 28212
+ components:
+ - type: Transform
+ pos: 64.5,118.5
+ parent: 1
+ - uid: 28239
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 28241
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 28242
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 28243
+ components:
+ - type: Transform
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 28295
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 28296
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 28297
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 28298
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 28299
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 28300
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 28301
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 28302
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - uid: 28303
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 28304
+ components:
+ - type: Transform
+ pos: 128.5,112.5
+ parent: 1
+ - uid: 28305
+ components:
+ - type: Transform
+ pos: 128.5,111.5
+ parent: 1
+ - uid: 28306
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 28307
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 28308
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 28309
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 28310
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 28311
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 28312
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 28313
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 28314
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 28315
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 28316
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 28317
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 28318
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 28319
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 28320
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 28321
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 28322
+ components:
+ - type: Transform
+ pos: 128.5,95.5
+ parent: 1
+ - uid: 28339
+ components:
+ - type: Transform
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 28340
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - uid: 28342
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - uid: 28358
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 28359
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 28360
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 28361
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 28362
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 28363
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 28364
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 28365
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 28366
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 28367
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 28368
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 28369
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 28370
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 28371
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 28372
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 28373
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 28374
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 28375
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 28376
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 28377
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 28378
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 28379
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 28380
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 28381
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 28382
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 28383
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 28384
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 28385
+ components:
+ - type: Transform
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 28386
+ components:
+ - type: Transform
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 28387
+ components:
+ - type: Transform
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 28388
+ components:
+ - type: Transform
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 28389
+ components:
+ - type: Transform
+ pos: 140.5,77.5
+ parent: 1
+ - uid: 28390
+ components:
+ - type: Transform
+ pos: 135.5,78.5
+ parent: 1
+ - uid: 28391
+ components:
+ - type: Transform
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 28392
+ components:
+ - type: Transform
+ pos: 139.5,76.5
+ parent: 1
+ - uid: 28393
+ components:
+ - type: Transform
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 28394
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 28395
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 28396
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 28397
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 28398
+ components:
+ - type: Transform
+ pos: 121.5,77.5
+ parent: 1
+ - uid: 28399
+ components:
+ - type: Transform
+ pos: 120.5,77.5
+ parent: 1
+ - uid: 28400
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 28401
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 28402
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 28403
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 28404
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 28405
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 28406
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 28407
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 28408
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 28409
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 28410
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 28411
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 28412
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 28413
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 28414
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 28415
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 28416
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 28417
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 28418
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 28419
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 28420
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 28421
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 28422
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 28423
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 28424
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 28425
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 28426
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 28427
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 28428
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 28429
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 28430
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 28431
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 28432
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 28433
+ components:
+ - type: Transform
+ pos: 114.5,53.5
+ parent: 1
+ - uid: 28434
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 28439
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 28440
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 28441
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 28476
+ components:
+ - type: Transform
+ pos: 139.5,78.5
+ parent: 1
+ - uid: 28477
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28478
+ components:
+ - type: Transform
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 28479
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28482
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - uid: 28483
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 28484
+ components:
+ - type: Transform
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 28490
+ components:
+ - type: Transform
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 28549
+ components:
+ - type: Transform
+ pos: 131.5,82.5
+ parent: 1
+ - uid: 28550
+ components:
+ - type: Transform
+ pos: 132.5,82.5
+ parent: 1
+ - uid: 28551
+ components:
+ - type: Transform
+ pos: 133.5,82.5
+ parent: 1
+ - uid: 28552
+ components:
+ - type: Transform
+ pos: 134.5,82.5
+ parent: 1
+ - uid: 28553
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - uid: 28554
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - uid: 28555
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 28556
+ components:
+ - type: Transform
+ pos: 138.5,82.5
+ parent: 1
+ - uid: 28557
+ components:
+ - type: Transform
+ pos: 135.5,81.5
+ parent: 1
+ - uid: 28558
+ components:
+ - type: Transform
+ pos: 135.5,80.5
+ parent: 1
+ - uid: 28559
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28574
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 28666
+ components:
+ - type: Transform
+ pos: 114.5,51.5
+ parent: 1
+ - uid: 28667
+ components:
+ - type: Transform
+ pos: 114.5,50.5
+ parent: 1
+ - uid: 28668
+ components:
+ - type: Transform
+ pos: 114.5,49.5
+ parent: 1
+ - uid: 28669
+ components:
+ - type: Transform
+ pos: 114.5,48.5
+ parent: 1
+ - uid: 28670
+ components:
+ - type: Transform
+ pos: 120.5,50.5
+ parent: 1
+ - uid: 28671
+ components:
+ - type: Transform
+ pos: 119.5,50.5
+ parent: 1
+ - uid: 28672
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - uid: 28673
+ components:
+ - type: Transform
+ pos: 117.5,50.5
+ parent: 1
+ - uid: 28674
+ components:
+ - type: Transform
+ pos: 115.5,50.5
+ parent: 1
+ - uid: 28675
+ components:
+ - type: Transform
+ pos: 116.5,50.5
+ parent: 1
+ - uid: 28676
+ components:
+ - type: Transform
+ pos: 118.5,49.5
+ parent: 1
+ - uid: 28677
+ components:
+ - type: Transform
+ pos: 118.5,48.5
+ parent: 1
+ - uid: 28678
+ components:
+ - type: Transform
+ pos: 118.5,47.5
+ parent: 1
+ - uid: 28696
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28697
+ components:
+ - type: Transform
+ pos: 117.5,47.5
+ parent: 1
+ - uid: 28700
+ components:
+ - type: Transform
+ pos: 118.5,45.5
+ parent: 1
+ - uid: 28701
+ components:
+ - type: Transform
+ pos: 117.5,45.5
+ parent: 1
+ - uid: 28702
+ components:
+ - type: Transform
+ pos: 116.5,45.5
+ parent: 1
+ - uid: 28703
+ components:
+ - type: Transform
+ pos: 115.5,45.5
+ parent: 1
+ - uid: 28704
+ components:
+ - type: Transform
+ pos: 114.5,45.5
+ parent: 1
+ - uid: 28705
+ components:
+ - type: Transform
+ pos: 113.5,45.5
+ parent: 1
+ - uid: 28706
+ components:
+ - type: Transform
+ pos: 119.5,45.5
+ parent: 1
+ - uid: 28707
+ components:
+ - type: Transform
+ pos: 120.5,45.5
+ parent: 1
+ - uid: 28708
+ components:
+ - type: Transform
+ pos: 120.5,44.5
+ parent: 1
+ - uid: 28709
+ components:
+ - type: Transform
+ pos: 121.5,44.5
+ parent: 1
+ - uid: 28710
+ components:
+ - type: Transform
+ pos: 122.5,44.5
+ parent: 1
+ - uid: 28711
+ components:
+ - type: Transform
+ pos: 123.5,44.5
+ parent: 1
+ - uid: 28712
+ components:
+ - type: Transform
+ pos: 124.5,44.5
+ parent: 1
+ - uid: 28713
+ components:
+ - type: Transform
+ pos: 124.5,43.5
+ parent: 1
+ - uid: 28748
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 28749
+ components:
+ - type: Transform
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 28750
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 28763
+ components:
+ - type: Transform
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 28768
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 28778
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 28779
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 28780
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 28781
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 28782
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 28783
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 28900
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 28924
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 28970
+ components:
+ - type: Transform
+ pos: 73.5,64.5
+ parent: 1
+ - uid: 28971
+ components:
+ - type: Transform
+ pos: 74.5,64.5
+ parent: 1
+ - uid: 28972
+ components:
+ - type: Transform
+ pos: 75.5,64.5
+ parent: 1
+ - uid: 28973
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - uid: 28974
+ components:
+ - type: Transform
+ pos: 77.5,64.5
+ parent: 1
+ - uid: 28975
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 28976
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 28977
+ components:
+ - type: Transform
+ pos: 76.5,63.5
+ parent: 1
+ - uid: 28978
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 28979
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 28980
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 28981
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 28982
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 28983
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 28984
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 28987
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 28988
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 28989
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 28990
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 28991
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 28992
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 28993
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 28994
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 28995
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 28996
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 28997
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 28998
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 28999
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 29000
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 29001
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 29002
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 29003
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 29004
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 29005
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 29006
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 29007
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 29008
+ components:
+ - type: Transform
+ pos: 93.5,78.5
+ parent: 1
+ - uid: 29009
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 29010
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 29011
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 29012
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 29013
+ components:
+ - type: Transform
+ pos: 92.5,73.5
+ parent: 1
+ - uid: 29014
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29018
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 29019
+ components:
+ - type: Transform
+ pos: 121.5,112.5
+ parent: 1
+ - uid: 29020
+ components:
+ - type: Transform
+ pos: 121.5,113.5
+ parent: 1
+ - uid: 29021
+ components:
+ - type: Transform
+ pos: 121.5,114.5
+ parent: 1
+ - uid: 29022
+ components:
+ - type: Transform
+ pos: 121.5,111.5
+ parent: 1
+ - uid: 29023
+ components:
+ - type: Transform
+ pos: 122.5,114.5
+ parent: 1
+ - uid: 29024
+ components:
+ - type: Transform
+ pos: 124.5,114.5
+ parent: 1
+ - uid: 29025
+ components:
+ - type: Transform
+ pos: 123.5,114.5
+ parent: 1
+ - uid: 29026
+ components:
+ - type: Transform
+ pos: 121.5,109.5
+ parent: 1
+ - uid: 29027
+ components:
+ - type: Transform
+ pos: 121.5,108.5
+ parent: 1
+ - uid: 29028
+ components:
+ - type: Transform
+ pos: 121.5,107.5
+ parent: 1
+ - uid: 29257
+ components:
+ - type: Transform
+ pos: 137.5,118.5
+ parent: 1
+ - uid: 29258
+ components:
+ - type: Transform
+ pos: 139.5,118.5
+ parent: 1
+ - uid: 29259
+ components:
+ - type: Transform
+ pos: 140.5,118.5
+ parent: 1
+ - uid: 29260
+ components:
+ - type: Transform
+ pos: 141.5,118.5
+ parent: 1
+ - uid: 29261
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 29262
+ components:
+ - type: Transform
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 29263
+ components:
+ - type: Transform
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29265
+ components:
+ - type: Transform
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 29266
+ components:
+ - type: Transform
+ pos: 143.5,118.5
+ parent: 1
+ - uid: 29267
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 29268
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 29269
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - uid: 29270
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 29271
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 29272
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 29273
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 29274
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 29275
+ components:
+ - type: Transform
+ pos: 151.5,118.5
+ parent: 1
+ - uid: 29276
+ components:
+ - type: Transform
+ pos: 152.5,118.5
+ parent: 1
+ - uid: 29277
+ components:
+ - type: Transform
+ pos: 154.5,118.5
+ parent: 1
+ - uid: 29278
+ components:
+ - type: Transform
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 29279
+ components:
+ - type: Transform
+ pos: 153.5,118.5
+ parent: 1
+ - uid: 29280
+ components:
+ - type: Transform
+ pos: 156.5,118.5
+ parent: 1
+ - uid: 29281
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - uid: 29282
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - uid: 29283
+ components:
+ - type: Transform
+ pos: 158.5,118.5
+ parent: 1
+ - uid: 29284
+ components:
+ - type: Transform
+ pos: 159.5,118.5
+ parent: 1
+ - uid: 29285
+ components:
+ - type: Transform
+ pos: 160.5,118.5
+ parent: 1
+ - uid: 29286
+ components:
+ - type: Transform
+ pos: 158.5,119.5
+ parent: 1
+ - uid: 29287
+ components:
+ - type: Transform
+ pos: 155.5,119.5
+ parent: 1
+ - uid: 29288
+ components:
+ - type: Transform
+ pos: 152.5,119.5
+ parent: 1
+ - uid: 29289
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 29290
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 29291
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 29292
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 29293
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 29294
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 29295
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 29300
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 29302
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 29305
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 29310
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 29314
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 29315
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 29316
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 29317
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 29319
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29325
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - uid: 29326
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29339
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 29355
+ components:
+ - type: Transform
+ pos: 48.5,70.5
+ parent: 1
+ - uid: 29367
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29368
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - uid: 29369
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - uid: 29370
+ components:
+ - type: Transform
+ pos: 155.5,126.5
+ parent: 1
+ - uid: 29371
+ components:
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+ - uid: 29372
+ components:
+ - type: Transform
+ pos: 157.5,126.5
+ parent: 1
+ - uid: 29373
+ components:
+ - type: Transform
+ pos: 158.5,126.5
+ parent: 1
+ - uid: 29374
+ components:
+ - type: Transform
+ pos: 158.5,127.5
+ parent: 1
+ - uid: 29375
+ components:
+ - type: Transform
+ pos: 158.5,125.5
+ parent: 1
+ - uid: 29376
+ components:
+ - type: Transform
+ pos: 158.5,124.5
+ parent: 1
+ - uid: 29377
+ components:
+ - type: Transform
+ pos: 158.5,123.5
+ parent: 1
+ - uid: 29378
+ components:
+ - type: Transform
+ pos: 158.5,122.5
+ parent: 1
+ - uid: 29379
+ components:
+ - type: Transform
+ pos: 158.5,121.5
+ parent: 1
+ - uid: 29380
+ components:
+ - type: Transform
+ pos: 157.5,122.5
+ parent: 1
+ - uid: 29381
+ components:
+ - type: Transform
+ pos: 156.5,122.5
+ parent: 1
+ - uid: 29382
+ components:
+ - type: Transform
+ pos: 155.5,122.5
+ parent: 1
+ - uid: 29383
+ components:
+ - type: Transform
+ pos: 155.5,121.5
+ parent: 1
+ - uid: 29384
+ components:
+ - type: Transform
+ pos: 152.5,121.5
+ parent: 1
+ - uid: 29385
+ components:
+ - type: Transform
+ pos: 152.5,122.5
+ parent: 1
+ - uid: 29386
+ components:
+ - type: Transform
+ pos: 152.5,123.5
+ parent: 1
+ - uid: 29387
+ components:
+ - type: Transform
+ pos: 152.5,124.5
+ parent: 1
+ - uid: 29388
+ components:
+ - type: Transform
+ pos: 152.5,125.5
+ parent: 1
+ - uid: 29389
+ components:
+ - type: Transform
+ pos: 152.5,126.5
+ parent: 1
+ - uid: 29390
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 29391
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 29392
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 29393
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 29394
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 29399
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 29400
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 29401
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 29405
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 29406
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29407
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29408
+ components:
+ - type: Transform
+ pos: 158.5,134.5
+ parent: 1
+ - uid: 29409
+ components:
+ - type: Transform
+ pos: 158.5,135.5
+ parent: 1
+ - uid: 29410
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - uid: 29411
+ components:
+ - type: Transform
+ pos: 158.5,137.5
+ parent: 1
+ - uid: 29412
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - uid: 29413
+ components:
+ - type: Transform
+ pos: 159.5,138.5
+ parent: 1
+ - uid: 29414
+ components:
+ - type: Transform
+ pos: 159.5,139.5
+ parent: 1
+ - uid: 29415
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - uid: 29416
+ components:
+ - type: Transform
+ pos: 159.5,141.5
+ parent: 1
+ - uid: 29417
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - uid: 29418
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 29419
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29420
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - uid: 29421
+ components:
+ - type: Transform
+ pos: 156.5,141.5
+ parent: 1
+ - uid: 29422
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - uid: 29423
+ components:
+ - type: Transform
+ pos: 156.5,139.5
+ parent: 1
+ - uid: 29424
+ components:
+ - type: Transform
+ pos: 156.5,138.5
+ parent: 1
+ - uid: 29425
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - uid: 29426
+ components:
+ - type: Transform
+ pos: 155.5,137.5
+ parent: 1
+ - uid: 29427
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - uid: 29428
+ components:
+ - type: Transform
+ pos: 155.5,135.5
+ parent: 1
+ - uid: 29429
+ components:
+ - type: Transform
+ pos: 155.5,134.5
+ parent: 1
+ - uid: 29430
+ components:
+ - type: Transform
+ pos: 152.5,134.5
+ parent: 1
+ - uid: 29431
+ components:
+ - type: Transform
+ pos: 152.5,135.5
+ parent: 1
+ - uid: 29432
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - uid: 29433
+ components:
+ - type: Transform
+ pos: 152.5,137.5
+ parent: 1
+ - uid: 29434
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - uid: 29435
+ components:
+ - type: Transform
+ pos: 153.5,138.5
+ parent: 1
+ - uid: 29436
+ components:
+ - type: Transform
+ pos: 153.5,139.5
+ parent: 1
+ - uid: 29437
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - uid: 29438
+ components:
+ - type: Transform
+ pos: 153.5,141.5
+ parent: 1
+ - uid: 29439
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - uid: 29440
+ components:
+ - type: Transform
+ pos: 154.5,138.5
+ parent: 1
+ - uid: 29441
+ components:
+ - type: Transform
+ pos: 157.5,138.5
+ parent: 1
+ - uid: 29442
+ components:
+ - type: Transform
+ pos: 160.5,138.5
+ parent: 1
+ - uid: 29444
+ components:
+ - type: Transform
+ pos: 151.5,138.5
+ parent: 1
+ - uid: 29445
+ components:
+ - type: Transform
+ pos: 150.5,138.5
+ parent: 1
+ - uid: 29446
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 29447
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 29448
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 29449
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 29450
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 29451
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 29452
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 29453
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 29454
+ components:
+ - type: Transform
+ pos: 150.5,142.5
+ parent: 1
+ - uid: 29455
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29458
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 29459
+ components:
+ - type: Transform
+ pos: 148.5,142.5
+ parent: 1
+ - uid: 29460
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 29461
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 29462
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 29463
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 29464
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 29465
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 29466
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 29467
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 29468
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 29469
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 29470
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 29471
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 29472
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 29473
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 29475
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 29476
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 29477
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 29484
+ components:
+ - type: Transform
+ pos: 160.5,112.5
+ parent: 1
+ - uid: 29485
+ components:
+ - type: Transform
+ pos: 161.5,112.5
+ parent: 1
+ - uid: 29486
+ components:
+ - type: Transform
+ pos: 162.5,112.5
+ parent: 1
+ - uid: 29487
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 29488
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 29489
+ components:
+ - type: Transform
+ pos: 164.5,126.5
+ parent: 1
+ - uid: 29490
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 29491
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 29492
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 29493
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 29494
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 29495
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29496
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 29497
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 29498
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 29499
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 29500
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 29501
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 29502
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 29503
+ components:
+ - type: Transform
+ pos: 161.5,123.5
+ parent: 1
+ - uid: 29506
+ components:
+ - type: Transform
+ pos: 163.5,126.5
+ parent: 1
+ - uid: 29507
+ components:
+ - type: Transform
+ pos: 163.5,127.5
+ parent: 1
+ - uid: 29508
+ components:
+ - type: Transform
+ pos: 163.5,128.5
+ parent: 1
+ - uid: 29509
+ components:
+ - type: Transform
+ pos: 163.5,129.5
+ parent: 1
+ - uid: 29510
+ components:
+ - type: Transform
+ pos: 163.5,130.5
+ parent: 1
+ - uid: 29512
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 29525
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 29526
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 29527
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 29528
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 29529
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 29532
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 29536
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 29538
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 29539
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 29540
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 29541
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 29542
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 29543
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 29544
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 29589
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 29660
+ components:
+ - type: Transform
+ pos: 144.5,121.5
+ parent: 1
+ - uid: 29661
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29662
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29663
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+ - uid: 29664
+ components:
+ - type: Transform
+ pos: 144.5,125.5
+ parent: 1
+ - uid: 29666
+ components:
+ - type: Transform
+ pos: 144.5,128.5
+ parent: 1
+ - uid: 29667
+ components:
+ - type: Transform
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 29668
+ components:
+ - type: Transform
+ pos: 143.5,128.5
+ parent: 1
+ - uid: 29669
+ components:
+ - type: Transform
+ pos: 145.5,127.5
+ parent: 1
+ - uid: 29853
+ components:
+ - type: Transform
+ pos: 155.5,148.5
+ parent: 1
+ - uid: 29869
+ components:
+ - type: Transform
+ pos: 153.5,148.5
+ parent: 1
+ - uid: 29870
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 29871
+ components:
+ - type: Transform
+ pos: 151.5,148.5
+ parent: 1
+ - uid: 29873
+ components:
+ - type: Transform
+ pos: 149.5,148.5
+ parent: 1
+ - uid: 29874
+ components:
+ - type: Transform
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 29875
+ components:
+ - type: Transform
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 29876
+ components:
+ - type: Transform
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 29877
+ components:
+ - type: Transform
+ pos: 145.5,148.5
+ parent: 1
+ - uid: 29878
+ components:
+ - type: Transform
+ pos: 144.5,148.5
+ parent: 1
+ - uid: 29879
+ components:
+ - type: Transform
+ pos: 143.5,148.5
+ parent: 1
+ - uid: 29880
+ components:
+ - type: Transform
+ pos: 142.5,148.5
+ parent: 1
+ - uid: 29881
+ components:
+ - type: Transform
+ pos: 141.5,148.5
+ parent: 1
+ - uid: 29882
+ components:
+ - type: Transform
+ pos: 140.5,148.5
+ parent: 1
+ - uid: 29883
+ components:
+ - type: Transform
+ pos: 139.5,148.5
+ parent: 1
+ - uid: 29884
+ components:
+ - type: Transform
+ pos: 139.5,147.5
+ parent: 1
+ - uid: 29886
+ components:
+ - type: Transform
+ pos: 139.5,149.5
+ parent: 1
+ - uid: 29887
+ components:
+ - type: Transform
+ pos: 139.5,150.5
+ parent: 1
+ - uid: 29888
+ components:
+ - type: Transform
+ pos: 139.5,151.5
+ parent: 1
+ - uid: 29889
+ components:
+ - type: Transform
+ pos: 139.5,152.5
+ parent: 1
+ - uid: 29890
+ components:
+ - type: Transform
+ pos: 140.5,152.5
+ parent: 1
+ - uid: 29891
+ components:
+ - type: Transform
+ pos: 141.5,152.5
+ parent: 1
+ - uid: 29892
+ components:
+ - type: Transform
+ pos: 142.5,152.5
+ parent: 1
+ - uid: 29893
+ components:
+ - type: Transform
+ pos: 143.5,152.5
+ parent: 1
+ - uid: 29894
+ components:
+ - type: Transform
+ pos: 144.5,152.5
+ parent: 1
+ - uid: 29895
+ components:
+ - type: Transform
+ pos: 145.5,152.5
+ parent: 1
+ - uid: 29896
+ components:
+ - type: Transform
+ pos: 146.5,152.5
+ parent: 1
+ - uid: 29897
+ components:
+ - type: Transform
+ pos: 147.5,152.5
+ parent: 1
+ - uid: 29898
+ components:
+ - type: Transform
+ pos: 148.5,152.5
+ parent: 1
+ - uid: 29899
+ components:
+ - type: Transform
+ pos: 149.5,152.5
+ parent: 1
+ - uid: 29901
+ components:
+ - type: Transform
+ pos: 151.5,152.5
+ parent: 1
+ - uid: 29902
+ components:
+ - type: Transform
+ pos: 152.5,152.5
+ parent: 1
+ - uid: 29903
+ components:
+ - type: Transform
+ pos: 152.5,151.5
+ parent: 1
+ - uid: 29904
+ components:
+ - type: Transform
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29905
+ components:
+ - type: Transform
+ pos: 152.5,149.5
+ parent: 1
+ - uid: 29906
+ components:
+ - type: Transform
+ pos: 149.5,153.5
+ parent: 1
+ - uid: 29907
+ components:
+ - type: Transform
+ pos: 149.5,154.5
+ parent: 1
+ - uid: 29908
+ components:
+ - type: Transform
+ pos: 149.5,155.5
+ parent: 1
+ - uid: 29909
+ components:
+ - type: Transform
+ pos: 149.5,156.5
+ parent: 1
+ - uid: 29910
+ components:
+ - type: Transform
+ pos: 151.5,153.5
+ parent: 1
+ - uid: 29911
+ components:
+ - type: Transform
+ pos: 151.5,155.5
+ parent: 1
+ - uid: 29912
+ components:
+ - type: Transform
+ pos: 151.5,156.5
+ parent: 1
+ - uid: 29913
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 29914
+ components:
+ - type: Transform
+ pos: 143.5,153.5
+ parent: 1
+ - uid: 29915
+ components:
+ - type: Transform
+ pos: 143.5,155.5
+ parent: 1
+ - uid: 29916
+ components:
+ - type: Transform
+ pos: 143.5,156.5
+ parent: 1
+ - uid: 29917
+ components:
+ - type: Transform
+ pos: 143.5,154.5
+ parent: 1
+ - uid: 29918
+ components:
+ - type: Transform
+ pos: 141.5,153.5
+ parent: 1
+ - uid: 29919
+ components:
+ - type: Transform
+ pos: 141.5,154.5
+ parent: 1
+ - uid: 29920
+ components:
+ - type: Transform
+ pos: 141.5,155.5
+ parent: 1
+ - uid: 29921
+ components:
+ - type: Transform
+ pos: 141.5,156.5
+ parent: 1
+ - uid: 29922
+ components:
+ - type: Transform
+ pos: 138.5,151.5
+ parent: 1
+ - uid: 29923
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 29924
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 29925
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 29926
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 29927
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 29928
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 29931
+ components:
+ - type: Transform
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 29937
+ components:
+ - type: Transform
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 29938
+ components:
+ - type: Transform
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 29971
+ components:
+ - type: Transform
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 29972
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 29973
+ components:
+ - type: Transform
+ pos: 141.5,141.5
+ parent: 1
+ - uid: 29974
+ components:
+ - type: Transform
+ pos: 140.5,141.5
+ parent: 1
+ - uid: 29975
+ components:
+ - type: Transform
+ pos: 141.5,140.5
+ parent: 1
+ - uid: 29976
+ components:
+ - type: Transform
+ pos: 141.5,138.5
+ parent: 1
+ - uid: 29977
+ components:
+ - type: Transform
+ pos: 141.5,137.5
+ parent: 1
+ - uid: 29978
+ components:
+ - type: Transform
+ pos: 141.5,139.5
+ parent: 1
+ - uid: 29979
+ components:
+ - type: Transform
+ pos: 140.5,137.5
+ parent: 1
+ - uid: 29980
+ components:
+ - type: Transform
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 29981
+ components:
+ - type: Transform
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 29986
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 29987
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 29988
+ components:
+ - type: Transform
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 29989
+ components:
+ - type: Transform
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 29990
+ components:
+ - type: Transform
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 30003
+ components:
+ - type: Transform
+ pos: 143.5,131.5
+ parent: 1
+ - uid: 30004
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 30005
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 30006
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 30007
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+ - uid: 30008
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 30009
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 30010
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30014
+ components:
+ - type: Transform
+ pos: 154.5,148.5
+ parent: 1
+ - uid: 30111
+ components:
+ - type: Transform
+ pos: 156.5,148.5
+ parent: 1
+ - uid: 30117
+ components:
+ - type: Transform
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 30118
+ components:
+ - type: Transform
+ pos: 156.5,151.5
+ parent: 1
+ - uid: 30119
+ components:
+ - type: Transform
+ pos: 156.5,152.5
+ parent: 1
+ - uid: 30120
+ components:
+ - type: Transform
+ pos: 156.5,153.5
+ parent: 1
+ - uid: 30133
+ components:
+ - type: Transform
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 30160
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - uid: 30186
+ components:
+ - type: Transform
+ pos: 139.5,145.5
+ parent: 1
+ - uid: 30194
+ components:
+ - type: Transform
+ pos: 155.5,151.5
+ parent: 1
+ - uid: 30195
+ components:
+ - type: Transform
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 30210
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 30224
+ components:
+ - type: Transform
+ pos: 81.5,133.5
+ parent: 1
+ - uid: 30257
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 30260
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 30269
+ components:
+ - type: Transform
+ pos: 81.5,130.5
+ parent: 1
+ - uid: 30293
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 30366
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 30423
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30477
+ components:
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - uid: 30478
+ components:
+ - type: Transform
+ pos: 136.5,151.5
+ parent: 1
+ - uid: 30479
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+ - uid: 30480
+ components:
+ - type: Transform
+ pos: 133.5,151.5
+ parent: 1
+ - uid: 30481
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - uid: 30482
+ components:
+ - type: Transform
+ pos: 134.5,150.5
+ parent: 1
+ - uid: 30483
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 30484
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30485
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30486
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30487
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 30488
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30489
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30490
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30491
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 30492
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 30493
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 30494
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 30495
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 30496
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 30497
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 30498
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 30499
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 30500
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 30501
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 30502
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 30503
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 30504
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 30505
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 30506
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 30507
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 30508
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 30513
+ components:
+ - type: Transform
+ pos: 129.5,149.5
+ parent: 1
+ - uid: 30514
+ components:
+ - type: Transform
+ pos: 129.5,150.5
+ parent: 1
+ - uid: 30518
+ components:
+ - type: Transform
+ pos: 127.5,152.5
+ parent: 1
+ - uid: 30519
+ components:
+ - type: Transform
+ pos: 126.5,152.5
+ parent: 1
+ - uid: 30520
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 30529
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 30531
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 30532
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 30533
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 30534
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 30535
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 30550
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 30664
+ components:
+ - type: Transform
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 30672
+ components:
+ - type: Transform
+ pos: 70.5,158.5
+ parent: 1
+ - uid: 30673
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 30674
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 30685
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 30695
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 30696
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 30697
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 30698
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 30699
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 30700
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 30701
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 30702
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 30703
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 30704
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 30705
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 30706
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 30707
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 30708
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 30709
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 30710
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 30711
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 30712
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 30713
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 30714
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 30715
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 30716
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 30720
+ components:
+ - type: Transform
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 30723
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 30724
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30725
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 30726
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 30736
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 30737
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 30738
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 30739
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 30740
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 30741
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 30742
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30743
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30744
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30745
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30746
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30747
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30748
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 30752
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 30754
+ components:
+ - type: Transform
+ pos: 61.5,160.5
+ parent: 1
+ - uid: 30755
+ components:
+ - type: Transform
+ pos: 61.5,161.5
+ parent: 1
+ - uid: 30756
+ components:
+ - type: Transform
+ pos: 61.5,159.5
+ parent: 1
+ - uid: 30757
+ components:
+ - type: Transform
+ pos: 62.5,161.5
+ parent: 1
+ - uid: 30758
+ components:
+ - type: Transform
+ pos: 63.5,161.5
+ parent: 1
+ - uid: 30759
+ components:
+ - type: Transform
+ pos: 64.5,161.5
+ parent: 1
+ - uid: 30760
+ components:
+ - type: Transform
+ pos: 65.5,161.5
+ parent: 1
+ - uid: 30761
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 30762
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 30764
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 30765
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 30766
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 30768
+ components:
+ - type: Transform
+ pos: 59.5,152.5
+ parent: 1
+ - uid: 30769
+ components:
+ - type: Transform
+ pos: 58.5,152.5
+ parent: 1
+ - uid: 30770
+ components:
+ - type: Transform
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 30771
+ components:
+ - type: Transform
+ pos: 58.5,154.5
+ parent: 1
+ - uid: 30772
+ components:
+ - type: Transform
+ pos: 58.5,155.5
+ parent: 1
+ - uid: 30773
+ components:
+ - type: Transform
+ pos: 58.5,156.5
+ parent: 1
+ - uid: 30774
+ components:
+ - type: Transform
+ pos: 58.5,157.5
+ parent: 1
+ - uid: 30775
+ components:
+ - type: Transform
+ pos: 58.5,158.5
+ parent: 1
+ - uid: 30776
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 30778
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 30779
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 30780
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 30792
+ components:
+ - type: Transform
+ pos: 21.5,112.5
+ parent: 1
+ - uid: 30833
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 30849
+ components:
+ - type: Transform
+ pos: 106.5,46.5
+ parent: 1
+ - uid: 30860
+ components:
+ - type: Transform
+ pos: 106.5,48.5
+ parent: 1
+ - uid: 30871
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 31803
+ components:
+ - type: Transform
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 31835
+ components:
+ - type: Transform
+ pos: 87.5,61.5
+ parent: 1
+ - uid: 31841
+ components:
+ - type: Transform
+ pos: 88.5,60.5
+ parent: 1
+ - uid: 31939
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 31955
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 31957
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 31958
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 31959
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 31960
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 31961
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 31962
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 31963
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 31964
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 31965
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 31966
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 31967
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 31968
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 32058
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 32086
+ components:
+ - type: Transform
+ pos: 77.5,116.5
+ parent: 1
+ - uid: 32167
+ components:
+ - type: Transform
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 32216
+ components:
+ - type: Transform
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 32240
+ components:
+ - type: Transform
+ pos: 22.5,112.5
+ parent: 1
+ - uid: 32241
+ components:
+ - type: Transform
+ pos: 147.5,86.5
+ parent: 1
+ - uid: 32246
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 32249
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 32250
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 32251
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 32270
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 32271
+ components:
+ - type: Transform
+ pos: 62.5,46.5
+ parent: 1
+ - uid: 32272
+ components:
+ - type: Transform
+ pos: 61.5,46.5
+ parent: 1
+ - uid: 32275
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 32278
+ components:
+ - type: Transform
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 32300
+ components:
+ - type: Transform
+ pos: 125.5,41.5
+ parent: 1
+ - uid: 32301
+ components:
+ - type: Transform
+ pos: 126.5,41.5
+ parent: 1
+ - uid: 32302
+ components:
+ - type: Transform
+ pos: 127.5,41.5
+ parent: 1
+ - uid: 32316
+ components:
+ - type: Transform
+ pos: 68.5,40.5
+ parent: 1
+ - uid: 32317
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 32332
+ components:
+ - type: Transform
+ pos: 114.5,40.5
+ parent: 1
+ - uid: 32334
+ components:
+ - type: Transform
+ pos: 81.5,145.5
+ parent: 1
+ - uid: 32335
+ components:
+ - type: Transform
+ pos: 81.5,129.5
+ parent: 1
+ - uid: 32336
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 32337
+ components:
+ - type: Transform
+ pos: 81.5,131.5
+ parent: 1
+ - uid: 32338
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 32339
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 32340
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 32341
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 32342
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 32343
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 32344
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 32345
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 32346
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 32347
+ components:
+ - type: Transform
+ pos: 111.5,34.5
+ parent: 1
+ - uid: 32351
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 32352
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 32378
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 32379
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 32380
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 32381
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 32382
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 32383
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 32384
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 32385
+ components:
+ - type: Transform
+ pos: 153.5,53.5
+ parent: 1
+ - uid: 32386
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 32389
+ components:
+ - type: Transform
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 32390
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 32391
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 32392
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 32393
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 32394
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 32395
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 32396
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 32397
+ components:
+ - type: Transform
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 32400
+ components:
+ - type: Transform
+ pos: 113.5,38.5
+ parent: 1
+ - uid: 32401
+ components:
+ - type: Transform
+ pos: 114.5,38.5
+ parent: 1
+ - uid: 32402
+ components:
+ - type: Transform
+ pos: 114.5,37.5
+ parent: 1
+ - uid: 32403
+ components:
+ - type: Transform
+ pos: 114.5,36.5
+ parent: 1
+ - uid: 32932
+ components:
+ - type: Transform
+ pos: 123.5,169.5
+ parent: 1
+ - uid: 32941
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 32975
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 32996
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 32999
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 33008
+ components:
+ - type: Transform
+ pos: 112.5,19.5
+ parent: 1
+ - uid: 33012
+ components:
+ - type: Transform
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 33013
+ components:
+ - type: Transform
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33014
+ components:
+ - type: Transform
+ pos: 91.5,19.5
+ parent: 1
+ - uid: 33015
+ components:
+ - type: Transform
+ pos: 92.5,19.5
+ parent: 1
+ - uid: 33016
+ components:
+ - type: Transform
+ pos: 93.5,19.5
+ parent: 1
+ - uid: 33017
+ components:
+ - type: Transform
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 33018
+ components:
+ - type: Transform
+ pos: 95.5,19.5
+ parent: 1
+ - uid: 33019
+ components:
+ - type: Transform
+ pos: 97.5,19.5
+ parent: 1
+ - uid: 33020
+ components:
+ - type: Transform
+ pos: 96.5,19.5
+ parent: 1
+ - uid: 33021
+ components:
+ - type: Transform
+ pos: 95.5,20.5
+ parent: 1
+ - uid: 33022
+ components:
+ - type: Transform
+ pos: 95.5,22.5
+ parent: 1
+ - uid: 33023
+ components:
+ - type: Transform
+ pos: 95.5,21.5
+ parent: 1
+ - uid: 33024
+ components:
+ - type: Transform
+ pos: 95.5,23.5
+ parent: 1
+ - uid: 33025
+ components:
+ - type: Transform
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33026
+ components:
+ - type: Transform
+ pos: 95.5,25.5
+ parent: 1
+ - uid: 33027
+ components:
+ - type: Transform
+ pos: 95.5,26.5
+ parent: 1
+ - uid: 33028
+ components:
+ - type: Transform
+ pos: 95.5,27.5
+ parent: 1
+ - uid: 33029
+ components:
+ - type: Transform
+ pos: 95.5,28.5
+ parent: 1
+ - uid: 33030
+ components:
+ - type: Transform
+ pos: 95.5,29.5
+ parent: 1
+ - uid: 33031
+ components:
+ - type: Transform
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33032
+ components:
+ - type: Transform
+ pos: 95.5,31.5
+ parent: 1
+ - uid: 33033
+ components:
+ - type: Transform
+ pos: 97.5,31.5
+ parent: 1
+ - uid: 33034
+ components:
+ - type: Transform
+ pos: 98.5,31.5
+ parent: 1
+ - uid: 33035
+ components:
+ - type: Transform
+ pos: 96.5,31.5
+ parent: 1
+ - uid: 33036
+ components:
+ - type: Transform
+ pos: 89.5,21.5
+ parent: 1
+ - uid: 33037
+ components:
+ - type: Transform
+ pos: 89.5,22.5
+ parent: 1
+ - uid: 33038
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33039
+ components:
+ - type: Transform
+ pos: 89.5,25.5
+ parent: 1
+ - uid: 33040
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33041
+ components:
+ - type: Transform
+ pos: 89.5,27.5
+ parent: 1
+ - uid: 33042
+ components:
+ - type: Transform
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33043
+ components:
+ - type: Transform
+ pos: 90.5,27.5
+ parent: 1
+ - uid: 33044
+ components:
+ - type: Transform
+ pos: 91.5,28.5
+ parent: 1
+ - uid: 33045
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33046
+ components:
+ - type: Transform
+ pos: 91.5,30.5
+ parent: 1
+ - uid: 33047
+ components:
+ - type: Transform
+ pos: 91.5,31.5
+ parent: 1
+ - uid: 33048
+ components:
+ - type: Transform
+ pos: 92.5,31.5
+ parent: 1
+ - uid: 33049
+ components:
+ - type: Transform
+ pos: 90.5,31.5
+ parent: 1
+ - uid: 33050
+ components:
+ - type: Transform
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 33051
+ components:
+ - type: Transform
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 33052
+ components:
+ - type: Transform
+ pos: 94.5,31.5
+ parent: 1
+ - uid: 33053
+ components:
+ - type: Transform
+ pos: 96.5,27.5
+ parent: 1
+ - uid: 33054
+ components:
+ - type: Transform
+ pos: 98.5,27.5
+ parent: 1
+ - uid: 33055
+ components:
+ - type: Transform
+ pos: 99.5,27.5
+ parent: 1
+ - uid: 33056
+ components:
+ - type: Transform
+ pos: 100.5,27.5
+ parent: 1
+ - uid: 33057
+ components:
+ - type: Transform
+ pos: 101.5,27.5
+ parent: 1
+ - uid: 33066
+ components:
+ - type: Transform
+ pos: 102.5,19.5
+ parent: 1
+ - uid: 33067
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - uid: 33068
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - uid: 33069
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - uid: 33070
+ components:
+ - type: Transform
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33071
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - uid: 33072
+ components:
+ - type: Transform
+ pos: 106.5,28.5
+ parent: 1
+ - uid: 33073
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33074
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33075
+ components:
+ - type: Transform
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33076
+ components:
+ - type: Transform
+ pos: 105.5,19.5
+ parent: 1
+ - uid: 33077
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - uid: 33078
+ components:
+ - type: Transform
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33079
+ components:
+ - type: Transform
+ pos: 108.5,19.5
+ parent: 1
+ - uid: 33080
+ components:
+ - type: Transform
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33081
+ components:
+ - type: Transform
+ pos: 102.5,31.5
+ parent: 1
+ - uid: 33082
+ components:
+ - type: Transform
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33083
+ components:
+ - type: Transform
+ pos: 100.5,31.5
+ parent: 1
+ - uid: 33084
+ components:
+ - type: Transform
+ pos: 110.5,19.5
+ parent: 1
+ - uid: 33085
+ components:
+ - type: Transform
+ pos: 113.5,19.5
+ parent: 1
+ - uid: 33086
+ components:
+ - type: Transform
+ pos: 114.5,19.5
+ parent: 1
+ - uid: 33087
+ components:
+ - type: Transform
+ pos: 114.5,18.5
+ parent: 1
+ - uid: 33088
+ components:
+ - type: Transform
+ pos: 114.5,17.5
+ parent: 1
+ - uid: 33090
+ components:
+ - type: Transform
+ pos: 111.5,19.5
+ parent: 1
+ - uid: 33091
+ components:
+ - type: Transform
+ pos: 109.5,20.5
+ parent: 1
+ - uid: 33092
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33093
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33094
+ components:
+ - type: Transform
+ pos: 109.5,23.5
+ parent: 1
+ - uid: 33095
+ components:
+ - type: Transform
+ pos: 111.5,23.5
+ parent: 1
+ - uid: 33096
+ components:
+ - type: Transform
+ pos: 112.5,23.5
+ parent: 1
+ - uid: 33097
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - uid: 33098
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - uid: 33099
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - uid: 33100
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - uid: 33101
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - uid: 33102
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33103
+ components:
+ - type: Transform
+ pos: 112.5,30.5
+ parent: 1
+ - uid: 33104
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+ - uid: 33105
+ components:
+ - type: Transform
+ pos: 113.5,26.5
+ parent: 1
+ - uid: 33106
+ components:
+ - type: Transform
+ pos: 113.5,30.5
+ parent: 1
+ - uid: 33107
+ components:
+ - type: Transform
+ pos: 114.5,30.5
+ parent: 1
+ - uid: 33108
+ components:
+ - type: Transform
+ pos: 115.5,30.5
+ parent: 1
+ - uid: 33109
+ components:
+ - type: Transform
+ pos: 116.5,30.5
+ parent: 1
+ - uid: 33110
+ components:
+ - type: Transform
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33111
+ components:
+ - type: Transform
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33112
+ components:
+ - type: Transform
+ pos: 119.5,30.5
+ parent: 1
+ - uid: 33113
+ components:
+ - type: Transform
+ pos: 119.5,31.5
+ parent: 1
+ - uid: 33114
+ components:
+ - type: Transform
+ pos: 119.5,32.5
+ parent: 1
+ - uid: 33115
+ components:
+ - type: Transform
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33116
+ components:
+ - type: Transform
+ pos: 119.5,34.5
+ parent: 1
+ - uid: 33117
+ components:
+ - type: Transform
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33118
+ components:
+ - type: Transform
+ pos: 119.5,37.5
+ parent: 1
+ - uid: 33119
+ components:
+ - type: Transform
+ pos: 119.5,36.5
+ parent: 1
+ - uid: 33120
+ components:
+ - type: Transform
+ pos: 119.5,39.5
+ parent: 1
+ - uid: 33121
+ components:
+ - type: Transform
+ pos: 119.5,40.5
+ parent: 1
+ - uid: 33122
+ components:
+ - type: Transform
+ pos: 119.5,41.5
+ parent: 1
+ - uid: 33123
+ components:
+ - type: Transform
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33124
+ components:
+ - type: Transform
+ pos: 118.5,39.5
+ parent: 1
+ - uid: 33125
+ components:
+ - type: Transform
+ pos: 120.5,41.5
+ parent: 1
+ - uid: 33126
+ components:
+ - type: Transform
+ pos: 119.5,42.5
+ parent: 1
+ - uid: 33127
+ components:
+ - type: Transform
+ pos: 115.5,26.5
+ parent: 1
+ - uid: 33128
+ components:
+ - type: Transform
+ pos: 116.5,26.5
+ parent: 1
+ - uid: 33129
+ components:
+ - type: Transform
+ pos: 117.5,26.5
+ parent: 1
+ - uid: 33130
+ components:
+ - type: Transform
+ pos: 118.5,26.5
+ parent: 1
+ - uid: 33131
+ components:
+ - type: Transform
+ pos: 119.5,26.5
+ parent: 1
+ - uid: 33132
+ components:
+ - type: Transform
+ pos: 119.5,25.5
+ parent: 1
+ - uid: 33133
+ components:
+ - type: Transform
+ pos: 119.5,23.5
+ parent: 1
+ - uid: 33134
+ components:
+ - type: Transform
+ pos: 119.5,22.5
+ parent: 1
+ - uid: 33135
+ components:
+ - type: Transform
+ pos: 119.5,21.5
+ parent: 1
+ - uid: 33136
+ components:
+ - type: Transform
+ pos: 119.5,20.5
+ parent: 1
+ - uid: 33137
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33138
+ components:
+ - type: Transform
+ pos: 117.5,20.5
+ parent: 1
+ - uid: 33139
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 33140
+ components:
+ - type: Transform
+ pos: 117.5,21.5
+ parent: 1
+ - uid: 33141
+ components:
+ - type: Transform
+ pos: 124.5,42.5
+ parent: 1
+ - uid: 33142
+ components:
+ - type: Transform
+ pos: 124.5,41.5
+ parent: 1
+ - uid: 33143
+ components:
+ - type: Transform
+ pos: 123.5,41.5
+ parent: 1
+ - uid: 33144
+ components:
+ - type: Transform
+ pos: 122.5,41.5
+ parent: 1
+ - uid: 33145
+ components:
+ - type: Transform
+ pos: 124.5,39.5
+ parent: 1
+ - uid: 33146
+ components:
+ - type: Transform
+ pos: 124.5,38.5
+ parent: 1
+ - uid: 33147
+ components:
+ - type: Transform
+ pos: 124.5,37.5
+ parent: 1
+ - uid: 33148
+ components:
+ - type: Transform
+ pos: 124.5,36.5
+ parent: 1
+ - uid: 33149
+ components:
+ - type: Transform
+ pos: 124.5,35.5
+ parent: 1
+ - uid: 33150
+ components:
+ - type: Transform
+ pos: 123.5,35.5
+ parent: 1
+ - uid: 33151
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 33152
+ components:
+ - type: Transform
+ pos: 123.5,33.5
+ parent: 1
+ - uid: 33153
+ components:
+ - type: Transform
+ pos: 123.5,32.5
+ parent: 1
+ - uid: 33154
+ components:
+ - type: Transform
+ pos: 123.5,31.5
+ parent: 1
+ - uid: 33155
+ components:
+ - type: Transform
+ pos: 123.5,30.5
+ parent: 1
+ - uid: 33156
+ components:
+ - type: Transform
+ pos: 123.5,29.5
+ parent: 1
+ - uid: 33157
+ components:
+ - type: Transform
+ pos: 123.5,28.5
+ parent: 1
+ - uid: 33158
+ components:
+ - type: Transform
+ pos: 123.5,27.5
+ parent: 1
+ - uid: 33159
+ components:
+ - type: Transform
+ pos: 123.5,26.5
+ parent: 1
+ - uid: 33287
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 33288
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 33424
+ components:
+ - type: Transform
+ pos: 102.5,22.5
+ parent: 1
+ - uid: 33425
+ components:
+ - type: Transform
+ pos: 102.5,23.5
+ parent: 1
+ - uid: 33426
+ components:
+ - type: Transform
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33427
+ components:
+ - type: Transform
+ pos: 102.5,25.5
+ parent: 1
+ - uid: 33428
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33429
+ components:
+ - type: Transform
+ pos: 102.5,27.5
+ parent: 1
+ - uid: 33714
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 33732
+ components:
+ - type: Transform
+ pos: 95.5,18.5
+ parent: 1
+ - uid: 33733
+ components:
+ - type: Transform
+ pos: 95.5,17.5
+ parent: 1
+ - uid: 33734
+ components:
+ - type: Transform
+ pos: 95.5,16.5
+ parent: 1
+ - uid: 33735
+ components:
+ - type: Transform
+ pos: 95.5,15.5
+ parent: 1
+ - uid: 33736
+ components:
+ - type: Transform
+ pos: 93.5,15.5
+ parent: 1
+ - uid: 33737
+ components:
+ - type: Transform
+ pos: 93.5,16.5
+ parent: 1
+ - uid: 33738
+ components:
+ - type: Transform
+ pos: 93.5,17.5
+ parent: 1
+ - uid: 33739
+ components:
+ - type: Transform
+ pos: 93.5,18.5
+ parent: 1
+ - uid: 33751
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 33754
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 33755
+ components:
+ - type: Transform
+ pos: 88.5,59.5
+ parent: 1
+ - uid: 33759
+ components:
+ - type: Transform
+ pos: 102.5,41.5
+ parent: 1
+ - uid: 33780
+ components:
+ - type: Transform
+ pos: 69.5,17.5
+ parent: 1
+ - uid: 33781
+ components:
+ - type: Transform
+ pos: 67.5,17.5
+ parent: 1
+ - uid: 33782
+ components:
+ - type: Transform
+ pos: 68.5,17.5
+ parent: 1
+ - uid: 33810
+ components:
+ - type: Transform
+ pos: 87.5,87.5
+ parent: 1
+ - uid: 33811
+ components:
+ - type: Transform
+ pos: 89.5,85.5
+ parent: 1
+ - uid: 33812
+ components:
+ - type: Transform
+ pos: 88.5,85.5
+ parent: 1
+ - uid: 33813
+ components:
+ - type: Transform
+ pos: 90.5,86.5
+ parent: 1
+ - uid: 33871
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 33898
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 33913
+ components:
+ - type: Transform
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 33940
+ components:
+ - type: Transform
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 33969
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+ - uid: 33971
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - uid: 33983
+ components:
+ - type: Transform
+ pos: 46.5,74.5
+ parent: 1
+ - uid: 33984
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 33985
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+ - uid: 33994
+ components:
+ - type: Transform
+ pos: 109.5,33.5
+ parent: 1
+ - uid: 33995
+ components:
+ - type: Transform
+ pos: 109.5,32.5
+ parent: 1
+ - uid: 33996
+ components:
+ - type: Transform
+ pos: 109.5,31.5
+ parent: 1
+ - uid: 33997
+ components:
+ - type: Transform
+ pos: 109.5,30.5
+ parent: 1
+ - uid: 33998
+ components:
+ - type: Transform
+ pos: 109.5,29.5
+ parent: 1
+ - uid: 33999
+ components:
+ - type: Transform
+ pos: 109.5,28.5
+ parent: 1
+ - uid: 34000
+ components:
+ - type: Transform
+ pos: 109.5,27.5
+ parent: 1
+ - uid: 34001
+ components:
+ - type: Transform
+ pos: 108.5,28.5
+ parent: 1
+ - uid: 34007
+ components:
+ - type: Transform
+ pos: 111.5,33.5
+ parent: 1
+ - uid: 34008
+ components:
+ - type: Transform
+ pos: 112.5,33.5
+ parent: 1
+ - uid: 34009
+ components:
+ - type: Transform
+ pos: 113.5,33.5
+ parent: 1
+ - uid: 34010
+ components:
+ - type: Transform
+ pos: 114.5,33.5
+ parent: 1
+ - uid: 34011
+ components:
+ - type: Transform
+ pos: 115.5,33.5
+ parent: 1
+ - uid: 34015
+ components:
+ - type: Transform
+ pos: 137.5,93.5
+ parent: 1
+ - uid: 34016
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 34017
+ components:
+ - type: Transform
+ pos: 133.5,93.5
+ parent: 1
+ - uid: 34018
+ components:
+ - type: Transform
+ pos: 60.5,42.5
+ parent: 1
+ - uid: 34027
+ components:
+ - type: Transform
+ pos: 59.5,42.5
+ parent: 1
+ - uid: 34055
+ components:
+ - type: Transform
+ pos: 71.5,57.5
+ parent: 1
+ - uid: 34058
+ components:
+ - type: Transform
+ pos: 61.5,42.5
+ parent: 1
+ - uid: 34059
+ components:
+ - type: Transform
+ pos: 62.5,42.5
+ parent: 1
+ - uid: 34060
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - uid: 34067
+ components:
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 34070
+ components:
+ - type: Transform
+ pos: 96.5,40.5
+ parent: 1
+ - uid: 34115
+ components:
+ - type: Transform
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 34116
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 34117
+ components:
+ - type: Transform
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 34118
+ components:
+ - type: Transform
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 34119
+ components:
+ - type: Transform
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 34121
+ components:
+ - type: Transform
+ pos: 146.5,80.5
+ parent: 1
+ - uid: 34123
+ components:
+ - type: Transform
+ pos: 87.5,86.5
+ parent: 1
+ - uid: 34124
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 34126
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 34132
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 34133
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 34134
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 34135
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 34136
+ components:
+ - type: Transform
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 34137
+ components:
+ - type: Transform
+ pos: 156.5,78.5
+ parent: 1
+ - uid: 34138
+ components:
+ - type: Transform
+ pos: 156.5,79.5
+ parent: 1
+ - uid: 34139
+ components:
+ - type: Transform
+ pos: 156.5,80.5
+ parent: 1
+ - uid: 34141
+ components:
+ - type: Transform
+ pos: 157.5,79.5
+ parent: 1
+ - uid: 34142
+ components:
+ - type: Transform
+ pos: 159.5,79.5
+ parent: 1
+ - uid: 34143
+ components:
+ - type: Transform
+ pos: 160.5,79.5
+ parent: 1
+ - uid: 34144
+ components:
+ - type: Transform
+ pos: 161.5,79.5
+ parent: 1
+ - uid: 34145
+ components:
+ - type: Transform
+ pos: 162.5,79.5
+ parent: 1
+ - uid: 34146
+ components:
+ - type: Transform
+ pos: 163.5,79.5
+ parent: 1
+ - uid: 34147
+ components:
+ - type: Transform
+ pos: 158.5,79.5
+ parent: 1
+ - uid: 34148
+ components:
+ - type: Transform
+ pos: 165.5,79.5
+ parent: 1
+ - uid: 34149
+ components:
+ - type: Transform
+ pos: 164.5,79.5
+ parent: 1
+ - uid: 34150
+ components:
+ - type: Transform
+ pos: 160.5,80.5
+ parent: 1
+ - uid: 34151
+ components:
+ - type: Transform
+ pos: 160.5,81.5
+ parent: 1
+ - uid: 34152
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 34153
+ components:
+ - type: Transform
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 34154
+ components:
+ - type: Transform
+ pos: 149.5,79.5
+ parent: 1
+ - uid: 34155
+ components:
+ - type: Transform
+ pos: 149.5,80.5
+ parent: 1
+ - uid: 34156
+ components:
+ - type: Transform
+ pos: 149.5,81.5
+ parent: 1
+ - uid: 34157
+ components:
+ - type: Transform
+ pos: 150.5,79.5
+ parent: 1
+ - uid: 34158
+ components:
+ - type: Transform
+ pos: 151.5,79.5
+ parent: 1
+ - uid: 34159
+ components:
+ - type: Transform
+ pos: 152.5,79.5
+ parent: 1
+ - uid: 34160
+ components:
+ - type: Transform
+ pos: 153.5,79.5
+ parent: 1
+ - uid: 34161
+ components:
+ - type: Transform
+ pos: 153.5,80.5
+ parent: 1
+ - uid: 34162
+ components:
+ - type: Transform
+ pos: 153.5,81.5
+ parent: 1
+ - uid: 34163
+ components:
+ - type: Transform
+ pos: 153.5,82.5
+ parent: 1
+ - uid: 34164
+ components:
+ - type: Transform
+ pos: 153.5,83.5
+ parent: 1
+ - uid: 34165
+ components:
+ - type: Transform
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34166
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 34172
+ components:
+ - type: Transform
+ pos: 91.5,40.5
+ parent: 1
+ - uid: 34173
+ components:
+ - type: Transform
+ pos: 149.5,82.5
+ parent: 1
+ - uid: 34174
+ components:
+ - type: Transform
+ pos: 149.5,83.5
+ parent: 1
+ - uid: 34175
+ components:
+ - type: Transform
+ pos: 150.5,83.5
+ parent: 1
+ - uid: 34176
+ components:
+ - type: Transform
+ pos: 151.5,83.5
+ parent: 1
+ - uid: 34177
+ components:
+ - type: Transform
+ pos: 152.5,83.5
+ parent: 1
+ - uid: 34178
+ components:
+ - type: Transform
+ pos: 141.5,80.5
+ parent: 1
+ - uid: 34179
+ components:
+ - type: Transform
+ pos: 143.5,80.5
+ parent: 1
+ - uid: 34180
+ components:
+ - type: Transform
+ pos: 142.5,80.5
+ parent: 1
+ - uid: 34181
+ components:
+ - type: Transform
+ pos: 144.5,80.5
+ parent: 1
+ - uid: 34182
+ components:
+ - type: Transform
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 34186
+ components:
+ - type: Transform
+ pos: 89.5,87.5
+ parent: 1
+ - uid: 34189
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 34190
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 34191
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 34193
+ components:
+ - type: Transform
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 34194
+ components:
+ - type: Transform
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 34195
+ components:
+ - type: Transform
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 34196
+ components:
+ - type: Transform
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 34197
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 34198
+ components:
+ - type: Transform
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 34199
+ components:
+ - type: Transform
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 34200
+ components:
+ - type: Transform
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 34201
+ components:
+ - type: Transform
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 34202
+ components:
+ - type: Transform
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 34203
+ components:
+ - type: Transform
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 34204
+ components:
+ - type: Transform
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 34205
+ components:
+ - type: Transform
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 34206
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 34207
+ components:
+ - type: Transform
+ pos: 160.5,46.5
+ parent: 1
+ - uid: 34208
+ components:
+ - type: Transform
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 34209
+ components:
+ - type: Transform
+ pos: 161.5,46.5
+ parent: 1
+ - uid: 34210
+ components:
+ - type: Transform
+ pos: 161.5,45.5
+ parent: 1
+ - uid: 34211
+ components:
+ - type: Transform
+ pos: 161.5,44.5
+ parent: 1
+ - uid: 34212
+ components:
+ - type: Transform
+ pos: 161.5,43.5
+ parent: 1
+ - uid: 34213
+ components:
+ - type: Transform
+ pos: 160.5,43.5
+ parent: 1
+ - uid: 34214
+ components:
+ - type: Transform
+ pos: 159.5,43.5
+ parent: 1
+ - uid: 34215
+ components:
+ - type: Transform
+ pos: 158.5,43.5
+ parent: 1
+ - uid: 34216
+ components:
+ - type: Transform
+ pos: 157.5,43.5
+ parent: 1
+ - uid: 34217
+ components:
+ - type: Transform
+ pos: 161.5,47.5
+ parent: 1
+ - uid: 34218
+ components:
+ - type: Transform
+ pos: 161.5,48.5
+ parent: 1
+ - uid: 34219
+ components:
+ - type: Transform
+ pos: 161.5,49.5
+ parent: 1
+ - uid: 34220
+ components:
+ - type: Transform
+ pos: 161.5,50.5
+ parent: 1
+ - uid: 34221
+ components:
+ - type: Transform
+ pos: 161.5,51.5
+ parent: 1
+ - uid: 34236
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 34237
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 34238
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 34239
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 34240
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 34241
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 34242
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 34243
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 34244
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 34245
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 34246
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 34247
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 34248
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 34249
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 34250
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 34251
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 34252
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 34253
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 34254
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 34255
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 34256
+ components:
+ - type: Transform
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 34257
+ components:
+ - type: Transform
+ pos: 158.5,70.5
+ parent: 1
+ - uid: 34258
+ components:
+ - type: Transform
+ pos: 159.5,70.5
+ parent: 1
+ - uid: 34259
+ components:
+ - type: Transform
+ pos: 159.5,71.5
+ parent: 1
+ - uid: 34260
+ components:
+ - type: Transform
+ pos: 159.5,72.5
+ parent: 1
+ - uid: 34261
+ components:
+ - type: Transform
+ pos: 159.5,73.5
+ parent: 1
+ - uid: 34262
+ components:
+ - type: Transform
+ pos: 159.5,74.5
+ parent: 1
+ - uid: 34263
+ components:
+ - type: Transform
+ pos: 159.5,75.5
+ parent: 1
+ - uid: 34266
+ components:
+ - type: Transform
+ pos: 161.5,62.5
+ parent: 1
+ - uid: 34267
+ components:
+ - type: Transform
+ pos: 161.5,63.5
+ parent: 1
+ - uid: 34268
+ components:
+ - type: Transform
+ pos: 161.5,64.5
+ parent: 1
+ - uid: 34269
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 34270
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 34271
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 34275
+ components:
+ - type: Transform
+ pos: 162.5,54.5
+ parent: 1
+ - uid: 34276
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34280
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 34281
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 34300
+ components:
+ - type: Transform
+ pos: 137.5,86.5
+ parent: 1
+ - uid: 34301
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34342
+ components:
+ - type: Transform
+ pos: 155.5,80.5
+ parent: 1
+ - uid: 34343
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 34344
+ components:
+ - type: Transform
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 34345
+ components:
+ - type: Transform
+ pos: 155.5,83.5
+ parent: 1
+ - uid: 34346
+ components:
+ - type: Transform
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34347
+ components:
+ - type: Transform
+ pos: 157.5,83.5
+ parent: 1
+ - uid: 34348
+ components:
+ - type: Transform
+ pos: 158.5,83.5
+ parent: 1
+ - uid: 34349
+ components:
+ - type: Transform
+ pos: 159.5,83.5
+ parent: 1
+ - uid: 34350
+ components:
+ - type: Transform
+ pos: 160.5,83.5
+ parent: 1
+ - uid: 34351
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34403
+ components:
+ - type: Transform
+ pos: 58.5,121.5
+ parent: 1
+ - uid: 34419
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 34478
+ components:
+ - type: Transform
+ pos: 99.5,40.5
+ parent: 1
+ - uid: 34480
+ components:
+ - type: Transform
+ pos: 98.5,40.5
+ parent: 1
+ - uid: 34517
+ components:
+ - type: Transform
+ pos: 153.5,45.5
+ parent: 1
+ - uid: 34518
+ components:
+ - type: Transform
+ pos: 153.5,44.5
+ parent: 1
+ - uid: 34519
+ components:
+ - type: Transform
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 34520
+ components:
+ - type: Transform
+ pos: 155.5,44.5
+ parent: 1
+ - uid: 34521
+ components:
+ - type: Transform
+ pos: 155.5,43.5
+ parent: 1
+ - uid: 34522
+ components:
+ - type: Transform
+ pos: 156.5,43.5
+ parent: 1
+ - uid: 34598
+ components:
+ - type: Transform
+ pos: 135.5,93.5
+ parent: 1
+ - uid: 34609
+ components:
+ - type: Transform
+ pos: 102.5,40.5
+ parent: 1
+ - uid: 34613
+ components:
+ - type: Transform
+ pos: 97.5,40.5
+ parent: 1
+ - uid: 34614
+ components:
+ - type: Transform
+ pos: 134.5,89.5
+ parent: 1
+ - uid: 34616
+ components:
+ - type: Transform
+ pos: 132.5,91.5
+ parent: 1
+ - uid: 34619
+ components:
+ - type: Transform
+ pos: 132.5,92.5
+ parent: 1
+ - uid: 34621
+ components:
+ - type: Transform
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 34622
+ components:
+ - type: Transform
+ pos: 95.5,40.5
+ parent: 1
+ - uid: 34624
+ components:
+ - type: Transform
+ pos: 132.5,89.5
+ parent: 1
+ - uid: 34627
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 34632
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 34633
+ components:
+ - type: Transform
+ pos: 161.5,61.5
+ parent: 1
+ - uid: 34645
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 34646
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 34647
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 34714
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 34715
+ components:
+ - type: Transform
+ pos: 114.5,169.5
+ parent: 1
+ - uid: 34721
+ components:
+ - type: Transform
+ pos: 134.5,88.5
+ parent: 1
+ - uid: 34761
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34764
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34765
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34766
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34767
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34768
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34769
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 34770
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 34771
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34772
+ components:
+ - type: Transform
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 34774
+ components:
+ - type: Transform
+ pos: 123.5,165.5
+ parent: 1
+ - uid: 34775
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 34777
+ components:
+ - type: Transform
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 34778
+ components:
+ - type: Transform
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 34779
+ components:
+ - type: Transform
+ pos: 123.5,167.5
+ parent: 1
+ - uid: 34780
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - uid: 34781
+ components:
+ - type: Transform
+ pos: 123.5,168.5
+ parent: 1
+ - uid: 34784
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 34785
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 34786
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 34787
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 34788
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 34789
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 34790
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 34791
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 34792
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 34793
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 34794
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 34795
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 34796
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 34797
+ components:
+ - type: Transform
+ pos: 61.5,78.5
+ parent: 1
+ - uid: 34798
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - uid: 34799
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 34800
+ components:
+ - type: Transform
+ pos: 62.5,77.5
+ parent: 1
+ - uid: 34802
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - uid: 34803
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - uid: 34804
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 34805
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 34806
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 34807
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 34808
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 34809
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 34810
+ components:
+ - type: Transform
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 34811
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 34812
+ components:
+ - type: Transform
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 34813
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 34817
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 34820
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34831
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 34837
+ components:
+ - type: Transform
+ pos: 136.5,89.5
+ parent: 1
+ - uid: 34845
+ components:
+ - type: Transform
+ pos: 132.5,93.5
+ parent: 1
+ - uid: 34888
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 34889
+ components:
+ - type: Transform
+ pos: 55.5,118.5
+ parent: 1
+ - uid: 34895
+ components:
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 34899
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 34900
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 34901
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 34911
+ components:
+ - type: Transform
+ pos: 135.5,89.5
+ parent: 1
+ - uid: 34912
+ components:
+ - type: Transform
+ pos: 132.5,90.5
+ parent: 1
+ - uid: 34913
+ components:
+ - type: Transform
+ pos: 133.5,89.5
+ parent: 1
+ - uid: 34914
+ components:
+ - type: Transform
+ pos: 136.5,90.5
+ parent: 1
+ - uid: 34922
+ components:
+ - type: Transform
+ pos: 136.5,92.5
+ parent: 1
+ - uid: 34934
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 34962
+ components:
+ - type: Transform
+ pos: 136.5,91.5
+ parent: 1
+ - uid: 35014
+ components:
+ - type: Transform
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 35023
+ components:
+ - type: Transform
+ pos: 112.5,167.5
+ parent: 1
+ - uid: 35024
+ components:
+ - type: Transform
+ pos: 111.5,167.5
+ parent: 1
+ - uid: 35026
+ components:
+ - type: Transform
+ pos: 108.5,168.5
+ parent: 1
+ - uid: 35027
+ components:
+ - type: Transform
+ pos: 107.5,168.5
+ parent: 1
+ - uid: 35028
+ components:
+ - type: Transform
+ pos: 113.5,167.5
+ parent: 1
+ - uid: 35029
+ components:
+ - type: Transform
+ pos: 114.5,170.5
+ parent: 1
+ - uid: 35030
+ components:
+ - type: Transform
+ pos: 115.5,169.5
+ parent: 1
+ - uid: 35031
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 35032
+ components:
+ - type: Transform
+ pos: 117.5,169.5
+ parent: 1
+ - uid: 35033
+ components:
+ - type: Transform
+ pos: 118.5,169.5
+ parent: 1
+ - uid: 35034
+ components:
+ - type: Transform
+ pos: 119.5,169.5
+ parent: 1
+ - uid: 35035
+ components:
+ - type: Transform
+ pos: 119.5,168.5
+ parent: 1
+ - uid: 35036
+ components:
+ - type: Transform
+ pos: 119.5,170.5
+ parent: 1
+ - uid: 35040
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35041
+ components:
+ - type: Transform
+ pos: 117.5,171.5
+ parent: 1
+ - uid: 35042
+ components:
+ - type: Transform
+ pos: 117.5,170.5
+ parent: 1
+ - uid: 35046
+ components:
+ - type: Transform
+ pos: 108.5,169.5
+ parent: 1
+ - uid: 35123
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35131
+ components:
+ - type: Transform
+ pos: 109.5,170.5
+ parent: 1
+ - uid: 35132
+ components:
+ - type: Transform
+ pos: 109.5,167.5
+ parent: 1
+ - uid: 35133
+ components:
+ - type: Transform
+ pos: 103.5,172.5
+ parent: 1
+ - uid: 35134
+ components:
+ - type: Transform
+ pos: 103.5,171.5
+ parent: 1
+ - uid: 35145
+ components:
+ - type: Transform
+ pos: 21.5,110.5
+ parent: 1
+ - uid: 35146
+ components:
+ - type: Transform
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 35226
+ components:
+ - type: Transform
+ pos: 92.5,40.5
+ parent: 1
+ - uid: 35233
+ components:
+ - type: Transform
+ pos: 128.5,150.5
+ parent: 1
+ - uid: 35234
+ components:
+ - type: Transform
+ pos: 127.5,150.5
+ parent: 1
+ - uid: 35235
+ components:
+ - type: Transform
+ pos: 127.5,151.5
+ parent: 1
+ - uid: 35236
+ components:
+ - type: Transform
+ pos: 127.5,153.5
+ parent: 1
+ - uid: 35237
+ components:
+ - type: Transform
+ pos: 127.5,154.5
+ parent: 1
+ - uid: 35238
+ components:
+ - type: Transform
+ pos: 128.5,154.5
+ parent: 1
+ - uid: 35239
+ components:
+ - type: Transform
+ pos: 129.5,154.5
+ parent: 1
+ - uid: 35240
+ components:
+ - type: Transform
+ pos: 130.5,154.5
+ parent: 1
+ - uid: 35241
+ components:
+ - type: Transform
+ pos: 131.5,154.5
+ parent: 1
+ - uid: 35242
+ components:
+ - type: Transform
+ pos: 131.5,153.5
+ parent: 1
+ - uid: 35243
+ components:
+ - type: Transform
+ pos: 131.5,152.5
+ parent: 1
+ - uid: 35244
+ components:
+ - type: Transform
+ pos: 131.5,151.5
+ parent: 1
+ - uid: 35245
+ components:
+ - type: Transform
+ pos: 131.5,150.5
+ parent: 1
+ - uid: 35246
+ components:
+ - type: Transform
+ pos: 130.5,150.5
+ parent: 1
+ - uid: 35282
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 35283
+ components:
+ - type: Transform
+ pos: 89.5,165.5
+ parent: 1
+ - uid: 35284
+ components:
+ - type: Transform
+ pos: 89.5,164.5
+ parent: 1
+ - uid: 35285
+ components:
+ - type: Transform
+ pos: 89.5,163.5
+ parent: 1
+ - uid: 35286
+ components:
+ - type: Transform
+ pos: 89.5,162.5
+ parent: 1
+ - uid: 35287
+ components:
+ - type: Transform
+ pos: 88.5,162.5
+ parent: 1
+ - uid: 35288
+ components:
+ - type: Transform
+ pos: 85.5,162.5
+ parent: 1
+ - uid: 35289
+ components:
+ - type: Transform
+ pos: 84.5,162.5
+ parent: 1
+ - uid: 35290
+ components:
+ - type: Transform
+ pos: 83.5,162.5
+ parent: 1
+ - uid: 35291
+ components:
+ - type: Transform
+ pos: 75.5,158.5
+ parent: 1
+ - uid: 35292
+ components:
+ - type: Transform
+ pos: 83.5,160.5
+ parent: 1
+ - uid: 35293
+ components:
+ - type: Transform
+ pos: 83.5,159.5
+ parent: 1
+ - uid: 35294
+ components:
+ - type: Transform
+ pos: 82.5,159.5
+ parent: 1
+ - uid: 35295
+ components:
+ - type: Transform
+ pos: 81.5,159.5
+ parent: 1
+ - uid: 35296
+ components:
+ - type: Transform
+ pos: 80.5,159.5
+ parent: 1
+ - uid: 35297
+ components:
+ - type: Transform
+ pos: 79.5,159.5
+ parent: 1
+ - uid: 35298
+ components:
+ - type: Transform
+ pos: 77.5,159.5
+ parent: 1
+ - uid: 35299
+ components:
+ - type: Transform
+ pos: 76.5,159.5
+ parent: 1
+ - uid: 35300
+ components:
+ - type: Transform
+ pos: 75.5,159.5
+ parent: 1
+ - uid: 35301
+ components:
+ - type: Transform
+ pos: 75.5,160.5
+ parent: 1
+ - uid: 35302
+ components:
+ - type: Transform
+ pos: 75.5,161.5
+ parent: 1
+ - uid: 35303
+ components:
+ - type: Transform
+ pos: 78.5,160.5
+ parent: 1
+ - uid: 35304
+ components:
+ - type: Transform
+ pos: 78.5,161.5
+ parent: 1
+ - uid: 35305
+ components:
+ - type: Transform
+ pos: 81.5,160.5
+ parent: 1
+ - uid: 35306
+ components:
+ - type: Transform
+ pos: 81.5,161.5
+ parent: 1
+ - uid: 35307
+ components:
+ - type: Transform
+ pos: 83.5,158.5
+ parent: 1
+ - uid: 35308
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - uid: 35309
+ components:
+ - type: Transform
+ pos: 91.5,161.5
+ parent: 1
+ - uid: 35310
+ components:
+ - type: Transform
+ pos: 91.5,164.5
+ parent: 1
+ - uid: 35311
+ components:
+ - type: Transform
+ pos: 91.5,165.5
+ parent: 1
+ - uid: 35312
+ components:
+ - type: Transform
+ pos: 91.5,167.5
+ parent: 1
+ - uid: 35313
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 35315
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 35316
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 35317
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 35318
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 35319
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 35320
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 35321
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 35322
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 35420
+ components:
+ - type: Transform
+ pos: 99.5,172.5
+ parent: 1
+ - uid: 35421
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 35432
+ components:
+ - type: Transform
+ pos: 71.5,59.5
+ parent: 1
+ - uid: 35458
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 35459
+ components:
+ - type: Transform
+ pos: 69.5,153.5
+ parent: 1
+ - uid: 35460
+ components:
+ - type: Transform
+ pos: 66.5,52.5
+ parent: 1
+ - uid: 35461
+ components:
+ - type: Transform
+ pos: 69.5,155.5
+ parent: 1
+ - uid: 35462
+ components:
+ - type: Transform
+ pos: 70.5,155.5
+ parent: 1
+ - uid: 35463
+ components:
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - uid: 35573
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 35578
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 35580
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 35581
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 35582
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 35587
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 35589
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 35594
+ components:
+ - type: Transform
+ pos: 69.5,164.5
+ parent: 1
+ - uid: 35596
+ components:
+ - type: Transform
+ pos: 69.5,163.5
+ parent: 1
+ - uid: 35601
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 35604
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 35637
+ components:
+ - type: Transform
+ pos: 146.5,86.5
+ parent: 1
+ - uid: 35641
+ components:
+ - type: Transform
+ pos: 152.5,86.5
+ parent: 1
+ - uid: 35668
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 35669
+ components:
+ - type: Transform
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35670
+ components:
+ - type: Transform
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35671
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 35672
+ components:
+ - type: Transform
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35673
+ components:
+ - type: Transform
+ pos: 54.5,126.5
+ parent: 1
+ - uid: 35674
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 35675
+ components:
+ - type: Transform
+ pos: 52.5,126.5
+ parent: 1
+ - uid: 35676
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - uid: 35677
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - uid: 35678
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - uid: 35679
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - uid: 35680
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - uid: 35681
+ components:
+ - type: Transform
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 35682
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35683
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 35684
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 35699
+ components:
+ - type: Transform
+ pos: 34.5,119.5
+ parent: 1
+ - uid: 35700
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35701
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 35702
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35703
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35704
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35705
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35706
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35708
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35709
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35710
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 35711
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 35712
+ components:
+ - type: Transform
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 35713
+ components:
+ - type: Transform
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 35714
+ components:
+ - type: Transform
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 35715
+ components:
+ - type: Transform
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 35716
+ components:
+ - type: Transform
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 35719
+ components:
+ - type: Transform
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 35720
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 35721
+ components:
+ - type: Transform
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 35722
+ components:
+ - type: Transform
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 35723
+ components:
+ - type: Transform
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 35724
+ components:
+ - type: Transform
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 35725
+ components:
+ - type: Transform
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 35726
+ components:
+ - type: Transform
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 35727
+ components:
+ - type: Transform
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 35728
+ components:
+ - type: Transform
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 35729
+ components:
+ - type: Transform
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 35730
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 35731
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 35732
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 35733
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 35734
+ components:
+ - type: Transform
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 35736
+ components:
+ - type: Transform
+ pos: 23.5,115.5
+ parent: 1
+ - uid: 35737
+ components:
+ - type: Transform
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 35738
+ components:
+ - type: Transform
+ pos: 23.5,113.5
+ parent: 1
+ - uid: 35739
+ components:
+ - type: Transform
+ pos: 23.5,112.5
+ parent: 1
+ - uid: 35743
+ components:
+ - type: Transform
+ pos: 20.5,117.5
+ parent: 1
+ - uid: 35744
+ components:
+ - type: Transform
+ pos: 20.5,118.5
+ parent: 1
+ - uid: 35748
+ components:
+ - type: Transform
+ pos: 153.5,86.5
+ parent: 1
+ - uid: 35802
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 35803
+ components:
+ - type: Transform
+ pos: 53.5,151.5
+ parent: 1
+ - uid: 35804
+ components:
+ - type: Transform
+ pos: 122.5,160.5
+ parent: 1
+ - uid: 35805
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 35806
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 35807
+ components:
+ - type: Transform
+ pos: 53.5,153.5
+ parent: 1
+ - uid: 35809
+ components:
+ - type: Transform
+ pos: 53.5,150.5
+ parent: 1
+ - uid: 35810
+ components:
+ - type: Transform
+ pos: 53.5,152.5
+ parent: 1
+ - uid: 35811
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 35813
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 35814
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 35815
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 35816
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 35818
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 35821
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 35822
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 35823
+ components:
+ - type: Transform
+ pos: 53.5,149.5
+ parent: 1
+ - uid: 35824
+ components:
+ - type: Transform
+ pos: 53.5,148.5
+ parent: 1
+ - uid: 35825
+ components:
+ - type: Transform
+ pos: 53.5,147.5
+ parent: 1
+ - uid: 35826
+ components:
+ - type: Transform
+ pos: 53.5,146.5
+ parent: 1
+ - uid: 35827
+ components:
+ - type: Transform
+ pos: 54.5,146.5
+ parent: 1
+ - uid: 35828
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 35829
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 35830
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 35854
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 35855
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 35856
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 35858
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 35859
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35860
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 35873
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 35876
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35878
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35885
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35942
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 35955
+ components:
+ - type: Transform
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35956
+ components:
+ - type: Transform
+ pos: 23.5,119.5
+ parent: 1
+ - uid: 35990
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 35991
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 35993
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 35998
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 36000
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 36001
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 36002
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 36049
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 36054
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 36093
+ components:
+ - type: Transform
+ pos: 25.5,68.5
+ parent: 1
+ - uid: 36096
+ components:
+ - type: Transform
+ pos: 20.5,75.5
+ parent: 1
+ - uid: 36097
+ components:
+ - type: Transform
+ pos: 25.5,75.5
+ parent: 1
+ - uid: 36098
+ components:
+ - type: Transform
+ pos: 23.5,74.5
+ parent: 1
+ - uid: 36100
+ components:
+ - type: Transform
+ pos: 20.5,68.5
+ parent: 1
+ - uid: 36101
+ components:
+ - type: Transform
+ pos: 20.5,69.5
+ parent: 1
+ - uid: 36102
+ components:
+ - type: Transform
+ pos: 20.5,70.5
+ parent: 1
+ - uid: 36103
+ components:
+ - type: Transform
+ pos: 20.5,71.5
+ parent: 1
+ - uid: 36104
+ components:
+ - type: Transform
+ pos: 20.5,72.5
+ parent: 1
+ - uid: 36105
+ components:
+ - type: Transform
+ pos: 20.5,73.5
+ parent: 1
+ - uid: 36107
+ components:
+ - type: Transform
+ pos: 21.5,74.5
+ parent: 1
+ - uid: 36108
+ components:
+ - type: Transform
+ pos: 22.5,74.5
+ parent: 1
+ - uid: 36109
+ components:
+ - type: Transform
+ pos: 24.5,74.5
+ parent: 1
+ - uid: 36110
+ components:
+ - type: Transform
+ pos: 25.5,74.5
+ parent: 1
+ - uid: 36111
+ components:
+ - type: Transform
+ pos: 25.5,73.5
+ parent: 1
+ - uid: 36112
+ components:
+ - type: Transform
+ pos: 25.5,72.5
+ parent: 1
+ - uid: 36113
+ components:
+ - type: Transform
+ pos: 25.5,71.5
+ parent: 1
+ - uid: 36114
+ components:
+ - type: Transform
+ pos: 25.5,70.5
+ parent: 1
+ - uid: 36115
+ components:
+ - type: Transform
+ pos: 25.5,69.5
+ parent: 1
+ - uid: 36117
+ components:
+ - type: Transform
+ pos: 24.5,68.5
+ parent: 1
+ - uid: 36118
+ components:
+ - type: Transform
+ pos: 23.5,68.5
+ parent: 1
+ - uid: 36119
+ components:
+ - type: Transform
+ pos: 22.5,68.5
+ parent: 1
+ - uid: 36120
+ components:
+ - type: Transform
+ pos: 21.5,68.5
+ parent: 1
+ - uid: 36121
+ components:
+ - type: Transform
+ pos: 20.5,74.5
+ parent: 1
+ - uid: 36139
+ components:
+ - type: Transform
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 36144
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 36145
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 36147
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 36150
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 36151
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 36181
+ components:
+ - type: Transform
+ pos: 15.5,107.5
+ parent: 1
+ - uid: 36182
+ components:
+ - type: Transform
+ pos: 16.5,107.5
+ parent: 1
+ - uid: 36183
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 36184
+ components:
+ - type: Transform
+ pos: 18.5,107.5
+ parent: 1
+ - uid: 36185
+ components:
+ - type: Transform
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 36186
+ components:
+ - type: Transform
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 36187
+ components:
+ - type: Transform
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 36188
+ components:
+ - type: Transform
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 36189
+ components:
+ - type: Transform
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 36190
+ components:
+ - type: Transform
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 36191
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 36199
+ components:
+ - type: Transform
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 36200
+ components:
+ - type: Transform
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 36201
+ components:
+ - type: Transform
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 36202
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 36203
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 36204
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 36205
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 36206
+ components:
+ - type: Transform
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36207
+ components:
+ - type: Transform
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36208
+ components:
+ - type: Transform
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36209
+ components:
+ - type: Transform
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36210
+ components:
+ - type: Transform
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36211
+ components:
+ - type: Transform
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 36213
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 36214
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36215
+ components:
+ - type: Transform
+ pos: 26.5,95.5
+ parent: 1
+ - uid: 36242
+ components:
+ - type: Transform
+ pos: 18.5,80.5
+ parent: 1
+ - uid: 36243
+ components:
+ - type: Transform
+ pos: 19.5,80.5
+ parent: 1
+ - uid: 36244
+ components:
+ - type: Transform
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 36245
+ components:
+ - type: Transform
+ pos: 21.5,80.5
+ parent: 1
+ - uid: 36246
+ components:
+ - type: Transform
+ pos: 22.5,80.5
+ parent: 1
+ - uid: 36247
+ components:
+ - type: Transform
+ pos: 23.5,80.5
+ parent: 1
+ - uid: 36248
+ components:
+ - type: Transform
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 36249
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36250
+ components:
+ - type: Transform
+ pos: 24.5,80.5
+ parent: 1
+ - uid: 36251
+ components:
+ - type: Transform
+ pos: 22.5,81.5
+ parent: 1
+ - uid: 36252
+ components:
+ - type: Transform
+ pos: 22.5,82.5
+ parent: 1
+ - uid: 36253
+ components:
+ - type: Transform
+ pos: 22.5,83.5
+ parent: 1
+ - uid: 36254
+ components:
+ - type: Transform
+ pos: 22.5,84.5
+ parent: 1
+ - uid: 36255
+ components:
+ - type: Transform
+ pos: 22.5,85.5
+ parent: 1
+ - uid: 36256
+ components:
+ - type: Transform
+ pos: 22.5,86.5
+ parent: 1
+ - uid: 36257
+ components:
+ - type: Transform
+ pos: 22.5,87.5
+ parent: 1
+ - uid: 36258
+ components:
+ - type: Transform
+ pos: 21.5,86.5
+ parent: 1
+ - uid: 36259
+ components:
+ - type: Transform
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 36260
+ components:
+ - type: Transform
+ pos: 19.5,86.5
+ parent: 1
+ - uid: 36261
+ components:
+ - type: Transform
+ pos: 18.5,86.5
+ parent: 1
+ - uid: 36262
+ components:
+ - type: Transform
+ pos: 22.5,88.5
+ parent: 1
+ - uid: 36263
+ components:
+ - type: Transform
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 36264
+ components:
+ - type: Transform
+ pos: 22.5,90.5
+ parent: 1
+ - uid: 36265
+ components:
+ - type: Transform
+ pos: 22.5,91.5
+ parent: 1
+ - uid: 36266
+ components:
+ - type: Transform
+ pos: 22.5,92.5
+ parent: 1
+ - uid: 36270
+ components:
+ - type: Transform
+ pos: 22.5,93.5
+ parent: 1
+ - uid: 36271
+ components:
+ - type: Transform
+ pos: 22.5,94.5
+ parent: 1
+ - uid: 36272
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 36273
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 36275
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 36276
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 36277
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 36278
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 36279
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 36280
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - uid: 36281
+ components:
+ - type: Transform
+ pos: 28.5,67.5
+ parent: 1
+ - uid: 36286
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 36287
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 36288
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36289
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36290
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36291
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36292
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - uid: 36293
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - uid: 36294
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36295
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36296
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36297
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36298
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36299
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36300
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36301
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36302
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36303
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36304
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36305
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36312
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 36313
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 36314
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36315
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 36316
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 36317
+ components:
+ - type: Transform
+ pos: 32.5,80.5
+ parent: 1
+ - uid: 36399
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 36401
+ components:
+ - type: Transform
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36403
+ components:
+ - type: Transform
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36410
+ components:
+ - type: Transform
+ pos: 58.5,122.5
+ parent: 1
+ - uid: 36411
+ components:
+ - type: Transform
+ pos: 58.5,123.5
+ parent: 1
+ - uid: 36462
+ components:
+ - type: Transform
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 36463
+ components:
+ - type: Transform
+ pos: 32.5,82.5
+ parent: 1
+ - uid: 36464
+ components:
+ - type: Transform
+ pos: 32.5,83.5
+ parent: 1
+ - uid: 36465
+ components:
+ - type: Transform
+ pos: 31.5,83.5
+ parent: 1
+ - uid: 36466
+ components:
+ - type: Transform
+ pos: 33.5,83.5
+ parent: 1
+ - uid: 36467
+ components:
+ - type: Transform
+ pos: 34.5,83.5
+ parent: 1
+ - uid: 36491
+ components:
+ - type: Transform
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 36502
+ components:
+ - type: Transform
+ pos: 21.5,90.5
+ parent: 1
+ - uid: 36505
+ components:
+ - type: Transform
+ pos: 20.5,90.5
+ parent: 1
+ - uid: 36508
+ components:
+ - type: Transform
+ pos: 19.5,90.5
+ parent: 1
+ - uid: 36510
+ components:
+ - type: Transform
+ pos: 18.5,90.5
+ parent: 1
+ - uid: 36511
+ components:
+ - type: Transform
+ pos: 18.5,91.5
+ parent: 1
+ - uid: 36512
+ components:
+ - type: Transform
+ pos: 18.5,92.5
+ parent: 1
+ - uid: 36513
+ components:
+ - type: Transform
+ pos: 18.5,93.5
+ parent: 1
+ - uid: 36514
+ components:
+ - type: Transform
+ pos: 18.5,94.5
+ parent: 1
+ - uid: 36515
+ components:
+ - type: Transform
+ pos: 19.5,94.5
+ parent: 1
+ - uid: 36516
+ components:
+ - type: Transform
+ pos: 20.5,94.5
+ parent: 1
+ - uid: 36517
+ components:
+ - type: Transform
+ pos: 21.5,94.5
+ parent: 1
+ - uid: 36538
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - uid: 36539
+ components:
+ - type: Transform
+ pos: 53.5,141.5
+ parent: 1
+ - uid: 36540
+ components:
+ - type: Transform
+ pos: 52.5,141.5
+ parent: 1
+ - uid: 36541
+ components:
+ - type: Transform
+ pos: 51.5,141.5
+ parent: 1
+ - uid: 36542
+ components:
+ - type: Transform
+ pos: 50.5,141.5
+ parent: 1
+ - uid: 36543
+ components:
+ - type: Transform
+ pos: 49.5,141.5
+ parent: 1
+ - uid: 36544
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 36547
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+ - uid: 36549
+ components:
+ - type: Transform
+ pos: 164.5,57.5
+ parent: 1
+ - uid: 36550
+ components:
+ - type: Transform
+ pos: 165.5,57.5
+ parent: 1
+ - uid: 36551
+ components:
+ - type: Transform
+ pos: 166.5,57.5
+ parent: 1
+ - uid: 36609
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 36615
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 36670
+ components:
+ - type: Transform
+ pos: 123.5,140.5
+ parent: 1
+ - uid: 36671
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 36672
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 36673
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 36674
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 36675
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 36676
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 36677
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 36678
+ components:
+ - type: Transform
+ pos: 93.5,155.5
+ parent: 1
+ - uid: 36679
+ components:
+ - type: Transform
+ pos: 99.5,156.5
+ parent: 1
+ - uid: 36682
+ components:
+ - type: Transform
+ pos: 116.5,159.5
+ parent: 1
+ - uid: 36683
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - uid: 36684
+ components:
+ - type: Transform
+ pos: 118.5,159.5
+ parent: 1
+ - uid: 36685
+ components:
+ - type: Transform
+ pos: 118.5,160.5
+ parent: 1
+ - uid: 36686
+ components:
+ - type: Transform
+ pos: 118.5,161.5
+ parent: 1
+ - uid: 36687
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 36688
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 36689
+ components:
+ - type: Transform
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 36690
+ components:
+ - type: Transform
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 36691
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 36692
+ components:
+ - type: Transform
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 36693
+ components:
+ - type: Transform
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 36694
+ components:
+ - type: Transform
+ pos: 112.5,160.5
+ parent: 1
+ - uid: 36695
+ components:
+ - type: Transform
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 36696
+ components:
+ - type: Transform
+ pos: 117.5,161.5
+ parent: 1
+ - uid: 36697
+ components:
+ - type: Transform
+ pos: 116.5,161.5
+ parent: 1
+ - uid: 36698
+ components:
+ - type: Transform
+ pos: 116.5,160.5
+ parent: 1
+ - uid: 36699
+ components:
+ - type: Transform
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 36700
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36707
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 36708
+ components:
+ - type: Transform
+ pos: 112.5,161.5
+ parent: 1
+ - uid: 36709
+ components:
+ - type: Transform
+ pos: 112.5,162.5
+ parent: 1
+ - uid: 36717
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 36718
+ components:
+ - type: Transform
+ pos: 115.5,159.5
+ parent: 1
+ - uid: 36720
+ components:
+ - type: Transform
+ pos: 99.5,154.5
+ parent: 1
+ - uid: 36721
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 36722
+ components:
+ - type: Transform
+ pos: 99.5,152.5
+ parent: 1
+ - uid: 36723
+ components:
+ - type: Transform
+ pos: 99.5,151.5
+ parent: 1
+ - uid: 36724
+ components:
+ - type: Transform
+ pos: 99.5,150.5
+ parent: 1
+ - uid: 36725
+ components:
+ - type: Transform
+ pos: 99.5,149.5
+ parent: 1
+ - uid: 36728
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 36729
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 36730
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 36731
+ components:
+ - type: Transform
+ pos: 42.5,50.5
+ parent: 1
+ - uid: 36734
+ components:
+ - type: Transform
+ pos: 124.5,106.5
+ parent: 1
+ - uid: 36735
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 36742
+ components:
+ - type: Transform
+ pos: 85.5,127.5
+ parent: 1
+ - uid: 36743
+ components:
+ - type: Transform
+ pos: 76.5,142.5
+ parent: 1
+ - uid: 36760
+ components:
+ - type: Transform
+ pos: 83.5,127.5
+ parent: 1
+ - uid: 36814
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 36859
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 36862
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 36865
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 36911
+ components:
+ - type: Transform
+ pos: 85.5,143.5
+ parent: 1
+ - uid: 36953
+ components:
+ - type: Transform
+ pos: 85.5,140.5
+ parent: 1
+ - uid: 36954
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - uid: 36955
+ components:
+ - type: Transform
+ pos: 85.5,138.5
+ parent: 1
+ - uid: 37023
+ components:
+ - type: Transform
+ pos: 99.5,168.5
+ parent: 1
+ - uid: 37024
+ components:
+ - type: Transform
+ pos: 99.5,167.5
+ parent: 1
+ - uid: 37025
+ components:
+ - type: Transform
+ pos: 99.5,166.5
+ parent: 1
+ - uid: 37026
+ components:
+ - type: Transform
+ pos: 99.5,165.5
+ parent: 1
+ - uid: 37027
+ components:
+ - type: Transform
+ pos: 96.5,165.5
+ parent: 1
+ - uid: 37028
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 37052
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 37053
+ components:
+ - type: Transform
+ pos: 29.5,74.5
+ parent: 1
+ - uid: 37056
+ components:
+ - type: Transform
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 37343
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 37354
+ components:
+ - type: Transform
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 37355
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 37385
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 37386
+ components:
+ - type: Transform
+ pos: 54.5,50.5
+ parent: 1
+ - uid: 37387
+ components:
+ - type: Transform
+ pos: 54.5,49.5
+ parent: 1
+ - uid: 37388
+ components:
+ - type: Transform
+ pos: 65.5,52.5
+ parent: 1
+ - uid: 37392
+ components:
+ - type: Transform
+ pos: 109.5,68.5
+ parent: 1
+ - uid: 37393
+ components:
+ - type: Transform
+ pos: 103.5,68.5
+ parent: 1
+ - uid: 37430
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 37431
+ components:
+ - type: Transform
+ pos: 83.5,50.5
+ parent: 1
+ - uid: 37432
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 37433
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - uid: 37434
+ components:
+ - type: Transform
+ pos: 83.5,44.5
+ parent: 1
+ - uid: 37435
+ components:
+ - type: Transform
+ pos: 83.5,46.5
+ parent: 1
+ - uid: 37436
+ components:
+ - type: Transform
+ pos: 83.5,48.5
+ parent: 1
+ - uid: 37437
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 37463
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 37464
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 37465
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 37502
+ components:
+ - type: Transform
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 37503
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 37511
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 37512
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 37517
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 37518
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 37520
+ components:
+ - type: Transform
+ pos: 64.5,54.5
+ parent: 1
+ - uid: 37521
+ components:
+ - type: Transform
+ pos: 64.5,55.5
+ parent: 1
+ - uid: 37522
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 37523
+ components:
+ - type: Transform
+ pos: 65.5,55.5
+ parent: 1
+ - uid: 37524
+ components:
+ - type: Transform
+ pos: 66.5,55.5
+ parent: 1
+ - uid: 37525
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 37526
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 37527
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 37528
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 37529
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 37530
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 37555
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 37556
+ components:
+ - type: Transform
+ pos: 47.5,99.5
+ parent: 1
+ - uid: 37557
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+- proto: CableApcStack
+ entities:
+ - uid: 623
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 48.77754,84.81634
+ parent: 1
+ - uid: 20967
+ components:
+ - type: Transform
+ pos: 60.75863,89.672554
+ parent: 1
+ - uid: 37146
+ components:
+ - type: Transform
+ pos: 164.5,149.5
+ parent: 1
+- proto: Cablecuffs
+ entities:
+ - uid: 34670
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 162.47273,66.45363
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 124.5,113.5
+ parent: 1
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 1962
+ components:
+ - type: Transform
+ pos: 67.5,17.5
+ parent: 1
+ - uid: 2354
+ components:
+ - type: Transform
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 2740
+ components:
+ - type: Transform
+ pos: 102.5,149.5
+ parent: 1
+ - uid: 2825
+ components:
+ - type: Transform
+ pos: 61.5,42.5
+ parent: 1
+ - uid: 2877
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - uid: 2998
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 3056
+ components:
+ - type: Transform
+ pos: 113.5,88.5
+ parent: 1
+ - uid: 3100
+ components:
+ - type: Transform
+ pos: 106.5,144.5
+ parent: 1
+ - uid: 3117
+ components:
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 3306
+ components:
+ - type: Transform
+ pos: 101.5,135.5
+ parent: 1
+ - uid: 3327
+ components:
+ - type: Transform
+ pos: 99.5,149.5
+ parent: 1
+ - uid: 3360
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 3361
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 3396
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: 102.5,148.5
+ parent: 1
+ - uid: 3434
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 3444
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 3445
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 3449
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 3568
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - uid: 3584
+ components:
+ - type: Transform
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 3697
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 3798
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 3997
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 4001
+ components:
+ - type: Transform
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 4041
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 4042
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 4044
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 4111
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 4116
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 4122
+ components:
+ - type: Transform
+ pos: 61.5,46.5
+ parent: 1
+ - uid: 4137
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 4419
+ components:
+ - type: Transform
+ pos: 61.5,43.5
+ parent: 1
+ - uid: 4475
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 4579
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 4583
+ components:
+ - type: Transform
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 4606
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 4659
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 4665
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 4820
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 4888
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 4934
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 4937
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 4940
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 5036
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 5037
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 5172
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 5203
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 5208
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 5209
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 5222
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 5364
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 5411
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 5412
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 5454
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 5455
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 5458
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 5583
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 5584
+ components:
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 5596
+ components:
+ - type: Transform
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 5780
+ components:
+ - type: Transform
+ pos: 53.5,110.5
+ parent: 1
+ - uid: 5785
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 6007
+ components:
+ - type: Transform
+ pos: 34.5,99.5
+ parent: 1
+ - uid: 6050
+ components:
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - uid: 6070
+ components:
+ - type: Transform
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 6125
+ components:
+ - type: Transform
+ pos: 143.5,147.5
+ parent: 1
+ - uid: 6133
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6167
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 6169
+ components:
+ - type: Transform
+ pos: 140.5,147.5
+ parent: 1
+ - uid: 6170
+ components:
+ - type: Transform
+ pos: 142.5,147.5
+ parent: 1
+ - uid: 6212
+ components:
+ - type: Transform
+ pos: 141.5,147.5
+ parent: 1
+ - uid: 6213
+ components:
+ - type: Transform
+ pos: 144.5,147.5
+ parent: 1
+ - uid: 6576
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 6671
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 6672
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 6674
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 6705
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 6706
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 6918
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 6941
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 6950
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 6951
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6999
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 7012
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 7014
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 7096
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 7119
+ components:
+ - type: Transform
+ pos: 110.5,127.5
+ parent: 1
+ - uid: 7123
+ components:
+ - type: Transform
+ pos: 109.5,127.5
+ parent: 1
+ - uid: 7226
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 7621
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 7719
+ components:
+ - type: Transform
+ pos: 99.5,154.5
+ parent: 1
+ - uid: 7720
+ components:
+ - type: Transform
+ pos: 99.5,152.5
+ parent: 1
+ - uid: 7971
+ components:
+ - type: Transform
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 7987
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7991
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 7993
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 7994
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 7999
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 8009
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 8011
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 8133
+ components:
+ - type: Transform
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 8137
+ components:
+ - type: Transform
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 8174
+ components:
+ - type: Transform
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 8181
+ components:
+ - type: Transform
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 8184
+ components:
+ - type: Transform
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 8189
+ components:
+ - type: Transform
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 8242
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 8400
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 8700
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 8704
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 8707
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 8709
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 8716
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 8722
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 8766
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 8769
+ components:
+ - type: Transform
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 8853
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 8855
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 8984
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 9060
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 9074
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 9075
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 9134
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 9135
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 9136
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 9137
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 9138
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 9139
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 9140
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 9141
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 9142
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 9143
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 9144
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 9145
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 9146
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 9147
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 9148
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 9149
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 9150
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 9151
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 9152
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 9153
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 9154
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 9155
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 9156
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 9157
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 9158
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 9159
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 9160
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 9161
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 9162
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 9163
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 9164
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 9165
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 9166
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 9167
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 9168
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 9169
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 9170
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 9171
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 9172
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 9173
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 9174
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 9175
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 9176
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 9177
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 9178
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 9179
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 9180
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 9181
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 9182
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 9183
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 9184
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 9185
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 9186
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 9187
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 9188
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 9189
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 9190
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 9191
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 9192
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 9193
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 9194
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 9195
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 9196
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 9197
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 9198
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 9199
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 9200
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 9201
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 9202
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 9203
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 9204
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 9205
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 9206
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 9207
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 9208
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 9209
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 9210
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 9211
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 9212
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 9213
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 9214
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 9215
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 9216
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 9217
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 9218
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 9219
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 9220
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 9221
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 9222
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 9224
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 9225
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 9226
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 9227
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 9228
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 9229
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 9230
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 9231
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 9232
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 9233
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 9234
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 9235
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 9236
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 9237
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 9238
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 9239
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 9240
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 9241
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 9242
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 9243
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 9244
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 9245
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 9246
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 9247
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 9248
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 9249
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 9250
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 9251
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 9273
+ components:
+ - type: Transform
+ pos: 127.5,128.5
+ parent: 1
+ - uid: 9274
+ components:
+ - type: Transform
+ pos: 127.5,126.5
+ parent: 1
+ - uid: 9275
+ components:
+ - type: Transform
+ pos: 126.5,122.5
+ parent: 1
+ - uid: 9276
+ components:
+ - type: Transform
+ pos: 127.5,124.5
+ parent: 1
+ - uid: 9277
+ components:
+ - type: Transform
+ pos: 127.5,123.5
+ parent: 1
+ - uid: 9278
+ components:
+ - type: Transform
+ pos: 127.5,122.5
+ parent: 1
+ - uid: 9279
+ components:
+ - type: Transform
+ pos: 128.5,128.5
+ parent: 1
+ - uid: 9280
+ components:
+ - type: Transform
+ pos: 128.5,127.5
+ parent: 1
+ - uid: 9281
+ components:
+ - type: Transform
+ pos: 127.5,127.5
+ parent: 1
+ - uid: 9282
+ components:
+ - type: Transform
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 9283
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 9284
+ components:
+ - type: Transform
+ pos: 128.5,124.5
+ parent: 1
+ - uid: 9285
+ components:
+ - type: Transform
+ pos: 128.5,123.5
+ parent: 1
+ - uid: 9286
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 9287
+ components:
+ - type: Transform
+ pos: 126.5,123.5
+ parent: 1
+ - uid: 9288
+ components:
+ - type: Transform
+ pos: 126.5,124.5
+ parent: 1
+ - uid: 9289
+ components:
+ - type: Transform
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 9290
+ components:
+ - type: Transform
+ pos: 126.5,126.5
+ parent: 1
+ - uid: 9291
+ components:
+ - type: Transform
+ pos: 126.5,127.5
+ parent: 1
+ - uid: 9292
+ components:
+ - type: Transform
+ pos: 126.5,128.5
+ parent: 1
+ - uid: 9293
+ components:
+ - type: Transform
+ pos: 125.5,128.5
+ parent: 1
+ - uid: 9294
+ components:
+ - type: Transform
+ pos: 124.5,128.5
+ parent: 1
+ - uid: 9295
+ components:
+ - type: Transform
+ pos: 123.5,128.5
+ parent: 1
+ - uid: 9296
+ components:
+ - type: Transform
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 9297
+ components:
+ - type: Transform
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 9298
+ components:
+ - type: Transform
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 9299
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 9301
+ components:
+ - type: Transform
+ pos: 128.5,121.5
+ parent: 1
+ - uid: 9302
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 9303
+ components:
+ - type: Transform
+ pos: 128.5,119.5
+ parent: 1
+ - uid: 9304
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 9305
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 9306
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 9307
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 9308
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 9309
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 9310
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 9311
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 9312
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 9313
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 9314
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 9315
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 9316
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 9317
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 9318
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 9319
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 9320
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 9321
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 9322
+ components:
+ - type: Transform
+ pos: 93.5,130.5
+ parent: 1
+ - uid: 9323
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 9324
+ components:
+ - type: Transform
+ pos: 91.5,130.5
+ parent: 1
+ - uid: 9325
+ components:
+ - type: Transform
+ pos: 91.5,129.5
+ parent: 1
+ - uid: 9326
+ components:
+ - type: Transform
+ pos: 91.5,128.5
+ parent: 1
+ - uid: 9327
+ components:
+ - type: Transform
+ pos: 91.5,127.5
+ parent: 1
+ - uid: 9328
+ components:
+ - type: Transform
+ pos: 91.5,126.5
+ parent: 1
+ - uid: 9329
+ components:
+ - type: Transform
+ pos: 90.5,126.5
+ parent: 1
+ - uid: 9330
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 9331
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 9332
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 9333
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 9334
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 9335
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 9336
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 9337
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 9338
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 9339
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 9340
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 9341
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 9342
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 9343
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 9344
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 9345
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 9346
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 9347
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 9348
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 9349
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 9350
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 9351
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 9352
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 9353
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 9354
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 9355
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 9356
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 9357
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 9358
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 9359
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 9360
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 9361
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 9362
+ components:
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - uid: 9363
+ components:
+ - type: Transform
+ pos: 93.5,155.5
+ parent: 1
+ - uid: 9372
+ components:
+ - type: Transform
+ pos: 84.5,139.5
+ parent: 1
+ - uid: 9634
+ components:
+ - type: Transform
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 9677
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 9686
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 9696
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 9763
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 9812
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 9813
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 9814
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 9815
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 9816
+ components:
+ - type: Transform
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 9831
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 9832
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 9833
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 9834
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 9849
+ components:
+ - type: Transform
+ pos: 64.5,64.5
+ parent: 1
+ - uid: 9850
+ components:
+ - type: Transform
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 9851
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - uid: 9852
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 9854
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - uid: 9855
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - uid: 9856
+ components:
+ - type: Transform
+ pos: 61.5,64.5
+ parent: 1
+ - uid: 9857
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 9858
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 9859
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 9860
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 9861
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 9862
+ components:
+ - type: Transform
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 9863
+ components:
+ - type: Transform
+ pos: 56.5,66.5
+ parent: 1
+ - uid: 9864
+ components:
+ - type: Transform
+ pos: 56.5,67.5
+ parent: 1
+ - uid: 9865
+ components:
+ - type: Transform
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 9866
+ components:
+ - type: Transform
+ pos: 56.5,69.5
+ parent: 1
+ - uid: 9867
+ components:
+ - type: Transform
+ pos: 56.5,70.5
+ parent: 1
+ - uid: 9868
+ components:
+ - type: Transform
+ pos: 56.5,71.5
+ parent: 1
+ - uid: 9869
+ components:
+ - type: Transform
+ pos: 56.5,72.5
+ parent: 1
+ - uid: 9870
+ components:
+ - type: Transform
+ pos: 56.5,73.5
+ parent: 1
+ - uid: 9871
+ components:
+ - type: Transform
+ pos: 56.5,74.5
+ parent: 1
+ - uid: 9872
+ components:
+ - type: Transform
+ pos: 56.5,75.5
+ parent: 1
+ - uid: 9873
+ components:
+ - type: Transform
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 9874
+ components:
+ - type: Transform
+ pos: 56.5,78.5
+ parent: 1
+ - uid: 9875
+ components:
+ - type: Transform
+ pos: 56.5,76.5
+ parent: 1
+ - uid: 9876
+ components:
+ - type: Transform
+ pos: 56.5,80.5
+ parent: 1
+ - uid: 9877
+ components:
+ - type: Transform
+ pos: 56.5,81.5
+ parent: 1
+ - uid: 9878
+ components:
+ - type: Transform
+ pos: 56.5,82.5
+ parent: 1
+ - uid: 9879
+ components:
+ - type: Transform
+ pos: 56.5,79.5
+ parent: 1
+ - uid: 9880
+ components:
+ - type: Transform
+ pos: 56.5,84.5
+ parent: 1
+ - uid: 9881
+ components:
+ - type: Transform
+ pos: 56.5,85.5
+ parent: 1
+ - uid: 9882
+ components:
+ - type: Transform
+ pos: 56.5,86.5
+ parent: 1
+ - uid: 9883
+ components:
+ - type: Transform
+ pos: 56.5,87.5
+ parent: 1
+ - uid: 9884
+ components:
+ - type: Transform
+ pos: 56.5,88.5
+ parent: 1
+ - uid: 9885
+ components:
+ - type: Transform
+ pos: 56.5,89.5
+ parent: 1
+ - uid: 9886
+ components:
+ - type: Transform
+ pos: 56.5,90.5
+ parent: 1
+ - uid: 9887
+ components:
+ - type: Transform
+ pos: 56.5,83.5
+ parent: 1
+ - uid: 9888
+ components:
+ - type: Transform
+ pos: 56.5,91.5
+ parent: 1
+ - uid: 9889
+ components:
+ - type: Transform
+ pos: 56.5,93.5
+ parent: 1
+ - uid: 9890
+ components:
+ - type: Transform
+ pos: 56.5,94.5
+ parent: 1
+ - uid: 9891
+ components:
+ - type: Transform
+ pos: 56.5,95.5
+ parent: 1
+ - uid: 9892
+ components:
+ - type: Transform
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 9893
+ components:
+ - type: Transform
+ pos: 56.5,97.5
+ parent: 1
+ - uid: 9894
+ components:
+ - type: Transform
+ pos: 56.5,98.5
+ parent: 1
+ - uid: 9895
+ components:
+ - type: Transform
+ pos: 56.5,92.5
+ parent: 1
+ - uid: 9896
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 9897
+ components:
+ - type: Transform
+ pos: 56.5,100.5
+ parent: 1
+ - uid: 9898
+ components:
+ - type: Transform
+ pos: 56.5,101.5
+ parent: 1
+ - uid: 9899
+ components:
+ - type: Transform
+ pos: 56.5,103.5
+ parent: 1
+ - uid: 9900
+ components:
+ - type: Transform
+ pos: 56.5,104.5
+ parent: 1
+ - uid: 9901
+ components:
+ - type: Transform
+ pos: 56.5,105.5
+ parent: 1
+ - uid: 9902
+ components:
+ - type: Transform
+ pos: 56.5,106.5
+ parent: 1
+ - uid: 9903
+ components:
+ - type: Transform
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 9904
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 9905
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 9906
+ components:
+ - type: Transform
+ pos: 56.5,102.5
+ parent: 1
+ - uid: 9907
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 9908
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 9909
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 9910
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 9911
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 9912
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 9913
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 9914
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 9915
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - uid: 9916
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 9917
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 9918
+ components:
+ - type: Transform
+ pos: 64.5,113.5
+ parent: 1
+ - uid: 9919
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - uid: 9920
+ components:
+ - type: Transform
+ pos: 66.5,113.5
+ parent: 1
+ - uid: 9921
+ components:
+ - type: Transform
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 9922
+ components:
+ - type: Transform
+ pos: 68.5,113.5
+ parent: 1
+ - uid: 9923
+ components:
+ - type: Transform
+ pos: 69.5,113.5
+ parent: 1
+ - uid: 9924
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 9925
+ components:
+ - type: Transform
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 9926
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 9927
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 9928
+ components:
+ - type: Transform
+ pos: 75.5,113.5
+ parent: 1
+ - uid: 9929
+ components:
+ - type: Transform
+ pos: 76.5,113.5
+ parent: 1
+ - uid: 9930
+ components:
+ - type: Transform
+ pos: 77.5,113.5
+ parent: 1
+ - uid: 9931
+ components:
+ - type: Transform
+ pos: 78.5,113.5
+ parent: 1
+ - uid: 9932
+ components:
+ - type: Transform
+ pos: 79.5,113.5
+ parent: 1
+ - uid: 9933
+ components:
+ - type: Transform
+ pos: 71.5,113.5
+ parent: 1
+ - uid: 9934
+ components:
+ - type: Transform
+ pos: 82.5,113.5
+ parent: 1
+ - uid: 9935
+ components:
+ - type: Transform
+ pos: 80.5,113.5
+ parent: 1
+ - uid: 9936
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 9937
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 9938
+ components:
+ - type: Transform
+ pos: 86.5,113.5
+ parent: 1
+ - uid: 9939
+ components:
+ - type: Transform
+ pos: 87.5,113.5
+ parent: 1
+ - uid: 9940
+ components:
+ - type: Transform
+ pos: 88.5,113.5
+ parent: 1
+ - uid: 9941
+ components:
+ - type: Transform
+ pos: 83.5,113.5
+ parent: 1
+ - uid: 9942
+ components:
+ - type: Transform
+ pos: 84.5,113.5
+ parent: 1
+ - uid: 9943
+ components:
+ - type: Transform
+ pos: 88.5,114.5
+ parent: 1
+ - uid: 9944
+ components:
+ - type: Transform
+ pos: 88.5,115.5
+ parent: 1
+ - uid: 9945
+ components:
+ - type: Transform
+ pos: 88.5,116.5
+ parent: 1
+ - uid: 9946
+ components:
+ - type: Transform
+ pos: 88.5,117.5
+ parent: 1
+ - uid: 9947
+ components:
+ - type: Transform
+ pos: 88.5,118.5
+ parent: 1
+ - uid: 9948
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - uid: 9949
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - uid: 9950
+ components:
+ - type: Transform
+ pos: 91.5,118.5
+ parent: 1
+ - uid: 9951
+ components:
+ - type: Transform
+ pos: 92.5,118.5
+ parent: 1
+ - uid: 9952
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 9953
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 9954
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 9955
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 9956
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 9960
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 9961
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 9962
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 9963
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 9964
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 9965
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 9966
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 9967
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 9968
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 9969
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 9970
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 9971
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 9972
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 9973
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 9974
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 9975
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 9976
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 9977
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 9978
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 9979
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 9980
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 9981
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 9982
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 9983
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 9984
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 9985
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 9986
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 9987
+ components:
+ - type: Transform
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 9988
+ components:
+ - type: Transform
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 9990
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 9991
+ components:
+ - type: Transform
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 9992
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 9993
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 9996
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 9999
+ components:
+ - type: Transform
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 10000
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - uid: 10001
+ components:
+ - type: Transform
+ pos: 93.5,78.5
+ parent: 1
+ - uid: 10002
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 10003
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 10004
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 10005
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 10006
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 10007
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 10008
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 10009
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 10010
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 10011
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 10012
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 10013
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 10014
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 10015
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 10016
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 10017
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 10018
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 10019
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 10020
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 10021
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 10022
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 10023
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 10024
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 10025
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 10026
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 10027
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 10028
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 10029
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 10030
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 10031
+ components:
+ - type: Transform
+ pos: 77.5,64.5
+ parent: 1
+ - uid: 10032
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - uid: 10033
+ components:
+ - type: Transform
+ pos: 75.5,64.5
+ parent: 1
+ - uid: 10034
+ components:
+ - type: Transform
+ pos: 74.5,64.5
+ parent: 1
+ - uid: 10035
+ components:
+ - type: Transform
+ pos: 73.5,64.5
+ parent: 1
+ - uid: 10036
+ components:
+ - type: Transform
+ pos: 72.5,64.5
+ parent: 1
+ - uid: 10037
+ components:
+ - type: Transform
+ pos: 71.5,64.5
+ parent: 1
+ - uid: 10038
+ components:
+ - type: Transform
+ pos: 70.5,64.5
+ parent: 1
+ - uid: 10039
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 1
+ - uid: 10040
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 1
+ - uid: 10041
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 1
+ - uid: 10042
+ components:
+ - type: Transform
+ pos: 66.5,64.5
+ parent: 1
+ - uid: 10043
+ components:
+ - type: Transform
+ pos: 65.5,64.5
+ parent: 1
+ - uid: 10046
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 10047
+ components:
+ - type: Transform
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 10048
+ components:
+ - type: Transform
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 10049
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 10050
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 10051
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 10052
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 10053
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 10054
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 10055
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 10056
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - uid: 10057
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - uid: 10058
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - uid: 10059
+ components:
+ - type: Transform
+ pos: 58.5,78.5
+ parent: 1
+ - uid: 10060
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 10061
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 10062
+ components:
+ - type: Transform
+ pos: 61.5,78.5
+ parent: 1
+ - uid: 10063
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 10064
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 10065
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 10066
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 10067
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 10068
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 10069
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 10070
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 10071
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 10072
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 10073
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 10074
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 10075
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 10076
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 10077
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 10078
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 10079
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 10080
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 10081
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 10082
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 10083
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 10084
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 10085
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 10086
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 10087
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 10088
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 10089
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 10090
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 10091
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 10092
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 10093
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 10094
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 10096
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 10097
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 10098
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 10099
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 1
+ - uid: 10100
+ components:
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 10102
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 10103
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 10104
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 10105
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 10106
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 10107
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 10108
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 10109
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 10110
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 10111
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 10112
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 10113
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 10114
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 10115
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 10116
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 10117
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 10118
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 10119
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 10120
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 10121
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 10122
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 10123
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 10124
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 10125
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 10126
+ components:
+ - type: Transform
+ pos: 120.5,77.5
+ parent: 1
+ - uid: 10127
+ components:
+ - type: Transform
+ pos: 121.5,77.5
+ parent: 1
+ - uid: 10128
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 10129
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 10130
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 10131
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 10132
+ components:
+ - type: Transform
+ pos: 126.5,77.5
+ parent: 1
+ - uid: 10133
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 10134
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 10135
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 10136
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 10137
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 10138
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 10139
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 10140
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 10141
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 10142
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 10143
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 10144
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 10145
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 10146
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 10147
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 10148
+ components:
+ - type: Transform
+ pos: 140.5,77.5
+ parent: 1
+ - uid: 10149
+ components:
+ - type: Transform
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 10150
+ components:
+ - type: Transform
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 10151
+ components:
+ - type: Transform
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 10152
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 10153
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 10154
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 10155
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 10156
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 10157
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 10158
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 10159
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 10160
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 10161
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 10162
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 10163
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 10164
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 10165
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 10166
+ components:
+ - type: Transform
+ pos: 128.5,92.5
+ parent: 1
+ - uid: 10167
+ components:
+ - type: Transform
+ pos: 128.5,93.5
+ parent: 1
+ - uid: 10168
+ components:
+ - type: Transform
+ pos: 128.5,94.5
+ parent: 1
+ - uid: 10169
+ components:
+ - type: Transform
+ pos: 128.5,95.5
+ parent: 1
+ - uid: 10170
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 10171
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 10172
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 10173
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 10174
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 10175
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 10176
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 10177
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 10178
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 10179
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 10180
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 10181
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 10182
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 10183
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 10184
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 10185
+ components:
+ - type: Transform
+ pos: 128.5,111.5
+ parent: 1
+ - uid: 10186
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 10187
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 10188
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 10189
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - uid: 10190
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 10191
+ components:
+ - type: Transform
+ pos: 128.5,112.5
+ parent: 1
+ - uid: 10192
+ components:
+ - type: Transform
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 10193
+ components:
+ - type: Transform
+ pos: 126.5,118.5
+ parent: 1
+ - uid: 10194
+ components:
+ - type: Transform
+ pos: 125.5,118.5
+ parent: 1
+ - uid: 10195
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 10196
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 10197
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 10198
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 10199
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 10200
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 10201
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 10202
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 10203
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 10204
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 10205
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 10206
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 10207
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 10208
+ components:
+ - type: Transform
+ pos: 111.5,118.5
+ parent: 1
+ - uid: 10209
+ components:
+ - type: Transform
+ pos: 110.5,118.5
+ parent: 1
+ - uid: 10210
+ components:
+ - type: Transform
+ pos: 109.5,118.5
+ parent: 1
+ - uid: 10211
+ components:
+ - type: Transform
+ pos: 108.5,118.5
+ parent: 1
+ - uid: 10212
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - uid: 10213
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 10214
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - uid: 10215
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 10216
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 10217
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 10218
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 10219
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 10220
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 10221
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 10232
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 10233
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 10234
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 10235
+ components:
+ - type: Transform
+ pos: 132.5,118.5
+ parent: 1
+ - uid: 10236
+ components:
+ - type: Transform
+ pos: 133.5,118.5
+ parent: 1
+ - uid: 10237
+ components:
+ - type: Transform
+ pos: 134.5,118.5
+ parent: 1
+ - uid: 10238
+ components:
+ - type: Transform
+ pos: 136.5,118.5
+ parent: 1
+ - uid: 10239
+ components:
+ - type: Transform
+ pos: 137.5,118.5
+ parent: 1
+ - uid: 10240
+ components:
+ - type: Transform
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 10241
+ components:
+ - type: Transform
+ pos: 139.5,118.5
+ parent: 1
+ - uid: 10242
+ components:
+ - type: Transform
+ pos: 140.5,118.5
+ parent: 1
+ - uid: 10243
+ components:
+ - type: Transform
+ pos: 141.5,118.5
+ parent: 1
+ - uid: 10244
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 10245
+ components:
+ - type: Transform
+ pos: 143.5,118.5
+ parent: 1
+ - uid: 10246
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 10247
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 10248
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 10249
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 10250
+ components:
+ - type: Transform
+ pos: 135.5,118.5
+ parent: 1
+ - uid: 10251
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 10252
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 10253
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 10254
+ components:
+ - type: Transform
+ pos: 151.5,118.5
+ parent: 1
+ - uid: 10255
+ components:
+ - type: Transform
+ pos: 152.5,118.5
+ parent: 1
+ - uid: 10256
+ components:
+ - type: Transform
+ pos: 153.5,118.5
+ parent: 1
+ - uid: 10257
+ components:
+ - type: Transform
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 10258
+ components:
+ - type: Transform
+ pos: 156.5,118.5
+ parent: 1
+ - uid: 10259
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - uid: 10261
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 10263
+ components:
+ - type: Transform
+ pos: 154.5,118.5
+ parent: 1
+ - uid: 10264
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 10265
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 10266
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 10267
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 10268
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 10269
+ components:
+ - type: Transform
+ pos: 149.5,124.5
+ parent: 1
+ - uid: 10270
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 10271
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 10272
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 10273
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 10274
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 10275
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 10276
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 10277
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 10278
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 10279
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 10280
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 10281
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 10282
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 10283
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 10284
+ components:
+ - type: Transform
+ pos: 150.5,138.5
+ parent: 1
+ - uid: 10285
+ components:
+ - type: Transform
+ pos: 151.5,138.5
+ parent: 1
+ - uid: 10286
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - uid: 10287
+ components:
+ - type: Transform
+ pos: 153.5,138.5
+ parent: 1
+ - uid: 10288
+ components:
+ - type: Transform
+ pos: 154.5,138.5
+ parent: 1
+ - uid: 10289
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - uid: 10290
+ components:
+ - type: Transform
+ pos: 156.5,138.5
+ parent: 1
+ - uid: 10291
+ components:
+ - type: Transform
+ pos: 157.5,138.5
+ parent: 1
+ - uid: 10292
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - uid: 10293
+ components:
+ - type: Transform
+ pos: 159.5,138.5
+ parent: 1
+ - uid: 10294
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 10295
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 10296
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 10297
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 10298
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 10299
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 10300
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 10301
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 10302
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 10303
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 10304
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 10305
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 10306
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 10335
+ components:
+ - type: Transform
+ pos: 163.5,57.5
+ parent: 1
+ - uid: 10380
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 10383
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 10416
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 10417
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 10419
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 10420
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 10421
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 10425
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - uid: 10468
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 10469
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 10470
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 10515
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 10541
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 10543
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 10544
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 10545
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 10546
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 10718
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 10723
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 10724
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 10740
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 10801
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 10802
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 10803
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 10804
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 10805
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 10806
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 10807
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 10808
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 10809
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - uid: 10810
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 10811
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 10812
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 10813
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 10814
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 10815
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 10816
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 10817
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 10818
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 10819
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 10820
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 10821
+ components:
+ - type: Transform
+ pos: 43.5,78.5
+ parent: 1
+ - uid: 10822
+ components:
+ - type: Transform
+ pos: 44.5,78.5
+ parent: 1
+ - uid: 10823
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 10824
+ components:
+ - type: Transform
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 10825
+ components:
+ - type: Transform
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 10826
+ components:
+ - type: Transform
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 10827
+ components:
+ - type: Transform
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 10829
+ components:
+ - type: Transform
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 10830
+ components:
+ - type: Transform
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 10831
+ components:
+ - type: Transform
+ pos: 54.5,78.5
+ parent: 1
+ - uid: 10832
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 10833
+ components:
+ - type: Transform
+ pos: 53.5,78.5
+ parent: 1
+ - uid: 10834
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 10835
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 10836
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - uid: 10837
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - uid: 10838
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 10839
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 10840
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 10841
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 10842
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 10843
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 10844
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 10845
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 10846
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 10847
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 10848
+ components:
+ - type: Transform
+ pos: 43.5,94.5
+ parent: 1
+ - uid: 10849
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 10850
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 10851
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 10852
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 10853
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 10854
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 10855
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 10856
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 10857
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 10858
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 10859
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 10860
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 10861
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 10862
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 10863
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 10864
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 10865
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 10866
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 10867
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 10868
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 10869
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 10870
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 10871
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 10872
+ components:
+ - type: Transform
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 10873
+ components:
+ - type: Transform
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 10874
+ components:
+ - type: Transform
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 10875
+ components:
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - uid: 10876
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 10877
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 10878
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 10879
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 10880
+ components:
+ - type: Transform
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 10881
+ components:
+ - type: Transform
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 10882
+ components:
+ - type: Transform
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 10883
+ components:
+ - type: Transform
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 10884
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 10885
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 10886
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 10887
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 10888
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 10889
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 10890
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 10891
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 10892
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 10893
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 10894
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 10895
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 10896
+ components:
+ - type: Transform
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 10897
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 10898
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 10899
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 10900
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 10906
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 10907
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 10908
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 10909
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 10910
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 10919
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 10920
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 10921
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 10922
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 10923
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 10924
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 10934
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 10935
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 10936
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 10937
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 10938
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 10939
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 10940
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 10941
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 10942
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 10943
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 10944
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 10945
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 10946
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 10947
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 10948
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 10949
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 10950
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 10951
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 10952
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 10953
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 10954
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 10955
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 10956
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 10957
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 10958
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 10959
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 10960
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 10961
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 10962
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 10963
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 10964
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 10965
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 10966
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 10967
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 10968
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 10969
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 10974
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 11163
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 11522
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 11550
+ components:
+ - type: Transform
+ pos: 23.5,65.5
+ parent: 1
+ - uid: 11551
+ components:
+ - type: Transform
+ pos: 23.5,64.5
+ parent: 1
+ - uid: 11552
+ components:
+ - type: Transform
+ pos: 23.5,63.5
+ parent: 1
+ - uid: 11553
+ components:
+ - type: Transform
+ pos: 23.5,62.5
+ parent: 1
+ - uid: 11554
+ components:
+ - type: Transform
+ pos: 23.5,60.5
+ parent: 1
+ - uid: 11555
+ components:
+ - type: Transform
+ pos: 23.5,59.5
+ parent: 1
+ - uid: 11556
+ components:
+ - type: Transform
+ pos: 23.5,61.5
+ parent: 1
+ - uid: 11557
+ components:
+ - type: Transform
+ pos: 23.5,57.5
+ parent: 1
+ - uid: 11558
+ components:
+ - type: Transform
+ pos: 23.5,58.5
+ parent: 1
+ - uid: 11559
+ components:
+ - type: Transform
+ pos: 23.5,56.5
+ parent: 1
+ - uid: 11560
+ components:
+ - type: Transform
+ pos: 25.5,56.5
+ parent: 1
+ - uid: 11561
+ components:
+ - type: Transform
+ pos: 25.5,58.5
+ parent: 1
+ - uid: 11562
+ components:
+ - type: Transform
+ pos: 25.5,57.5
+ parent: 1
+ - uid: 11563
+ components:
+ - type: Transform
+ pos: 25.5,60.5
+ parent: 1
+ - uid: 11564
+ components:
+ - type: Transform
+ pos: 25.5,59.5
+ parent: 1
+ - uid: 11565
+ components:
+ - type: Transform
+ pos: 25.5,61.5
+ parent: 1
+ - uid: 11566
+ components:
+ - type: Transform
+ pos: 25.5,62.5
+ parent: 1
+ - uid: 11567
+ components:
+ - type: Transform
+ pos: 25.5,63.5
+ parent: 1
+ - uid: 11568
+ components:
+ - type: Transform
+ pos: 25.5,64.5
+ parent: 1
+ - uid: 11569
+ components:
+ - type: Transform
+ pos: 25.5,65.5
+ parent: 1
+ - uid: 11570
+ components:
+ - type: Transform
+ pos: 23.5,50.5
+ parent: 1
+ - uid: 11571
+ components:
+ - type: Transform
+ pos: 23.5,49.5
+ parent: 1
+ - uid: 11572
+ components:
+ - type: Transform
+ pos: 23.5,48.5
+ parent: 1
+ - uid: 11573
+ components:
+ - type: Transform
+ pos: 23.5,47.5
+ parent: 1
+ - uid: 11574
+ components:
+ - type: Transform
+ pos: 23.5,46.5
+ parent: 1
+ - uid: 11575
+ components:
+ - type: Transform
+ pos: 23.5,45.5
+ parent: 1
+ - uid: 11576
+ components:
+ - type: Transform
+ pos: 23.5,44.5
+ parent: 1
+ - uid: 11577
+ components:
+ - type: Transform
+ pos: 23.5,43.5
+ parent: 1
+ - uid: 11578
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 11579
+ components:
+ - type: Transform
+ pos: 23.5,41.5
+ parent: 1
+ - uid: 11580
+ components:
+ - type: Transform
+ pos: 25.5,41.5
+ parent: 1
+ - uid: 11581
+ components:
+ - type: Transform
+ pos: 25.5,42.5
+ parent: 1
+ - uid: 11582
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 1
+ - uid: 11583
+ components:
+ - type: Transform
+ pos: 25.5,44.5
+ parent: 1
+ - uid: 11584
+ components:
+ - type: Transform
+ pos: 25.5,45.5
+ parent: 1
+ - uid: 11585
+ components:
+ - type: Transform
+ pos: 25.5,46.5
+ parent: 1
+ - uid: 11586
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 1
+ - uid: 11587
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 1
+ - uid: 11588
+ components:
+ - type: Transform
+ pos: 25.5,50.5
+ parent: 1
+ - uid: 11589
+ components:
+ - type: Transform
+ pos: 25.5,49.5
+ parent: 1
+ - uid: 11590
+ components:
+ - type: Transform
+ pos: 20.5,53.5
+ parent: 1
+ - uid: 11591
+ components:
+ - type: Transform
+ pos: 21.5,53.5
+ parent: 1
+ - uid: 11592
+ components:
+ - type: Transform
+ pos: 23.5,35.5
+ parent: 1
+ - uid: 11593
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 1
+ - uid: 11594
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 11595
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 11596
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1
+ - uid: 11597
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 1
+ - uid: 11598
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 1
+ - uid: 11599
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 1
+ - uid: 11600
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 1
+ - uid: 11601
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 1
+ - uid: 11602
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1
+ - uid: 11603
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 11604
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1
+ - uid: 11605
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 1
+ - uid: 11606
+ components:
+ - type: Transform
+ pos: 25.5,30.5
+ parent: 1
+ - uid: 11607
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1
+ - uid: 11608
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1
+ - uid: 11609
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 11610
+ components:
+ - type: Transform
+ pos: 25.5,33.5
+ parent: 1
+ - uid: 11611
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1
+ - uid: 11612
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1
+ - uid: 11613
+ components:
+ - type: Transform
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 11614
+ components:
+ - type: Transform
+ pos: 27.5,33.5
+ parent: 1
+ - uid: 11615
+ components:
+ - type: Transform
+ pos: 27.5,32.5
+ parent: 1
+ - uid: 11616
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 1
+ - uid: 11617
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 1
+ - uid: 11618
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 1
+ - uid: 11619
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 1
+ - uid: 11620
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 1
+ - uid: 11621
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 1
+ - uid: 11622
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 11623
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1
+ - uid: 11624
+ components:
+ - type: Transform
+ pos: 29.5,29.5
+ parent: 1
+ - uid: 11625
+ components:
+ - type: Transform
+ pos: 29.5,30.5
+ parent: 1
+ - uid: 11626
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1
+ - uid: 11627
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1
+ - uid: 11628
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 1
+ - uid: 11629
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1
+ - uid: 11630
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1
+ - uid: 11631
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1
+ - uid: 11632
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1
+ - uid: 11633
+ components:
+ - type: Transform
+ pos: 31.5,34.5
+ parent: 1
+ - uid: 11634
+ components:
+ - type: Transform
+ pos: 31.5,33.5
+ parent: 1
+ - uid: 11635
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1
+ - uid: 11636
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1
+ - uid: 11637
+ components:
+ - type: Transform
+ pos: 31.5,30.5
+ parent: 1
+ - uid: 11638
+ components:
+ - type: Transform
+ pos: 31.5,29.5
+ parent: 1
+ - uid: 11639
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+ - uid: 11640
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 1
+ - uid: 11641
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 11642
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 11643
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+ - uid: 11644
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 11645
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 1
+ - uid: 11646
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1
+ - uid: 11647
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1
+ - uid: 11648
+ components:
+ - type: Transform
+ pos: 33.5,32.5
+ parent: 1
+ - uid: 11649
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 1
+ - uid: 11650
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 1
+ - uid: 11651
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1
+ - uid: 11652
+ components:
+ - type: Transform
+ pos: 37.5,26.5
+ parent: 1
+ - uid: 11653
+ components:
+ - type: Transform
+ pos: 37.5,27.5
+ parent: 1
+ - uid: 11654
+ components:
+ - type: Transform
+ pos: 37.5,28.5
+ parent: 1
+ - uid: 11655
+ components:
+ - type: Transform
+ pos: 37.5,29.5
+ parent: 1
+ - uid: 11656
+ components:
+ - type: Transform
+ pos: 37.5,30.5
+ parent: 1
+ - uid: 11657
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1
+ - uid: 11658
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1
+ - uid: 11659
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 1
+ - uid: 11660
+ components:
+ - type: Transform
+ pos: 37.5,35.5
+ parent: 1
+ - uid: 11661
+ components:
+ - type: Transform
+ pos: 37.5,34.5
+ parent: 1
+ - uid: 11662
+ components:
+ - type: Transform
+ pos: 35.5,35.5
+ parent: 1
+ - uid: 11663
+ components:
+ - type: Transform
+ pos: 35.5,33.5
+ parent: 1
+ - uid: 11664
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 1
+ - uid: 11665
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1
+ - uid: 11666
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1
+ - uid: 11667
+ components:
+ - type: Transform
+ pos: 35.5,29.5
+ parent: 1
+ - uid: 11668
+ components:
+ - type: Transform
+ pos: 35.5,34.5
+ parent: 1
+ - uid: 11669
+ components:
+ - type: Transform
+ pos: 35.5,27.5
+ parent: 1
+ - uid: 11670
+ components:
+ - type: Transform
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 11671
+ components:
+ - type: Transform
+ pos: 35.5,28.5
+ parent: 1
+ - uid: 11675
+ components:
+ - type: Transform
+ pos: 38.5,44.5
+ parent: 1
+ - uid: 11676
+ components:
+ - type: Transform
+ pos: 37.5,44.5
+ parent: 1
+ - uid: 11677
+ components:
+ - type: Transform
+ pos: 36.5,44.5
+ parent: 1
+ - uid: 11678
+ components:
+ - type: Transform
+ pos: 35.5,44.5
+ parent: 1
+ - uid: 11679
+ components:
+ - type: Transform
+ pos: 34.5,44.5
+ parent: 1
+ - uid: 11680
+ components:
+ - type: Transform
+ pos: 33.5,44.5
+ parent: 1
+ - uid: 11681
+ components:
+ - type: Transform
+ pos: 32.5,44.5
+ parent: 1
+ - uid: 11682
+ components:
+ - type: Transform
+ pos: 31.5,44.5
+ parent: 1
+ - uid: 11683
+ components:
+ - type: Transform
+ pos: 31.5,45.5
+ parent: 1
+ - uid: 11684
+ components:
+ - type: Transform
+ pos: 30.5,45.5
+ parent: 1
+ - uid: 11685
+ components:
+ - type: Transform
+ pos: 29.5,45.5
+ parent: 1
+ - uid: 11686
+ components:
+ - type: Transform
+ pos: 29.5,46.5
+ parent: 1
+ - uid: 11688
+ components:
+ - type: Transform
+ pos: 28.5,47.5
+ parent: 1
+ - uid: 11689
+ components:
+ - type: Transform
+ pos: 28.5,48.5
+ parent: 1
+ - uid: 11690
+ components:
+ - type: Transform
+ pos: 28.5,49.5
+ parent: 1
+ - uid: 11691
+ components:
+ - type: Transform
+ pos: 28.5,50.5
+ parent: 1
+ - uid: 11692
+ components:
+ - type: Transform
+ pos: 28.5,51.5
+ parent: 1
+ - uid: 11693
+ components:
+ - type: Transform
+ pos: 28.5,52.5
+ parent: 1
+ - uid: 11694
+ components:
+ - type: Transform
+ pos: 28.5,53.5
+ parent: 1
+ - uid: 11695
+ components:
+ - type: Transform
+ pos: 28.5,54.5
+ parent: 1
+ - uid: 11696
+ components:
+ - type: Transform
+ pos: 28.5,55.5
+ parent: 1
+ - uid: 11697
+ components:
+ - type: Transform
+ pos: 28.5,56.5
+ parent: 1
+ - uid: 11698
+ components:
+ - type: Transform
+ pos: 28.5,58.5
+ parent: 1
+ - uid: 11699
+ components:
+ - type: Transform
+ pos: 28.5,59.5
+ parent: 1
+ - uid: 11700
+ components:
+ - type: Transform
+ pos: 28.5,57.5
+ parent: 1
+ - uid: 11701
+ components:
+ - type: Transform
+ pos: 28.5,61.5
+ parent: 1
+ - uid: 11702
+ components:
+ - type: Transform
+ pos: 28.5,62.5
+ parent: 1
+ - uid: 11703
+ components:
+ - type: Transform
+ pos: 28.5,60.5
+ parent: 1
+ - uid: 11704
+ components:
+ - type: Transform
+ pos: 28.5,63.5
+ parent: 1
+ - uid: 11705
+ components:
+ - type: Transform
+ pos: 28.5,67.5
+ parent: 1
+ - uid: 11706
+ components:
+ - type: Transform
+ pos: 28.5,65.5
+ parent: 1
+ - uid: 11707
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 11708
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - uid: 11709
+ components:
+ - type: Transform
+ pos: 28.5,66.5
+ parent: 1
+ - uid: 11710
+ components:
+ - type: Transform
+ pos: 28.5,64.5
+ parent: 1
+ - uid: 11711
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 11712
+ components:
+ - type: Transform
+ pos: 29.5,70.5
+ parent: 1
+ - uid: 11713
+ components:
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 11718
+ components:
+ - type: Transform
+ pos: 37.5,138.5
+ parent: 1
+ - uid: 11719
+ components:
+ - type: Transform
+ pos: 37.5,137.5
+ parent: 1
+ - uid: 11720
+ components:
+ - type: Transform
+ pos: 37.5,136.5
+ parent: 1
+ - uid: 11721
+ components:
+ - type: Transform
+ pos: 37.5,135.5
+ parent: 1
+ - uid: 11722
+ components:
+ - type: Transform
+ pos: 37.5,134.5
+ parent: 1
+ - uid: 11723
+ components:
+ - type: Transform
+ pos: 37.5,133.5
+ parent: 1
+ - uid: 11724
+ components:
+ - type: Transform
+ pos: 37.5,132.5
+ parent: 1
+ - uid: 11725
+ components:
+ - type: Transform
+ pos: 37.5,131.5
+ parent: 1
+ - uid: 11726
+ components:
+ - type: Transform
+ pos: 37.5,129.5
+ parent: 1
+ - uid: 11727
+ components:
+ - type: Transform
+ pos: 37.5,130.5
+ parent: 1
+ - uid: 11728
+ components:
+ - type: Transform
+ pos: 39.5,129.5
+ parent: 1
+ - uid: 11729
+ components:
+ - type: Transform
+ pos: 39.5,130.5
+ parent: 1
+ - uid: 11730
+ components:
+ - type: Transform
+ pos: 39.5,131.5
+ parent: 1
+ - uid: 11731
+ components:
+ - type: Transform
+ pos: 39.5,132.5
+ parent: 1
+ - uid: 11732
+ components:
+ - type: Transform
+ pos: 39.5,133.5
+ parent: 1
+ - uid: 11733
+ components:
+ - type: Transform
+ pos: 39.5,134.5
+ parent: 1
+ - uid: 11734
+ components:
+ - type: Transform
+ pos: 39.5,135.5
+ parent: 1
+ - uid: 11735
+ components:
+ - type: Transform
+ pos: 39.5,136.5
+ parent: 1
+ - uid: 11736
+ components:
+ - type: Transform
+ pos: 39.5,137.5
+ parent: 1
+ - uid: 11737
+ components:
+ - type: Transform
+ pos: 39.5,138.5
+ parent: 1
+ - uid: 11738
+ components:
+ - type: Transform
+ pos: 41.5,138.5
+ parent: 1
+ - uid: 11739
+ components:
+ - type: Transform
+ pos: 41.5,137.5
+ parent: 1
+ - uid: 11740
+ components:
+ - type: Transform
+ pos: 41.5,136.5
+ parent: 1
+ - uid: 11741
+ components:
+ - type: Transform
+ pos: 41.5,135.5
+ parent: 1
+ - uid: 11742
+ components:
+ - type: Transform
+ pos: 41.5,134.5
+ parent: 1
+ - uid: 11743
+ components:
+ - type: Transform
+ pos: 41.5,133.5
+ parent: 1
+ - uid: 11744
+ components:
+ - type: Transform
+ pos: 41.5,132.5
+ parent: 1
+ - uid: 11745
+ components:
+ - type: Transform
+ pos: 41.5,130.5
+ parent: 1
+ - uid: 11746
+ components:
+ - type: Transform
+ pos: 41.5,129.5
+ parent: 1
+ - uid: 11747
+ components:
+ - type: Transform
+ pos: 41.5,131.5
+ parent: 1
+ - uid: 11748
+ components:
+ - type: Transform
+ pos: 43.5,130.5
+ parent: 1
+ - uid: 11749
+ components:
+ - type: Transform
+ pos: 43.5,131.5
+ parent: 1
+ - uid: 11750
+ components:
+ - type: Transform
+ pos: 43.5,132.5
+ parent: 1
+ - uid: 11751
+ components:
+ - type: Transform
+ pos: 43.5,133.5
+ parent: 1
+ - uid: 11752
+ components:
+ - type: Transform
+ pos: 43.5,134.5
+ parent: 1
+ - uid: 11753
+ components:
+ - type: Transform
+ pos: 43.5,135.5
+ parent: 1
+ - uid: 11754
+ components:
+ - type: Transform
+ pos: 43.5,136.5
+ parent: 1
+ - uid: 11755
+ components:
+ - type: Transform
+ pos: 43.5,137.5
+ parent: 1
+ - uid: 11756
+ components:
+ - type: Transform
+ pos: 43.5,138.5
+ parent: 1
+ - uid: 11757
+ components:
+ - type: Transform
+ pos: 43.5,129.5
+ parent: 1
+ - uid: 11758
+ components:
+ - type: Transform
+ pos: 45.5,129.5
+ parent: 1
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: 45.5,130.5
+ parent: 1
+ - uid: 11760
+ components:
+ - type: Transform
+ pos: 45.5,131.5
+ parent: 1
+ - uid: 11761
+ components:
+ - type: Transform
+ pos: 45.5,132.5
+ parent: 1
+ - uid: 11762
+ components:
+ - type: Transform
+ pos: 45.5,133.5
+ parent: 1
+ - uid: 11763
+ components:
+ - type: Transform
+ pos: 45.5,134.5
+ parent: 1
+ - uid: 11764
+ components:
+ - type: Transform
+ pos: 45.5,135.5
+ parent: 1
+ - uid: 11765
+ components:
+ - type: Transform
+ pos: 45.5,136.5
+ parent: 1
+ - uid: 11766
+ components:
+ - type: Transform
+ pos: 45.5,137.5
+ parent: 1
+ - uid: 11767
+ components:
+ - type: Transform
+ pos: 45.5,138.5
+ parent: 1
+ - uid: 11768
+ components:
+ - type: Transform
+ pos: 47.5,138.5
+ parent: 1
+ - uid: 11769
+ components:
+ - type: Transform
+ pos: 47.5,137.5
+ parent: 1
+ - uid: 11770
+ components:
+ - type: Transform
+ pos: 47.5,136.5
+ parent: 1
+ - uid: 11771
+ components:
+ - type: Transform
+ pos: 47.5,135.5
+ parent: 1
+ - uid: 11772
+ components:
+ - type: Transform
+ pos: 47.5,134.5
+ parent: 1
+ - uid: 11773
+ components:
+ - type: Transform
+ pos: 47.5,133.5
+ parent: 1
+ - uid: 11774
+ components:
+ - type: Transform
+ pos: 47.5,132.5
+ parent: 1
+ - uid: 11775
+ components:
+ - type: Transform
+ pos: 47.5,131.5
+ parent: 1
+ - uid: 11776
+ components:
+ - type: Transform
+ pos: 47.5,130.5
+ parent: 1
+ - uid: 11777
+ components:
+ - type: Transform
+ pos: 47.5,129.5
+ parent: 1
+ - uid: 11778
+ components:
+ - type: Transform
+ pos: 48.5,141.5
+ parent: 1
+ - uid: 11779
+ components:
+ - type: Transform
+ pos: 49.5,141.5
+ parent: 1
+ - uid: 11780
+ components:
+ - type: Transform
+ pos: 50.5,141.5
+ parent: 1
+ - uid: 11781
+ components:
+ - type: Transform
+ pos: 51.5,141.5
+ parent: 1
+ - uid: 11782
+ components:
+ - type: Transform
+ pos: 52.5,141.5
+ parent: 1
+ - uid: 11783
+ components:
+ - type: Transform
+ pos: 52.5,142.5
+ parent: 1
+ - uid: 11784
+ components:
+ - type: Transform
+ pos: 52.5,143.5
+ parent: 1
+ - uid: 11785
+ components:
+ - type: Transform
+ pos: 53.5,143.5
+ parent: 1
+ - uid: 11786
+ components:
+ - type: Transform
+ pos: 54.5,143.5
+ parent: 1
+ - uid: 11787
+ components:
+ - type: Transform
+ pos: 54.5,142.5
+ parent: 1
+ - uid: 11788
+ components:
+ - type: Transform
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 11789
+ components:
+ - type: Transform
+ pos: 54.5,140.5
+ parent: 1
+ - uid: 11790
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 11793
+ components:
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 11794
+ components:
+ - type: Transform
+ pos: 37.5,144.5
+ parent: 1
+ - uid: 11795
+ components:
+ - type: Transform
+ pos: 37.5,145.5
+ parent: 1
+ - uid: 11796
+ components:
+ - type: Transform
+ pos: 37.5,146.5
+ parent: 1
+ - uid: 11797
+ components:
+ - type: Transform
+ pos: 37.5,147.5
+ parent: 1
+ - uid: 11798
+ components:
+ - type: Transform
+ pos: 37.5,148.5
+ parent: 1
+ - uid: 11799
+ components:
+ - type: Transform
+ pos: 37.5,149.5
+ parent: 1
+ - uid: 11800
+ components:
+ - type: Transform
+ pos: 37.5,150.5
+ parent: 1
+ - uid: 11801
+ components:
+ - type: Transform
+ pos: 37.5,151.5
+ parent: 1
+ - uid: 11802
+ components:
+ - type: Transform
+ pos: 37.5,152.5
+ parent: 1
+ - uid: 11803
+ components:
+ - type: Transform
+ pos: 37.5,153.5
+ parent: 1
+ - uid: 11804
+ components:
+ - type: Transform
+ pos: 39.5,153.5
+ parent: 1
+ - uid: 11805
+ components:
+ - type: Transform
+ pos: 39.5,152.5
+ parent: 1
+ - uid: 11806
+ components:
+ - type: Transform
+ pos: 39.5,151.5
+ parent: 1
+ - uid: 11807
+ components:
+ - type: Transform
+ pos: 39.5,150.5
+ parent: 1
+ - uid: 11808
+ components:
+ - type: Transform
+ pos: 39.5,149.5
+ parent: 1
+ - uid: 11809
+ components:
+ - type: Transform
+ pos: 39.5,148.5
+ parent: 1
+ - uid: 11810
+ components:
+ - type: Transform
+ pos: 39.5,147.5
+ parent: 1
+ - uid: 11811
+ components:
+ - type: Transform
+ pos: 39.5,146.5
+ parent: 1
+ - uid: 11812
+ components:
+ - type: Transform
+ pos: 39.5,145.5
+ parent: 1
+ - uid: 11813
+ components:
+ - type: Transform
+ pos: 39.5,144.5
+ parent: 1
+ - uid: 11814
+ components:
+ - type: Transform
+ pos: 41.5,144.5
+ parent: 1
+ - uid: 11815
+ components:
+ - type: Transform
+ pos: 41.5,145.5
+ parent: 1
+ - uid: 11816
+ components:
+ - type: Transform
+ pos: 41.5,146.5
+ parent: 1
+ - uid: 11817
+ components:
+ - type: Transform
+ pos: 41.5,147.5
+ parent: 1
+ - uid: 11818
+ components:
+ - type: Transform
+ pos: 41.5,148.5
+ parent: 1
+ - uid: 11819
+ components:
+ - type: Transform
+ pos: 41.5,149.5
+ parent: 1
+ - uid: 11820
+ components:
+ - type: Transform
+ pos: 41.5,150.5
+ parent: 1
+ - uid: 11821
+ components:
+ - type: Transform
+ pos: 41.5,151.5
+ parent: 1
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: 41.5,152.5
+ parent: 1
+ - uid: 11823
+ components:
+ - type: Transform
+ pos: 41.5,153.5
+ parent: 1
+ - uid: 11824
+ components:
+ - type: Transform
+ pos: 43.5,153.5
+ parent: 1
+ - uid: 11825
+ components:
+ - type: Transform
+ pos: 43.5,152.5
+ parent: 1
+ - uid: 11826
+ components:
+ - type: Transform
+ pos: 43.5,151.5
+ parent: 1
+ - uid: 11827
+ components:
+ - type: Transform
+ pos: 43.5,150.5
+ parent: 1
+ - uid: 11828
+ components:
+ - type: Transform
+ pos: 43.5,149.5
+ parent: 1
+ - uid: 11829
+ components:
+ - type: Transform
+ pos: 43.5,148.5
+ parent: 1
+ - uid: 11830
+ components:
+ - type: Transform
+ pos: 43.5,147.5
+ parent: 1
+ - uid: 11831
+ components:
+ - type: Transform
+ pos: 43.5,146.5
+ parent: 1
+ - uid: 11832
+ components:
+ - type: Transform
+ pos: 43.5,145.5
+ parent: 1
+ - uid: 11833
+ components:
+ - type: Transform
+ pos: 43.5,144.5
+ parent: 1
+ - uid: 11834
+ components:
+ - type: Transform
+ pos: 45.5,144.5
+ parent: 1
+ - uid: 11835
+ components:
+ - type: Transform
+ pos: 45.5,145.5
+ parent: 1
+ - uid: 11836
+ components:
+ - type: Transform
+ pos: 45.5,146.5
+ parent: 1
+ - uid: 11837
+ components:
+ - type: Transform
+ pos: 45.5,147.5
+ parent: 1
+ - uid: 11838
+ components:
+ - type: Transform
+ pos: 45.5,148.5
+ parent: 1
+ - uid: 11839
+ components:
+ - type: Transform
+ pos: 45.5,149.5
+ parent: 1
+ - uid: 11840
+ components:
+ - type: Transform
+ pos: 45.5,150.5
+ parent: 1
+ - uid: 11841
+ components:
+ - type: Transform
+ pos: 45.5,152.5
+ parent: 1
+ - uid: 11842
+ components:
+ - type: Transform
+ pos: 45.5,151.5
+ parent: 1
+ - uid: 11843
+ components:
+ - type: Transform
+ pos: 45.5,153.5
+ parent: 1
+ - uid: 11844
+ components:
+ - type: Transform
+ pos: 47.5,153.5
+ parent: 1
+ - uid: 11845
+ components:
+ - type: Transform
+ pos: 47.5,152.5
+ parent: 1
+ - uid: 11846
+ components:
+ - type: Transform
+ pos: 47.5,151.5
+ parent: 1
+ - uid: 11847
+ components:
+ - type: Transform
+ pos: 47.5,150.5
+ parent: 1
+ - uid: 11848
+ components:
+ - type: Transform
+ pos: 47.5,149.5
+ parent: 1
+ - uid: 11849
+ components:
+ - type: Transform
+ pos: 47.5,147.5
+ parent: 1
+ - uid: 11850
+ components:
+ - type: Transform
+ pos: 47.5,146.5
+ parent: 1
+ - uid: 11851
+ components:
+ - type: Transform
+ pos: 47.5,148.5
+ parent: 1
+ - uid: 11852
+ components:
+ - type: Transform
+ pos: 47.5,145.5
+ parent: 1
+ - uid: 11853
+ components:
+ - type: Transform
+ pos: 47.5,144.5
+ parent: 1
+ - uid: 11854
+ components:
+ - type: Transform
+ pos: 34.5,141.5
+ parent: 1
+ - uid: 11855
+ components:
+ - type: Transform
+ pos: 35.5,141.5
+ parent: 1
+ - uid: 11856
+ components:
+ - type: Transform
+ pos: 168.5,60.5
+ parent: 1
+ - uid: 11857
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 11858
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 11859
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 11860
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 11861
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 11862
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 11863
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 11870
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 11872
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 11873
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 11874
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 11875
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 11876
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 11877
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 11878
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 11879
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 11880
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 11881
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 11882
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 11883
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 11884
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 11885
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 11886
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 11887
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 11888
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 11889
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 11890
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 11891
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 11892
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 11893
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - uid: 11894
+ components:
+ - type: Transform
+ pos: 66.5,114.5
+ parent: 1
+ - uid: 11895
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 11896
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 11901
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 11903
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 11905
+ components:
+ - type: Transform
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 11908
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 11909
+ components:
+ - type: Transform
+ pos: 141.5,120.5
+ parent: 1
+ - uid: 11910
+ components:
+ - type: Transform
+ pos: 141.5,119.5
+ parent: 1
+ - uid: 11911
+ components:
+ - type: Transform
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 11912
+ components:
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 11913
+ components:
+ - type: Transform
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 11924
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 11925
+ components:
+ - type: Transform
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 11926
+ components:
+ - type: Transform
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 11927
+ components:
+ - type: Transform
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 11928
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 11929
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 11930
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 11931
+ components:
+ - type: Transform
+ pos: 135.5,131.5
+ parent: 1
+ - uid: 11932
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 11936
+ components:
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 11939
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 11940
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 11941
+ components:
+ - type: Transform
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 11942
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 11943
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 11944
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 11945
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 11946
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 11947
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 11948
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 11949
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 11950
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 11951
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 11952
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 11953
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 11954
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 11970
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 11971
+ components:
+ - type: Transform
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 11972
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 11973
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 11974
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 11975
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 11976
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 11977
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 11978
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 11979
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 11980
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 11981
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 11982
+ components:
+ - type: Transform
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 11983
+ components:
+ - type: Transform
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 11984
+ components:
+ - type: Transform
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 11985
+ components:
+ - type: Transform
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 11989
+ components:
+ - type: Transform
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 11990
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 11991
+ components:
+ - type: Transform
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 11992
+ components:
+ - type: Transform
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 11993
+ components:
+ - type: Transform
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 11994
+ components:
+ - type: Transform
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 11995
+ components:
+ - type: Transform
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 11996
+ components:
+ - type: Transform
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 11997
+ components:
+ - type: Transform
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 11998
+ components:
+ - type: Transform
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 11999
+ components:
+ - type: Transform
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 12000
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 12001
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 12002
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 12003
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 12004
+ components:
+ - type: Transform
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 12005
+ components:
+ - type: Transform
+ pos: 21.5,104.5
+ parent: 1
+ - uid: 12006
+ components:
+ - type: Transform
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 12007
+ components:
+ - type: Transform
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 12008
+ components:
+ - type: Transform
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 12009
+ components:
+ - type: Transform
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 12010
+ components:
+ - type: Transform
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 12011
+ components:
+ - type: Transform
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 12012
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 12020
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 12021
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 12022
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 12023
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 12024
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 12025
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 12026
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 12027
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 12031
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 12032
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 12033
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 12034
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 12035
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 12036
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 12037
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 12038
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 12039
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 12040
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 12044
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 12045
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 12046
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 12049
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 12050
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 12051
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 12052
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 12053
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 12054
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 12063
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 12067
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 12068
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 12069
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 12070
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 12071
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 12072
+ components:
+ - type: Transform
+ pos: 111.5,114.5
+ parent: 1
+ - uid: 12073
+ components:
+ - type: Transform
+ pos: 110.5,114.5
+ parent: 1
+ - uid: 12074
+ components:
+ - type: Transform
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 12075
+ components:
+ - type: Transform
+ pos: 108.5,114.5
+ parent: 1
+ - uid: 12076
+ components:
+ - type: Transform
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 12077
+ components:
+ - type: Transform
+ pos: 106.5,114.5
+ parent: 1
+ - uid: 12078
+ components:
+ - type: Transform
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 12079
+ components:
+ - type: Transform
+ pos: 103.5,114.5
+ parent: 1
+ - uid: 12080
+ components:
+ - type: Transform
+ pos: 105.5,114.5
+ parent: 1
+ - uid: 12081
+ components:
+ - type: Transform
+ pos: 103.5,115.5
+ parent: 1
+ - uid: 12082
+ components:
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - uid: 12083
+ components:
+ - type: Transform
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 12084
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 12085
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 12086
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 12087
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 12088
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 12089
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 12090
+ components:
+ - type: Transform
+ pos: 118.5,110.5
+ parent: 1
+ - uid: 12091
+ components:
+ - type: Transform
+ pos: 117.5,110.5
+ parent: 1
+ - uid: 12092
+ components:
+ - type: Transform
+ pos: 116.5,110.5
+ parent: 1
+ - uid: 12093
+ components:
+ - type: Transform
+ pos: 115.5,110.5
+ parent: 1
+ - uid: 12094
+ components:
+ - type: Transform
+ pos: 114.5,110.5
+ parent: 1
+ - uid: 12095
+ components:
+ - type: Transform
+ pos: 113.5,110.5
+ parent: 1
+ - uid: 12096
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 12097
+ components:
+ - type: Transform
+ pos: 113.5,112.5
+ parent: 1
+ - uid: 12098
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - uid: 12099
+ components:
+ - type: Transform
+ pos: 103.5,113.5
+ parent: 1
+ - uid: 12100
+ components:
+ - type: Transform
+ pos: 103.5,112.5
+ parent: 1
+ - uid: 12101
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 12102
+ components:
+ - type: Transform
+ pos: 103.5,110.5
+ parent: 1
+ - uid: 12103
+ components:
+ - type: Transform
+ pos: 102.5,110.5
+ parent: 1
+ - uid: 12104
+ components:
+ - type: Transform
+ pos: 100.5,110.5
+ parent: 1
+ - uid: 12105
+ components:
+ - type: Transform
+ pos: 99.5,110.5
+ parent: 1
+ - uid: 12106
+ components:
+ - type: Transform
+ pos: 98.5,110.5
+ parent: 1
+ - uid: 12107
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 12108
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 12109
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 12110
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 12111
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 12112
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 12113
+ components:
+ - type: Transform
+ pos: 101.5,110.5
+ parent: 1
+ - uid: 12118
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 12119
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 12120
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 12121
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 12122
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 12123
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 12124
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 12125
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 12135
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 12140
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - uid: 12141
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - uid: 12143
+ components:
+ - type: Transform
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 12146
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 12147
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 12148
+ components:
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 12150
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - uid: 12151
+ components:
+ - type: Transform
+ pos: 130.5,85.5
+ parent: 1
+ - uid: 12158
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 12159
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 12161
+ components:
+ - type: Transform
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 12162
+ components:
+ - type: Transform
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 12163
+ components:
+ - type: Transform
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 12164
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 12165
+ components:
+ - type: Transform
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 12166
+ components:
+ - type: Transform
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 12167
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 12168
+ components:
+ - type: Transform
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 12169
+ components:
+ - type: Transform
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 12170
+ components:
+ - type: Transform
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 12175
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 12184
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 12185
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 12186
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 12187
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 12188
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 12189
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 12190
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 12191
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 12192
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 12193
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 12194
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 12195
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 12196
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 12197
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 12198
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 12199
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 12200
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 12201
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 12202
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 12203
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 12204
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 12205
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 12206
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 12207
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 12208
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 12209
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 12210
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 12211
+ components:
+ - type: Transform
+ pos: 161.5,58.5
+ parent: 1
+ - uid: 12213
+ components:
+ - type: Transform
+ pos: 164.5,57.5
+ parent: 1
+ - uid: 12214
+ components:
+ - type: Transform
+ pos: 165.5,57.5
+ parent: 1
+ - uid: 12215
+ components:
+ - type: Transform
+ pos: 166.5,57.5
+ parent: 1
+ - uid: 12216
+ components:
+ - type: Transform
+ pos: 167.5,57.5
+ parent: 1
+ - uid: 12217
+ components:
+ - type: Transform
+ pos: 168.5,61.5
+ parent: 1
+ - uid: 12218
+ components:
+ - type: Transform
+ pos: 168.5,62.5
+ parent: 1
+ - uid: 12219
+ components:
+ - type: Transform
+ pos: 168.5,63.5
+ parent: 1
+ - uid: 12220
+ components:
+ - type: Transform
+ pos: 168.5,64.5
+ parent: 1
+ - uid: 12221
+ components:
+ - type: Transform
+ pos: 168.5,66.5
+ parent: 1
+ - uid: 12222
+ components:
+ - type: Transform
+ pos: 168.5,65.5
+ parent: 1
+ - uid: 12223
+ components:
+ - type: Transform
+ pos: 168.5,67.5
+ parent: 1
+ - uid: 12224
+ components:
+ - type: Transform
+ pos: 168.5,68.5
+ parent: 1
+ - uid: 12225
+ components:
+ - type: Transform
+ pos: 168.5,69.5
+ parent: 1
+ - uid: 12226
+ components:
+ - type: Transform
+ pos: 168.5,45.5
+ parent: 1
+ - uid: 12228
+ components:
+ - type: Transform
+ pos: 168.5,51.5
+ parent: 1
+ - uid: 12229
+ components:
+ - type: Transform
+ pos: 168.5,50.5
+ parent: 1
+ - uid: 12230
+ components:
+ - type: Transform
+ pos: 168.5,48.5
+ parent: 1
+ - uid: 12231
+ components:
+ - type: Transform
+ pos: 168.5,53.5
+ parent: 1
+ - uid: 12232
+ components:
+ - type: Transform
+ pos: 168.5,49.5
+ parent: 1
+ - uid: 12233
+ components:
+ - type: Transform
+ pos: 170.5,60.5
+ parent: 1
+ - uid: 12234
+ components:
+ - type: Transform
+ pos: 170.5,61.5
+ parent: 1
+ - uid: 12235
+ components:
+ - type: Transform
+ pos: 170.5,62.5
+ parent: 1
+ - uid: 12236
+ components:
+ - type: Transform
+ pos: 170.5,63.5
+ parent: 1
+ - uid: 12237
+ components:
+ - type: Transform
+ pos: 168.5,52.5
+ parent: 1
+ - uid: 12238
+ components:
+ - type: Transform
+ pos: 170.5,64.5
+ parent: 1
+ - uid: 12239
+ components:
+ - type: Transform
+ pos: 170.5,65.5
+ parent: 1
+ - uid: 12240
+ components:
+ - type: Transform
+ pos: 168.5,54.5
+ parent: 1
+ - uid: 12241
+ components:
+ - type: Transform
+ pos: 170.5,66.5
+ parent: 1
+ - uid: 12242
+ components:
+ - type: Transform
+ pos: 170.5,67.5
+ parent: 1
+ - uid: 12243
+ components:
+ - type: Transform
+ pos: 170.5,68.5
+ parent: 1
+ - uid: 12244
+ components:
+ - type: Transform
+ pos: 170.5,69.5
+ parent: 1
+ - uid: 12245
+ components:
+ - type: Transform
+ pos: 168.5,47.5
+ parent: 1
+ - uid: 12246
+ components:
+ - type: Transform
+ pos: 168.5,46.5
+ parent: 1
+ - uid: 12247
+ components:
+ - type: Transform
+ pos: 170.5,45.5
+ parent: 1
+ - uid: 12248
+ components:
+ - type: Transform
+ pos: 170.5,46.5
+ parent: 1
+ - uid: 12249
+ components:
+ - type: Transform
+ pos: 170.5,47.5
+ parent: 1
+ - uid: 12250
+ components:
+ - type: Transform
+ pos: 170.5,48.5
+ parent: 1
+ - uid: 12251
+ components:
+ - type: Transform
+ pos: 170.5,49.5
+ parent: 1
+ - uid: 12252
+ components:
+ - type: Transform
+ pos: 170.5,50.5
+ parent: 1
+ - uid: 12253
+ components:
+ - type: Transform
+ pos: 170.5,51.5
+ parent: 1
+ - uid: 12254
+ components:
+ - type: Transform
+ pos: 170.5,52.5
+ parent: 1
+ - uid: 12255
+ components:
+ - type: Transform
+ pos: 170.5,53.5
+ parent: 1
+ - uid: 12256
+ components:
+ - type: Transform
+ pos: 170.5,54.5
+ parent: 1
+ - uid: 12257
+ components:
+ - type: Transform
+ pos: 172.5,54.5
+ parent: 1
+ - uid: 12258
+ components:
+ - type: Transform
+ pos: 172.5,53.5
+ parent: 1
+ - uid: 12259
+ components:
+ - type: Transform
+ pos: 172.5,52.5
+ parent: 1
+ - uid: 12260
+ components:
+ - type: Transform
+ pos: 172.5,51.5
+ parent: 1
+ - uid: 12261
+ components:
+ - type: Transform
+ pos: 172.5,50.5
+ parent: 1
+ - uid: 12262
+ components:
+ - type: Transform
+ pos: 172.5,49.5
+ parent: 1
+ - uid: 12263
+ components:
+ - type: Transform
+ pos: 172.5,48.5
+ parent: 1
+ - uid: 12264
+ components:
+ - type: Transform
+ pos: 172.5,47.5
+ parent: 1
+ - uid: 12265
+ components:
+ - type: Transform
+ pos: 172.5,46.5
+ parent: 1
+ - uid: 12266
+ components:
+ - type: Transform
+ pos: 172.5,45.5
+ parent: 1
+ - uid: 12267
+ components:
+ - type: Transform
+ pos: 174.5,45.5
+ parent: 1
+ - uid: 12268
+ components:
+ - type: Transform
+ pos: 174.5,46.5
+ parent: 1
+ - uid: 12269
+ components:
+ - type: Transform
+ pos: 174.5,47.5
+ parent: 1
+ - uid: 12270
+ components:
+ - type: Transform
+ pos: 174.5,48.5
+ parent: 1
+ - uid: 12271
+ components:
+ - type: Transform
+ pos: 174.5,49.5
+ parent: 1
+ - uid: 12272
+ components:
+ - type: Transform
+ pos: 174.5,50.5
+ parent: 1
+ - uid: 12273
+ components:
+ - type: Transform
+ pos: 174.5,51.5
+ parent: 1
+ - uid: 12274
+ components:
+ - type: Transform
+ pos: 174.5,52.5
+ parent: 1
+ - uid: 12275
+ components:
+ - type: Transform
+ pos: 174.5,53.5
+ parent: 1
+ - uid: 12276
+ components:
+ - type: Transform
+ pos: 174.5,54.5
+ parent: 1
+ - uid: 12277
+ components:
+ - type: Transform
+ pos: 176.5,54.5
+ parent: 1
+ - uid: 12278
+ components:
+ - type: Transform
+ pos: 176.5,53.5
+ parent: 1
+ - uid: 12279
+ components:
+ - type: Transform
+ pos: 176.5,52.5
+ parent: 1
+ - uid: 12280
+ components:
+ - type: Transform
+ pos: 176.5,51.5
+ parent: 1
+ - uid: 12281
+ components:
+ - type: Transform
+ pos: 176.5,50.5
+ parent: 1
+ - uid: 12282
+ components:
+ - type: Transform
+ pos: 176.5,49.5
+ parent: 1
+ - uid: 12283
+ components:
+ - type: Transform
+ pos: 176.5,48.5
+ parent: 1
+ - uid: 12284
+ components:
+ - type: Transform
+ pos: 176.5,47.5
+ parent: 1
+ - uid: 12285
+ components:
+ - type: Transform
+ pos: 176.5,46.5
+ parent: 1
+ - uid: 12286
+ components:
+ - type: Transform
+ pos: 176.5,45.5
+ parent: 1
+ - uid: 12287
+ components:
+ - type: Transform
+ pos: 178.5,45.5
+ parent: 1
+ - uid: 12288
+ components:
+ - type: Transform
+ pos: 178.5,46.5
+ parent: 1
+ - uid: 12289
+ components:
+ - type: Transform
+ pos: 178.5,47.5
+ parent: 1
+ - uid: 12290
+ components:
+ - type: Transform
+ pos: 178.5,48.5
+ parent: 1
+ - uid: 12291
+ components:
+ - type: Transform
+ pos: 178.5,49.5
+ parent: 1
+ - uid: 12292
+ components:
+ - type: Transform
+ pos: 178.5,50.5
+ parent: 1
+ - uid: 12293
+ components:
+ - type: Transform
+ pos: 178.5,51.5
+ parent: 1
+ - uid: 12294
+ components:
+ - type: Transform
+ pos: 178.5,52.5
+ parent: 1
+ - uid: 12295
+ components:
+ - type: Transform
+ pos: 178.5,53.5
+ parent: 1
+ - uid: 12296
+ components:
+ - type: Transform
+ pos: 178.5,54.5
+ parent: 1
+ - uid: 12297
+ components:
+ - type: Transform
+ pos: 176.5,60.5
+ parent: 1
+ - uid: 12298
+ components:
+ - type: Transform
+ pos: 176.5,61.5
+ parent: 1
+ - uid: 12299
+ components:
+ - type: Transform
+ pos: 176.5,62.5
+ parent: 1
+ - uid: 12300
+ components:
+ - type: Transform
+ pos: 176.5,63.5
+ parent: 1
+ - uid: 12301
+ components:
+ - type: Transform
+ pos: 176.5,64.5
+ parent: 1
+ - uid: 12302
+ components:
+ - type: Transform
+ pos: 176.5,65.5
+ parent: 1
+ - uid: 12303
+ components:
+ - type: Transform
+ pos: 176.5,66.5
+ parent: 1
+ - uid: 12304
+ components:
+ - type: Transform
+ pos: 176.5,67.5
+ parent: 1
+ - uid: 12305
+ components:
+ - type: Transform
+ pos: 176.5,68.5
+ parent: 1
+ - uid: 12306
+ components:
+ - type: Transform
+ pos: 176.5,69.5
+ parent: 1
+ - uid: 12307
+ components:
+ - type: Transform
+ pos: 178.5,69.5
+ parent: 1
+ - uid: 12308
+ components:
+ - type: Transform
+ pos: 178.5,68.5
+ parent: 1
+ - uid: 12309
+ components:
+ - type: Transform
+ pos: 178.5,67.5
+ parent: 1
+ - uid: 12310
+ components:
+ - type: Transform
+ pos: 178.5,66.5
+ parent: 1
+ - uid: 12311
+ components:
+ - type: Transform
+ pos: 178.5,65.5
+ parent: 1
+ - uid: 12312
+ components:
+ - type: Transform
+ pos: 178.5,64.5
+ parent: 1
+ - uid: 12313
+ components:
+ - type: Transform
+ pos: 178.5,63.5
+ parent: 1
+ - uid: 12314
+ components:
+ - type: Transform
+ pos: 178.5,62.5
+ parent: 1
+ - uid: 12315
+ components:
+ - type: Transform
+ pos: 178.5,61.5
+ parent: 1
+ - uid: 12316
+ components:
+ - type: Transform
+ pos: 178.5,60.5
+ parent: 1
+ - uid: 12317
+ components:
+ - type: Transform
+ pos: 181.5,57.5
+ parent: 1
+ - uid: 12318
+ components:
+ - type: Transform
+ pos: 180.5,57.5
+ parent: 1
+ - uid: 12319
+ components:
+ - type: Transform
+ pos: 174.5,60.5
+ parent: 1
+ - uid: 12320
+ components:
+ - type: Transform
+ pos: 174.5,61.5
+ parent: 1
+ - uid: 12321
+ components:
+ - type: Transform
+ pos: 174.5,62.5
+ parent: 1
+ - uid: 12322
+ components:
+ - type: Transform
+ pos: 174.5,63.5
+ parent: 1
+ - uid: 12323
+ components:
+ - type: Transform
+ pos: 174.5,64.5
+ parent: 1
+ - uid: 12324
+ components:
+ - type: Transform
+ pos: 174.5,65.5
+ parent: 1
+ - uid: 12325
+ components:
+ - type: Transform
+ pos: 174.5,66.5
+ parent: 1
+ - uid: 12326
+ components:
+ - type: Transform
+ pos: 174.5,67.5
+ parent: 1
+ - uid: 12327
+ components:
+ - type: Transform
+ pos: 174.5,68.5
+ parent: 1
+ - uid: 12328
+ components:
+ - type: Transform
+ pos: 174.5,69.5
+ parent: 1
+ - uid: 12329
+ components:
+ - type: Transform
+ pos: 172.5,69.5
+ parent: 1
+ - uid: 12330
+ components:
+ - type: Transform
+ pos: 172.5,68.5
+ parent: 1
+ - uid: 12331
+ components:
+ - type: Transform
+ pos: 172.5,67.5
+ parent: 1
+ - uid: 12332
+ components:
+ - type: Transform
+ pos: 172.5,66.5
+ parent: 1
+ - uid: 12333
+ components:
+ - type: Transform
+ pos: 172.5,65.5
+ parent: 1
+ - uid: 12334
+ components:
+ - type: Transform
+ pos: 172.5,64.5
+ parent: 1
+ - uid: 12335
+ components:
+ - type: Transform
+ pos: 172.5,63.5
+ parent: 1
+ - uid: 12336
+ components:
+ - type: Transform
+ pos: 172.5,62.5
+ parent: 1
+ - uid: 12337
+ components:
+ - type: Transform
+ pos: 172.5,61.5
+ parent: 1
+ - uid: 12338
+ components:
+ - type: Transform
+ pos: 172.5,60.5
+ parent: 1
+ - uid: 12339
+ components:
+ - type: Transform
+ pos: 163.5,58.5
+ parent: 1
+ - uid: 12340
+ components:
+ - type: Transform
+ pos: 163.5,59.5
+ parent: 1
+ - uid: 12341
+ components:
+ - type: Transform
+ pos: 162.5,59.5
+ parent: 1
+ - uid: 12344
+ components:
+ - type: Transform
+ pos: 161.5,59.5
+ parent: 1
+ - uid: 12345
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 12346
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 12347
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 12349
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 12350
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 12351
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 12352
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 12353
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 12354
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 12355
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 12356
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 12357
+ components:
+ - type: Transform
+ pos: 108.5,51.5
+ parent: 1
+ - uid: 12358
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 12359
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 12360
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 12361
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 12362
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 12363
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 12364
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 12365
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 12366
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 12367
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 12368
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 12369
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 12370
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 12371
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 12372
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 12373
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 12374
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 12375
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 12376
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 12377
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 12378
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 12379
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 12380
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 12381
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 12382
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 12383
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 12384
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 12385
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 12386
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 12387
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 12389
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 12390
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 12391
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 12392
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 12393
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 12403
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 12404
+ components:
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+ - uid: 12407
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 12408
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 12409
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 12410
+ components:
+ - type: Transform
+ pos: 83.5,50.5
+ parent: 1
+ - uid: 12418
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - uid: 12439
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 12440
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 12441
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 12442
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 12443
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 12444
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 12445
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 12446
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 12447
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 12448
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 12449
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 12450
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 12453
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 12454
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 12455
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 12456
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 12457
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 12458
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 12459
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 12460
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 12471
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 12472
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 12477
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 12482
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 12483
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 12484
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 12485
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 12487
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 12488
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 12489
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 12490
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 12491
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 12492
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 12493
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 12494
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 12513
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 12516
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 12518
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 12519
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 12520
+ components:
+ - type: Transform
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 12521
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 12522
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 12523
+ components:
+ - type: Transform
+ pos: 87.5,159.5
+ parent: 1
+ - uid: 12524
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 12525
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 12526
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 12527
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 12528
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 12529
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 12530
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 12531
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 12532
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 12533
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 12534
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 12535
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 12536
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 12537
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 12538
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 12539
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 12542
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 12543
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 12544
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 12545
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 12546
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 12547
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 12548
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 12551
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 12552
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 12553
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 12554
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 12563
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 12564
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 12565
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 12566
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 12567
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 12568
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 12569
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 12570
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 12571
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 12572
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 12578
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 12579
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 12582
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 12583
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 12584
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 12585
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 12586
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 12587
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 12588
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 12589
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 12590
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 12591
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 12592
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 12593
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 12594
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 12595
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 12596
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 12597
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 12598
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 12599
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 12600
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 12601
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 12602
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 12603
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 12604
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 12605
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 12606
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 12607
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 12608
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 12611
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 12612
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 12613
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 12614
+ components:
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - uid: 12615
+ components:
+ - type: Transform
+ pos: 139.5,147.5
+ parent: 1
+ - uid: 12616
+ components:
+ - type: Transform
+ pos: 138.5,147.5
+ parent: 1
+ - uid: 12619
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 12620
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 12621
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 12622
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 12623
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 12624
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 12625
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 12626
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 12627
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 12628
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 12629
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 12630
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 12645
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 12647
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 12648
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 12650
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 12651
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - uid: 12654
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 12655
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 12656
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 12657
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 12658
+ components:
+ - type: Transform
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 12662
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 12665
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 12667
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 12668
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 12669
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 12670
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 12671
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 12672
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 12673
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 12674
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 12675
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 12678
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 12679
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 12693
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 12698
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 12699
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 12700
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 12701
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 12710
+ components:
+ - type: Transform
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 12711
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 12713
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 12714
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 12715
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 12716
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 12717
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 12718
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 12719
+ components:
+ - type: Transform
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 12720
+ components:
+ - type: Transform
+ pos: 85.5,23.5
+ parent: 1
+ - uid: 12721
+ components:
+ - type: Transform
+ pos: 84.5,23.5
+ parent: 1
+ - uid: 12722
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 12723
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 12724
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 12725
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 12726
+ components:
+ - type: Transform
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 12727
+ components:
+ - type: Transform
+ pos: 83.5,18.5
+ parent: 1
+ - uid: 12742
+ components:
+ - type: Transform
+ pos: 67.5,18.5
+ parent: 1
+ - uid: 12743
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 12744
+ components:
+ - type: Transform
+ pos: 67.5,19.5
+ parent: 1
+ - uid: 12745
+ components:
+ - type: Transform
+ pos: 67.5,20.5
+ parent: 1
+ - uid: 12746
+ components:
+ - type: Transform
+ pos: 67.5,21.5
+ parent: 1
+ - uid: 12747
+ components:
+ - type: Transform
+ pos: 67.5,22.5
+ parent: 1
+ - uid: 12748
+ components:
+ - type: Transform
+ pos: 67.5,23.5
+ parent: 1
+ - uid: 12749
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 12750
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 12751
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 12752
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 12753
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 12754
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 12755
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 12756
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 12757
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 12758
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 12759
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 12760
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 12761
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 12762
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 12763
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 12764
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 12765
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 12766
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 12767
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 12768
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 12769
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 12770
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 12771
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 12772
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 12773
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 12774
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 12776
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 12777
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 1
+ - uid: 12778
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 1
+ - uid: 12779
+ components:
+ - type: Transform
+ pos: 67.5,54.5
+ parent: 1
+ - uid: 12780
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 1
+ - uid: 12781
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 12782
+ components:
+ - type: Transform
+ pos: 67.5,57.5
+ parent: 1
+ - uid: 12783
+ components:
+ - type: Transform
+ pos: 67.5,58.5
+ parent: 1
+ - uid: 12784
+ components:
+ - type: Transform
+ pos: 67.5,59.5
+ parent: 1
+ - uid: 12785
+ components:
+ - type: Transform
+ pos: 67.5,60.5
+ parent: 1
+ - uid: 12786
+ components:
+ - type: Transform
+ pos: 67.5,61.5
+ parent: 1
+ - uid: 12787
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - uid: 12788
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 12789
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 12790
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 12791
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 12792
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 12793
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 12794
+ components:
+ - type: Transform
+ pos: 73.5,42.5
+ parent: 1
+ - uid: 12795
+ components:
+ - type: Transform
+ pos: 74.5,42.5
+ parent: 1
+ - uid: 12796
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 12797
+ components:
+ - type: Transform
+ pos: 76.5,42.5
+ parent: 1
+ - uid: 12798
+ components:
+ - type: Transform
+ pos: 77.5,42.5
+ parent: 1
+ - uid: 12799
+ components:
+ - type: Transform
+ pos: 78.5,42.5
+ parent: 1
+ - uid: 12800
+ components:
+ - type: Transform
+ pos: 79.5,42.5
+ parent: 1
+ - uid: 12801
+ components:
+ - type: Transform
+ pos: 80.5,42.5
+ parent: 1
+ - uid: 12802
+ components:
+ - type: Transform
+ pos: 81.5,42.5
+ parent: 1
+ - uid: 12803
+ components:
+ - type: Transform
+ pos: 82.5,42.5
+ parent: 1
+ - uid: 12804
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - uid: 12805
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 12806
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 12807
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 12808
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 12809
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 12810
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 12811
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 12812
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 12813
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 12814
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 12815
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 12816
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 12817
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 12818
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 12819
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 12820
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 12821
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 12822
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - uid: 12823
+ components:
+ - type: Transform
+ pos: 65.5,19.5
+ parent: 1
+ - uid: 12824
+ components:
+ - type: Transform
+ pos: 65.5,20.5
+ parent: 1
+ - uid: 12825
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - uid: 12826
+ components:
+ - type: Transform
+ pos: 63.5,20.5
+ parent: 1
+ - uid: 12827
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 12828
+ components:
+ - type: Transform
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 12837
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 12838
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 12839
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 12840
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 12841
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 12842
+ components:
+ - type: Transform
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 12843
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 12844
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 12845
+ components:
+ - type: Transform
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 12846
+ components:
+ - type: Transform
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 12847
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 12848
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - uid: 12849
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 12850
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 12851
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 12852
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 12853
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 12854
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 12855
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 12856
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 12857
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 12858
+ components:
+ - type: Transform
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 12859
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 12860
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 12861
+ components:
+ - type: Transform
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 12862
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 12863
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 12864
+ components:
+ - type: Transform
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 12865
+ components:
+ - type: Transform
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 12866
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 12867
+ components:
+ - type: Transform
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 12868
+ components:
+ - type: Transform
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 12869
+ components:
+ - type: Transform
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 12870
+ components:
+ - type: Transform
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 12871
+ components:
+ - type: Transform
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 12872
+ components:
+ - type: Transform
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 12873
+ components:
+ - type: Transform
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 12874
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 12875
+ components:
+ - type: Transform
+ pos: 47.5,48.5
+ parent: 1
+ - uid: 12876
+ components:
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 12877
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 12878
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 12879
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 12880
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 12881
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 12882
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 12883
+ components:
+ - type: Transform
+ pos: 48.5,41.5
+ parent: 1
+ - uid: 12884
+ components:
+ - type: Transform
+ pos: 49.5,41.5
+ parent: 1
+ - uid: 12885
+ components:
+ - type: Transform
+ pos: 50.5,41.5
+ parent: 1
+ - uid: 12886
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 12887
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 12888
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 12889
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 12890
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 12891
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 12892
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 12893
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 12894
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 12895
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - uid: 12896
+ components:
+ - type: Transform
+ pos: 51.5,30.5
+ parent: 1
+ - uid: 12897
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 12898
+ components:
+ - type: Transform
+ pos: 52.5,30.5
+ parent: 1
+ - uid: 12899
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - uid: 12900
+ components:
+ - type: Transform
+ pos: 52.5,28.5
+ parent: 1
+ - uid: 12901
+ components:
+ - type: Transform
+ pos: 52.5,27.5
+ parent: 1
+ - uid: 12902
+ components:
+ - type: Transform
+ pos: 52.5,26.5
+ parent: 1
+ - uid: 12903
+ components:
+ - type: Transform
+ pos: 52.5,25.5
+ parent: 1
+ - uid: 12904
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 12905
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 12906
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 12907
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 12909
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 12911
+ components:
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 12912
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 12914
+ components:
+ - type: Transform
+ pos: 57.5,25.5
+ parent: 1
+ - uid: 12915
+ components:
+ - type: Transform
+ pos: 57.5,26.5
+ parent: 1
+ - uid: 12916
+ components:
+ - type: Transform
+ pos: 55.5,25.5
+ parent: 1
+ - uid: 12918
+ components:
+ - type: Transform
+ pos: 55.5,26.5
+ parent: 1
+ - uid: 12919
+ components:
+ - type: Transform
+ pos: 56.5,26.5
+ parent: 1
+ - uid: 13175
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 13242
+ components:
+ - type: Transform
+ pos: 161.5,138.5
+ parent: 1
+ - uid: 13243
+ components:
+ - type: Transform
+ pos: 160.5,138.5
+ parent: 1
+ - uid: 13508
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 13626
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 13751
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 13799
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 13810
+ components:
+ - type: Transform
+ pos: 115.5,137.5
+ parent: 1
+ - uid: 13811
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 13812
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 13813
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 13814
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 13815
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 13817
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 13819
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 13820
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 13821
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 13822
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 13823
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 13824
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 13825
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 13826
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 13827
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 13830
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 13831
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 13832
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 13833
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 13834
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 13835
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 13836
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 13837
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 13838
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 13840
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 13842
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 13843
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 13845
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 13846
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 13847
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 13848
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 13849
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 13850
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 13852
+ components:
+ - type: Transform
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 13854
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 13855
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 13856
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 13857
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 13858
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 13859
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 13860
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 13861
+ components:
+ - type: Transform
+ pos: 108.5,129.5
+ parent: 1
+ - uid: 13862
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 13863
+ components:
+ - type: Transform
+ pos: 108.5,127.5
+ parent: 1
+ - uid: 13864
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 13865
+ components:
+ - type: Transform
+ pos: 108.5,125.5
+ parent: 1
+ - uid: 13866
+ components:
+ - type: Transform
+ pos: 115.5,138.5
+ parent: 1
+ - uid: 13867
+ components:
+ - type: Transform
+ pos: 115.5,136.5
+ parent: 1
+ - uid: 13868
+ components:
+ - type: Transform
+ pos: 116.5,137.5
+ parent: 1
+ - uid: 13869
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 13870
+ components:
+ - type: Transform
+ pos: 118.5,137.5
+ parent: 1
+ - uid: 13871
+ components:
+ - type: Transform
+ pos: 99.5,150.5
+ parent: 1
+ - uid: 13872
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 13873
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 13874
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 13875
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 13876
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 13877
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 13879
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 13880
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 13881
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 13882
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 13883
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 13884
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 13886
+ components:
+ - type: Transform
+ pos: 98.5,137.5
+ parent: 1
+ - uid: 13887
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 13888
+ components:
+ - type: Transform
+ pos: 100.5,137.5
+ parent: 1
+ - uid: 13889
+ components:
+ - type: Transform
+ pos: 101.5,137.5
+ parent: 1
+ - uid: 13890
+ components:
+ - type: Transform
+ pos: 101.5,136.5
+ parent: 1
+ - uid: 13891
+ components:
+ - type: Transform
+ pos: 101.5,138.5
+ parent: 1
+ - uid: 13953
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 13954
+ components:
+ - type: Transform
+ pos: 97.5,144.5
+ parent: 1
+ - uid: 13955
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 13956
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 13959
+ components:
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 13964
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 13965
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 13966
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 13968
+ components:
+ - type: Transform
+ pos: 133.5,123.5
+ parent: 1
+ - uid: 13969
+ components:
+ - type: Transform
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 13973
+ components:
+ - type: Transform
+ pos: 131.5,123.5
+ parent: 1
+ - uid: 13985
+ components:
+ - type: Transform
+ pos: 107.5,144.5
+ parent: 1
+ - uid: 14046
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 14056
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 14104
+ components:
+ - type: Transform
+ pos: 114.5,144.5
+ parent: 1
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14106
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - uid: 14107
+ components:
+ - type: Transform
+ pos: 114.5,147.5
+ parent: 1
+ - uid: 14108
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - uid: 14109
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - uid: 14110
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - uid: 14111
+ components:
+ - type: Transform
+ pos: 114.5,151.5
+ parent: 1
+ - uid: 14112
+ components:
+ - type: Transform
+ pos: 115.5,151.5
+ parent: 1
+ - uid: 14113
+ components:
+ - type: Transform
+ pos: 116.5,151.5
+ parent: 1
+ - uid: 14114
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 14115
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - uid: 14116
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 14117
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - uid: 14123
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 14125
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 14148
+ components:
+ - type: Transform
+ pos: 105.5,156.5
+ parent: 1
+ - uid: 14159
+ components:
+ - type: Transform
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 14160
+ components:
+ - type: Transform
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 14236
+ components:
+ - type: Transform
+ pos: 118.5,138.5
+ parent: 1
+ - uid: 14254
+ components:
+ - type: Transform
+ pos: 118.5,136.5
+ parent: 1
+ - uid: 14360
+ components:
+ - type: Transform
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 14473
+ components:
+ - type: Transform
+ pos: 131.5,122.5
+ parent: 1
+ - uid: 14474
+ components:
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 14497
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 14628
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 14629
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 14652
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 14672
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 14673
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 14718
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 14726
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 14748
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 14787
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 14788
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 14789
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 14790
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 14791
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 14814
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 14818
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 14822
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 14845
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 15019
+ components:
+ - type: Transform
+ pos: 101.5,139.5
+ parent: 1
+ - uid: 15066
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 15067
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 15068
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 15069
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 15076
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 15078
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 15079
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 15081
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 15108
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 15134
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15135
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15136
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15137
+ components:
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 15144
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 15324
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 15332
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 15704
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 16024
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 16025
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 16026
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 16027
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 16142
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 16158
+ components:
+ - type: Transform
+ pos: 125.5,121.5
+ parent: 1
+ - uid: 16164
+ components:
+ - type: Transform
+ pos: 99.5,125.5
+ parent: 1
+ - uid: 16167
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - uid: 16168
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 16169
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 16170
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 16171
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 16172
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 16173
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 16174
+ components:
+ - type: Transform
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 16212
+ components:
+ - type: Transform
+ pos: 111.5,127.5
+ parent: 1
+ - uid: 16262
+ components:
+ - type: Transform
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 16271
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 16833
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 16925
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 16926
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 16928
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 16933
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 16952
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 17087
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 17296
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 17297
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 17298
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 17301
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 17643
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 17708
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 17712
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 18233
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18236
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 18239
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 18241
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 18242
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 18243
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 18244
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 18245
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 18246
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 18247
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 18258
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 18260
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 18312
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 18313
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 18323
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 18324
+ components:
+ - type: Transform
+ pos: 64.5,36.5
+ parent: 1
+ - uid: 18333
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 18337
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 18344
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 18352
+ components:
+ - type: Transform
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 18380
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 18416
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 18419
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 18420
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 18421
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 18422
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 18423
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 18476
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 18482
+ components:
+ - type: Transform
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 18485
+ components:
+ - type: Transform
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 18486
+ components:
+ - type: Transform
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 18487
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 18491
+ components:
+ - type: Transform
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 18533
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 18534
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 18545
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 18551
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 18560
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 18620
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 18623
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 18693
+ components:
+ - type: Transform
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 18702
+ components:
+ - type: Transform
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 18703
+ components:
+ - type: Transform
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 18706
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 18735
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 18742
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 18743
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 18770
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 18852
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 18860
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18861
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 18902
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 19233
+ components:
+ - type: Transform
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 19512
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 20939
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 20995
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 20997
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 20999
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 21139
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 21381
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 21758
+ components:
+ - type: Transform
+ pos: 113.5,127.5
+ parent: 1
+ - uid: 22396
+ components:
+ - type: Transform
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 22397
+ components:
+ - type: Transform
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 22463
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 22644
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 23100
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 23390
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 23392
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 23393
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 23400
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 23467
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 23471
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 23478
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 23557
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 23561
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 23573
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 23574
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 23575
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 23578
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23586
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 23590
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 23627
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 23629
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 23631
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 23663
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 23670
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 23671
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 23672
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 23689
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 23692
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 23699
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 23700
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 23717
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 23718
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 23719
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 23720
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 23723
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 23724
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 23746
+ components:
+ - type: Transform
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 23822
+ components:
+ - type: Transform
+ pos: 126.5,113.5
+ parent: 1
+ - uid: 24070
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - uid: 24204
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 24315
+ components:
+ - type: Transform
+ pos: 89.5,113.5
+ parent: 1
+ - uid: 24323
+ components:
+ - type: Transform
+ pos: 83.5,46.5
+ parent: 1
+ - uid: 24326
+ components:
+ - type: Transform
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 24510
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 24612
+ components:
+ - type: Transform
+ pos: 102.5,145.5
+ parent: 1
+ - uid: 24668
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24720
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 24722
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 24766
+ components:
+ - type: Transform
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 24783
+ components:
+ - type: Transform
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 25084
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 25085
+ components:
+ - type: Transform
+ pos: 162.5,116.5
+ parent: 1
+ - uid: 25086
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 25087
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 25088
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 25089
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 25090
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 25094
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 25095
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 25096
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 25097
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 25098
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 25099
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 25100
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 25101
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 25102
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 25103
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 25104
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 25110
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 25111
+ components:
+ - type: Transform
+ pos: 151.5,131.5
+ parent: 1
+ - uid: 25112
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 25121
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 25122
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 25133
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 25134
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 25135
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25136
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 25137
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 25138
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 25139
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 25152
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 25165
+ components:
+ - type: Transform
+ pos: 110.5,130.5
+ parent: 1
+ - uid: 25188
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 25206
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 25210
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 25211
+ components:
+ - type: Transform
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 25218
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 25251
+ components:
+ - type: Transform
+ pos: 106.5,130.5
+ parent: 1
+ - uid: 25254
+ components:
+ - type: Transform
+ pos: 115.5,139.5
+ parent: 1
+ - uid: 25255
+ components:
+ - type: Transform
+ pos: 115.5,135.5
+ parent: 1
+ - uid: 25281
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 25282
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 25299
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 25306
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 25308
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 25313
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 25474
+ components:
+ - type: Transform
+ pos: 83.5,48.5
+ parent: 1
+ - uid: 25477
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 25494
+ components:
+ - type: Transform
+ pos: 90.5,113.5
+ parent: 1
+ - uid: 25787
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 25807
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 25846
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 25869
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 25926
+ components:
+ - type: Transform
+ pos: 102.5,146.5
+ parent: 1
+ - uid: 26194
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 26195
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 26196
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 26197
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 26198
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 26199
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 26200
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 26201
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 26202
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 26203
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 26204
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 26205
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 26206
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 26207
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 26208
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 26226
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 26350
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 26408
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 26449
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 26479
+ components:
+ - type: Transform
+ pos: 124.5,112.5
+ parent: 1
+ - uid: 26495
+ components:
+ - type: Transform
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 26529
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 26581
+ components:
+ - type: Transform
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 26808
+ components:
+ - type: Transform
+ pos: 102.5,144.5
+ parent: 1
+ - uid: 26877
+ components:
+ - type: Transform
+ pos: 100.5,149.5
+ parent: 1
+ - uid: 26923
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 26981
+ components:
+ - type: Transform
+ pos: 99.5,151.5
+ parent: 1
+ - uid: 27254
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 27262
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 27502
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 28136
+ components:
+ - type: Transform
+ pos: 112.5,127.5
+ parent: 1
+ - uid: 28337
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 28341
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 28519
+ components:
+ - type: Transform
+ pos: 124.5,111.5
+ parent: 1
+ - uid: 28567
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 29074
+ components:
+ - type: Transform
+ pos: 101.5,149.5
+ parent: 1
+ - uid: 29181
+ components:
+ - type: Transform
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 29337
+ components:
+ - type: Transform
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 29515
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 29831
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 29850
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 30098
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 30185
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 30204
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 30219
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 30221
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 30318
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 30319
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 30321
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 30322
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 30323
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 30324
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 30325
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - uid: 30326
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - uid: 30327
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 30337
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 30338
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 30339
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 30340
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 30341
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 30342
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 30343
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 30344
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 30345
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 30346
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 30347
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 30348
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 30350
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 30359
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 30364
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 30365
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 30368
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 30399
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 30445
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30449
+ components:
+ - type: Transform
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 30515
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 30544
+ components:
+ - type: Transform
+ pos: 161.5,113.5
+ parent: 1
+ - uid: 30546
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 30547
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 30601
+ components:
+ - type: Transform
+ pos: 66.5,36.5
+ parent: 1
+ - uid: 30615
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 30634
+ components:
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - uid: 30659
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 30689
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 30777
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 30875
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 30876
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 31282
+ components:
+ - type: Transform
+ pos: 29.5,47.5
+ parent: 1
+ - uid: 31829
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 31860
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 31871
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 31975
+ components:
+ - type: Transform
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 31976
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 31979
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 32125
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 32228
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 32269
+ components:
+ - type: Transform
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 32280
+ components:
+ - type: Transform
+ pos: 62.5,46.5
+ parent: 1
+ - uid: 32309
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 32358
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 32370
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 32371
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 32372
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 32373
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 32582
+ components:
+ - type: Transform
+ pos: 70.5,160.5
+ parent: 1
+ - uid: 32936
+ components:
+ - type: Transform
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 32937
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 32943
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 32950
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 32953
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 33764
+ components:
+ - type: Transform
+ pos: 68.5,17.5
+ parent: 1
+ - uid: 33765
+ components:
+ - type: Transform
+ pos: 69.5,17.5
+ parent: 1
+ - uid: 33766
+ components:
+ - type: Transform
+ pos: 70.5,17.5
+ parent: 1
+ - uid: 33767
+ components:
+ - type: Transform
+ pos: 71.5,17.5
+ parent: 1
+ - uid: 33768
+ components:
+ - type: Transform
+ pos: 72.5,17.5
+ parent: 1
+ - uid: 33769
+ components:
+ - type: Transform
+ pos: 73.5,17.5
+ parent: 1
+ - uid: 33770
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - uid: 33771
+ components:
+ - type: Transform
+ pos: 74.5,17.5
+ parent: 1
+ - uid: 33772
+ components:
+ - type: Transform
+ pos: 76.5,17.5
+ parent: 1
+ - uid: 33773
+ components:
+ - type: Transform
+ pos: 77.5,17.5
+ parent: 1
+ - uid: 33774
+ components:
+ - type: Transform
+ pos: 78.5,17.5
+ parent: 1
+ - uid: 33775
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 1
+ - uid: 33776
+ components:
+ - type: Transform
+ pos: 80.5,17.5
+ parent: 1
+ - uid: 33777
+ components:
+ - type: Transform
+ pos: 81.5,17.5
+ parent: 1
+ - uid: 33778
+ components:
+ - type: Transform
+ pos: 83.5,17.5
+ parent: 1
+ - uid: 33779
+ components:
+ - type: Transform
+ pos: 82.5,17.5
+ parent: 1
+ - uid: 33793
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 33794
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 33795
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 33796
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 33797
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 33902
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 33904
+ components:
+ - type: Transform
+ pos: 102.5,147.5
+ parent: 1
+ - uid: 33914
+ components:
+ - type: Transform
+ pos: 60.5,42.5
+ parent: 1
+ - uid: 33915
+ components:
+ - type: Transform
+ pos: 59.5,42.5
+ parent: 1
+ - uid: 33930
+ components:
+ - type: Transform
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 33932
+ components:
+ - type: Transform
+ pos: 62.5,42.5
+ parent: 1
+ - uid: 34028
+ components:
+ - type: Transform
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 34074
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 34076
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 34077
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 34078
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 34081
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 34096
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 34097
+ components:
+ - type: Transform
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 34098
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 34100
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 34101
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 34104
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 34438
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 34439
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 34629
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 34654
+ components:
+ - type: Transform
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 34655
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 34656
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 34966
+ components:
+ - type: Transform
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 35071
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 35073
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 35431
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 35445
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 35446
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 35496
+ components:
+ - type: Transform
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 35518
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - uid: 35519
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - uid: 35520
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - uid: 35522
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - uid: 35523
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - uid: 35524
+ components:
+ - type: Transform
+ pos: 54.5,126.5
+ parent: 1
+ - uid: 35525
+ components:
+ - type: Transform
+ pos: 52.5,126.5
+ parent: 1
+ - uid: 35526
+ components:
+ - type: Transform
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35527
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 35528
+ components:
+ - type: Transform
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35529
+ components:
+ - type: Transform
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35530
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 35539
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 35572
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 35661
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 35685
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 35690
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 35691
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 35692
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 35751
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 35857
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 35921
+ components:
+ - type: Transform
+ pos: 160.5,113.5
+ parent: 1
+ - uid: 36009
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 36010
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 36023
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 36029
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 36040
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 36322
+ components:
+ - type: Transform
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 36323
+ components:
+ - type: Transform
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 36324
+ components:
+ - type: Transform
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 36325
+ components:
+ - type: Transform
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 36326
+ components:
+ - type: Transform
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36327
+ components:
+ - type: Transform
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36328
+ components:
+ - type: Transform
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36329
+ components:
+ - type: Transform
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36330
+ components:
+ - type: Transform
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36394
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 36400
+ components:
+ - type: Transform
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 36404
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 36405
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 36406
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 36419
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 36437
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 36438
+ components:
+ - type: Transform
+ pos: 143.5,131.5
+ parent: 1
+ - uid: 36439
+ components:
+ - type: Transform
+ pos: 142.5,131.5
+ parent: 1
+ - uid: 36440
+ components:
+ - type: Transform
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36441
+ components:
+ - type: Transform
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36829
+ components:
+ - type: Transform
+ pos: 99.5,88.5
+ parent: 1
+ - uid: 36830
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 36949
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - uid: 36950
+ components:
+ - type: Transform
+ pos: 86.5,139.5
+ parent: 1
+ - uid: 36951
+ components:
+ - type: Transform
+ pos: 87.5,139.5
+ parent: 1
+ - uid: 36952
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+ - uid: 37042
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 37045
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 37073
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 37074
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 37075
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 37076
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 37077
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 37078
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 37079
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 37080
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 37081
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 37082
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 37083
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 37084
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 37085
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 37086
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 37087
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 37088
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 37089
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 37090
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 37157
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 37169
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 37170
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 37171
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 37172
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 37206
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 37207
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 37216
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 37272
+ components:
+ - type: Transform
+ pos: 98.5,136.5
+ parent: 1
+ - uid: 37273
+ components:
+ - type: Transform
+ pos: 98.5,138.5
+ parent: 1
+ - uid: 37274
+ components:
+ - type: Transform
+ pos: 108.5,144.5
+ parent: 1
+ - uid: 37275
+ components:
+ - type: Transform
+ pos: 109.5,144.5
+ parent: 1
+ - uid: 37276
+ components:
+ - type: Transform
+ pos: 110.5,144.5
+ parent: 1
+ - uid: 37282
+ components:
+ - type: Transform
+ pos: 102.5,130.5
+ parent: 1
+ - uid: 37283
+ components:
+ - type: Transform
+ pos: 101.5,130.5
+ parent: 1
+ - uid: 37284
+ components:
+ - type: Transform
+ pos: 100.5,130.5
+ parent: 1
+ - uid: 37285
+ components:
+ - type: Transform
+ pos: 99.5,130.5
+ parent: 1
+ - uid: 37286
+ components:
+ - type: Transform
+ pos: 98.5,130.5
+ parent: 1
+ - uid: 37287
+ components:
+ - type: Transform
+ pos: 97.5,130.5
+ parent: 1
+ - uid: 37288
+ components:
+ - type: Transform
+ pos: 96.5,130.5
+ parent: 1
+ - uid: 37289
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - uid: 37428
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - uid: 37429
+ components:
+ - type: Transform
+ pos: 83.5,44.5
+ parent: 1
+ - uid: 37563
+ components:
+ - type: Transform
+ pos: 107.5,127.5
+ parent: 1
+ - uid: 37566
+ components:
+ - type: Transform
+ pos: 106.5,127.5
+ parent: 1
+ - uid: 37567
+ components:
+ - type: Transform
+ pos: 105.5,127.5
+ parent: 1
+ - uid: 37568
+ components:
+ - type: Transform
+ pos: 104.5,127.5
+ parent: 1
+ - uid: 37569
+ components:
+ - type: Transform
+ pos: 103.5,127.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 70.5,60.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 68.5,121.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 90.5,34.5
+ parent: 1
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 1851
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 1879
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 1880
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 2081
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 2470
+ components:
+ - type: Transform
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 2502
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 2605
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 2668
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - uid: 2929
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 2984
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 3061
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 3097
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 3131
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - uid: 3133
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 3348
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 3359
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 3397
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 3398
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 3399
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 3412
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: 119.5,167.5
+ parent: 1
+ - uid: 3448
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 3451
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 3461
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 3467
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 3481
+ components:
+ - type: Transform
+ pos: 91.5,84.5
+ parent: 1
+ - uid: 3485
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - uid: 3489
+ components:
+ - type: Transform
+ pos: 89.5,84.5
+ parent: 1
+ - uid: 3496
+ components:
+ - type: Transform
+ pos: 88.5,84.5
+ parent: 1
+ - uid: 3505
+ components:
+ - type: Transform
+ pos: 87.5,84.5
+ parent: 1
+ - uid: 3520
+ components:
+ - type: Transform
+ pos: 87.5,86.5
+ parent: 1
+ - uid: 3559
+ components:
+ - type: Transform
+ pos: 42.5,109.5
+ parent: 1
+ - uid: 3603
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - uid: 3604
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 3605
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 3607
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 3644
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 3666
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 3695
+ components:
+ - type: Transform
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 3713
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 3738
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 3758
+ components:
+ - type: Transform
+ pos: 119.5,165.5
+ parent: 1
+ - uid: 3790
+ components:
+ - type: Transform
+ pos: 147.5,89.5
+ parent: 1
+ - uid: 3837
+ components:
+ - type: Transform
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 3965
+ components:
+ - type: Transform
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 3988
+ components:
+ - type: Transform
+ pos: 117.5,58.5
+ parent: 1
+ - uid: 3990
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 4049
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 4110
+ components:
+ - type: Transform
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 4120
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 4168
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 4171
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 4315
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 4329
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 4334
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 4340
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 4379
+ components:
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 4431
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 4459
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 4484
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 4685
+ components:
+ - type: Transform
+ pos: 94.5,115.5
+ parent: 1
+ - uid: 4688
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 4689
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4725
+ components:
+ - type: Transform
+ pos: 55.5,50.5
+ parent: 1
+ - uid: 4754
+ components:
+ - type: Transform
+ pos: 68.5,154.5
+ parent: 1
+ - uid: 4759
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 4819
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 4821
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 4823
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 4824
+ components:
+ - type: Transform
+ pos: 133.5,59.5
+ parent: 1
+ - uid: 4840
+ components:
+ - type: Transform
+ pos: 91.5,114.5
+ parent: 1
+ - uid: 4901
+ components:
+ - type: Transform
+ pos: 94.5,114.5
+ parent: 1
+ - uid: 4913
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 4917
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 4935
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 4936
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 4957
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 4962
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+ - uid: 4970
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 4977
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 4978
+ components:
+ - type: Transform
+ pos: 46.5,50.5
+ parent: 1
+ - uid: 5095
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 5201
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 5211
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 5216
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 5232
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 5238
+ components:
+ - type: Transform
+ pos: 144.5,148.5
+ parent: 1
+ - uid: 5351
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 5357
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 5362
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 5368
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 5392
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 5396
+ components:
+ - type: Transform
+ pos: 143.5,148.5
+ parent: 1
+ - uid: 5414
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 5438
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 5439
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 5450
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 5451
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 5452
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 5463
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 5481
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 5483
+ components:
+ - type: Transform
+ pos: 142.5,148.5
+ parent: 1
+ - uid: 5487
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 5492
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 5542
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 5563
+ components:
+ - type: Transform
+ pos: 141.5,148.5
+ parent: 1
+ - uid: 5564
+ components:
+ - type: Transform
+ pos: 140.5,148.5
+ parent: 1
+ - uid: 5592
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 5825
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 5837
+ components:
+ - type: Transform
+ pos: 60.5,59.5
+ parent: 1
+ - uid: 5921
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 5926
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 5927
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 5935
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 5952
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 6031
+ components:
+ - type: Transform
+ pos: 133.5,123.5
+ parent: 1
+ - uid: 6103
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 6123
+ components:
+ - type: Transform
+ pos: 139.5,149.5
+ parent: 1
+ - uid: 6124
+ components:
+ - type: Transform
+ pos: 139.5,148.5
+ parent: 1
+ - uid: 6171
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 6215
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 6216
+ components:
+ - type: Transform
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 6236
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 6333
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 6339
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 6369
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 6398
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 6460
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 6469
+ components:
+ - type: Transform
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 6472
+ components:
+ - type: Transform
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 6490
+ components:
+ - type: Transform
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 6673
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 6680
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 6686
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 6699
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6725
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 6727
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 6856
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 6932
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 6952
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 6977
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 6994
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 7010
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 7023
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 7050
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 7053
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 7063
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 7065
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 7071
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 7079
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 7084
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7088
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 7101
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 7180
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 7199
+ components:
+ - type: Transform
+ pos: 46.5,54.5
+ parent: 1
+ - uid: 7200
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 7236
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7294
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 7295
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 7296
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 7539
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 8190
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 8236
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 8270
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 8272
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 8376
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 8390
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 8577
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 8665
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 8666
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 8670
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 8690
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 8693
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 8985
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 9255
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 9264
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 9440
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 9498
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 9673
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 9678
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 9688
+ components:
+ - type: Transform
+ pos: 124.5,106.5
+ parent: 1
+ - uid: 9693
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 9695
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 10045
+ components:
+ - type: Transform
+ pos: 99.5,64.5
+ parent: 1
+ - uid: 10095
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 10342
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 1
+ - uid: 10346
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 10360
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 10388
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 10389
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 10394
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 10458
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 10460
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 10462
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 10471
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 10484
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 10717
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 10722
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 10903
+ components:
+ - type: Transform
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 10912
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 10913
+ components:
+ - type: Transform
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 10914
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 10915
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 10916
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 10917
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 10918
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 10932
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 10984
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 10985
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 10986
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 10987
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 10988
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 10989
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 10990
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 10991
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 10992
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 10993
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 10994
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 10995
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 10996
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 10997
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 10998
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 10999
+ components:
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+ - uid: 11000
+ components:
+ - type: Transform
+ pos: 54.5,49.5
+ parent: 1
+ - uid: 11001
+ components:
+ - type: Transform
+ pos: 54.5,50.5
+ parent: 1
+ - uid: 11004
+ components:
+ - type: Transform
+ pos: 52.5,56.5
+ parent: 1
+ - uid: 11005
+ components:
+ - type: Transform
+ pos: 52.5,57.5
+ parent: 1
+ - uid: 11006
+ components:
+ - type: Transform
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11007
+ components:
+ - type: Transform
+ pos: 52.5,59.5
+ parent: 1
+ - uid: 11008
+ components:
+ - type: Transform
+ pos: 52.5,60.5
+ parent: 1
+ - uid: 11009
+ components:
+ - type: Transform
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 11010
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 11011
+ components:
+ - type: Transform
+ pos: 53.5,58.5
+ parent: 1
+ - uid: 11012
+ components:
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 11013
+ components:
+ - type: Transform
+ pos: 55.5,58.5
+ parent: 1
+ - uid: 11014
+ components:
+ - type: Transform
+ pos: 56.5,58.5
+ parent: 1
+ - uid: 11015
+ components:
+ - type: Transform
+ pos: 57.5,58.5
+ parent: 1
+ - uid: 11016
+ components:
+ - type: Transform
+ pos: 58.5,58.5
+ parent: 1
+ - uid: 11017
+ components:
+ - type: Transform
+ pos: 59.5,58.5
+ parent: 1
+ - uid: 11018
+ components:
+ - type: Transform
+ pos: 60.5,58.5
+ parent: 1
+ - uid: 11019
+ components:
+ - type: Transform
+ pos: 61.5,58.5
+ parent: 1
+ - uid: 11020
+ components:
+ - type: Transform
+ pos: 62.5,58.5
+ parent: 1
+ - uid: 11021
+ components:
+ - type: Transform
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 11023
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 11025
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 11026
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11027
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11029
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11030
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11031
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11032
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11033
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11034
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11035
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11036
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 11037
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11038
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11039
+ components:
+ - type: Transform
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11040
+ components:
+ - type: Transform
+ pos: 49.5,66.5
+ parent: 1
+ - uid: 11041
+ components:
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 11048
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 11049
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 11050
+ components:
+ - type: Transform
+ pos: 43.5,50.5
+ parent: 1
+ - uid: 11051
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11052
+ components:
+ - type: Transform
+ pos: 43.5,48.5
+ parent: 1
+ - uid: 11054
+ components:
+ - type: Transform
+ pos: 43.5,51.5
+ parent: 1
+ - uid: 11055
+ components:
+ - type: Transform
+ pos: 43.5,52.5
+ parent: 1
+ - uid: 11056
+ components:
+ - type: Transform
+ pos: 43.5,53.5
+ parent: 1
+ - uid: 11057
+ components:
+ - type: Transform
+ pos: 43.5,54.5
+ parent: 1
+ - uid: 11058
+ components:
+ - type: Transform
+ pos: 43.5,55.5
+ parent: 1
+ - uid: 11059
+ components:
+ - type: Transform
+ pos: 43.5,56.5
+ parent: 1
+ - uid: 11060
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 11061
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 11062
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 11063
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 11064
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 11065
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 11066
+ components:
+ - type: Transform
+ pos: 43.5,57.5
+ parent: 1
+ - uid: 11067
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - uid: 11068
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 11069
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 11070
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 11071
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 11072
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 11073
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 11074
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 11075
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 11076
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11077
+ components:
+ - type: Transform
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11078
+ components:
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 11079
+ components:
+ - type: Transform
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 11080
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - uid: 11081
+ components:
+ - type: Transform
+ pos: 38.5,73.5
+ parent: 1
+ - uid: 11082
+ components:
+ - type: Transform
+ pos: 37.5,73.5
+ parent: 1
+ - uid: 11083
+ components:
+ - type: Transform
+ pos: 36.5,73.5
+ parent: 1
+ - uid: 11084
+ components:
+ - type: Transform
+ pos: 36.5,72.5
+ parent: 1
+ - uid: 11085
+ components:
+ - type: Transform
+ pos: 36.5,71.5
+ parent: 1
+ - uid: 11086
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+ - uid: 11087
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11088
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11089
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 11090
+ components:
+ - type: Transform
+ pos: 39.5,70.5
+ parent: 1
+ - uid: 11091
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - uid: 11092
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - uid: 11093
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 11094
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 11095
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+ - uid: 11096
+ components:
+ - type: Transform
+ pos: 37.5,66.5
+ parent: 1
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11107
+ components:
+ - type: Transform
+ pos: 42.5,50.5
+ parent: 1
+ - uid: 11108
+ components:
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - uid: 11109
+ components:
+ - type: Transform
+ pos: 40.5,50.5
+ parent: 1
+ - uid: 11110
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11111
+ components:
+ - type: Transform
+ pos: 38.5,50.5
+ parent: 1
+ - uid: 11112
+ components:
+ - type: Transform
+ pos: 37.5,50.5
+ parent: 1
+ - uid: 11113
+ components:
+ - type: Transform
+ pos: 36.5,50.5
+ parent: 1
+ - uid: 11114
+ components:
+ - type: Transform
+ pos: 35.5,50.5
+ parent: 1
+ - uid: 11115
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 11116
+ components:
+ - type: Transform
+ pos: 33.5,50.5
+ parent: 1
+ - uid: 11117
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 11160
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 11161
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 11162
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 11164
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 11165
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 11176
+ components:
+ - type: Transform
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 11292
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 11345
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 11348
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 11352
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 11355
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 11361
+ components:
+ - type: Transform
+ pos: 150.5,89.5
+ parent: 1
+ - uid: 11365
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - uid: 11367
+ components:
+ - type: Transform
+ pos: 148.5,89.5
+ parent: 1
+ - uid: 11368
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 11545
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11546
+ components:
+ - type: Transform
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11791
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - uid: 11871
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - uid: 11898
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 11906
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 11918
+ components:
+ - type: Transform
+ pos: 99.5,158.5
+ parent: 1
+ - uid: 12116
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 12117
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 12142
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 12421
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 12422
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 12423
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 12424
+ components:
+ - type: Transform
+ pos: 113.5,88.5
+ parent: 1
+ - uid: 12451
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 12481
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 12557
+ components:
+ - type: Transform
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 12558
+ components:
+ - type: Transform
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 12559
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 12560
+ components:
+ - type: Transform
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 12609
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 12831
+ components:
+ - type: Transform
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 12832
+ components:
+ - type: Transform
+ pos: 103.5,47.5
+ parent: 1
+ - uid: 12958
+ components:
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 12964
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 12965
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 12966
+ components:
+ - type: Transform
+ pos: 56.5,24.5
+ parent: 1
+ - uid: 12967
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 12968
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 12969
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 12970
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 12971
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 12972
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 12973
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 12974
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 12975
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 12976
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 12977
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 12978
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 12979
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 12980
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 12981
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 12982
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 12983
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 12984
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 12985
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 12986
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 12987
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 12988
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 12989
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 12991
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 12995
+ components:
+ - type: Transform
+ pos: 50.5,24.5
+ parent: 1
+ - uid: 12996
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+ - uid: 12997
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 1
+ - uid: 12998
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 12999
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 13000
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 13001
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 13002
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - uid: 13003
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 13004
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 13005
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 13006
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 13007
+ components:
+ - type: Transform
+ pos: 46.5,24.5
+ parent: 1
+ - uid: 13008
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - uid: 13009
+ components:
+ - type: Transform
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13010
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 13011
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 13012
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 13013
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 13014
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 13015
+ components:
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - uid: 13016
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 13017
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 13018
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 13019
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13020
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13090
+ components:
+ - type: Transform
+ pos: 51.5,30.5
+ parent: 1
+ - uid: 13091
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - uid: 13092
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13093
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 13094
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 13095
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13096
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 13097
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 13098
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 13099
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 13100
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 13101
+ components:
+ - type: Transform
+ pos: 51.5,42.5
+ parent: 1
+ - uid: 13102
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13103
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 13104
+ components:
+ - type: Transform
+ pos: 50.5,41.5
+ parent: 1
+ - uid: 13105
+ components:
+ - type: Transform
+ pos: 49.5,41.5
+ parent: 1
+ - uid: 13106
+ components:
+ - type: Transform
+ pos: 48.5,41.5
+ parent: 1
+ - uid: 13107
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 13108
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13109
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 13110
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 13111
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13112
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13113
+ components:
+ - type: Transform
+ pos: 48.5,46.5
+ parent: 1
+ - uid: 13114
+ components:
+ - type: Transform
+ pos: 49.5,46.5
+ parent: 1
+ - uid: 13115
+ components:
+ - type: Transform
+ pos: 50.5,46.5
+ parent: 1
+ - uid: 13116
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13134
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13273
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 13275
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 13276
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 13277
+ components:
+ - type: Transform
+ pos: 56.5,59.5
+ parent: 1
+ - uid: 13278
+ components:
+ - type: Transform
+ pos: 53.5,56.5
+ parent: 1
+ - uid: 13279
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 13280
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 13281
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 13282
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 13283
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 13285
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 13287
+ components:
+ - type: Transform
+ pos: 44.5,54.5
+ parent: 1
+ - uid: 13289
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 13290
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 13291
+ components:
+ - type: Transform
+ pos: 42.5,54.5
+ parent: 1
+ - uid: 13292
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 13293
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 13294
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 13295
+ components:
+ - type: Transform
+ pos: 42.5,58.5
+ parent: 1
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 13297
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 13298
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 13299
+ components:
+ - type: Transform
+ pos: 42.5,62.5
+ parent: 1
+ - uid: 13301
+ components:
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+ - uid: 13308
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 13316
+ components:
+ - type: Transform
+ pos: 42.5,71.5
+ parent: 1
+ - uid: 13317
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 13318
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 13319
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 13320
+ components:
+ - type: Transform
+ pos: 42.5,75.5
+ parent: 1
+ - uid: 13321
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 13322
+ components:
+ - type: Transform
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 13323
+ components:
+ - type: Transform
+ pos: 38.5,48.5
+ parent: 1
+ - uid: 13324
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 13325
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 13326
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 13327
+ components:
+ - type: Transform
+ pos: 34.5,51.5
+ parent: 1
+ - uid: 13328
+ components:
+ - type: Transform
+ pos: 34.5,52.5
+ parent: 1
+ - uid: 13329
+ components:
+ - type: Transform
+ pos: 34.5,53.5
+ parent: 1
+ - uid: 13330
+ components:
+ - type: Transform
+ pos: 34.5,54.5
+ parent: 1
+ - uid: 13331
+ components:
+ - type: Transform
+ pos: 34.5,55.5
+ parent: 1
+ - uid: 13332
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 1
+ - uid: 13333
+ components:
+ - type: Transform
+ pos: 34.5,57.5
+ parent: 1
+ - uid: 13334
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 1
+ - uid: 13335
+ components:
+ - type: Transform
+ pos: 34.5,59.5
+ parent: 1
+ - uid: 13336
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 1
+ - uid: 13337
+ components:
+ - type: Transform
+ pos: 34.5,61.5
+ parent: 1
+ - uid: 13338
+ components:
+ - type: Transform
+ pos: 34.5,62.5
+ parent: 1
+ - uid: 13339
+ components:
+ - type: Transform
+ pos: 35.5,62.5
+ parent: 1
+ - uid: 13340
+ components:
+ - type: Transform
+ pos: 36.5,62.5
+ parent: 1
+ - uid: 13341
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - uid: 13342
+ components:
+ - type: Transform
+ pos: 37.5,62.5
+ parent: 1
+ - uid: 13343
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - uid: 13344
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - uid: 13345
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - uid: 13346
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - uid: 13347
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - uid: 13348
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - uid: 13349
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - uid: 13350
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - uid: 13351
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - uid: 13352
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - uid: 13353
+ components:
+ - type: Transform
+ pos: 38.5,51.5
+ parent: 1
+ - uid: 13354
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - uid: 13355
+ components:
+ - type: Transform
+ pos: 40.5,54.5
+ parent: 1
+ - uid: 13356
+ components:
+ - type: Transform
+ pos: 40.5,58.5
+ parent: 1
+ - uid: 13357
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - uid: 13358
+ components:
+ - type: Transform
+ pos: 40.5,62.5
+ parent: 1
+ - uid: 13359
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - uid: 13360
+ components:
+ - type: Transform
+ pos: 33.5,62.5
+ parent: 1
+ - uid: 13361
+ components:
+ - type: Transform
+ pos: 32.5,62.5
+ parent: 1
+ - uid: 13362
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 13363
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 13364
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 13365
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 13366
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 13367
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 13368
+ components:
+ - type: Transform
+ pos: 32.5,58.5
+ parent: 1
+ - uid: 13369
+ components:
+ - type: Transform
+ pos: 33.5,58.5
+ parent: 1
+ - uid: 13370
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 13371
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 13372
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 13373
+ components:
+ - type: Transform
+ pos: 32.5,54.5
+ parent: 1
+ - uid: 13374
+ components:
+ - type: Transform
+ pos: 33.5,54.5
+ parent: 1
+ - uid: 13375
+ components:
+ - type: Transform
+ pos: 48.5,33.5
+ parent: 1
+ - uid: 13376
+ components:
+ - type: Transform
+ pos: 47.5,33.5
+ parent: 1
+ - uid: 13377
+ components:
+ - type: Transform
+ pos: 46.5,33.5
+ parent: 1
+ - uid: 13378
+ components:
+ - type: Transform
+ pos: 45.5,33.5
+ parent: 1
+ - uid: 13379
+ components:
+ - type: Transform
+ pos: 44.5,33.5
+ parent: 1
+ - uid: 13380
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 1
+ - uid: 13381
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 1
+ - uid: 13382
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 1
+ - uid: 13383
+ components:
+ - type: Transform
+ pos: 42.5,31.5
+ parent: 1
+ - uid: 13384
+ components:
+ - type: Transform
+ pos: 41.5,31.5
+ parent: 1
+ - uid: 13385
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 1
+ - uid: 13386
+ components:
+ - type: Transform
+ pos: 40.5,30.5
+ parent: 1
+ - uid: 13387
+ components:
+ - type: Transform
+ pos: 40.5,29.5
+ parent: 1
+ - uid: 13388
+ components:
+ - type: Transform
+ pos: 40.5,28.5
+ parent: 1
+ - uid: 13389
+ components:
+ - type: Transform
+ pos: 39.5,28.5
+ parent: 1
+ - uid: 13390
+ components:
+ - type: Transform
+ pos: 39.5,27.5
+ parent: 1
+ - uid: 13391
+ components:
+ - type: Transform
+ pos: 39.5,26.5
+ parent: 1
+ - uid: 13392
+ components:
+ - type: Transform
+ pos: 39.5,25.5
+ parent: 1
+ - uid: 13393
+ components:
+ - type: Transform
+ pos: 39.5,24.5
+ parent: 1
+ - uid: 13394
+ components:
+ - type: Transform
+ pos: 39.5,23.5
+ parent: 1
+ - uid: 13395
+ components:
+ - type: Transform
+ pos: 39.5,22.5
+ parent: 1
+ - uid: 13396
+ components:
+ - type: Transform
+ pos: 39.5,21.5
+ parent: 1
+ - uid: 13397
+ components:
+ - type: Transform
+ pos: 39.5,20.5
+ parent: 1
+ - uid: 13398
+ components:
+ - type: Transform
+ pos: 40.5,20.5
+ parent: 1
+ - uid: 13399
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 1
+ - uid: 13400
+ components:
+ - type: Transform
+ pos: 40.5,19.5
+ parent: 1
+ - uid: 13401
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 1
+ - uid: 13402
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 1
+ - uid: 13403
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 1
+ - uid: 13404
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1
+ - uid: 13405
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1
+ - uid: 13406
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 1
+ - uid: 13407
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1
+ - uid: 13408
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 1
+ - uid: 13409
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 1
+ - uid: 13410
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 1
+ - uid: 13411
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 1
+ - uid: 13412
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 1
+ - uid: 13413
+ components:
+ - type: Transform
+ pos: 51.5,15.5
+ parent: 1
+ - uid: 13414
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 1
+ - uid: 13415
+ components:
+ - type: Transform
+ pos: 53.5,15.5
+ parent: 1
+ - uid: 13416
+ components:
+ - type: Transform
+ pos: 54.5,15.5
+ parent: 1
+ - uid: 13417
+ components:
+ - type: Transform
+ pos: 47.5,15.5
+ parent: 1
+ - uid: 13418
+ components:
+ - type: Transform
+ pos: 54.5,16.5
+ parent: 1
+ - uid: 13419
+ components:
+ - type: Transform
+ pos: 55.5,16.5
+ parent: 1
+ - uid: 13420
+ components:
+ - type: Transform
+ pos: 56.5,16.5
+ parent: 1
+ - uid: 13421
+ components:
+ - type: Transform
+ pos: 56.5,17.5
+ parent: 1
+ - uid: 13422
+ components:
+ - type: Transform
+ pos: 57.5,17.5
+ parent: 1
+ - uid: 13423
+ components:
+ - type: Transform
+ pos: 57.5,18.5
+ parent: 1
+ - uid: 13424
+ components:
+ - type: Transform
+ pos: 58.5,18.5
+ parent: 1
+ - uid: 13425
+ components:
+ - type: Transform
+ pos: 58.5,19.5
+ parent: 1
+ - uid: 13426
+ components:
+ - type: Transform
+ pos: 58.5,20.5
+ parent: 1
+ - uid: 13427
+ components:
+ - type: Transform
+ pos: 59.5,20.5
+ parent: 1
+ - uid: 13428
+ components:
+ - type: Transform
+ pos: 59.5,21.5
+ parent: 1
+ - uid: 13429
+ components:
+ - type: Transform
+ pos: 59.5,22.5
+ parent: 1
+ - uid: 13430
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 1
+ - uid: 13431
+ components:
+ - type: Transform
+ pos: 59.5,24.5
+ parent: 1
+ - uid: 13432
+ components:
+ - type: Transform
+ pos: 59.5,25.5
+ parent: 1
+ - uid: 13433
+ components:
+ - type: Transform
+ pos: 59.5,26.5
+ parent: 1
+ - uid: 13434
+ components:
+ - type: Transform
+ pos: 59.5,27.5
+ parent: 1
+ - uid: 13435
+ components:
+ - type: Transform
+ pos: 59.5,28.5
+ parent: 1
+ - uid: 13436
+ components:
+ - type: Transform
+ pos: 58.5,28.5
+ parent: 1
+ - uid: 13437
+ components:
+ - type: Transform
+ pos: 58.5,29.5
+ parent: 1
+ - uid: 13438
+ components:
+ - type: Transform
+ pos: 58.5,30.5
+ parent: 1
+ - uid: 13439
+ components:
+ - type: Transform
+ pos: 57.5,30.5
+ parent: 1
+ - uid: 13440
+ components:
+ - type: Transform
+ pos: 57.5,31.5
+ parent: 1
+ - uid: 13441
+ components:
+ - type: Transform
+ pos: 56.5,31.5
+ parent: 1
+ - uid: 13442
+ components:
+ - type: Transform
+ pos: 56.5,32.5
+ parent: 1
+ - uid: 13443
+ components:
+ - type: Transform
+ pos: 55.5,32.5
+ parent: 1
+ - uid: 13444
+ components:
+ - type: Transform
+ pos: 54.5,32.5
+ parent: 1
+ - uid: 13445
+ components:
+ - type: Transform
+ pos: 54.5,33.5
+ parent: 1
+ - uid: 13446
+ components:
+ - type: Transform
+ pos: 53.5,33.5
+ parent: 1
+ - uid: 13447
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 1
+ - uid: 13448
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 1
+ - uid: 13449
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 1
+ - uid: 13450
+ components:
+ - type: Transform
+ pos: 42.5,35.5
+ parent: 1
+ - uid: 13451
+ components:
+ - type: Transform
+ pos: 41.5,35.5
+ parent: 1
+ - uid: 13452
+ components:
+ - type: Transform
+ pos: 41.5,36.5
+ parent: 1
+ - uid: 13453
+ components:
+ - type: Transform
+ pos: 41.5,37.5
+ parent: 1
+ - uid: 13454
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 1
+ - uid: 13455
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1
+ - uid: 13456
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1
+ - uid: 13457
+ components:
+ - type: Transform
+ pos: 41.5,41.5
+ parent: 1
+ - uid: 13458
+ components:
+ - type: Transform
+ pos: 42.5,41.5
+ parent: 1
+ - uid: 13459
+ components:
+ - type: Transform
+ pos: 42.5,42.5
+ parent: 1
+ - uid: 13460
+ components:
+ - type: Transform
+ pos: 43.5,42.5
+ parent: 1
+ - uid: 13461
+ components:
+ - type: Transform
+ pos: 44.5,42.5
+ parent: 1
+ - uid: 13462
+ components:
+ - type: Transform
+ pos: 41.5,24.5
+ parent: 1
+ - uid: 13463
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+ - uid: 13636
+ components:
+ - type: Transform
+ pos: 135.5,83.5
+ parent: 1
+ - uid: 13686
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - uid: 13692
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 13773
+ components:
+ - type: Transform
+ pos: 118.5,58.5
+ parent: 1
+ - uid: 13793
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 13851
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 13853
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 13878
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 13892
+ components:
+ - type: Transform
+ pos: 96.5,125.5
+ parent: 1
+ - uid: 13893
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 13894
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 13895
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 13896
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 13897
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 13898
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 13899
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 13900
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 13901
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 13902
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 13903
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 13904
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 13905
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 13906
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 13907
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 13908
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 13909
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 13910
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 13911
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 13912
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 13913
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 13914
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 13915
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 13916
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 13917
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 13918
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 13920
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 13921
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 13923
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 13924
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 13925
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 13926
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 13927
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 13928
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 13929
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 13930
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 13931
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 13932
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 13933
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 13934
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 13935
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 13936
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 13937
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 13938
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 13939
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 13940
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 13941
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 13942
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 13943
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 13944
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 13945
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 13946
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 13947
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 13948
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 13949
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 13950
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 13951
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 13952
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 13957
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 13958
+ components:
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 13970
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 13972
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 13974
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 13975
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 13976
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 13977
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 13978
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 13979
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 13980
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 13981
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 13982
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 13983
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 13984
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 13986
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 13987
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 13988
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 13989
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 13990
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 13991
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 13992
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 13993
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 13994
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 13995
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 13996
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 13997
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 13998
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 13999
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - uid: 14000
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 14001
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 14002
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 14003
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 14004
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 14005
+ components:
+ - type: Transform
+ pos: 105.5,154.5
+ parent: 1
+ - uid: 14006
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 14007
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 14008
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 14009
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 14010
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 14011
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 14012
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 14013
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 14014
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 14015
+ components:
+ - type: Transform
+ pos: 119.5,141.5
+ parent: 1
+ - uid: 14016
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14017
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 14018
+ components:
+ - type: Transform
+ pos: 97.5,135.5
+ parent: 1
+ - uid: 14019
+ components:
+ - type: Transform
+ pos: 97.5,134.5
+ parent: 1
+ - uid: 14020
+ components:
+ - type: Transform
+ pos: 97.5,133.5
+ parent: 1
+ - uid: 14021
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14022
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 14023
+ components:
+ - type: Transform
+ pos: 97.5,139.5
+ parent: 1
+ - uid: 14024
+ components:
+ - type: Transform
+ pos: 97.5,140.5
+ parent: 1
+ - uid: 14025
+ components:
+ - type: Transform
+ pos: 97.5,141.5
+ parent: 1
+ - uid: 14033
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 14034
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 14035
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 14036
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 14037
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 14038
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 14039
+ components:
+ - type: Transform
+ pos: 119.5,133.5
+ parent: 1
+ - uid: 14040
+ components:
+ - type: Transform
+ pos: 119.5,134.5
+ parent: 1
+ - uid: 14041
+ components:
+ - type: Transform
+ pos: 119.5,135.5
+ parent: 1
+ - uid: 14042
+ components:
+ - type: Transform
+ pos: 119.5,140.5
+ parent: 1
+ - uid: 14043
+ components:
+ - type: Transform
+ pos: 119.5,139.5
+ parent: 1
+ - uid: 14051
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 14057
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 14064
+ components:
+ - type: Transform
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 14065
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 14066
+ components:
+ - type: Transform
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 14072
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - uid: 14073
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - uid: 14074
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - uid: 14075
+ components:
+ - type: Transform
+ pos: 105.5,150.5
+ parent: 1
+ - uid: 14076
+ components:
+ - type: Transform
+ pos: 105.5,149.5
+ parent: 1
+ - uid: 14077
+ components:
+ - type: Transform
+ pos: 106.5,149.5
+ parent: 1
+ - uid: 14078
+ components:
+ - type: Transform
+ pos: 107.5,149.5
+ parent: 1
+ - uid: 14079
+ components:
+ - type: Transform
+ pos: 108.5,149.5
+ parent: 1
+ - uid: 14080
+ components:
+ - type: Transform
+ pos: 109.5,149.5
+ parent: 1
+ - uid: 14081
+ components:
+ - type: Transform
+ pos: 110.5,149.5
+ parent: 1
+ - uid: 14082
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 14083
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 14084
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 14085
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 14086
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 14252
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14279
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 14301
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 14356
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 14357
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 14358
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14361
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14362
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 14363
+ components:
+ - type: Transform
+ pos: 93.5,132.5
+ parent: 1
+ - uid: 14364
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14366
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14409
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 14450
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 14451
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 14452
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 14453
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 14454
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 14455
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 14456
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 14457
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 14458
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 14459
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 14460
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 14461
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 14462
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 14463
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 14464
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 14465
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 14466
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 14467
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 14468
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 14469
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 14470
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 14471
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 14472
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 14475
+ components:
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 14476
+ components:
+ - type: Transform
+ pos: 132.5,121.5
+ parent: 1
+ - uid: 14492
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 14509
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 14552
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 14651
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 14661
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 14662
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 14663
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 14684
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 14685
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 14686
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 14693
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 14719
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 14722
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 14742
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 14753
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 14758
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 14759
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 14760
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 14771
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 14773
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 14820
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 14821
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 14956
+ components:
+ - type: Transform
+ pos: 123.5,140.5
+ parent: 1
+ - uid: 14959
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 15046
+ components:
+ - type: Transform
+ pos: 99.5,157.5
+ parent: 1
+ - uid: 15053
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 15057
+ components:
+ - type: Transform
+ pos: 99.5,156.5
+ parent: 1
+ - uid: 15062
+ components:
+ - type: Transform
+ pos: 97.5,158.5
+ parent: 1
+ - uid: 15063
+ components:
+ - type: Transform
+ pos: 98.5,158.5
+ parent: 1
+ - uid: 15082
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 15098
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 15099
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 15109
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 15110
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 15112
+ components:
+ - type: Transform
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 15113
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15138
+ components:
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 15139
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15140
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15141
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15142
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 15143
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 15145
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 15147
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 15148
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 15149
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 15150
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 15151
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 15152
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 15153
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 15154
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 15155
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 15156
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 15157
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 15158
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 15159
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 15160
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 15161
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 15162
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 15163
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 15164
+ components:
+ - type: Transform
+ pos: 128.5,128.5
+ parent: 1
+ - uid: 15165
+ components:
+ - type: Transform
+ pos: 128.5,127.5
+ parent: 1
+ - uid: 15166
+ components:
+ - type: Transform
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 15167
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 15168
+ components:
+ - type: Transform
+ pos: 128.5,124.5
+ parent: 1
+ - uid: 15169
+ components:
+ - type: Transform
+ pos: 128.5,123.5
+ parent: 1
+ - uid: 15170
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 15171
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - uid: 15172
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15176
+ components:
+ - type: Transform
+ pos: 127.5,129.5
+ parent: 1
+ - uid: 15180
+ components:
+ - type: Transform
+ pos: 126.5,129.5
+ parent: 1
+ - uid: 15182
+ components:
+ - type: Transform
+ pos: 128.5,133.5
+ parent: 1
+ - uid: 15203
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - uid: 15204
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+ - uid: 15205
+ components:
+ - type: Transform
+ pos: 128.5,136.5
+ parent: 1
+ - uid: 15206
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 15207
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 15208
+ components:
+ - type: Transform
+ pos: 128.5,139.5
+ parent: 1
+ - uid: 15209
+ components:
+ - type: Transform
+ pos: 128.5,140.5
+ parent: 1
+ - uid: 15210
+ components:
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - uid: 15211
+ components:
+ - type: Transform
+ pos: 128.5,142.5
+ parent: 1
+ - uid: 15212
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - uid: 15213
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15225
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 15226
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 15227
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - uid: 15228
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 15229
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15318
+ components:
+ - type: Transform
+ pos: 92.5,47.5
+ parent: 1
+ - uid: 15388
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15390
+ components:
+ - type: Transform
+ pos: 104.5,149.5
+ parent: 1
+ - uid: 15654
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 15661
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 15706
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15725
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 15751
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 15752
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 15763
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 15769
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 15770
+ components:
+ - type: Transform
+ pos: 76.5,153.5
+ parent: 1
+ - uid: 15771
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+ - uid: 15772
+ components:
+ - type: Transform
+ pos: 77.5,153.5
+ parent: 1
+ - uid: 15773
+ components:
+ - type: Transform
+ pos: 78.5,153.5
+ parent: 1
+ - uid: 15774
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 15775
+ components:
+ - type: Transform
+ pos: 80.5,153.5
+ parent: 1
+ - uid: 15776
+ components:
+ - type: Transform
+ pos: 81.5,153.5
+ parent: 1
+ - uid: 15777
+ components:
+ - type: Transform
+ pos: 82.5,153.5
+ parent: 1
+ - uid: 15778
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - uid: 15779
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+ - uid: 15780
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 15781
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 15782
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - uid: 15783
+ components:
+ - type: Transform
+ pos: 88.5,153.5
+ parent: 1
+ - uid: 15784
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - uid: 15785
+ components:
+ - type: Transform
+ pos: 89.5,152.5
+ parent: 1
+ - uid: 15786
+ components:
+ - type: Transform
+ pos: 89.5,151.5
+ parent: 1
+ - uid: 15787
+ components:
+ - type: Transform
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 15788
+ components:
+ - type: Transform
+ pos: 89.5,149.5
+ parent: 1
+ - uid: 15789
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 15790
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 15791
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 15792
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 15793
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 15794
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 15795
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 15796
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 15797
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 15798
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 15799
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 15800
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 15801
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 15802
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15803
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 15804
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 15805
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 15806
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 15807
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 15808
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 15809
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 15810
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 15811
+ components:
+ - type: Transform
+ pos: 89.5,125.5
+ parent: 1
+ - uid: 15812
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - uid: 15813
+ components:
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - uid: 15814
+ components:
+ - type: Transform
+ pos: 88.5,123.5
+ parent: 1
+ - uid: 15815
+ components:
+ - type: Transform
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 15817
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 15830
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 15831
+ components:
+ - type: Transform
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 15832
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 15833
+ components:
+ - type: Transform
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 15834
+ components:
+ - type: Transform
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 15835
+ components:
+ - type: Transform
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 15836
+ components:
+ - type: Transform
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 15837
+ components:
+ - type: Transform
+ pos: 82.5,121.5
+ parent: 1
+ - uid: 15838
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15839
+ components:
+ - type: Transform
+ pos: 82.5,119.5
+ parent: 1
+ - uid: 15840
+ components:
+ - type: Transform
+ pos: 82.5,118.5
+ parent: 1
+ - uid: 15841
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - uid: 15842
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 15843
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15844
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 15845
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 15846
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15847
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15848
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15849
+ components:
+ - type: Transform
+ pos: 72.5,118.5
+ parent: 1
+ - uid: 15850
+ components:
+ - type: Transform
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 15851
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 15852
+ components:
+ - type: Transform
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 15853
+ components:
+ - type: Transform
+ pos: 69.5,119.5
+ parent: 1
+ - uid: 15854
+ components:
+ - type: Transform
+ pos: 69.5,120.5
+ parent: 1
+ - uid: 15855
+ components:
+ - type: Transform
+ pos: 69.5,121.5
+ parent: 1
+ - uid: 15856
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - uid: 15857
+ components:
+ - type: Transform
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 15858
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 15859
+ components:
+ - type: Transform
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 15860
+ components:
+ - type: Transform
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 15861
+ components:
+ - type: Transform
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 15862
+ components:
+ - type: Transform
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 15863
+ components:
+ - type: Transform
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 15864
+ components:
+ - type: Transform
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 15865
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 15866
+ components:
+ - type: Transform
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 15867
+ components:
+ - type: Transform
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 15868
+ components:
+ - type: Transform
+ pos: 81.5,122.5
+ parent: 1
+ - uid: 15869
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 15870
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 15871
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 15872
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 15873
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 15874
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 15875
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 15876
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 15968
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 15990
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 16031
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 16101
+ components:
+ - type: Transform
+ pos: 95.5,97.5
+ parent: 1
+ - uid: 16190
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 16191
+ components:
+ - type: Transform
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 16290
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16432
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 16829
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 16831
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 16834
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 16920
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 17057
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 17083
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 17088
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 17105
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 17116
+ components:
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 17117
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 1
+ - uid: 17118
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 17119
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 17121
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 17122
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 17123
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 17124
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 17125
+ components:
+ - type: Transform
+ pos: 70.5,80.5
+ parent: 1
+ - uid: 17126
+ components:
+ - type: Transform
+ pos: 69.5,80.5
+ parent: 1
+ - uid: 17127
+ components:
+ - type: Transform
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 17128
+ components:
+ - type: Transform
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 17129
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - uid: 17130
+ components:
+ - type: Transform
+ pos: 67.5,82.5
+ parent: 1
+ - uid: 17131
+ components:
+ - type: Transform
+ pos: 67.5,83.5
+ parent: 1
+ - uid: 17132
+ components:
+ - type: Transform
+ pos: 67.5,84.5
+ parent: 1
+ - uid: 17133
+ components:
+ - type: Transform
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17134
+ components:
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 17135
+ components:
+ - type: Transform
+ pos: 66.5,86.5
+ parent: 1
+ - uid: 17136
+ components:
+ - type: Transform
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 17137
+ components:
+ - type: Transform
+ pos: 67.5,87.5
+ parent: 1
+ - uid: 17138
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17139
+ components:
+ - type: Transform
+ pos: 69.5,87.5
+ parent: 1
+ - uid: 17140
+ components:
+ - type: Transform
+ pos: 70.5,87.5
+ parent: 1
+ - uid: 17141
+ components:
+ - type: Transform
+ pos: 71.5,87.5
+ parent: 1
+ - uid: 17142
+ components:
+ - type: Transform
+ pos: 72.5,87.5
+ parent: 1
+ - uid: 17143
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17144
+ components:
+ - type: Transform
+ pos: 73.5,86.5
+ parent: 1
+ - uid: 17145
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - uid: 17146
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - uid: 17147
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - uid: 17148
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - uid: 17149
+ components:
+ - type: Transform
+ pos: 77.5,87.5
+ parent: 1
+ - uid: 17150
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - uid: 17151
+ components:
+ - type: Transform
+ pos: 79.5,87.5
+ parent: 1
+ - uid: 17152
+ components:
+ - type: Transform
+ pos: 80.5,87.5
+ parent: 1
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 81.5,87.5
+ parent: 1
+ - uid: 17154
+ components:
+ - type: Transform
+ pos: 82.5,87.5
+ parent: 1
+ - uid: 17155
+ components:
+ - type: Transform
+ pos: 82.5,88.5
+ parent: 1
+ - uid: 17156
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 17157
+ components:
+ - type: Transform
+ pos: 82.5,90.5
+ parent: 1
+ - uid: 17158
+ components:
+ - type: Transform
+ pos: 82.5,91.5
+ parent: 1
+ - uid: 17159
+ components:
+ - type: Transform
+ pos: 82.5,92.5
+ parent: 1
+ - uid: 17160
+ components:
+ - type: Transform
+ pos: 82.5,93.5
+ parent: 1
+ - uid: 17161
+ components:
+ - type: Transform
+ pos: 82.5,94.5
+ parent: 1
+ - uid: 17162
+ components:
+ - type: Transform
+ pos: 82.5,95.5
+ parent: 1
+ - uid: 17163
+ components:
+ - type: Transform
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17164
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - uid: 17165
+ components:
+ - type: Transform
+ pos: 82.5,98.5
+ parent: 1
+ - uid: 17166
+ components:
+ - type: Transform
+ pos: 82.5,99.5
+ parent: 1
+ - uid: 17167
+ components:
+ - type: Transform
+ pos: 82.5,100.5
+ parent: 1
+ - uid: 17168
+ components:
+ - type: Transform
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 17169
+ components:
+ - type: Transform
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17170
+ components:
+ - type: Transform
+ pos: 82.5,101.5
+ parent: 1
+ - uid: 17171
+ components:
+ - type: Transform
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17172
+ components:
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17173
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17174
+ components:
+ - type: Transform
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17175
+ components:
+ - type: Transform
+ pos: 81.5,107.5
+ parent: 1
+ - uid: 17176
+ components:
+ - type: Transform
+ pos: 80.5,107.5
+ parent: 1
+ - uid: 17177
+ components:
+ - type: Transform
+ pos: 79.5,107.5
+ parent: 1
+ - uid: 17178
+ components:
+ - type: Transform
+ pos: 78.5,107.5
+ parent: 1
+ - uid: 17179
+ components:
+ - type: Transform
+ pos: 77.5,107.5
+ parent: 1
+ - uid: 17180
+ components:
+ - type: Transform
+ pos: 76.5,107.5
+ parent: 1
+ - uid: 17181
+ components:
+ - type: Transform
+ pos: 75.5,107.5
+ parent: 1
+ - uid: 17182
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - uid: 17183
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - uid: 17184
+ components:
+ - type: Transform
+ pos: 72.5,107.5
+ parent: 1
+ - uid: 17185
+ components:
+ - type: Transform
+ pos: 70.5,107.5
+ parent: 1
+ - uid: 17186
+ components:
+ - type: Transform
+ pos: 69.5,107.5
+ parent: 1
+ - uid: 17187
+ components:
+ - type: Transform
+ pos: 68.5,107.5
+ parent: 1
+ - uid: 17188
+ components:
+ - type: Transform
+ pos: 71.5,107.5
+ parent: 1
+ - uid: 17189
+ components:
+ - type: Transform
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17190
+ components:
+ - type: Transform
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17191
+ components:
+ - type: Transform
+ pos: 67.5,106.5
+ parent: 1
+ - uid: 17192
+ components:
+ - type: Transform
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17193
+ components:
+ - type: Transform
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17194
+ components:
+ - type: Transform
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17195
+ components:
+ - type: Transform
+ pos: 67.5,101.5
+ parent: 1
+ - uid: 17196
+ components:
+ - type: Transform
+ pos: 67.5,100.5
+ parent: 1
+ - uid: 17197
+ components:
+ - type: Transform
+ pos: 67.5,99.5
+ parent: 1
+ - uid: 17198
+ components:
+ - type: Transform
+ pos: 67.5,98.5
+ parent: 1
+ - uid: 17199
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - uid: 17200
+ components:
+ - type: Transform
+ pos: 67.5,96.5
+ parent: 1
+ - uid: 17201
+ components:
+ - type: Transform
+ pos: 67.5,94.5
+ parent: 1
+ - uid: 17202
+ components:
+ - type: Transform
+ pos: 67.5,93.5
+ parent: 1
+ - uid: 17203
+ components:
+ - type: Transform
+ pos: 67.5,95.5
+ parent: 1
+ - uid: 17204
+ components:
+ - type: Transform
+ pos: 67.5,91.5
+ parent: 1
+ - uid: 17205
+ components:
+ - type: Transform
+ pos: 67.5,92.5
+ parent: 1
+ - uid: 17206
+ components:
+ - type: Transform
+ pos: 67.5,90.5
+ parent: 1
+ - uid: 17207
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 17208
+ components:
+ - type: Transform
+ pos: 67.5,88.5
+ parent: 1
+ - uid: 17209
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17210
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 17211
+ components:
+ - type: Transform
+ pos: 70.5,97.5
+ parent: 1
+ - uid: 17212
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17213
+ components:
+ - type: Transform
+ pos: 72.5,97.5
+ parent: 1
+ - uid: 17214
+ components:
+ - type: Transform
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 17215
+ components:
+ - type: Transform
+ pos: 74.5,97.5
+ parent: 1
+ - uid: 17216
+ components:
+ - type: Transform
+ pos: 75.5,97.5
+ parent: 1
+ - uid: 17217
+ components:
+ - type: Transform
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 17218
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - uid: 17219
+ components:
+ - type: Transform
+ pos: 79.5,97.5
+ parent: 1
+ - uid: 17220
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 17221
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17222
+ components:
+ - type: Transform
+ pos: 81.5,97.5
+ parent: 1
+ - uid: 17235
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 17289
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 17290
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 17291
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 17292
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 17302
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 17320
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17321
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 17322
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 17323
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 17324
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 17325
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 17326
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 17327
+ components:
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - uid: 17328
+ components:
+ - type: Transform
+ pos: 77.5,85.5
+ parent: 1
+ - uid: 17331
+ components:
+ - type: Transform
+ pos: 62.5,85.5
+ parent: 1
+ - uid: 17332
+ components:
+ - type: Transform
+ pos: 62.5,86.5
+ parent: 1
+ - uid: 17333
+ components:
+ - type: Transform
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17334
+ components:
+ - type: Transform
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17335
+ components:
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17336
+ components:
+ - type: Transform
+ pos: 65.5,87.5
+ parent: 1
+ - uid: 17337
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17338
+ components:
+ - type: Transform
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17339
+ components:
+ - type: Transform
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 17340
+ components:
+ - type: Transform
+ pos: 84.5,87.5
+ parent: 1
+ - uid: 17344
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 17347
+ components:
+ - type: Transform
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17348
+ components:
+ - type: Transform
+ pos: 84.5,94.5
+ parent: 1
+ - uid: 17349
+ components:
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - uid: 17350
+ components:
+ - type: Transform
+ pos: 86.5,94.5
+ parent: 1
+ - uid: 17351
+ components:
+ - type: Transform
+ pos: 87.5,94.5
+ parent: 1
+ - uid: 17352
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+ - uid: 17353
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+ - uid: 17354
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 17355
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17356
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17357
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 17358
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 17359
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - uid: 17360
+ components:
+ - type: Transform
+ pos: 85.5,102.5
+ parent: 1
+ - uid: 17361
+ components:
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - uid: 17362
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 17363
+ components:
+ - type: Transform
+ pos: 81.5,101.5
+ parent: 1
+ - uid: 17364
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17365
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17366
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17367
+ components:
+ - type: Transform
+ pos: 66.5,99.5
+ parent: 1
+ - uid: 17368
+ components:
+ - type: Transform
+ pos: 65.5,99.5
+ parent: 1
+ - uid: 17369
+ components:
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - uid: 17370
+ components:
+ - type: Transform
+ pos: 63.5,99.5
+ parent: 1
+ - uid: 17371
+ components:
+ - type: Transform
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17372
+ components:
+ - type: Transform
+ pos: 61.5,99.5
+ parent: 1
+ - uid: 17373
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - uid: 17374
+ components:
+ - type: Transform
+ pos: 61.5,101.5
+ parent: 1
+ - uid: 17375
+ components:
+ - type: Transform
+ pos: 62.5,101.5
+ parent: 1
+ - uid: 17376
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17377
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+ - uid: 17379
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 17380
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17382
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - uid: 17535
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - uid: 17536
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - uid: 17537
+ components:
+ - type: Transform
+ pos: 78.5,90.5
+ parent: 1
+ - uid: 17538
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - uid: 17539
+ components:
+ - type: Transform
+ pos: 77.5,91.5
+ parent: 1
+ - uid: 17540
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - uid: 17541
+ components:
+ - type: Transform
+ pos: 76.5,92.5
+ parent: 1
+ - uid: 17542
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17576
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - uid: 17577
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - uid: 17578
+ components:
+ - type: Transform
+ pos: 60.5,96.5
+ parent: 1
+ - uid: 17579
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - uid: 17580
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 17581
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 17582
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 17583
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 17584
+ components:
+ - type: Transform
+ pos: 60.5,89.5
+ parent: 1
+ - uid: 17585
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - uid: 17586
+ components:
+ - type: Transform
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17587
+ components:
+ - type: Transform
+ pos: 62.5,89.5
+ parent: 1
+ - uid: 17588
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+ - uid: 17589
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17972
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 18020
+ components:
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+ - uid: 18103
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 18237
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 18256
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18257
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 18261
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 18262
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 18349
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 18353
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 18356
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 18361
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 18375
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 18384
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 18385
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 18445
+ components:
+ - type: Transform
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 18446
+ components:
+ - type: Transform
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 18451
+ components:
+ - type: Transform
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 18452
+ components:
+ - type: Transform
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 18524
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 18535
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 18536
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 18537
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 18538
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 18544
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 18550
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 18552
+ components:
+ - type: Transform
+ pos: 70.5,160.5
+ parent: 1
+ - uid: 18553
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 18559
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 18678
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 18680
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 18681
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 18682
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 18683
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 18684
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 18732
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 18733
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 18734
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 18816
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 18817
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 18818
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 18819
+ components:
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 18874
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 18875
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 18876
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 18877
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 18878
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 18881
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18895
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 18896
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 18897
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 18906
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 18910
+ components:
+ - type: Transform
+ pos: 155.5,110.5
+ parent: 1
+ - uid: 18911
+ components:
+ - type: Transform
+ pos: 154.5,110.5
+ parent: 1
+ - uid: 18912
+ components:
+ - type: Transform
+ pos: 153.5,110.5
+ parent: 1
+ - uid: 18913
+ components:
+ - type: Transform
+ pos: 152.5,110.5
+ parent: 1
+ - uid: 18914
+ components:
+ - type: Transform
+ pos: 151.5,110.5
+ parent: 1
+ - uid: 18915
+ components:
+ - type: Transform
+ pos: 150.5,110.5
+ parent: 1
+ - uid: 18916
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 18918
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 18919
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 18920
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 18921
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 18922
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 18923
+ components:
+ - type: Transform
+ pos: 150.5,105.5
+ parent: 1
+ - uid: 18924
+ components:
+ - type: Transform
+ pos: 152.5,105.5
+ parent: 1
+ - uid: 18925
+ components:
+ - type: Transform
+ pos: 153.5,105.5
+ parent: 1
+ - uid: 18926
+ components:
+ - type: Transform
+ pos: 154.5,105.5
+ parent: 1
+ - uid: 18927
+ components:
+ - type: Transform
+ pos: 155.5,105.5
+ parent: 1
+ - uid: 18928
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 18929
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - uid: 18930
+ components:
+ - type: Transform
+ pos: 151.5,105.5
+ parent: 1
+ - uid: 18931
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 19092
+ components:
+ - type: Transform
+ pos: 46.5,74.5
+ parent: 1
+ - uid: 19093
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 19157
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 19158
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - uid: 19159
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19162
+ components:
+ - type: Transform
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 19163
+ components:
+ - type: Transform
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 19164
+ components:
+ - type: Transform
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19165
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19166
+ components:
+ - type: Transform
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19167
+ components:
+ - type: Transform
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19168
+ components:
+ - type: Transform
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19169
+ components:
+ - type: Transform
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19170
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 19174
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 19175
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 19176
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 19177
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - uid: 19178
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - uid: 19179
+ components:
+ - type: Transform
+ pos: 139.5,109.5
+ parent: 1
+ - uid: 19180
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - uid: 19181
+ components:
+ - type: Transform
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 19182
+ components:
+ - type: Transform
+ pos: 139.5,106.5
+ parent: 1
+ - uid: 19183
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 19184
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 19185
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+ - uid: 19186
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 19187
+ components:
+ - type: Transform
+ pos: 139.5,101.5
+ parent: 1
+ - uid: 19188
+ components:
+ - type: Transform
+ pos: 139.5,100.5
+ parent: 1
+ - uid: 19189
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - uid: 19190
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 19191
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19192
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 19193
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 19194
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 19195
+ components:
+ - type: Transform
+ pos: 142.5,104.5
+ parent: 1
+ - uid: 19196
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19197
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19198
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+ - uid: 19199
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 19200
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 19201
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 19202
+ components:
+ - type: Transform
+ pos: 144.5,105.5
+ parent: 1
+ - uid: 19203
+ components:
+ - type: Transform
+ pos: 144.5,106.5
+ parent: 1
+ - uid: 19204
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 19205
+ components:
+ - type: Transform
+ pos: 147.5,104.5
+ parent: 1
+ - uid: 19206
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 19207
+ components:
+ - type: Transform
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 19208
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 19209
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 19210
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 19211
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 19212
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 19218
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 19219
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 19222
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 19224
+ components:
+ - type: Transform
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 19225
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19226
+ components:
+ - type: Transform
+ pos: 143.5,96.5
+ parent: 1
+ - uid: 19227
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+ - uid: 19228
+ components:
+ - type: Transform
+ pos: 143.5,94.5
+ parent: 1
+ - uid: 19230
+ components:
+ - type: Transform
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 19232
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - uid: 19240
+ components:
+ - type: Transform
+ pos: 158.5,99.5
+ parent: 1
+ - uid: 19241
+ components:
+ - type: Transform
+ pos: 158.5,100.5
+ parent: 1
+ - uid: 19242
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19243
+ components:
+ - type: Transform
+ pos: 151.5,97.5
+ parent: 1
+ - uid: 19244
+ components:
+ - type: Transform
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 19245
+ components:
+ - type: Transform
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 19246
+ components:
+ - type: Transform
+ pos: 151.5,94.5
+ parent: 1
+ - uid: 19247
+ components:
+ - type: Transform
+ pos: 151.5,93.5
+ parent: 1
+ - uid: 19248
+ components:
+ - type: Transform
+ pos: 151.5,92.5
+ parent: 1
+ - uid: 19249
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+ - uid: 19250
+ components:
+ - type: Transform
+ pos: 149.5,92.5
+ parent: 1
+ - uid: 19251
+ components:
+ - type: Transform
+ pos: 148.5,92.5
+ parent: 1
+ - uid: 19252
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - uid: 19253
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 19254
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 19255
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - uid: 19256
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 19257
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - uid: 19258
+ components:
+ - type: Transform
+ pos: 142.5,90.5
+ parent: 1
+ - uid: 19259
+ components:
+ - type: Transform
+ pos: 142.5,89.5
+ parent: 1
+ - uid: 19267
+ components:
+ - type: Transform
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 19270
+ components:
+ - type: Transform
+ pos: 151.5,89.5
+ parent: 1
+ - uid: 19271
+ components:
+ - type: Transform
+ pos: 151.5,90.5
+ parent: 1
+ - uid: 19272
+ components:
+ - type: Transform
+ pos: 151.5,91.5
+ parent: 1
+ - uid: 19370
+ components:
+ - type: Transform
+ pos: 132.5,91.5
+ parent: 1
+ - uid: 19419
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 19470
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 19495
+ components:
+ - type: Transform
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 19498
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 19559
+ components:
+ - type: Transform
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 19621
+ components:
+ - type: Transform
+ pos: 75.5,60.5
+ parent: 1
+ - uid: 20162
+ components:
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 20165
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 20166
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 20167
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 20168
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20169
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20170
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 20171
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 20172
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 20173
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20175
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20177
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 20178
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 20179
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 20180
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 20181
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 20182
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 20183
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 20184
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 20185
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 20186
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 20187
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 20188
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20189
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 20190
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 20191
+ components:
+ - type: Transform
+ pos: 43.5,94.5
+ parent: 1
+ - uid: 20192
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 20193
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20194
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 20195
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 20196
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 20197
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 20198
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 20199
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 20200
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 20201
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 20202
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 20203
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 20204
+ components:
+ - type: Transform
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 20205
+ components:
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - uid: 20206
+ components:
+ - type: Transform
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 20207
+ components:
+ - type: Transform
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 20208
+ components:
+ - type: Transform
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 20209
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 20210
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 20211
+ components:
+ - type: Transform
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 20212
+ components:
+ - type: Transform
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 20213
+ components:
+ - type: Transform
+ pos: 38.5,88.5
+ parent: 1
+ - uid: 20214
+ components:
+ - type: Transform
+ pos: 38.5,89.5
+ parent: 1
+ - uid: 20215
+ components:
+ - type: Transform
+ pos: 38.5,90.5
+ parent: 1
+ - uid: 20216
+ components:
+ - type: Transform
+ pos: 38.5,91.5
+ parent: 1
+ - uid: 20217
+ components:
+ - type: Transform
+ pos: 38.5,92.5
+ parent: 1
+ - uid: 20218
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - uid: 20219
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 20220
+ components:
+ - type: Transform
+ pos: 38.5,94.5
+ parent: 1
+ - uid: 20223
+ components:
+ - type: Transform
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 20224
+ components:
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20225
+ components:
+ - type: Transform
+ pos: 46.5,83.5
+ parent: 1
+ - uid: 20226
+ components:
+ - type: Transform
+ pos: 47.5,83.5
+ parent: 1
+ - uid: 20227
+ components:
+ - type: Transform
+ pos: 48.5,83.5
+ parent: 1
+ - uid: 20228
+ components:
+ - type: Transform
+ pos: 49.5,83.5
+ parent: 1
+ - uid: 20229
+ components:
+ - type: Transform
+ pos: 50.5,83.5
+ parent: 1
+ - uid: 20230
+ components:
+ - type: Transform
+ pos: 51.5,83.5
+ parent: 1
+ - uid: 20231
+ components:
+ - type: Transform
+ pos: 52.5,83.5
+ parent: 1
+ - uid: 20232
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20233
+ components:
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - uid: 20235
+ components:
+ - type: Transform
+ pos: 52.5,84.5
+ parent: 1
+ - uid: 20236
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 20237
+ components:
+ - type: Transform
+ pos: 52.5,86.5
+ parent: 1
+ - uid: 20238
+ components:
+ - type: Transform
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 20239
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - uid: 20240
+ components:
+ - type: Transform
+ pos: 52.5,89.5
+ parent: 1
+ - uid: 20241
+ components:
+ - type: Transform
+ pos: 52.5,90.5
+ parent: 1
+ - uid: 20242
+ components:
+ - type: Transform
+ pos: 52.5,91.5
+ parent: 1
+ - uid: 20243
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - uid: 20244
+ components:
+ - type: Transform
+ pos: 52.5,93.5
+ parent: 1
+ - uid: 20245
+ components:
+ - type: Transform
+ pos: 52.5,94.5
+ parent: 1
+ - uid: 20246
+ components:
+ - type: Transform
+ pos: 52.5,95.5
+ parent: 1
+ - uid: 20247
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 20248
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 20249
+ components:
+ - type: Transform
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 20250
+ components:
+ - type: Transform
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 20251
+ components:
+ - type: Transform
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 20252
+ components:
+ - type: Transform
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 20253
+ components:
+ - type: Transform
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 20254
+ components:
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 20255
+ components:
+ - type: Transform
+ pos: 44.5,96.5
+ parent: 1
+ - uid: 20256
+ components:
+ - type: Transform
+ pos: 47.5,100.5
+ parent: 1
+ - uid: 20257
+ components:
+ - type: Transform
+ pos: 48.5,100.5
+ parent: 1
+ - uid: 20258
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 20259
+ components:
+ - type: Transform
+ pos: 46.5,100.5
+ parent: 1
+ - uid: 20260
+ components:
+ - type: Transform
+ pos: 50.5,100.5
+ parent: 1
+ - uid: 20261
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - uid: 20262
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 20263
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20264
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 20265
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 20266
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 20267
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 20268
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 20269
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 20270
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 20271
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 20272
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 20273
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 20274
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 20275
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20276
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 20277
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20278
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20279
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20281
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20282
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 20283
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20284
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 20285
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20286
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20287
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20288
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20289
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20290
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20291
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20292
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20293
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20294
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20295
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20296
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20297
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20298
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 20299
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 20300
+ components:
+ - type: Transform
+ pos: 36.5,115.5
+ parent: 1
+ - uid: 20301
+ components:
+ - type: Transform
+ pos: 35.5,115.5
+ parent: 1
+ - uid: 20302
+ components:
+ - type: Transform
+ pos: 34.5,115.5
+ parent: 1
+ - uid: 20303
+ components:
+ - type: Transform
+ pos: 33.5,115.5
+ parent: 1
+ - uid: 20304
+ components:
+ - type: Transform
+ pos: 32.5,115.5
+ parent: 1
+ - uid: 20305
+ components:
+ - type: Transform
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20306
+ components:
+ - type: Transform
+ pos: 42.5,107.5
+ parent: 1
+ - uid: 20307
+ components:
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+ - uid: 20308
+ components:
+ - type: Transform
+ pos: 40.5,107.5
+ parent: 1
+ - uid: 20309
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20310
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20311
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20312
+ components:
+ - type: Transform
+ pos: 37.5,106.5
+ parent: 1
+ - uid: 20313
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 21037
+ components:
+ - type: Transform
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 21039
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 21053
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 21054
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 21058
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - uid: 21059
+ components:
+ - type: Transform
+ pos: 101.5,41.5
+ parent: 1
+ - uid: 21088
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 21089
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 21090
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 21092
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 21093
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 21094
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 21095
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 21096
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 21097
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 21098
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 21099
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 21100
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 21101
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 21102
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 21103
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 21104
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 21105
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 21106
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - uid: 21107
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - uid: 21108
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 21109
+ components:
+ - type: Transform
+ pos: 156.5,61.5
+ parent: 1
+ - uid: 21110
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - uid: 21111
+ components:
+ - type: Transform
+ pos: 155.5,61.5
+ parent: 1
+ - uid: 21112
+ components:
+ - type: Transform
+ pos: 154.5,61.5
+ parent: 1
+ - uid: 21113
+ components:
+ - type: Transform
+ pos: 153.5,61.5
+ parent: 1
+ - uid: 21114
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - uid: 21115
+ components:
+ - type: Transform
+ pos: 151.5,61.5
+ parent: 1
+ - uid: 21116
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - uid: 21117
+ components:
+ - type: Transform
+ pos: 148.5,61.5
+ parent: 1
+ - uid: 21118
+ components:
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - uid: 21119
+ components:
+ - type: Transform
+ pos: 148.5,62.5
+ parent: 1
+ - uid: 21120
+ components:
+ - type: Transform
+ pos: 148.5,63.5
+ parent: 1
+ - uid: 21121
+ components:
+ - type: Transform
+ pos: 148.5,64.5
+ parent: 1
+ - uid: 21122
+ components:
+ - type: Transform
+ pos: 148.5,65.5
+ parent: 1
+ - uid: 21123
+ components:
+ - type: Transform
+ pos: 148.5,66.5
+ parent: 1
+ - uid: 21124
+ components:
+ - type: Transform
+ pos: 148.5,67.5
+ parent: 1
+ - uid: 21125
+ components:
+ - type: Transform
+ pos: 148.5,68.5
+ parent: 1
+ - uid: 21126
+ components:
+ - type: Transform
+ pos: 148.5,69.5
+ parent: 1
+ - uid: 21127
+ components:
+ - type: Transform
+ pos: 148.5,70.5
+ parent: 1
+ - uid: 21128
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - uid: 21129
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - uid: 21130
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - uid: 21131
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - uid: 21132
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 21133
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 21134
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 21140
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 21141
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 21142
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 21143
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 21144
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 21145
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 21146
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 21147
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 21148
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 21149
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 21150
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 21151
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 21152
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 21153
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 21154
+ components:
+ - type: Transform
+ pos: 144.5,70.5
+ parent: 1
+ - uid: 21155
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - uid: 21156
+ components:
+ - type: Transform
+ pos: 142.5,70.5
+ parent: 1
+ - uid: 21157
+ components:
+ - type: Transform
+ pos: 141.5,70.5
+ parent: 1
+ - uid: 21158
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - uid: 21159
+ components:
+ - type: Transform
+ pos: 140.5,70.5
+ parent: 1
+ - uid: 21160
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 21161
+ components:
+ - type: Transform
+ pos: 138.5,70.5
+ parent: 1
+ - uid: 21162
+ components:
+ - type: Transform
+ pos: 138.5,69.5
+ parent: 1
+ - uid: 21163
+ components:
+ - type: Transform
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 21164
+ components:
+ - type: Transform
+ pos: 138.5,67.5
+ parent: 1
+ - uid: 21165
+ components:
+ - type: Transform
+ pos: 138.5,66.5
+ parent: 1
+ - uid: 21166
+ components:
+ - type: Transform
+ pos: 138.5,65.5
+ parent: 1
+ - uid: 21167
+ components:
+ - type: Transform
+ pos: 138.5,64.5
+ parent: 1
+ - uid: 21168
+ components:
+ - type: Transform
+ pos: 138.5,63.5
+ parent: 1
+ - uid: 21169
+ components:
+ - type: Transform
+ pos: 138.5,62.5
+ parent: 1
+ - uid: 21170
+ components:
+ - type: Transform
+ pos: 138.5,61.5
+ parent: 1
+ - uid: 21171
+ components:
+ - type: Transform
+ pos: 138.5,59.5
+ parent: 1
+ - uid: 21172
+ components:
+ - type: Transform
+ pos: 138.5,58.5
+ parent: 1
+ - uid: 21173
+ components:
+ - type: Transform
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 21174
+ components:
+ - type: Transform
+ pos: 138.5,60.5
+ parent: 1
+ - uid: 21175
+ components:
+ - type: Transform
+ pos: 138.5,56.5
+ parent: 1
+ - uid: 21176
+ components:
+ - type: Transform
+ pos: 138.5,55.5
+ parent: 1
+ - uid: 21177
+ components:
+ - type: Transform
+ pos: 137.5,55.5
+ parent: 1
+ - uid: 21178
+ components:
+ - type: Transform
+ pos: 136.5,55.5
+ parent: 1
+ - uid: 21179
+ components:
+ - type: Transform
+ pos: 135.5,55.5
+ parent: 1
+ - uid: 21180
+ components:
+ - type: Transform
+ pos: 134.5,55.5
+ parent: 1
+ - uid: 21181
+ components:
+ - type: Transform
+ pos: 133.5,55.5
+ parent: 1
+ - uid: 21182
+ components:
+ - type: Transform
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 21183
+ components:
+ - type: Transform
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 21184
+ components:
+ - type: Transform
+ pos: 132.5,55.5
+ parent: 1
+ - uid: 21185
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - uid: 21186
+ components:
+ - type: Transform
+ pos: 130.5,57.5
+ parent: 1
+ - uid: 21187
+ components:
+ - type: Transform
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 21188
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - uid: 21189
+ components:
+ - type: Transform
+ pos: 129.5,59.5
+ parent: 1
+ - uid: 21190
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 21191
+ components:
+ - type: Transform
+ pos: 127.5,59.5
+ parent: 1
+ - uid: 21192
+ components:
+ - type: Transform
+ pos: 127.5,60.5
+ parent: 1
+ - uid: 21193
+ components:
+ - type: Transform
+ pos: 127.5,61.5
+ parent: 1
+ - uid: 21194
+ components:
+ - type: Transform
+ pos: 127.5,62.5
+ parent: 1
+ - uid: 21195
+ components:
+ - type: Transform
+ pos: 127.5,63.5
+ parent: 1
+ - uid: 21196
+ components:
+ - type: Transform
+ pos: 127.5,64.5
+ parent: 1
+ - uid: 21197
+ components:
+ - type: Transform
+ pos: 127.5,66.5
+ parent: 1
+ - uid: 21198
+ components:
+ - type: Transform
+ pos: 127.5,67.5
+ parent: 1
+ - uid: 21199
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+ - uid: 21200
+ components:
+ - type: Transform
+ pos: 127.5,69.5
+ parent: 1
+ - uid: 21201
+ components:
+ - type: Transform
+ pos: 127.5,70.5
+ parent: 1
+ - uid: 21202
+ components:
+ - type: Transform
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 21203
+ components:
+ - type: Transform
+ pos: 127.5,72.5
+ parent: 1
+ - uid: 21204
+ components:
+ - type: Transform
+ pos: 127.5,73.5
+ parent: 1
+ - uid: 21205
+ components:
+ - type: Transform
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 21206
+ components:
+ - type: Transform
+ pos: 126.5,59.5
+ parent: 1
+ - uid: 21207
+ components:
+ - type: Transform
+ pos: 125.5,59.5
+ parent: 1
+ - uid: 21208
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 21209
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - uid: 21210
+ components:
+ - type: Transform
+ pos: 122.5,59.5
+ parent: 1
+ - uid: 21211
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 21212
+ components:
+ - type: Transform
+ pos: 138.5,71.5
+ parent: 1
+ - uid: 21213
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 21214
+ components:
+ - type: Transform
+ pos: 138.5,73.5
+ parent: 1
+ - uid: 21215
+ components:
+ - type: Transform
+ pos: 138.5,74.5
+ parent: 1
+ - uid: 21216
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 21217
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - uid: 21218
+ components:
+ - type: Transform
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 21219
+ components:
+ - type: Transform
+ pos: 123.5,64.5
+ parent: 1
+ - uid: 21220
+ components:
+ - type: Transform
+ pos: 122.5,64.5
+ parent: 1
+ - uid: 21221
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 21222
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 21223
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 21224
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - uid: 21225
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 21226
+ components:
+ - type: Transform
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 21227
+ components:
+ - type: Transform
+ pos: 123.5,67.5
+ parent: 1
+ - uid: 21228
+ components:
+ - type: Transform
+ pos: 122.5,67.5
+ parent: 1
+ - uid: 21229
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 21230
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 21231
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - uid: 21232
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 21234
+ components:
+ - type: Transform
+ pos: 122.5,70.5
+ parent: 1
+ - uid: 21235
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 21236
+ components:
+ - type: Transform
+ pos: 123.5,70.5
+ parent: 1
+ - uid: 21237
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 21238
+ components:
+ - type: Transform
+ pos: 126.5,73.5
+ parent: 1
+ - uid: 21239
+ components:
+ - type: Transform
+ pos: 124.5,73.5
+ parent: 1
+ - uid: 21240
+ components:
+ - type: Transform
+ pos: 123.5,73.5
+ parent: 1
+ - uid: 21241
+ components:
+ - type: Transform
+ pos: 122.5,73.5
+ parent: 1
+ - uid: 21242
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 21243
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 21244
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 21245
+ components:
+ - type: Transform
+ pos: 131.5,59.5
+ parent: 1
+ - uid: 21246
+ components:
+ - type: Transform
+ pos: 132.5,59.5
+ parent: 1
+ - uid: 21248
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 21249
+ components:
+ - type: Transform
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 21250
+ components:
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - uid: 21251
+ components:
+ - type: Transform
+ pos: 135.5,59.5
+ parent: 1
+ - uid: 21252
+ components:
+ - type: Transform
+ pos: 134.5,59.5
+ parent: 1
+ - uid: 21253
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - uid: 21254
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 21255
+ components:
+ - type: Transform
+ pos: 134.5,62.5
+ parent: 1
+ - uid: 21256
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - uid: 21257
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+ - uid: 21258
+ components:
+ - type: Transform
+ pos: 134.5,66.5
+ parent: 1
+ - uid: 21259
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - uid: 21260
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - uid: 21261
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - uid: 21262
+ components:
+ - type: Transform
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 21263
+ components:
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+ - uid: 21264
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 21265
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 21266
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 21267
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 21268
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 21269
+ components:
+ - type: Transform
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 21270
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 21271
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 21272
+ components:
+ - type: Transform
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 21273
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 21274
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 21275
+ components:
+ - type: Transform
+ pos: 134.5,69.5
+ parent: 1
+ - uid: 21276
+ components:
+ - type: Transform
+ pos: 135.5,70.5
+ parent: 1
+ - uid: 21277
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 21278
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 21279
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 21280
+ components:
+ - type: Transform
+ pos: 133.5,72.5
+ parent: 1
+ - uid: 21281
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 21282
+ components:
+ - type: Transform
+ pos: 133.5,74.5
+ parent: 1
+ - uid: 21283
+ components:
+ - type: Transform
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 21284
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 21285
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 21286
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 21287
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+ - uid: 21288
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+ - uid: 21289
+ components:
+ - type: Transform
+ pos: 132.5,65.5
+ parent: 1
+ - uid: 21290
+ components:
+ - type: Transform
+ pos: 132.5,66.5
+ parent: 1
+ - uid: 21291
+ components:
+ - type: Transform
+ pos: 131.5,66.5
+ parent: 1
+ - uid: 21292
+ components:
+ - type: Transform
+ pos: 131.5,54.5
+ parent: 1
+ - uid: 21293
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 21294
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 21295
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 21296
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 21297
+ components:
+ - type: Transform
+ pos: 131.5,51.5
+ parent: 1
+ - uid: 21298
+ components:
+ - type: Transform
+ pos: 131.5,50.5
+ parent: 1
+ - uid: 21299
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 21300
+ components:
+ - type: Transform
+ pos: 131.5,48.5
+ parent: 1
+ - uid: 21301
+ components:
+ - type: Transform
+ pos: 131.5,47.5
+ parent: 1
+ - uid: 21302
+ components:
+ - type: Transform
+ pos: 131.5,46.5
+ parent: 1
+ - uid: 21303
+ components:
+ - type: Transform
+ pos: 131.5,45.5
+ parent: 1
+ - uid: 21304
+ components:
+ - type: Transform
+ pos: 131.5,44.5
+ parent: 1
+ - uid: 21305
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 21306
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 21307
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 21308
+ components:
+ - type: Transform
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 21309
+ components:
+ - type: Transform
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 21310
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 21311
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 21312
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 21313
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 21314
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 21315
+ components:
+ - type: Transform
+ pos: 139.5,48.5
+ parent: 1
+ - uid: 21316
+ components:
+ - type: Transform
+ pos: 139.5,47.5
+ parent: 1
+ - uid: 21317
+ components:
+ - type: Transform
+ pos: 139.5,46.5
+ parent: 1
+ - uid: 21318
+ components:
+ - type: Transform
+ pos: 139.5,45.5
+ parent: 1
+ - uid: 21319
+ components:
+ - type: Transform
+ pos: 139.5,44.5
+ parent: 1
+ - uid: 21320
+ components:
+ - type: Transform
+ pos: 138.5,44.5
+ parent: 1
+ - uid: 21321
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 21322
+ components:
+ - type: Transform
+ pos: 143.5,69.5
+ parent: 1
+ - uid: 21323
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 21324
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 21325
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 21326
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 21327
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 21328
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 21329
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 21330
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 21331
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 21332
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 21333
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 21334
+ components:
+ - type: Transform
+ pos: 139.5,62.5
+ parent: 1
+ - uid: 21335
+ components:
+ - type: Transform
+ pos: 140.5,62.5
+ parent: 1
+ - uid: 21336
+ components:
+ - type: Transform
+ pos: 141.5,62.5
+ parent: 1
+ - uid: 21337
+ components:
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - uid: 21338
+ components:
+ - type: Transform
+ pos: 141.5,64.5
+ parent: 1
+ - uid: 21339
+ components:
+ - type: Transform
+ pos: 148.5,60.5
+ parent: 1
+ - uid: 21340
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 21341
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 21342
+ components:
+ - type: Transform
+ pos: 141.5,65.5
+ parent: 1
+ - uid: 21343
+ components:
+ - type: Transform
+ pos: 148.5,59.5
+ parent: 1
+ - uid: 21344
+ components:
+ - type: Transform
+ pos: 148.5,58.5
+ parent: 1
+ - uid: 21345
+ components:
+ - type: Transform
+ pos: 148.5,57.5
+ parent: 1
+ - uid: 21346
+ components:
+ - type: Transform
+ pos: 148.5,56.5
+ parent: 1
+ - uid: 21347
+ components:
+ - type: Transform
+ pos: 147.5,56.5
+ parent: 1
+ - uid: 21348
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - uid: 21349
+ components:
+ - type: Transform
+ pos: 145.5,56.5
+ parent: 1
+ - uid: 21350
+ components:
+ - type: Transform
+ pos: 144.5,56.5
+ parent: 1
+ - uid: 21351
+ components:
+ - type: Transform
+ pos: 143.5,56.5
+ parent: 1
+ - uid: 21352
+ components:
+ - type: Transform
+ pos: 142.5,56.5
+ parent: 1
+ - uid: 21353
+ components:
+ - type: Transform
+ pos: 141.5,56.5
+ parent: 1
+ - uid: 21354
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - uid: 21355
+ components:
+ - type: Transform
+ pos: 139.5,56.5
+ parent: 1
+ - uid: 21356
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 21357
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 21358
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 21359
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 21360
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 21361
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 21362
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 21363
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 21364
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - uid: 21365
+ components:
+ - type: Transform
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 21366
+ components:
+ - type: Transform
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 21367
+ components:
+ - type: Transform
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 21368
+ components:
+ - type: Transform
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 21369
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 21370
+ components:
+ - type: Transform
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 21371
+ components:
+ - type: Transform
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 21372
+ components:
+ - type: Transform
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 21373
+ components:
+ - type: Transform
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 21374
+ components:
+ - type: Transform
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 21375
+ components:
+ - type: Transform
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 21376
+ components:
+ - type: Transform
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 21377
+ components:
+ - type: Transform
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 21378
+ components:
+ - type: Transform
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 21383
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 21384
+ components:
+ - type: Transform
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 21570
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 21654
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+ - uid: 21656
+ components:
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+ - uid: 21690
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 21706
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 21792
+ components:
+ - type: Transform
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 21793
+ components:
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 21794
+ components:
+ - type: Transform
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 21795
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 21796
+ components:
+ - type: Transform
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 21797
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 21798
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21952
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 21953
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 22038
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - uid: 22039
+ components:
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - uid: 22040
+ components:
+ - type: Transform
+ pos: 151.5,57.5
+ parent: 1
+ - uid: 22041
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 22042
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 22043
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22044
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 22045
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - uid: 22046
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - uid: 22050
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 22051
+ components:
+ - type: Transform
+ pos: 152.5,60.5
+ parent: 1
+ - uid: 22073
+ components:
+ - type: Transform
+ pos: 149.5,67.5
+ parent: 1
+ - uid: 22074
+ components:
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - uid: 22075
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 22077
+ components:
+ - type: Transform
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22078
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 22123
+ components:
+ - type: Transform
+ pos: 145.5,71.5
+ parent: 1
+ - uid: 22124
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 22125
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 22126
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 22127
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22128
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 22129
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 22130
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - uid: 22131
+ components:
+ - type: Transform
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 22132
+ components:
+ - type: Transform
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22133
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 22134
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 22135
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22136
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - uid: 22137
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 22138
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 22428
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 22785
+ components:
+ - type: Transform
+ pos: 104.5,48.5
+ parent: 1
+ - uid: 22786
+ components:
+ - type: Transform
+ pos: 106.5,48.5
+ parent: 1
+ - uid: 22790
+ components:
+ - type: Transform
+ pos: 106.5,50.5
+ parent: 1
+ - uid: 22976
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 22983
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 23064
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 23065
+ components:
+ - type: Transform
+ pos: 126.5,58.5
+ parent: 1
+ - uid: 23205
+ components:
+ - type: Transform
+ pos: 101.5,36.5
+ parent: 1
+ - uid: 23206
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - uid: 23208
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: 103.5,46.5
+ parent: 1
+ - uid: 23241
+ components:
+ - type: Transform
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 23319
+ components:
+ - type: Transform
+ pos: 87.5,82.5
+ parent: 1
+ - uid: 23345
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 23368
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - uid: 23372
+ components:
+ - type: Transform
+ pos: 90.5,47.5
+ parent: 1
+ - uid: 23379
+ components:
+ - type: Transform
+ pos: 146.5,89.5
+ parent: 1
+ - uid: 23387
+ components:
+ - type: Transform
+ pos: 74.5,60.5
+ parent: 1
+ - uid: 23391
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 23396
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 23413
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 23421
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 23422
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 23423
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 23424
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 23427
+ components:
+ - type: Transform
+ pos: 133.5,93.5
+ parent: 1
+ - uid: 23431
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 23450
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 23454
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 23464
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 23475
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 23476
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 23481
+ components:
+ - type: Transform
+ pos: 86.5,87.5
+ parent: 1
+ - uid: 23482
+ components:
+ - type: Transform
+ pos: 90.5,84.5
+ parent: 1
+ - uid: 23501
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 23503
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 23506
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 23518
+ components:
+ - type: Transform
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 23520
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 23525
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 23526
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 23527
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 23528
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 23529
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 23534
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 23535
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 23536
+ components:
+ - type: Transform
+ pos: 144.5,89.5
+ parent: 1
+ - uid: 23545
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 23546
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 23556
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 23576
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 23577
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23599
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 23601
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 23603
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 23611
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 23622
+ components:
+ - type: Transform
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 23626
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 23628
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 23639
+ components:
+ - type: Transform
+ pos: 45.5,70.5
+ parent: 1
+ - uid: 23640
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 23641
+ components:
+ - type: Transform
+ pos: 46.5,70.5
+ parent: 1
+ - uid: 23657
+ components:
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 23684
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 23691
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 23693
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 23704
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 23706
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 23711
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 23725
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 23726
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 23729
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 23760
+ components:
+ - type: Transform
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 23762
+ components:
+ - type: Transform
+ pos: 87.5,85.5
+ parent: 1
+ - uid: 23766
+ components:
+ - type: Transform
+ pos: 91.5,85.5
+ parent: 1
+ - uid: 23879
+ components:
+ - type: Transform
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 23934
+ components:
+ - type: Transform
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 23935
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 24025
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 24077
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 24098
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 24099
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 24128
+ components:
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 24129
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 24130
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 24133
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 24136
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 24137
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 24138
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 24139
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 24140
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 24141
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - uid: 24142
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - uid: 24143
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - uid: 24144
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - uid: 24145
+ components:
+ - type: Transform
+ pos: 121.5,98.5
+ parent: 1
+ - uid: 24146
+ components:
+ - type: Transform
+ pos: 120.5,98.5
+ parent: 1
+ - uid: 24147
+ components:
+ - type: Transform
+ pos: 119.5,98.5
+ parent: 1
+ - uid: 24148
+ components:
+ - type: Transform
+ pos: 118.5,98.5
+ parent: 1
+ - uid: 24149
+ components:
+ - type: Transform
+ pos: 117.5,98.5
+ parent: 1
+ - uid: 24150
+ components:
+ - type: Transform
+ pos: 116.5,98.5
+ parent: 1
+ - uid: 24151
+ components:
+ - type: Transform
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 24152
+ components:
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 24153
+ components:
+ - type: Transform
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 24154
+ components:
+ - type: Transform
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 24155
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 24156
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 24157
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 24158
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 24159
+ components:
+ - type: Transform
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 24160
+ components:
+ - type: Transform
+ pos: 105.5,98.5
+ parent: 1
+ - uid: 24161
+ components:
+ - type: Transform
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 24162
+ components:
+ - type: Transform
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 24163
+ components:
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 24164
+ components:
+ - type: Transform
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 24165
+ components:
+ - type: Transform
+ pos: 106.5,98.5
+ parent: 1
+ - uid: 24167
+ components:
+ - type: Transform
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 24168
+ components:
+ - type: Transform
+ pos: 99.5,97.5
+ parent: 1
+ - uid: 24169
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - uid: 24170
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - uid: 24171
+ components:
+ - type: Transform
+ pos: 99.5,94.5
+ parent: 1
+ - uid: 24172
+ components:
+ - type: Transform
+ pos: 99.5,93.5
+ parent: 1
+ - uid: 24173
+ components:
+ - type: Transform
+ pos: 99.5,92.5
+ parent: 1
+ - uid: 24174
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 24175
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+ - uid: 24176
+ components:
+ - type: Transform
+ pos: 97.5,91.5
+ parent: 1
+ - uid: 24177
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 24178
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 24179
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24180
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 24181
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 24182
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 24183
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 24184
+ components:
+ - type: Transform
+ pos: 108.5,102.5
+ parent: 1
+ - uid: 24185
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - uid: 24190
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 24191
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 24192
+ components:
+ - type: Transform
+ pos: 105.5,111.5
+ parent: 1
+ - uid: 24193
+ components:
+ - type: Transform
+ pos: 104.5,111.5
+ parent: 1
+ - uid: 24194
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 24195
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 24196
+ components:
+ - type: Transform
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 24197
+ components:
+ - type: Transform
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 24198
+ components:
+ - type: Transform
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 24199
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 24200
+ components:
+ - type: Transform
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 24206
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 24208
+ components:
+ - type: Transform
+ pos: 108.5,111.5
+ parent: 1
+ - uid: 24209
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 24210
+ components:
+ - type: Transform
+ pos: 108.5,109.5
+ parent: 1
+ - uid: 24211
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 24212
+ components:
+ - type: Transform
+ pos: 108.5,107.5
+ parent: 1
+ - uid: 24213
+ components:
+ - type: Transform
+ pos: 108.5,106.5
+ parent: 1
+ - uid: 24214
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - uid: 24215
+ components:
+ - type: Transform
+ pos: 108.5,104.5
+ parent: 1
+ - uid: 24216
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 24217
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 24218
+ components:
+ - type: Transform
+ pos: 111.5,111.5
+ parent: 1
+ - uid: 24219
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 24220
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 24221
+ components:
+ - type: Transform
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 24222
+ components:
+ - type: Transform
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 24223
+ components:
+ - type: Transform
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 24224
+ components:
+ - type: Transform
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 24225
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 24227
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - uid: 24233
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 24234
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 24235
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 24236
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 24237
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 24238
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 24239
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 24240
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 24241
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 24242
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 24250
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 24251
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 24252
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 24253
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 24254
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 24255
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 24256
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 24257
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 24258
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 24259
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 24260
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 24261
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 24262
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 24263
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 24264
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 24265
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 24266
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 24267
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 24268
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 24269
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 24270
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 24271
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 24272
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 24273
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 24274
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 24275
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 24276
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 24277
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 24278
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 24279
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 24280
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 24281
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 24282
+ components:
+ - type: Transform
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 24283
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 24284
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 24297
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 24299
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 24300
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 24301
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 24302
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 24303
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 24304
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 24305
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 24306
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 24307
+ components:
+ - type: Transform
+ pos: 78.5,61.5
+ parent: 1
+ - uid: 24308
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 24311
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - uid: 24369
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 24370
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 24371
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 24372
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 24373
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 24374
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 24375
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 24376
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 24377
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 24378
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 24379
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 24380
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 24381
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 24382
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 24383
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 24384
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 24385
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 24386
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 24387
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 24398
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 24399
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 24400
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 24401
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 24402
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 24403
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 24404
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 24405
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 24406
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 24413
+ components:
+ - type: Transform
+ pos: 89.5,55.5
+ parent: 1
+ - uid: 24421
+ components:
+ - type: Transform
+ pos: 77.5,98.5
+ parent: 1
+ - uid: 24429
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 24430
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 24431
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 24432
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 24433
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 24434
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 24435
+ components:
+ - type: Transform
+ pos: 108.5,51.5
+ parent: 1
+ - uid: 24436
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 24437
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 24438
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 24439
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 24440
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 24441
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 24442
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 24443
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 24444
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 24445
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 24446
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 24447
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 24448
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 24449
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 24450
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 24451
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 24452
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 24453
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 24454
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 24455
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 24456
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 24457
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 24458
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 24459
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 24460
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 24461
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 24462
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 24463
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 24464
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 24465
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 24466
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 24467
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 24468
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 24469
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 24470
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 24471
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 24472
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 24473
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 24474
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 24475
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 24476
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 24477
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 24478
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 24479
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 24480
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 24481
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 24482
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 24483
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 24484
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 24485
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 24486
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 24487
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 24488
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 24489
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 24490
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 24491
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 24492
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 24493
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 24494
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 24495
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 24496
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 24497
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 24498
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 24499
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 24500
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 24501
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 24502
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 24512
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24521
+ components:
+ - type: Transform
+ pos: 99.5,63.5
+ parent: 1
+ - uid: 24522
+ components:
+ - type: Transform
+ pos: 100.5,63.5
+ parent: 1
+ - uid: 24523
+ components:
+ - type: Transform
+ pos: 101.5,63.5
+ parent: 1
+ - uid: 24524
+ components:
+ - type: Transform
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 24525
+ components:
+ - type: Transform
+ pos: 103.5,63.5
+ parent: 1
+ - uid: 24526
+ components:
+ - type: Transform
+ pos: 104.5,63.5
+ parent: 1
+ - uid: 24527
+ components:
+ - type: Transform
+ pos: 105.5,63.5
+ parent: 1
+ - uid: 24528
+ components:
+ - type: Transform
+ pos: 106.5,63.5
+ parent: 1
+ - uid: 24529
+ components:
+ - type: Transform
+ pos: 108.5,63.5
+ parent: 1
+ - uid: 24530
+ components:
+ - type: Transform
+ pos: 107.5,63.5
+ parent: 1
+ - uid: 24531
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 1
+ - uid: 24532
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 24533
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - uid: 24534
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 1
+ - uid: 24535
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 1
+ - uid: 24536
+ components:
+ - type: Transform
+ pos: 114.5,63.5
+ parent: 1
+ - uid: 24539
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 24545
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 24547
+ components:
+ - type: Transform
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 24550
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - uid: 24551
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - uid: 24552
+ components:
+ - type: Transform
+ pos: 112.5,60.5
+ parent: 1
+ - uid: 24553
+ components:
+ - type: Transform
+ pos: 111.5,60.5
+ parent: 1
+ - uid: 24554
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+ - uid: 24555
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24556
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - uid: 24557
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - uid: 24558
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - uid: 24559
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - uid: 24560
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+ - uid: 24561
+ components:
+ - type: Transform
+ pos: 107.5,58.5
+ parent: 1
+ - uid: 24562
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 24563
+ components:
+ - type: Transform
+ pos: 108.5,57.5
+ parent: 1
+ - uid: 24564
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+ - uid: 24565
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24566
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24567
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 24568
+ components:
+ - type: Transform
+ pos: 101.5,60.5
+ parent: 1
+ - uid: 24569
+ components:
+ - type: Transform
+ pos: 100.5,60.5
+ parent: 1
+ - uid: 24570
+ components:
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - uid: 24571
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - uid: 24666
+ components:
+ - type: Transform
+ pos: 113.5,67.5
+ parent: 1
+ - uid: 24669
+ components:
+ - type: Transform
+ pos: 113.5,69.5
+ parent: 1
+ - uid: 24717
+ components:
+ - type: Transform
+ pos: 99.5,65.5
+ parent: 1
+ - uid: 24727
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - uid: 24729
+ components:
+ - type: Transform
+ pos: 91.5,61.5
+ parent: 1
+ - uid: 24730
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 24731
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 24735
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 24736
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 24737
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 24738
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 24739
+ components:
+ - type: Transform
+ pos: 99.5,57.5
+ parent: 1
+ - uid: 24740
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - uid: 24741
+ components:
+ - type: Transform
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 24742
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 24743
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 24744
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 24745
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 24746
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 24747
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 24748
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 24749
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 24750
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - uid: 24751
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 24752
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - uid: 24753
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 24754
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 1
+ - uid: 24755
+ components:
+ - type: Transform
+ pos: 117.5,73.5
+ parent: 1
+ - uid: 24759
+ components:
+ - type: Transform
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 24760
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 24761
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 24767
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 24768
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 24769
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 24770
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 24771
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 24772
+ components:
+ - type: Transform
+ pos: 116.5,57.5
+ parent: 1
+ - uid: 24773
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 24774
+ components:
+ - type: Transform
+ pos: 114.5,57.5
+ parent: 1
+ - uid: 24775
+ components:
+ - type: Transform
+ pos: 113.5,57.5
+ parent: 1
+ - uid: 24776
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 24777
+ components:
+ - type: Transform
+ pos: 112.5,58.5
+ parent: 1
+ - uid: 24778
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+ - uid: 24787
+ components:
+ - type: Transform
+ pos: 99.5,86.5
+ parent: 1
+ - uid: 24789
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 24790
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 24791
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 24792
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 24793
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 24794
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 24795
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 24796
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 24797
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 24798
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 24799
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 24800
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 24801
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 24802
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 24803
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 24807
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 1
+ - uid: 24884
+ components:
+ - type: Transform
+ pos: 113.5,70.5
+ parent: 1
+ - uid: 24918
+ components:
+ - type: Transform
+ pos: 113.5,72.5
+ parent: 1
+ - uid: 24919
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24920
+ components:
+ - type: Transform
+ pos: 98.5,86.5
+ parent: 1
+ - uid: 24922
+ components:
+ - type: Transform
+ pos: 88.5,65.5
+ parent: 1
+ - uid: 24923
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - uid: 24924
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - uid: 24925
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - uid: 24926
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - uid: 24927
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 24928
+ components:
+ - type: Transform
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 24929
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 24930
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 24931
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - uid: 24932
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 24933
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 24934
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - uid: 24935
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 24936
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24966
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 24967
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 24968
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 24969
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 24970
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 24971
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 24972
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 24973
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 24974
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 24975
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 24976
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 24977
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 24978
+ components:
+ - type: Transform
+ pos: 62.5,77.5
+ parent: 1
+ - uid: 24979
+ components:
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+ - uid: 24980
+ components:
+ - type: Transform
+ pos: 62.5,75.5
+ parent: 1
+ - uid: 24981
+ components:
+ - type: Transform
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 24982
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 24983
+ components:
+ - type: Transform
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 24984
+ components:
+ - type: Transform
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 24985
+ components:
+ - type: Transform
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 24986
+ components:
+ - type: Transform
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 24987
+ components:
+ - type: Transform
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 24988
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 24989
+ components:
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+ - uid: 24990
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 24991
+ components:
+ - type: Transform
+ pos: 70.5,72.5
+ parent: 1
+ - uid: 24992
+ components:
+ - type: Transform
+ pos: 71.5,72.5
+ parent: 1
+ - uid: 24993
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 24994
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24995
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+ - uid: 24996
+ components:
+ - type: Transform
+ pos: 64.5,73.5
+ parent: 1
+ - uid: 25040
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 25041
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - uid: 25042
+ components:
+ - type: Transform
+ pos: 122.5,86.5
+ parent: 1
+ - uid: 25043
+ components:
+ - type: Transform
+ pos: 122.5,85.5
+ parent: 1
+ - uid: 25044
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - uid: 25045
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 25149
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 25150
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 25158
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 25159
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 25160
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25161
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 25162
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 25163
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 25175
+ components:
+ - type: Transform
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 25183
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 25184
+ components:
+ - type: Transform
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 25199
+ components:
+ - type: Transform
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 25200
+ components:
+ - type: Transform
+ pos: 132.5,122.5
+ parent: 1
+ - uid: 25216
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 25276
+ components:
+ - type: Transform
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 25278
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 25286
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 25296
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 25298
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 25301
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 25307
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 25317
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 25389
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 25473
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 1
+ - uid: 25507
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 25512
+ components:
+ - type: Transform
+ pos: 102.5,43.5
+ parent: 1
+ - uid: 25516
+ components:
+ - type: Transform
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 25518
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 25519
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 25520
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 25522
+ components:
+ - type: Transform
+ pos: 103.5,48.5
+ parent: 1
+ - uid: 25524
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - uid: 25525
+ components:
+ - type: Transform
+ pos: 105.5,48.5
+ parent: 1
+ - uid: 25544
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 25545
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25614
+ components:
+ - type: Transform
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 25774
+ components:
+ - type: Transform
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 25775
+ components:
+ - type: Transform
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 25790
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 25791
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 25804
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 25828
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 25863
+ components:
+ - type: Transform
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 25865
+ components:
+ - type: Transform
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 25894
+ components:
+ - type: Transform
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 25895
+ components:
+ - type: Transform
+ pos: 113.5,73.5
+ parent: 1
+ - uid: 25957
+ components:
+ - type: Transform
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 26236
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 26300
+ components:
+ - type: Transform
+ pos: 96.5,97.5
+ parent: 1
+ - uid: 26315
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 26395
+ components:
+ - type: Transform
+ pos: 95.5,98.5
+ parent: 1
+ - uid: 26396
+ components:
+ - type: Transform
+ pos: 95.5,99.5
+ parent: 1
+ - uid: 26397
+ components:
+ - type: Transform
+ pos: 95.5,100.5
+ parent: 1
+ - uid: 26398
+ components:
+ - type: Transform
+ pos: 95.5,101.5
+ parent: 1
+ - uid: 26399
+ components:
+ - type: Transform
+ pos: 95.5,102.5
+ parent: 1
+ - uid: 26400
+ components:
+ - type: Transform
+ pos: 94.5,102.5
+ parent: 1
+ - uid: 26401
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26481
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 26493
+ components:
+ - type: Transform
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 26528
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 26557
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 26561
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 26715
+ components:
+ - type: Transform
+ pos: 99.5,74.5
+ parent: 1
+ - uid: 26865
+ components:
+ - type: Transform
+ pos: 99.5,72.5
+ parent: 1
+ - uid: 26879
+ components:
+ - type: Transform
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 26884
+ components:
+ - type: Transform
+ pos: 113.5,68.5
+ parent: 1
+ - uid: 26897
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 27084
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 27090
+ components:
+ - type: Transform
+ pos: 89.5,61.5
+ parent: 1
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 27228
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 27273
+ components:
+ - type: Transform
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 27364
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 27365
+ components:
+ - type: Transform
+ pos: 42.5,48.5
+ parent: 1
+ - uid: 27625
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 27626
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 27627
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 27628
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 27629
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 27630
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 27631
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 27632
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 27633
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 27634
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 27635
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 27636
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 27637
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 27638
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 27758
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 27759
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 27760
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 27761
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 27762
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 27763
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 27764
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 27765
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 27766
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 27767
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 27768
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 27769
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27770
+ components:
+ - type: Transform
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 27864
+ components:
+ - type: Transform
+ pos: 53.5,84.5
+ parent: 1
+ - uid: 27907
+ components:
+ - type: Transform
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 27908
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 27909
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 27910
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 27911
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 27912
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 27913
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 27914
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 27915
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 27916
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 27917
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 27918
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 27919
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 27920
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 27968
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 27981
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 28032
+ components:
+ - type: Transform
+ pos: 104.5,123.5
+ parent: 1
+ - uid: 28033
+ components:
+ - type: Transform
+ pos: 104.5,122.5
+ parent: 1
+ - uid: 28034
+ components:
+ - type: Transform
+ pos: 104.5,121.5
+ parent: 1
+ - uid: 28035
+ components:
+ - type: Transform
+ pos: 104.5,120.5
+ parent: 1
+ - uid: 28036
+ components:
+ - type: Transform
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 28037
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 28038
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 28039
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 28040
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 28041
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 28042
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 28043
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 28044
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 28045
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 28046
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 28047
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 28048
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 28049
+ components:
+ - type: Transform
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 28050
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28051
+ components:
+ - type: Transform
+ pos: 113.5,112.5
+ parent: 1
+ - uid: 28052
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - uid: 28053
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 28054
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 28055
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 28056
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 28057
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 28058
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 28059
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 28060
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 28061
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 28062
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 28063
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 28064
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 28065
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 28066
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 28067
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28068
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 28069
+ components:
+ - type: Transform
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 28070
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28140
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 28141
+ components:
+ - type: Transform
+ pos: 60.5,83.5
+ parent: 1
+ - uid: 28170
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 28176
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 28177
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 28178
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 28179
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - uid: 28180
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 28181
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 28182
+ components:
+ - type: Transform
+ pos: 63.5,114.5
+ parent: 1
+ - uid: 28183
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - uid: 28184
+ components:
+ - type: Transform
+ pos: 63.5,116.5
+ parent: 1
+ - uid: 28222
+ components:
+ - type: Transform
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 28323
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 28324
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 28325
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 28326
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 28327
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 28328
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 28329
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 28330
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 28331
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 28332
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - uid: 28333
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 28334
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 28335
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 28344
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 28345
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28442
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 28443
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 28444
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 28445
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 28446
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 28447
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 28448
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 28449
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 28450
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 28451
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 28452
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 28453
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 28454
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 28455
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 28456
+ components:
+ - type: Transform
+ pos: 126.5,77.5
+ parent: 1
+ - uid: 28457
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 28458
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 28459
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 28460
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 28461
+ components:
+ - type: Transform
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 28462
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28463
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 28464
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 28465
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 28466
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 28467
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 28468
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 28469
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 28470
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 28471
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 28472
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 28473
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 28474
+ components:
+ - type: Transform
+ pos: 139.5,78.5
+ parent: 1
+ - uid: 28475
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28517
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 28524
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 28526
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 28539
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 28561
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28562
+ components:
+ - type: Transform
+ pos: 138.5,82.5
+ parent: 1
+ - uid: 28563
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 28564
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - uid: 28565
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - uid: 28679
+ components:
+ - type: Transform
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 28680
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 28681
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 28682
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 28683
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 28684
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 28685
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 28686
+ components:
+ - type: Transform
+ pos: 122.5,50.5
+ parent: 1
+ - uid: 28687
+ components:
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+ - uid: 28688
+ components:
+ - type: Transform
+ pos: 120.5,50.5
+ parent: 1
+ - uid: 28689
+ components:
+ - type: Transform
+ pos: 119.5,50.5
+ parent: 1
+ - uid: 28690
+ components:
+ - type: Transform
+ pos: 117.5,50.5
+ parent: 1
+ - uid: 28691
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - uid: 28692
+ components:
+ - type: Transform
+ pos: 117.5,49.5
+ parent: 1
+ - uid: 28693
+ components:
+ - type: Transform
+ pos: 117.5,48.5
+ parent: 1
+ - uid: 28694
+ components:
+ - type: Transform
+ pos: 117.5,47.5
+ parent: 1
+ - uid: 28695
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28718
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 28719
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 28746
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 28777
+ components:
+ - type: Transform
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 28784
+ components:
+ - type: Transform
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 28808
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - uid: 28910
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 29015
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29016
+ components:
+ - type: Transform
+ pos: 92.5,73.5
+ parent: 1
+ - uid: 29078
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 29114
+ components:
+ - type: Transform
+ pos: 107.5,45.5
+ parent: 1
+ - uid: 29121
+ components:
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 29297
+ components:
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 29301
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 29304
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 29320
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29321
+ components:
+ - type: Transform
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29322
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 29323
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - uid: 29324
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29331
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 29332
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 29333
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 29334
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 29335
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 29348
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 29349
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 29350
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29351
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 29352
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 29353
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 29357
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 29359
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 29360
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 29361
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 29362
+ components:
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29363
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - uid: 29364
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - uid: 29365
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29395
+ components:
+ - type: Transform
+ pos: 145.5,89.5
+ parent: 1
+ - uid: 29403
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 29404
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29456
+ components:
+ - type: Transform
+ pos: 150.5,142.5
+ parent: 1
+ - uid: 29457
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29511
+ components:
+ - type: Transform
+ pos: 87.5,47.5
+ parent: 1
+ - uid: 29674
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 29675
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 29676
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 29677
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 29678
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 29679
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 29680
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 29681
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 29682
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 29683
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 29684
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 29685
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 29686
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 29687
+ components:
+ - type: Transform
+ pos: 149.5,124.5
+ parent: 1
+ - uid: 29688
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 29689
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 29690
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 29691
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 29692
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 29693
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 29694
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 29695
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 29696
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 29697
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 29698
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 29699
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 29700
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - uid: 29701
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - uid: 29702
+ components:
+ - type: Transform
+ pos: 144.5,121.5
+ parent: 1
+ - uid: 29703
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29704
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29852
+ components:
+ - type: Transform
+ pos: 151.5,151.5
+ parent: 1
+ - uid: 29854
+ components:
+ - type: Transform
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29855
+ components:
+ - type: Transform
+ pos: 152.5,149.5
+ parent: 1
+ - uid: 29856
+ components:
+ - type: Transform
+ pos: 152.5,151.5
+ parent: 1
+ - uid: 29857
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 29859
+ components:
+ - type: Transform
+ pos: 153.5,148.5
+ parent: 1
+ - uid: 29860
+ components:
+ - type: Transform
+ pos: 92.5,114.5
+ parent: 1
+ - uid: 29864
+ components:
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+ - uid: 29935
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 29936
+ components:
+ - type: Transform
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 29945
+ components:
+ - type: Transform
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 29946
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 29947
+ components:
+ - type: Transform
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 29948
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 29950
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 29951
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 29952
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 29953
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 29954
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 29955
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 29956
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 29957
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 29958
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 29959
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 29960
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 29961
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 29962
+ components:
+ - type: Transform
+ pos: 145.5,148.5
+ parent: 1
+ - uid: 29963
+ components:
+ - type: Transform
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 29964
+ components:
+ - type: Transform
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 29965
+ components:
+ - type: Transform
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 29966
+ components:
+ - type: Transform
+ pos: 149.5,148.5
+ parent: 1
+ - uid: 29967
+ components:
+ - type: Transform
+ pos: 150.5,148.5
+ parent: 1
+ - uid: 29968
+ components:
+ - type: Transform
+ pos: 151.5,148.5
+ parent: 1
+ - uid: 29969
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 29994
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 29995
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 29996
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 29997
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 29998
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 29999
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+ - uid: 30000
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 30001
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 30002
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30016
+ components:
+ - type: Transform
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 30017
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 30018
+ components:
+ - type: Transform
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 30144
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 30158
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 30159
+ components:
+ - type: Transform
+ pos: 132.5,92.5
+ parent: 1
+ - uid: 30177
+ components:
+ - type: Transform
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 30200
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - uid: 30201
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 30202
+ components:
+ - type: Transform
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 30358
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 30360
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 30367
+ components:
+ - type: Transform
+ pos: 135.5,93.5
+ parent: 1
+ - uid: 30392
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+ - uid: 30415
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 30469
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 30470
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 30471
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30472
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30473
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30474
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30475
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30476
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30512
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 30617
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 30637
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 30640
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 30718
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 30719
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 30749
+ components:
+ - type: Transform
+ pos: 88.5,47.5
+ parent: 1
+ - uid: 30799
+ components:
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 30802
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 30803
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 30804
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 30805
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 30806
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 30816
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 30817
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 30818
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 30819
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 30820
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 30821
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 30822
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30823
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30824
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30825
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30826
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30827
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30828
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 30832
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 30839
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 30842
+ components:
+ - type: Transform
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 30848
+ components:
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - uid: 30851
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 30852
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 30853
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 30854
+ components:
+ - type: Transform
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 30855
+ components:
+ - type: Transform
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 30856
+ components:
+ - type: Transform
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 30857
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 30858
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 30859
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 30864
+ components:
+ - type: Transform
+ pos: 137.5,93.5
+ parent: 1
+ - uid: 30866
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 30867
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30868
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 30870
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 30877
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 30878
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 31798
+ components:
+ - type: Transform
+ pos: 129.5,41.5
+ parent: 1
+ - uid: 31988
+ components:
+ - type: Transform
+ pos: 99.5,73.5
+ parent: 1
+ - uid: 32094
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - uid: 32095
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - uid: 32096
+ components:
+ - type: Transform
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 32205
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 32206
+ components:
+ - type: Transform
+ pos: 43.5,78.5
+ parent: 1
+ - uid: 32207
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 32208
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 32209
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 32210
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 32211
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 32212
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 32213
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 32214
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 32215
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 32224
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 32225
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 32229
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 32231
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 32232
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 32233
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 32234
+ components:
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 32242
+ components:
+ - type: Transform
+ pos: 99.5,76.5
+ parent: 1
+ - uid: 32248
+ components:
+ - type: Transform
+ pos: 99.5,67.5
+ parent: 1
+ - uid: 32252
+ components:
+ - type: Transform
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 32253
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 32254
+ components:
+ - type: Transform
+ pos: 87.5,61.5
+ parent: 1
+ - uid: 32284
+ components:
+ - type: Transform
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 32286
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 32287
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 32288
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 32294
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 32303
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 32304
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 32305
+ components:
+ - type: Transform
+ pos: 153.5,53.5
+ parent: 1
+ - uid: 32312
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 32313
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 32314
+ components:
+ - type: Transform
+ pos: 68.5,40.5
+ parent: 1
+ - uid: 32315
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 32318
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 32319
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 32320
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 32321
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 32322
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 32323
+ components:
+ - type: Transform
+ pos: 120.5,96.5
+ parent: 1
+ - uid: 32324
+ components:
+ - type: Transform
+ pos: 120.5,97.5
+ parent: 1
+ - uid: 32325
+ components:
+ - type: Transform
+ pos: 44.5,107.5
+ parent: 1
+ - uid: 32326
+ components:
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - uid: 32327
+ components:
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - uid: 32328
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - uid: 32376
+ components:
+ - type: Transform
+ pos: 132.5,93.5
+ parent: 1
+ - uid: 32423
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 32424
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 32425
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 32426
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 32427
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 32428
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 32429
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 32430
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 32434
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 32440
+ components:
+ - type: Transform
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 32978
+ components:
+ - type: Transform
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 32985
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 33623
+ components:
+ - type: Transform
+ pos: 77.5,99.5
+ parent: 1
+ - uid: 33747
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 33756
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - uid: 33786
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 33826
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 33890
+ components:
+ - type: Transform
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 33891
+ components:
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+ - uid: 33907
+ components:
+ - type: Transform
+ pos: 113.5,74.5
+ parent: 1
+ - uid: 33916
+ components:
+ - type: Transform
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 33962
+ components:
+ - type: Transform
+ pos: 113.5,76.5
+ parent: 1
+ - uid: 33967
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - uid: 34052
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 34053
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 34277
+ components:
+ - type: Transform
+ pos: 162.5,54.5
+ parent: 1
+ - uid: 34278
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34282
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - uid: 34283
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - uid: 34284
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 34285
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 34286
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 34292
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 34295
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 34298
+ components:
+ - type: Transform
+ pos: 137.5,86.5
+ parent: 1
+ - uid: 34299
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34604
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34704
+ components:
+ - type: Transform
+ pos: 62.5,116.5
+ parent: 1
+ - uid: 34801
+ components:
+ - type: Transform
+ pos: 61.5,116.5
+ parent: 1
+ - uid: 34819
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34822
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 34823
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34824
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34825
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34826
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34827
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34828
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34829
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34830
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 34868
+ components:
+ - type: Transform
+ pos: 60.5,116.5
+ parent: 1
+ - uid: 34871
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 34873
+ components:
+ - type: Transform
+ pos: 59.5,116.5
+ parent: 1
+ - uid: 34874
+ components:
+ - type: Transform
+ pos: 58.5,116.5
+ parent: 1
+ - uid: 34877
+ components:
+ - type: Transform
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 34879
+ components:
+ - type: Transform
+ pos: 56.5,116.5
+ parent: 1
+ - uid: 34885
+ components:
+ - type: Transform
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 34886
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - uid: 34887
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 34894
+ components:
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 35001
+ components:
+ - type: Transform
+ pos: 130.5,41.5
+ parent: 1
+ - uid: 35002
+ components:
+ - type: Transform
+ pos: 131.5,41.5
+ parent: 1
+ - uid: 35003
+ components:
+ - type: Transform
+ pos: 132.5,41.5
+ parent: 1
+ - uid: 35004
+ components:
+ - type: Transform
+ pos: 133.5,41.5
+ parent: 1
+ - uid: 35005
+ components:
+ - type: Transform
+ pos: 134.5,41.5
+ parent: 1
+ - uid: 35006
+ components:
+ - type: Transform
+ pos: 131.5,42.5
+ parent: 1
+ - uid: 35038
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35039
+ components:
+ - type: Transform
+ pos: 117.5,171.5
+ parent: 1
+ - uid: 35043
+ components:
+ - type: Transform
+ pos: 117.5,169.5
+ parent: 1
+ - uid: 35044
+ components:
+ - type: Transform
+ pos: 117.5,168.5
+ parent: 1
+ - uid: 35045
+ components:
+ - type: Transform
+ pos: 119.5,168.5
+ parent: 1
+ - uid: 35047
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 35048
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 35049
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 35050
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 35051
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 35052
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 35053
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 35054
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 35055
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 35056
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 35057
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 35058
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 35059
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 35060
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 35061
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 35062
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 35063
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 35072
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 35074
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 35075
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 35076
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 35077
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 35078
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 35079
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 35080
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 35081
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 35089
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 35091
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 35092
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 35093
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 35094
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 35096
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 35097
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 35098
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 35099
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 35100
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 35105
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 35106
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 35107
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 35108
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 35109
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 35110
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 35111
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 35112
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 35113
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 35114
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 35115
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 35116
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 35117
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 35118
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 35119
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 35120
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 35121
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35211
+ components:
+ - type: Transform
+ pos: 101.5,37.5
+ parent: 1
+ - uid: 35217
+ components:
+ - type: Transform
+ pos: 87.5,81.5
+ parent: 1
+ - uid: 35221
+ components:
+ - type: Transform
+ pos: 88.5,87.5
+ parent: 1
+ - uid: 35222
+ components:
+ - type: Transform
+ pos: 87.5,87.5
+ parent: 1
+ - uid: 35275
+ components:
+ - type: Transform
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 35276
+ components:
+ - type: Transform
+ pos: 91.5,161.5
+ parent: 1
+ - uid: 35277
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - uid: 35278
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 35279
+ components:
+ - type: Transform
+ pos: 89.5,165.5
+ parent: 1
+ - uid: 35280
+ components:
+ - type: Transform
+ pos: 90.5,163.5
+ parent: 1
+ - uid: 35281
+ components:
+ - type: Transform
+ pos: 89.5,163.5
+ parent: 1
+ - uid: 35423
+ components:
+ - type: Transform
+ pos: 91.5,47.5
+ parent: 1
+ - uid: 35424
+ components:
+ - type: Transform
+ pos: 71.5,60.5
+ parent: 1
+ - uid: 35428
+ components:
+ - type: Transform
+ pos: 72.5,60.5
+ parent: 1
+ - uid: 35430
+ components:
+ - type: Transform
+ pos: 73.5,60.5
+ parent: 1
+ - uid: 35473
+ components:
+ - type: Transform
+ pos: 72.5,153.5
+ parent: 1
+ - uid: 35474
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - uid: 35475
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 35476
+ components:
+ - type: Transform
+ pos: 69.5,153.5
+ parent: 1
+ - uid: 35477
+ components:
+ - type: Transform
+ pos: 69.5,154.5
+ parent: 1
+ - uid: 35478
+ components:
+ - type: Transform
+ pos: 69.5,155.5
+ parent: 1
+ - uid: 35480
+ components:
+ - type: Transform
+ pos: 70.5,155.5
+ parent: 1
+ - uid: 35481
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 35482
+ components:
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - uid: 35550
+ components:
+ - type: Transform
+ pos: 127.5,112.5
+ parent: 1
+ - uid: 35551
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 35552
+ components:
+ - type: Transform
+ pos: 126.5,112.5
+ parent: 1
+ - uid: 35553
+ components:
+ - type: Transform
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 35554
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 35557
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 35568
+ components:
+ - type: Transform
+ pos: 127.5,110.5
+ parent: 1
+ - uid: 35693
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 35707
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35753
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 35871
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35879
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35880
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35881
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35882
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35883
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 35884
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 35902
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - uid: 35911
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 35920
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35929
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35930
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35931
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35932
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35933
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35934
+ components:
+ - type: Transform
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 35935
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35936
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 35946
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 35949
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 35951
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 35952
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 35957
+ components:
+ - type: Transform
+ pos: 23.5,119.5
+ parent: 1
+ - uid: 35958
+ components:
+ - type: Transform
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35997
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 36030
+ components:
+ - type: Transform
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 36047
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 36048
+ components:
+ - type: Transform
+ pos: 53.5,110.5
+ parent: 1
+ - uid: 36133
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 36135
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 36143
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 36154
+ components:
+ - type: Transform
+ pos: 29.5,74.5
+ parent: 1
+ - uid: 36216
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36217
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36218
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36219
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36220
+ components:
+ - type: Transform
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 36221
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36222
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36223
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36224
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36225
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36226
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36227
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36228
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36229
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36230
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36231
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36232
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 36233
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36234
+ components:
+ - type: Transform
+ pos: 26.5,95.5
+ parent: 1
+ - uid: 36235
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 36237
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36238
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - uid: 36239
+ components:
+ - type: Transform
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 36240
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - uid: 36241
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36339
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 36621
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 36635
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 36649
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+ - uid: 36655
+ components:
+ - type: Transform
+ pos: 98.5,97.5
+ parent: 1
+ - uid: 36656
+ components:
+ - type: Transform
+ pos: 100.5,97.5
+ parent: 1
+ - uid: 36662
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 36665
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 36667
+ components:
+ - type: Transform
+ pos: 47.5,106.5
+ parent: 1
+ - uid: 36668
+ components:
+ - type: Transform
+ pos: 47.5,105.5
+ parent: 1
+ - uid: 36669
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 36681
+ components:
+ - type: Transform
+ pos: 105.5,156.5
+ parent: 1
+ - uid: 36701
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 36702
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 36703
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 36704
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 36705
+ components:
+ - type: Transform
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 36706
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36711
+ components:
+ - type: Transform
+ pos: 117.5,156.5
+ parent: 1
+ - uid: 36712
+ components:
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - uid: 36713
+ components:
+ - type: Transform
+ pos: 117.5,158.5
+ parent: 1
+ - uid: 36714
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - uid: 36715
+ components:
+ - type: Transform
+ pos: 116.5,159.5
+ parent: 1
+ - uid: 36716
+ components:
+ - type: Transform
+ pos: 115.5,159.5
+ parent: 1
+ - uid: 36719
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 36733
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 36744
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 36747
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 36750
+ components:
+ - type: Transform
+ pos: 66.5,124.5
+ parent: 1
+ - uid: 36751
+ components:
+ - type: Transform
+ pos: 65.5,124.5
+ parent: 1
+ - uid: 36752
+ components:
+ - type: Transform
+ pos: 64.5,124.5
+ parent: 1
+ - uid: 36767
+ components:
+ - type: Transform
+ pos: 63.5,124.5
+ parent: 1
+ - uid: 36785
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 36786
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - uid: 36787
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 36788
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 36789
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 36806
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 36808
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 36809
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 36850
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 36858
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 37013
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 37014
+ components:
+ - type: Transform
+ pos: 96.5,165.5
+ parent: 1
+ - uid: 37015
+ components:
+ - type: Transform
+ pos: 97.5,165.5
+ parent: 1
+ - uid: 37016
+ components:
+ - type: Transform
+ pos: 98.5,165.5
+ parent: 1
+ - uid: 37017
+ components:
+ - type: Transform
+ pos: 99.5,165.5
+ parent: 1
+ - uid: 37018
+ components:
+ - type: Transform
+ pos: 99.5,166.5
+ parent: 1
+ - uid: 37019
+ components:
+ - type: Transform
+ pos: 99.5,167.5
+ parent: 1
+ - uid: 37020
+ components:
+ - type: Transform
+ pos: 99.5,168.5
+ parent: 1
+ - uid: 37091
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 37092
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 37148
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 37149
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 37223
+ components:
+ - type: Transform
+ pos: 63.5,125.5
+ parent: 1
+ - uid: 37224
+ components:
+ - type: Transform
+ pos: 63.5,126.5
+ parent: 1
+ - uid: 37225
+ components:
+ - type: Transform
+ pos: 63.5,127.5
+ parent: 1
+ - uid: 37226
+ components:
+ - type: Transform
+ pos: 63.5,128.5
+ parent: 1
+ - uid: 37227
+ components:
+ - type: Transform
+ pos: 62.5,128.5
+ parent: 1
+ - uid: 37228
+ components:
+ - type: Transform
+ pos: 62.5,129.5
+ parent: 1
+ - uid: 37229
+ components:
+ - type: Transform
+ pos: 62.5,130.5
+ parent: 1
+ - uid: 37230
+ components:
+ - type: Transform
+ pos: 62.5,131.5
+ parent: 1
+ - uid: 37231
+ components:
+ - type: Transform
+ pos: 62.5,132.5
+ parent: 1
+ - uid: 37232
+ components:
+ - type: Transform
+ pos: 61.5,132.5
+ parent: 1
+ - uid: 37233
+ components:
+ - type: Transform
+ pos: 61.5,133.5
+ parent: 1
+ - uid: 37234
+ components:
+ - type: Transform
+ pos: 61.5,134.5
+ parent: 1
+ - uid: 37235
+ components:
+ - type: Transform
+ pos: 61.5,135.5
+ parent: 1
+ - uid: 37236
+ components:
+ - type: Transform
+ pos: 61.5,136.5
+ parent: 1
+ - uid: 37237
+ components:
+ - type: Transform
+ pos: 60.5,136.5
+ parent: 1
+ - uid: 37238
+ components:
+ - type: Transform
+ pos: 60.5,137.5
+ parent: 1
+ - uid: 37239
+ components:
+ - type: Transform
+ pos: 60.5,138.5
+ parent: 1
+ - uid: 37240
+ components:
+ - type: Transform
+ pos: 60.5,139.5
+ parent: 1
+ - uid: 37241
+ components:
+ - type: Transform
+ pos: 60.5,140.5
+ parent: 1
+ - uid: 37242
+ components:
+ - type: Transform
+ pos: 60.5,141.5
+ parent: 1
+ - uid: 37243
+ components:
+ - type: Transform
+ pos: 60.5,142.5
+ parent: 1
+ - uid: 37244
+ components:
+ - type: Transform
+ pos: 61.5,142.5
+ parent: 1
+ - uid: 37245
+ components:
+ - type: Transform
+ pos: 61.5,143.5
+ parent: 1
+ - uid: 37246
+ components:
+ - type: Transform
+ pos: 61.5,144.5
+ parent: 1
+ - uid: 37247
+ components:
+ - type: Transform
+ pos: 61.5,145.5
+ parent: 1
+ - uid: 37248
+ components:
+ - type: Transform
+ pos: 61.5,146.5
+ parent: 1
+ - uid: 37249
+ components:
+ - type: Transform
+ pos: 62.5,146.5
+ parent: 1
+ - uid: 37250
+ components:
+ - type: Transform
+ pos: 62.5,147.5
+ parent: 1
+ - uid: 37251
+ components:
+ - type: Transform
+ pos: 62.5,148.5
+ parent: 1
+ - uid: 37252
+ components:
+ - type: Transform
+ pos: 62.5,149.5
+ parent: 1
+ - uid: 37253
+ components:
+ - type: Transform
+ pos: 62.5,150.5
+ parent: 1
+ - uid: 37254
+ components:
+ - type: Transform
+ pos: 63.5,150.5
+ parent: 1
+ - uid: 37255
+ components:
+ - type: Transform
+ pos: 63.5,151.5
+ parent: 1
+ - uid: 37256
+ components:
+ - type: Transform
+ pos: 63.5,152.5
+ parent: 1
+ - uid: 37257
+ components:
+ - type: Transform
+ pos: 63.5,153.5
+ parent: 1
+ - uid: 37258
+ components:
+ - type: Transform
+ pos: 63.5,154.5
+ parent: 1
+ - uid: 37259
+ components:
+ - type: Transform
+ pos: 64.5,154.5
+ parent: 1
+ - uid: 37260
+ components:
+ - type: Transform
+ pos: 65.5,154.5
+ parent: 1
+ - uid: 37261
+ components:
+ - type: Transform
+ pos: 66.5,154.5
+ parent: 1
+ - uid: 37262
+ components:
+ - type: Transform
+ pos: 67.5,154.5
+ parent: 1
+ - uid: 37277
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - uid: 37278
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 37279
+ components:
+ - type: Transform
+ pos: 118.5,151.5
+ parent: 1
+ - uid: 37280
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - uid: 37281
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 37311
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 37312
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 37313
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 37314
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 37315
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 37316
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 37317
+ components:
+ - type: Transform
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 37320
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 37321
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 37336
+ components:
+ - type: Transform
+ pos: 42.5,113.5
+ parent: 1
+ - uid: 37337
+ components:
+ - type: Transform
+ pos: 41.5,113.5
+ parent: 1
+ - uid: 37338
+ components:
+ - type: Transform
+ pos: 41.5,114.5
+ parent: 1
+ - uid: 37339
+ components:
+ - type: Transform
+ pos: 41.5,115.5
+ parent: 1
+ - uid: 37340
+ components:
+ - type: Transform
+ pos: 41.5,116.5
+ parent: 1
+ - uid: 37341
+ components:
+ - type: Transform
+ pos: 41.5,117.5
+ parent: 1
+ - uid: 37342
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 37344
+ components:
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - uid: 37345
+ components:
+ - type: Transform
+ pos: 46.5,90.5
+ parent: 1
+ - uid: 37346
+ components:
+ - type: Transform
+ pos: 47.5,90.5
+ parent: 1
+ - uid: 37347
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 37348
+ components:
+ - type: Transform
+ pos: 47.5,88.5
+ parent: 1
+ - uid: 37349
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 37350
+ components:
+ - type: Transform
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 37353
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 37381
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 37382
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 37383
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 37438
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 37439
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 37440
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 37441
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 37442
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 37443
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 37444
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 37445
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 37446
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 37447
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 37448
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 37461
+ components:
+ - type: Transform
+ pos: 90.5,55.5
+ parent: 1
+ - uid: 37462
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 37500
+ components:
+ - type: Transform
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 37501
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 37505
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+ - uid: 37506
+ components:
+ - type: Transform
+ pos: 44.5,45.5
+ parent: 1
+ - uid: 37507
+ components:
+ - type: Transform
+ pos: 43.5,45.5
+ parent: 1
+ - uid: 37508
+ components:
+ - type: Transform
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 37509
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 37513
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 37514
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 37515
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 37516
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 37552
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+- proto: CableTerminal
+ entities:
+ - uid: 6147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,124.5
+ parent: 1
+ - uid: 9049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 9258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,122.5
+ parent: 1
+ - uid: 9269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,123.5
+ parent: 1
+ - uid: 9270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,126.5
+ parent: 1
+ - uid: 9271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,127.5
+ parent: 1
+ - uid: 9272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,128.5
+ parent: 1
+ - uid: 11547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,143.5
+ parent: 1
+ - uid: 11549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 12343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,59.5
+ parent: 1
+ - uid: 12913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,26.5
+ parent: 1
+ - uid: 13962
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+- proto: Candle
+ entities:
+ - uid: 27054
+ components:
+ - type: Transform
+ pos: 83.68553,72.85085
+ parent: 1
+ - uid: 27057
+ components:
+ - type: Transform
+ pos: 83.75076,76.34065
+ parent: 1
+ - uid: 27061
+ components:
+ - type: Transform
+ pos: 72.58913,73.58074
+ parent: 1
+ - uid: 33506
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.99184,27.169098
+ parent: 1
+- proto: CandleBlue
+ entities:
+ - uid: 26604
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 100.486015,111.99001
+ parent: 1
+- proto: CandleGreen
+ entities:
+ - uid: 26605
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 99.489334,115.01709
+ parent: 1
+- proto: CandlePurple
+ entities:
+ - uid: 26607
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 117.4833,114.999596
+ parent: 1
+ - uid: 36321
+ components:
+ - type: Transform
+ pos: 57.038525,134.16953
+ parent: 1
+- proto: CandlePurpleSmall
+ entities:
+ - uid: 36319
+ components:
+ - type: Transform
+ pos: 57.201603,132.95462
+ parent: 1
+ - uid: 36320
+ components:
+ - type: Transform
+ pos: 58.799732,134.17769
+ parent: 1
+- proto: CandleRed
+ entities:
+ - uid: 26606
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 116.46478,111.99974
+ parent: 1
+- proto: CandleSmall
+ entities:
+ - uid: 27058
+ components:
+ - type: Transform
+ pos: 83.538765,72.626755
+ parent: 1
+ - uid: 27059
+ components:
+ - type: Transform
+ pos: 83.58769,76.581314
+ parent: 1
+ - uid: 27060
+ components:
+ - type: Transform
+ pos: 72.71143,73.784584
+ parent: 1
+- proto: CannabisSeeds
+ entities:
+ - uid: 23033
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 135.37857,48.462723
+ parent: 1
+- proto: CapacitorStockPart
+ entities:
+ - uid: 20973
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 50.349102,92.35627
+ parent: 1
+- proto: CaptainIDCard
+ entities:
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+- proto: CarbonDioxideCanister
+ entities:
+ - uid: 15963
+ components:
+ - type: Transform
+ pos: 85.5,116.5
+ parent: 1
+ - uid: 15970
+ components:
+ - type: Transform
+ pos: 85.5,118.5
+ parent: 1
+ - uid: 15974
+ components:
+ - type: Transform
+ pos: 85.5,117.5
+ parent: 1
+ - uid: 23445
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+- proto: Carpet
+ entities:
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,40.5
+ parent: 1
+ - uid: 4037
+ components:
+ - type: Transform
+ pos: 38.5,71.5
+ parent: 1
+ - uid: 4046
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 6290
+ components:
+ - type: Transform
+ pos: 38.5,72.5
+ parent: 1
+ - uid: 7195
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11256
+ components:
+ - type: Transform
+ pos: 107.5,38.5
+ parent: 1
+ - uid: 23088
+ components:
+ - type: Transform
+ pos: 144.5,65.5
+ parent: 1
+ - uid: 23089
+ components:
+ - type: Transform
+ pos: 144.5,66.5
+ parent: 1
+ - uid: 23090
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 23091
+ components:
+ - type: Transform
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 23092
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 23093
+ components:
+ - type: Transform
+ pos: 142.5,66.5
+ parent: 1
+ - uid: 23893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 24294
+ components:
+ - type: Transform
+ pos: 106.5,38.5
+ parent: 1
+ - uid: 24295
+ components:
+ - type: Transform
+ pos: 78.5,53.5
+ parent: 1
+ - uid: 25527
+ components:
+ - type: Transform
+ pos: 106.5,47.5
+ parent: 1
+ - uid: 25539
+ components:
+ - type: Transform
+ pos: 105.5,47.5
+ parent: 1
+ - uid: 26585
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 26674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,40.5
+ parent: 1
+ - uid: 26996
+ components:
+ - type: Transform
+ pos: 72.5,73.5
+ parent: 1
+ - uid: 26997
+ components:
+ - type: Transform
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 26998
+ components:
+ - type: Transform
+ pos: 72.5,75.5
+ parent: 1
+ - uid: 26999
+ components:
+ - type: Transform
+ pos: 71.5,73.5
+ parent: 1
+ - uid: 27000
+ components:
+ - type: Transform
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 27001
+ components:
+ - type: Transform
+ pos: 71.5,75.5
+ parent: 1
+ - uid: 27002
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 27003
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 27004
+ components:
+ - type: Transform
+ pos: 70.5,75.5
+ parent: 1
+ - uid: 27005
+ components:
+ - type: Transform
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 27006
+ components:
+ - type: Transform
+ pos: 71.5,76.5
+ parent: 1
+ - uid: 27007
+ components:
+ - type: Transform
+ pos: 70.5,76.5
+ parent: 1
+ - uid: 27008
+ components:
+ - type: Transform
+ pos: 75.5,69.5
+ parent: 1
+ - uid: 27009
+ components:
+ - type: Transform
+ pos: 76.5,69.5
+ parent: 1
+ - uid: 27010
+ components:
+ - type: Transform
+ pos: 74.5,69.5
+ parent: 1
+ - uid: 27011
+ components:
+ - type: Transform
+ pos: 82.5,75.5
+ parent: 1
+ - uid: 27012
+ components:
+ - type: Transform
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 27013
+ components:
+ - type: Transform
+ pos: 82.5,73.5
+ parent: 1
+ - uid: 27102
+ components:
+ - type: Transform
+ pos: 78.5,52.5
+ parent: 1
+ - uid: 27181
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 27195
+ components:
+ - type: Transform
+ pos: 105.5,38.5
+ parent: 1
+ - uid: 27251
+ components:
+ - type: Transform
+ pos: 76.5,53.5
+ parent: 1
+ - uid: 27252
+ components:
+ - type: Transform
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 27253
+ components:
+ - type: Transform
+ pos: 77.5,52.5
+ parent: 1
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: 76.5,52.5
+ parent: 1
+ - uid: 27338
+ components:
+ - type: Transform
+ pos: 106.5,46.5
+ parent: 1
+ - uid: 27499
+ components:
+ - type: Transform
+ pos: 105.5,46.5
+ parent: 1
+ - uid: 34571
+ components:
+ - type: Transform
+ pos: 160.5,74.5
+ parent: 1
+ - uid: 34572
+ components:
+ - type: Transform
+ pos: 160.5,75.5
+ parent: 1
+ - uid: 34573
+ components:
+ - type: Transform
+ pos: 159.5,74.5
+ parent: 1
+ - uid: 34574
+ components:
+ - type: Transform
+ pos: 159.5,75.5
+ parent: 1
+ - uid: 37472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 37473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,40.5
+ parent: 1
+- proto: CarpetBlack
+ entities:
+ - uid: 19519
+ components:
+ - type: Transform
+ pos: 144.5,103.5
+ parent: 1
+ - uid: 19520
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19521
+ components:
+ - type: Transform
+ pos: 144.5,105.5
+ parent: 1
+ - uid: 19522
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19523
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19524
+ components:
+ - type: Transform
+ pos: 143.5,103.5
+ parent: 1
+- proto: CarpetBlue
+ entities:
+ - uid: 841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,74.5
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,75.5
+ parent: 1
+ - uid: 1094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,76.5
+ parent: 1
+ - uid: 6424
+ components:
+ - type: Transform
+ pos: 38.5,67.5
+ parent: 1
+ - uid: 6425
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 7203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,51.5
+ parent: 1
+ - uid: 12461
+ components:
+ - type: Transform
+ pos: 102.5,68.5
+ parent: 1
+ - uid: 12462
+ components:
+ - type: Transform
+ pos: 103.5,68.5
+ parent: 1
+ - uid: 12463
+ components:
+ - type: Transform
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 13608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,76.5
+ parent: 1
+ - uid: 13609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,75.5
+ parent: 1
+ - uid: 13610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,74.5
+ parent: 1
+ - uid: 14182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,50.5
+ parent: 1
+ - uid: 14184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 14185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,51.5
+ parent: 1
+ - uid: 14186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,50.5
+ parent: 1
+ - uid: 14187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 18216
+ components:
+ - type: Transform
+ pos: 88.5,91.5
+ parent: 1
+ - uid: 18217
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+ - uid: 18218
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 18219
+ components:
+ - type: Transform
+ pos: 87.5,91.5
+ parent: 1
+ - uid: 18220
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18221
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - uid: 27078
+ components:
+ - type: Transform
+ pos: 103.5,67.5
+ parent: 1
+ - uid: 30311
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+ - uid: 30312
+ components:
+ - type: Transform
+ pos: 135.5,152.5
+ parent: 1
+ - uid: 30313
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - uid: 30314
+ components:
+ - type: Transform
+ pos: 134.5,152.5
+ parent: 1
+- proto: CarpetChapel
+ entities:
+ - uid: 26944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,73.5
+ parent: 1
+ - uid: 26946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 26947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,75.5
+ parent: 1
+ - uid: 26948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,75.5
+ parent: 1
+ - uid: 26949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,76.5
+ parent: 1
+ - uid: 26950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,73.5
+ parent: 1
+ - uid: 26951
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 26953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 26954
+ components:
+ - type: Transform
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 26955
+ components:
+ - type: Transform
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 26956
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 26959
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 26960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,72.5
+ parent: 1
+ - uid: 26961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,76.5
+ parent: 1
+ - uid: 26962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,72.5
+ parent: 1
+ - uid: 26963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,76.5
+ parent: 1
+ - uid: 26966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,75.5
+ parent: 1
+ - uid: 26967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,76.5
+ parent: 1
+ - uid: 26968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 26969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,72.5
+ parent: 1
+ - uid: 26970
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 26971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,73.5
+ parent: 1
+ - uid: 26972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,76.5
+ parent: 1
+ - uid: 26973
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+- proto: CarpetCyan
+ entities:
+ - uid: 12467
+ components:
+ - type: Transform
+ pos: 107.5,69.5
+ parent: 1
+ - uid: 12468
+ components:
+ - type: Transform
+ pos: 105.5,69.5
+ parent: 1
+ - uid: 12469
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+ - uid: 27083
+ components:
+ - type: Transform
+ pos: 105.5,68.5
+ parent: 1
+ - uid: 27085
+ components:
+ - type: Transform
+ pos: 106.5,68.5
+ parent: 1
+ - uid: 27087
+ components:
+ - type: Transform
+ pos: 107.5,68.5
+ parent: 1
+ - uid: 34575
+ components:
+ - type: Transform
+ pos: 160.5,70.5
+ parent: 1
+ - uid: 34576
+ components:
+ - type: Transform
+ pos: 160.5,69.5
+ parent: 1
+ - uid: 34577
+ components:
+ - type: Transform
+ pos: 159.5,70.5
+ parent: 1
+ - uid: 34578
+ components:
+ - type: Transform
+ pos: 159.5,69.5
+ parent: 1
+- proto: CarpetGreen
+ entities:
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 145.5,122.5
+ parent: 1
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 145.5,123.5
+ parent: 1
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 145.5,124.5
+ parent: 1
+ - uid: 7726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,58.5
+ parent: 1
+ - uid: 11356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,136.5
+ parent: 1
+ - uid: 11359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,136.5
+ parent: 1
+ - uid: 12464
+ components:
+ - type: Transform
+ pos: 109.5,68.5
+ parent: 1
+ - uid: 12465
+ components:
+ - type: Transform
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 12466
+ components:
+ - type: Transform
+ pos: 110.5,68.5
+ parent: 1
+ - uid: 15325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,137.5
+ parent: 1
+ - uid: 16020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,137.5
+ parent: 1
+ - uid: 16021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,135.5
+ parent: 1
+ - uid: 18155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,124.5
+ parent: 1
+ - uid: 20139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,122.5
+ parent: 1
+ - uid: 27088
+ components:
+ - type: Transform
+ pos: 109.5,67.5
+ parent: 1
+ - uid: 27123
+ components:
+ - type: Transform
+ pos: 78.5,56.5
+ parent: 1
+ - uid: 27231
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27232
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27233
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - uid: 27234
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 27235
+ components:
+ - type: Transform
+ pos: 77.5,56.5
+ parent: 1
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 77.5,57.5
+ parent: 1
+ - uid: 27238
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27239
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 27240
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 27241
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+ - uid: 27242
+ components:
+ - type: Transform
+ pos: 76.5,59.5
+ parent: 1
+ - uid: 27243
+ components:
+ - type: Transform
+ pos: 76.5,56.5
+ parent: 1
+ - uid: 27244
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 27245
+ components:
+ - type: Transform
+ pos: 75.5,59.5
+ parent: 1
+ - uid: 27246
+ components:
+ - type: Transform
+ pos: 75.5,58.5
+ parent: 1
+ - uid: 27247
+ components:
+ - type: Transform
+ pos: 75.5,57.5
+ parent: 1
+ - uid: 27248
+ components:
+ - type: Transform
+ pos: 79.5,57.5
+ parent: 1
+ - uid: 27249
+ components:
+ - type: Transform
+ pos: 79.5,58.5
+ parent: 1
+ - uid: 27250
+ components:
+ - type: Transform
+ pos: 79.5,59.5
+ parent: 1
+ - uid: 27310
+ components:
+ - type: Transform
+ pos: 78.5,49.5
+ parent: 1
+ - uid: 27311
+ components:
+ - type: Transform
+ pos: 78.5,48.5
+ parent: 1
+ - uid: 27312
+ components:
+ - type: Transform
+ pos: 79.5,49.5
+ parent: 1
+ - uid: 27313
+ components:
+ - type: Transform
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 27314
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+ - uid: 27315
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - uid: 29770
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - uid: 29771
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 29772
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+ - uid: 29773
+ components:
+ - type: Transform
+ pos: 158.5,143.5
+ parent: 1
+ - uid: 29815
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29816
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29817
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+ - uid: 35758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 35759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,121.5
+ parent: 1
+ - uid: 35760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,121.5
+ parent: 1
+ - uid: 35761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,122.5
+ parent: 1
+ - uid: 35762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,124.5
+ parent: 1
+ - uid: 35763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,123.5
+ parent: 1
+ - uid: 37173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,135.5
+ parent: 1
+- proto: CarpetOrange
+ entities:
+ - uid: 7580
+ components:
+ - type: Transform
+ pos: 72.5,58.5
+ parent: 1
+ - uid: 7618
+ components:
+ - type: Transform
+ pos: 72.5,57.5
+ parent: 1
+ - uid: 8005
+ components:
+ - type: Transform
+ pos: 71.5,59.5
+ parent: 1
+ - uid: 8006
+ components:
+ - type: Transform
+ pos: 70.5,57.5
+ parent: 1
+ - uid: 8007
+ components:
+ - type: Transform
+ pos: 70.5,58.5
+ parent: 1
+ - uid: 11354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,134.5
+ parent: 1
+ - uid: 13574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,133.5
+ parent: 1
+ - uid: 18585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,143.5
+ parent: 1
+ - uid: 18586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 18587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,145.5
+ parent: 1
+ - uid: 18588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,143.5
+ parent: 1
+ - uid: 18589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 18590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,145.5
+ parent: 1
+ - uid: 19338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,133.5
+ parent: 1
+ - uid: 23614
+ components:
+ - type: Transform
+ pos: 71.5,58.5
+ parent: 1
+ - uid: 23615
+ components:
+ - type: Transform
+ pos: 70.5,59.5
+ parent: 1
+ - uid: 27098
+ components:
+ - type: Transform
+ pos: 73.5,57.5
+ parent: 1
+ - uid: 27103
+ components:
+ - type: Transform
+ pos: 73.5,58.5
+ parent: 1
+ - uid: 27179
+ components:
+ - type: Transform
+ pos: 73.5,59.5
+ parent: 1
+ - uid: 27188
+ components:
+ - type: Transform
+ pos: 72.5,59.5
+ parent: 1
+ - uid: 29774
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+ - uid: 29775
+ components:
+ - type: Transform
+ pos: 155.5,143.5
+ parent: 1
+ - uid: 29776
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - uid: 29777
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 30425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,134.5
+ parent: 1
+ - uid: 35215
+ components:
+ - type: Transform
+ pos: 71.5,57.5
+ parent: 1
+ - uid: 37480
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 37481
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 37482
+ components:
+ - type: Transform
+ pos: 87.5,54.5
+ parent: 1
+ - uid: 37483
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 37484
+ components:
+ - type: Transform
+ pos: 86.5,54.5
+ parent: 1
+ - uid: 37485
+ components:
+ - type: Transform
+ pos: 86.5,55.5
+ parent: 1
+- proto: CarpetPink
+ entities:
+ - uid: 2352
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 2494
+ components:
+ - type: Transform
+ pos: 63.5,51.5
+ parent: 1
+ - uid: 9670
+ components:
+ - type: Transform
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 9841
+ components:
+ - type: Transform
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 9843
+ components:
+ - type: Transform
+ pos: 64.5,51.5
+ parent: 1
+ - uid: 16612
+ components:
+ - type: Transform
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 29778
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+ - uid: 29779
+ components:
+ - type: Transform
+ pos: 156.5,133.5
+ parent: 1
+ - uid: 29780
+ components:
+ - type: Transform
+ pos: 155.5,134.5
+ parent: 1
+ - uid: 29781
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 37174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,133.5
+ parent: 1
+ - uid: 37175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,132.5
+ parent: 1
+- proto: CarpetPurple
+ entities:
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 56.5,133.5
+ parent: 1
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 56.5,132.5
+ parent: 1
+ - uid: 7582
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - uid: 7601
+ components:
+ - type: Transform
+ pos: 73.5,53.5
+ parent: 1
+ - uid: 7650
+ components:
+ - type: Transform
+ pos: 73.5,54.5
+ parent: 1
+ - uid: 7872
+ components:
+ - type: Transform
+ pos: 73.5,55.5
+ parent: 1
+ - uid: 7995
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - uid: 20984
+ components:
+ - type: Transform
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 20985
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20986
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20988
+ components:
+ - type: Transform
+ pos: 38.5,105.5
+ parent: 1
+ - uid: 20989
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20990
+ components:
+ - type: Transform
+ pos: 38.5,107.5
+ parent: 1
+ - uid: 23616
+ components:
+ - type: Transform
+ pos: 71.5,55.5
+ parent: 1
+ - uid: 27189
+ components:
+ - type: Transform
+ pos: 72.5,55.5
+ parent: 1
+ - uid: 27589
+ components:
+ - type: Transform
+ pos: 70.5,55.5
+ parent: 1
+ - uid: 27596
+ components:
+ - type: Transform
+ pos: 70.5,54.5
+ parent: 1
+ - uid: 29710
+ components:
+ - type: Transform
+ pos: 70.5,53.5
+ parent: 1
+ - uid: 29782
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+ - uid: 29783
+ components:
+ - type: Transform
+ pos: 152.5,143.5
+ parent: 1
+ - uid: 29784
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - uid: 29785
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 34170
+ components:
+ - type: Transform
+ pos: 71.5,54.5
+ parent: 1
+ - uid: 34183
+ components:
+ - type: Transform
+ pos: 71.5,53.5
+ parent: 1
+ - uid: 36194
+ components:
+ - type: Transform
+ pos: 56.5,134.5
+ parent: 1
+ - uid: 36195
+ components:
+ - type: Transform
+ pos: 57.5,132.5
+ parent: 1
+ - uid: 36196
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 36197
+ components:
+ - type: Transform
+ pos: 57.5,134.5
+ parent: 1
+ - uid: 36198
+ components:
+ - type: Transform
+ pos: 58.5,132.5
+ parent: 1
+ - uid: 36212
+ components:
+ - type: Transform
+ pos: 58.5,133.5
+ parent: 1
+ - uid: 36267
+ components:
+ - type: Transform
+ pos: 58.5,134.5
+ parent: 1
+ - uid: 36268
+ components:
+ - type: Transform
+ pos: 59.5,132.5
+ parent: 1
+ - uid: 36269
+ components:
+ - type: Transform
+ pos: 59.5,133.5
+ parent: 1
+ - uid: 36274
+ components:
+ - type: Transform
+ pos: 59.5,134.5
+ parent: 1
+- proto: CarpetSBlue
+ entities:
+ - uid: 29790
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 29791
+ components:
+ - type: Transform
+ pos: 153.5,133.5
+ parent: 1
+ - uid: 29792
+ components:
+ - type: Transform
+ pos: 152.5,134.5
+ parent: 1
+ - uid: 29793
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+- proto: CarpetWhite
+ entities:
+ - uid: 29786
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+ - uid: 29787
+ components:
+ - type: Transform
+ pos: 159.5,133.5
+ parent: 1
+ - uid: 29788
+ components:
+ - type: Transform
+ pos: 158.5,134.5
+ parent: 1
+ - uid: 29789
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+- proto: CartridgeCap
+ entities:
+ - uid: 35849
+ components:
+ - type: Transform
+ pos: 124.41897,170.6082
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,141.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,141.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,126.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,129.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,127.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,128.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,130.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 79.5,13.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 76.5,13.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 172.5,73.5
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,126.5
+ parent: 1
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,127.5
+ parent: 1
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: 173.5,73.5
+ parent: 1
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,35.5
+ parent: 1
+ - uid: 1472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 1484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,92.5
+ parent: 1
+ - uid: 1540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,31.5
+ parent: 1
+ - uid: 1556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,31.5
+ parent: 1
+ - uid: 1557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 169.5,73.5
+ parent: 1
+ - uid: 1650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 1675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 1822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 1866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: 171.5,73.5
+ parent: 1
+ - uid: 2087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 2347
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 2360
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 2495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 2544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 2606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 2630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 2755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 2886
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 3189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 3192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 3237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 3259
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 3266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 3316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 3338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 3717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,124.5
+ parent: 1
+ - uid: 3762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,62.5
+ parent: 1
+ - uid: 3763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 184.5,62.5
+ parent: 1
+ - uid: 3791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 3854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 3861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 3873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 3929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 3935
+ components:
+ - type: Transform
+ pos: 179.5,73.5
+ parent: 1
+ - uid: 3948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 3950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 4040
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 4126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,63.5
+ parent: 1
+ - uid: 4129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,62.5
+ parent: 1
+ - uid: 4130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 185.5,62.5
+ parent: 1
+ - uid: 4178
+ components:
+ - type: Transform
+ pos: 170.5,73.5
+ parent: 1
+ - uid: 4200
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 4201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 4217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 4254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: 178.5,73.5
+ parent: 1
+ - uid: 4309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 4385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 4469
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 4538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 4541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 4628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 4678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 4700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 4703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 4720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 4722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 4942
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 5004
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 5033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 5077
+ components:
+ - type: Transform
+ pos: 168.5,76.5
+ parent: 1
+ - uid: 5078
+ components:
+ - type: Transform
+ pos: 168.5,75.5
+ parent: 1
+ - uid: 5108
+ components:
+ - type: Transform
+ pos: 168.5,73.5
+ parent: 1
+ - uid: 5109
+ components:
+ - type: Transform
+ pos: 175.5,73.5
+ parent: 1
+ - uid: 5120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,174.5
+ parent: 1
+ - uid: 5155
+ components:
+ - type: Transform
+ pos: 176.5,73.5
+ parent: 1
+ - uid: 5156
+ components:
+ - type: Transform
+ pos: 177.5,73.5
+ parent: 1
+ - uid: 5157
+ components:
+ - type: Transform
+ pos: 174.5,73.5
+ parent: 1
+ - uid: 5319
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 5420
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 5426
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 5430
+ components:
+ - type: Transform
+ pos: 122.5,160.5
+ parent: 1
+ - uid: 5480
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 5550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,60.5
+ parent: 1
+ - uid: 5551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,59.5
+ parent: 1
+ - uid: 5554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,61.5
+ parent: 1
+ - uid: 5590
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 5654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,89.5
+ parent: 1
+ - uid: 5760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 5798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 5808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 6024
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 6039
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 6068
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 6069
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 6073
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 6328
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 6551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 6554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 6560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 6565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 6638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 6778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 6781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 7113
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 7291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 8049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,62.5
+ parent: 1
+ - uid: 8088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,125.5
+ parent: 1
+ - uid: 8104
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 8382
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 8411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 8544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 8559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,73.5
+ parent: 1
+ - uid: 9404
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 9667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 9668
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 9674
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 9681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,72.5
+ parent: 1
+ - uid: 9709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,37.5
+ parent: 1
+ - uid: 9731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,71.5
+ parent: 1
+ - uid: 9743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,69.5
+ parent: 1
+ - uid: 9744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,70.5
+ parent: 1
+ - uid: 9747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,65.5
+ parent: 1
+ - uid: 9752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,68.5
+ parent: 1
+ - uid: 9795
+ components:
+ - type: Transform
+ pos: 168.5,79.5
+ parent: 1
+ - uid: 9796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,64.5
+ parent: 1
+ - uid: 9800
+ components:
+ - type: Transform
+ pos: 167.5,79.5
+ parent: 1
+ - uid: 9805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,67.5
+ parent: 1
+ - uid: 9807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,66.5
+ parent: 1
+ - uid: 9819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 181.5,73.5
+ parent: 1
+ - uid: 9998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 10262
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 10315
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 10319
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 10324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 10328
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 10391
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 10464
+ components:
+ - type: Transform
+ pos: 121.5,160.5
+ parent: 1
+ - uid: 10494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 10716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 10729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 10731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 10904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 11098
+ components:
+ - type: Transform
+ pos: 110.5,33.5
+ parent: 1
+ - uid: 11099
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 11100
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 11104
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 11106
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 11174
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 11344
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 11914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,173.5
+ parent: 1
+ - uid: 11967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 11968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 11969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 11986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 11987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 11988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 12016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,81.5
+ parent: 1
+ - uid: 12018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 12065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 12425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 12426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 12427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 12428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 12429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 12433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 12434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 12435
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 12436
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 12438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 12510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 12514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 12515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 13274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 13313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 13472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 13496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 13627
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 13632
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 13658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 13703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 14118
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 14119
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 14120
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 14121
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 14122
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 14126
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 14127
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 14128
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 14129
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 14130
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 14131
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 14132
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 14133
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 14134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 14135
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 14136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 14137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 14138
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 14139
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 14140
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 14141
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 14142
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 14143
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 14144
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 14145
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 14146
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 14150
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 14151
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 14152
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 14153
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 14154
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 14155
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 14156
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 14157
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 14158
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 14161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 14162
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 14163
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 14164
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 14165
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 14649
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 14650
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 14688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 14745
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 14746
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 14747
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 14776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,45.5
+ parent: 1
+ - uid: 14817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 14819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 14982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 14986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 15083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 15087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 15091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 15302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 15307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 15322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 15329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 15462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 16225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 16226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 16228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 16229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 16256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 16281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 16282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 16283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 16284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 16285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 16286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 16287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 16288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 16289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 16293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 16825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 16826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,174.5
+ parent: 1
+ - uid: 16828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 16838
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 16913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 16914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 16915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 16917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 16930
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 17035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 17036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 17299
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 17300
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 17304
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 18199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 18231
+ components:
+ - type: Transform
+ pos: 168.5,129.5
+ parent: 1
+ - uid: 18263
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 18264
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 18265
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18266
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 18269
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 18270
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 18310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 18350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 18351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 18357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 18402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 18460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 18474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 18523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 18530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 18584
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 18708
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 18710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,96.5
+ parent: 1
+ - uid: 18736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 18737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 18745
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 18889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 18893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 19051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 19161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 19215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 19223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,172.5
+ parent: 1
+ - uid: 19236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 19265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,96.5
+ parent: 1
+ - uid: 19266
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 19325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 19402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 19408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 19443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 19445
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 19448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 19452
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 19568
+ components:
+ - type: Transform
+ pos: 163.5,90.5
+ parent: 1
+ - uid: 19569
+ components:
+ - type: Transform
+ pos: 163.5,91.5
+ parent: 1
+ - uid: 19570
+ components:
+ - type: Transform
+ pos: 162.5,90.5
+ parent: 1
+ - uid: 19571
+ components:
+ - type: Transform
+ pos: 162.5,91.5
+ parent: 1
+ - uid: 19572
+ components:
+ - type: Transform
+ pos: 161.5,90.5
+ parent: 1
+ - uid: 19573
+ components:
+ - type: Transform
+ pos: 161.5,91.5
+ parent: 1
+ - uid: 19574
+ components:
+ - type: Transform
+ pos: 160.5,90.5
+ parent: 1
+ - uid: 19575
+ components:
+ - type: Transform
+ pos: 160.5,91.5
+ parent: 1
+ - uid: 19576
+ components:
+ - type: Transform
+ pos: 159.5,90.5
+ parent: 1
+ - uid: 19577
+ components:
+ - type: Transform
+ pos: 159.5,91.5
+ parent: 1
+ - uid: 19578
+ components:
+ - type: Transform
+ pos: 158.5,90.5
+ parent: 1
+ - uid: 19579
+ components:
+ - type: Transform
+ pos: 158.5,91.5
+ parent: 1
+ - uid: 19580
+ components:
+ - type: Transform
+ pos: 162.5,89.5
+ parent: 1
+ - uid: 19581
+ components:
+ - type: Transform
+ pos: 163.5,89.5
+ parent: 1
+ - uid: 19582
+ components:
+ - type: Transform
+ pos: 163.5,92.5
+ parent: 1
+ - uid: 19583
+ components:
+ - type: Transform
+ pos: 162.5,92.5
+ parent: 1
+ - uid: 19586
+ components:
+ - type: Transform
+ pos: 162.5,107.5
+ parent: 1
+ - uid: 19587
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - uid: 19588
+ components:
+ - type: Transform
+ pos: 160.5,107.5
+ parent: 1
+ - uid: 19589
+ components:
+ - type: Transform
+ pos: 159.5,107.5
+ parent: 1
+ - uid: 19590
+ components:
+ - type: Transform
+ pos: 159.5,109.5
+ parent: 1
+ - uid: 19591
+ components:
+ - type: Transform
+ pos: 160.5,109.5
+ parent: 1
+ - uid: 19592
+ components:
+ - type: Transform
+ pos: 161.5,109.5
+ parent: 1
+ - uid: 19593
+ components:
+ - type: Transform
+ pos: 162.5,109.5
+ parent: 1
+ - uid: 21038
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 21040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 21051
+ components:
+ - type: Transform
+ pos: 147.5,86.5
+ parent: 1
+ - uid: 21655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 21672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 22420
+ components:
+ - type: Transform
+ pos: 146.5,86.5
+ parent: 1
+ - uid: 22421
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 22429
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 22550
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 22555
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 22589
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 22594
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 22748
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 23085
+ components:
+ - type: Transform
+ pos: 139.5,40.5
+ parent: 1
+ - uid: 23086
+ components:
+ - type: Transform
+ pos: 140.5,40.5
+ parent: 1
+ - uid: 23087
+ components:
+ - type: Transform
+ pos: 141.5,40.5
+ parent: 1
+ - uid: 23252
+ components:
+ - type: Transform
+ pos: 153.5,86.5
+ parent: 1
+ - uid: 23336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 23377
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 23398
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 23407
+ components:
+ - type: Transform
+ pos: 148.5,86.5
+ parent: 1
+ - uid: 23457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 23460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,96.5
+ parent: 1
+ - uid: 23531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 23568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 23569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 23571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 23660
+ components:
+ - type: Transform
+ pos: 169.5,129.5
+ parent: 1
+ - uid: 23679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 23680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 23685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 23697
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 23713
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 23756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 24288
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 24392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 24394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 24396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 24542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,36.5
+ parent: 1
+ - uid: 24548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 24701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 24782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 24808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 25129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 25130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 25217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 25288
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 25293
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 25294
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 26316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 26317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 27080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 27191
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 27395
+ components:
+ - type: Transform
+ pos: 121.5,82.5
+ parent: 1
+ - uid: 27396
+ components:
+ - type: Transform
+ pos: 120.5,82.5
+ parent: 1
+ - uid: 27642
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 28168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,47.5
+ parent: 1
+ - uid: 28186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,47.5
+ parent: 1
+ - uid: 28191
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 28436
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 28791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 29041
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 29042
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 29043
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 29044
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 29045
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 29046
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 29047
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 29048
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 29049
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 29050
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 29051
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 29052
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 29067
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 29068
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 29069
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 29070
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 29071
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 29072
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 29073
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 29084
+ components:
+ - type: Transform
+ pos: 116.5,57.5
+ parent: 1
+ - uid: 29085
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 29086
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 29087
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 29088
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 29089
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 29095
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 29106
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 29107
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 29109
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 29110
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 29113
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 29115
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 29116
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 29118
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 29150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,80.5
+ parent: 1
+ - uid: 29151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,79.5
+ parent: 1
+ - uid: 29152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,78.5
+ parent: 1
+ - uid: 29198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,160.5
+ parent: 1
+ - uid: 29199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,121.5
+ parent: 1
+ - uid: 29200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,121.5
+ parent: 1
+ - uid: 29201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,121.5
+ parent: 1
+ - uid: 29202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,160.5
+ parent: 1
+ - uid: 29203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,160.5
+ parent: 1
+ - uid: 29303
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 29308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 29356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 29583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 29885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 30022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 30125
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 30161
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 30211
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 30373
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 30374
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 30375
+ components:
+ - type: Transform
+ pos: 162.5,116.5
+ parent: 1
+ - uid: 30376
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 30377
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 30378
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 30379
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 30380
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 30383
+ components:
+ - type: Transform
+ pos: 161.5,123.5
+ parent: 1
+ - uid: 30384
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 30385
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 30386
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 30387
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 30388
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 30390
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 30402
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 30403
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 30405
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 30406
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 30407
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 30408
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 30414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,35.5
+ parent: 1
+ - uid: 30416
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 30418
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 30419
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 30420
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 30421
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 30422
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 30427
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 30428
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 30429
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 30430
+ components:
+ - type: Transform
+ pos: 152.5,126.5
+ parent: 1
+ - uid: 30431
+ components:
+ - type: Transform
+ pos: 152.5,125.5
+ parent: 1
+ - uid: 30432
+ components:
+ - type: Transform
+ pos: 152.5,124.5
+ parent: 1
+ - uid: 30433
+ components:
+ - type: Transform
+ pos: 152.5,123.5
+ parent: 1
+ - uid: 30434
+ components:
+ - type: Transform
+ pos: 152.5,122.5
+ parent: 1
+ - uid: 30435
+ components:
+ - type: Transform
+ pos: 152.5,121.5
+ parent: 1
+ - uid: 30436
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 30437
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 30448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 30458
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 30459
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 30460
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 30461
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 30462
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 30463
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 30464
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 30465
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 30466
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 30467
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 30468
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 30539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 30540
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 30549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 30551
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 30552
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 30556
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 30557
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 30558
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 30560
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 30561
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 30566
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 30567
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 30569
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30570
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30571
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30572
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30573
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30574
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 30575
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 30576
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30577
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30578
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 30579
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 30580
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 30581
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 30582
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 30583
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 30584
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 30585
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 30586
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 30587
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 30588
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 30589
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 30590
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 30591
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 30592
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 30593
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 30595
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 30603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 30604
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 30606
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 30607
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 30608
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 30609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,169.5
+ parent: 1
+ - uid: 30610
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 30611
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 30613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 30620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 30621
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 30622
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 30623
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 30625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 30638
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 30639
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 30641
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 30642
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 30643
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 30644
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 30645
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 30647
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 30648
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 30650
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 30651
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 30652
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 30654
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 30655
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 30661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 30663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 30679
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30680
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30681
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30682
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30683
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30684
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30750
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 30767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,141.5
+ parent: 1
+ - uid: 30794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,141.5
+ parent: 1
+ - uid: 30801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,141.5
+ parent: 1
+ - uid: 30865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,171.5
+ parent: 1
+ - uid: 30879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,141.5
+ parent: 1
+ - uid: 30880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,141.5
+ parent: 1
+ - uid: 30881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,141.5
+ parent: 1
+ - uid: 30882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,141.5
+ parent: 1
+ - uid: 30883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,141.5
+ parent: 1
+ - uid: 30884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,141.5
+ parent: 1
+ - uid: 30885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,141.5
+ parent: 1
+ - uid: 30886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,141.5
+ parent: 1
+ - uid: 30887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,141.5
+ parent: 1
+ - uid: 30961
+ components:
+ - type: Transform
+ pos: 168.5,74.5
+ parent: 1
+ - uid: 30962
+ components:
+ - type: Transform
+ pos: 168.5,77.5
+ parent: 1
+ - uid: 30992
+ components:
+ - type: Transform
+ pos: 168.5,78.5
+ parent: 1
+ - uid: 31057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,140.5
+ parent: 1
+ - uid: 31058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,139.5
+ parent: 1
+ - uid: 31059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,138.5
+ parent: 1
+ - uid: 31060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,137.5
+ parent: 1
+ - uid: 31061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,136.5
+ parent: 1
+ - uid: 31062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,135.5
+ parent: 1
+ - uid: 31063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,134.5
+ parent: 1
+ - uid: 31064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,133.5
+ parent: 1
+ - uid: 31065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,132.5
+ parent: 1
+ - uid: 31066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,131.5
+ parent: 1
+ - uid: 31067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,130.5
+ parent: 1
+ - uid: 31068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,129.5
+ parent: 1
+ - uid: 31069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,129.5
+ parent: 1
+ - uid: 31070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,130.5
+ parent: 1
+ - uid: 31071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,131.5
+ parent: 1
+ - uid: 31072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,132.5
+ parent: 1
+ - uid: 31073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,133.5
+ parent: 1
+ - uid: 31074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,134.5
+ parent: 1
+ - uid: 31075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,135.5
+ parent: 1
+ - uid: 31076
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,136.5
+ parent: 1
+ - uid: 31077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,137.5
+ parent: 1
+ - uid: 31078
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,138.5
+ parent: 1
+ - uid: 31079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,139.5
+ parent: 1
+ - uid: 31080
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,140.5
+ parent: 1
+ - uid: 31081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,129.5
+ parent: 1
+ - uid: 31082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,130.5
+ parent: 1
+ - uid: 31083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,131.5
+ parent: 1
+ - uid: 31084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,132.5
+ parent: 1
+ - uid: 31085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,133.5
+ parent: 1
+ - uid: 31086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,134.5
+ parent: 1
+ - uid: 31087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,135.5
+ parent: 1
+ - uid: 31088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,136.5
+ parent: 1
+ - uid: 31089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,138.5
+ parent: 1
+ - uid: 31090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,139.5
+ parent: 1
+ - uid: 31091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,137.5
+ parent: 1
+ - uid: 31092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,140.5
+ parent: 1
+ - uid: 31093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,142.5
+ parent: 1
+ - uid: 31094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,143.5
+ parent: 1
+ - uid: 31095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,144.5
+ parent: 1
+ - uid: 31096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,145.5
+ parent: 1
+ - uid: 31097
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,146.5
+ parent: 1
+ - uid: 31098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,147.5
+ parent: 1
+ - uid: 31099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,148.5
+ parent: 1
+ - uid: 31100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,149.5
+ parent: 1
+ - uid: 31101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,151.5
+ parent: 1
+ - uid: 31102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,150.5
+ parent: 1
+ - uid: 31103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,152.5
+ parent: 1
+ - uid: 31104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,153.5
+ parent: 1
+ - uid: 31105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,153.5
+ parent: 1
+ - uid: 31106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,152.5
+ parent: 1
+ - uid: 31107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,151.5
+ parent: 1
+ - uid: 31108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,149.5
+ parent: 1
+ - uid: 31109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,148.5
+ parent: 1
+ - uid: 31110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,147.5
+ parent: 1
+ - uid: 31111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,146.5
+ parent: 1
+ - uid: 31112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,145.5
+ parent: 1
+ - uid: 31113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,144.5
+ parent: 1
+ - uid: 31114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,143.5
+ parent: 1
+ - uid: 31115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,142.5
+ parent: 1
+ - uid: 31116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,150.5
+ parent: 1
+ - uid: 31117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,142.5
+ parent: 1
+ - uid: 31118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,144.5
+ parent: 1
+ - uid: 31119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,145.5
+ parent: 1
+ - uid: 31120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,146.5
+ parent: 1
+ - uid: 31121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,143.5
+ parent: 1
+ - uid: 31122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,148.5
+ parent: 1
+ - uid: 31123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,147.5
+ parent: 1
+ - uid: 31124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,149.5
+ parent: 1
+ - uid: 31125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,150.5
+ parent: 1
+ - uid: 31126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,151.5
+ parent: 1
+ - uid: 31127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,152.5
+ parent: 1
+ - uid: 31128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,153.5
+ parent: 1
+ - uid: 31135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,53.5
+ parent: 1
+ - uid: 31157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,53.5
+ parent: 1
+ - uid: 31158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,53.5
+ parent: 1
+ - uid: 31159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,53.5
+ parent: 1
+ - uid: 31160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,53.5
+ parent: 1
+ - uid: 31161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,53.5
+ parent: 1
+ - uid: 31162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,53.5
+ parent: 1
+ - uid: 31163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,53.5
+ parent: 1
+ - uid: 31164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,26.5
+ parent: 1
+ - uid: 31165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,54.5
+ parent: 1
+ - uid: 31166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,55.5
+ parent: 1
+ - uid: 31167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,56.5
+ parent: 1
+ - uid: 31168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,57.5
+ parent: 1
+ - uid: 31169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,58.5
+ parent: 1
+ - uid: 31170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,59.5
+ parent: 1
+ - uid: 31171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,60.5
+ parent: 1
+ - uid: 31172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,61.5
+ parent: 1
+ - uid: 31173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,62.5
+ parent: 1
+ - uid: 31174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,63.5
+ parent: 1
+ - uid: 31175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,65.5
+ parent: 1
+ - uid: 31176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,64.5
+ parent: 1
+ - uid: 31177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,65.5
+ parent: 1
+ - uid: 31178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,64.5
+ parent: 1
+ - uid: 31179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,63.5
+ parent: 1
+ - uid: 31180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,62.5
+ parent: 1
+ - uid: 31181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,61.5
+ parent: 1
+ - uid: 31182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,60.5
+ parent: 1
+ - uid: 31183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,59.5
+ parent: 1
+ - uid: 31184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,58.5
+ parent: 1
+ - uid: 31185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,57.5
+ parent: 1
+ - uid: 31186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,56.5
+ parent: 1
+ - uid: 31187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,55.5
+ parent: 1
+ - uid: 31188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,54.5
+ parent: 1
+ - uid: 31189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,52.5
+ parent: 1
+ - uid: 31190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,51.5
+ parent: 1
+ - uid: 31191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,50.5
+ parent: 1
+ - uid: 31192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,49.5
+ parent: 1
+ - uid: 31193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,48.5
+ parent: 1
+ - uid: 31194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,47.5
+ parent: 1
+ - uid: 31195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,45.5
+ parent: 1
+ - uid: 31196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,46.5
+ parent: 1
+ - uid: 31197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,43.5
+ parent: 1
+ - uid: 31198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,42.5
+ parent: 1
+ - uid: 31199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,44.5
+ parent: 1
+ - uid: 31200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,41.5
+ parent: 1
+ - uid: 31201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,40.5
+ parent: 1
+ - uid: 31202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,39.5
+ parent: 1
+ - uid: 31203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,38.5
+ parent: 1
+ - uid: 31204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,37.5
+ parent: 1
+ - uid: 31205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,36.5
+ parent: 1
+ - uid: 31206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,35.5
+ parent: 1
+ - uid: 31207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,34.5
+ parent: 1
+ - uid: 31208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,33.5
+ parent: 1
+ - uid: 31209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1
+ - uid: 31210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,31.5
+ parent: 1
+ - uid: 31211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,30.5
+ parent: 1
+ - uid: 31212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,29.5
+ parent: 1
+ - uid: 31213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,28.5
+ parent: 1
+ - uid: 31214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,27.5
+ parent: 1
+ - uid: 31215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,26.5
+ parent: 1
+ - uid: 31216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,27.5
+ parent: 1
+ - uid: 31217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,28.5
+ parent: 1
+ - uid: 31218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,29.5
+ parent: 1
+ - uid: 31219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,30.5
+ parent: 1
+ - uid: 31220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,31.5
+ parent: 1
+ - uid: 31221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,32.5
+ parent: 1
+ - uid: 31222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,33.5
+ parent: 1
+ - uid: 31223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,34.5
+ parent: 1
+ - uid: 31224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,35.5
+ parent: 1
+ - uid: 31225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,37.5
+ parent: 1
+ - uid: 31226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,36.5
+ parent: 1
+ - uid: 31227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,38.5
+ parent: 1
+ - uid: 31228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,38.5
+ parent: 1
+ - uid: 31229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,38.5
+ parent: 1
+ - uid: 31230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,38.5
+ parent: 1
+ - uid: 31231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,38.5
+ parent: 1
+ - uid: 31232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,38.5
+ parent: 1
+ - uid: 31233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,38.5
+ parent: 1
+ - uid: 31234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,38.5
+ parent: 1
+ - uid: 31235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,38.5
+ parent: 1
+ - uid: 31236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,38.5
+ parent: 1
+ - uid: 31237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,38.5
+ parent: 1
+ - uid: 31238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,38.5
+ parent: 1
+ - uid: 31239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,38.5
+ parent: 1
+ - uid: 31240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,39.5
+ parent: 1
+ - uid: 31241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,37.5
+ parent: 1
+ - uid: 31242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,36.5
+ parent: 1
+ - uid: 31243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,35.5
+ parent: 1
+ - uid: 31244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,34.5
+ parent: 1
+ - uid: 31245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,33.5
+ parent: 1
+ - uid: 31246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,32.5
+ parent: 1
+ - uid: 31247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,31.5
+ parent: 1
+ - uid: 31248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,30.5
+ parent: 1
+ - uid: 31249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,29.5
+ parent: 1
+ - uid: 31250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,28.5
+ parent: 1
+ - uid: 31251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,27.5
+ parent: 1
+ - uid: 31252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,26.5
+ parent: 1
+ - uid: 31253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,26.5
+ parent: 1
+ - uid: 31254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,27.5
+ parent: 1
+ - uid: 31255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,28.5
+ parent: 1
+ - uid: 31256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,29.5
+ parent: 1
+ - uid: 31257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,30.5
+ parent: 1
+ - uid: 31258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,31.5
+ parent: 1
+ - uid: 31259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,32.5
+ parent: 1
+ - uid: 31260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,33.5
+ parent: 1
+ - uid: 31261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,34.5
+ parent: 1
+ - uid: 31262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,35.5
+ parent: 1
+ - uid: 31263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,36.5
+ parent: 1
+ - uid: 31264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,37.5
+ parent: 1
+ - uid: 31265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,41.5
+ parent: 1
+ - uid: 31266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,42.5
+ parent: 1
+ - uid: 31267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,43.5
+ parent: 1
+ - uid: 31268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,44.5
+ parent: 1
+ - uid: 31269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,40.5
+ parent: 1
+ - uid: 31270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,45.5
+ parent: 1
+ - uid: 31271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,44.5
+ parent: 1
+ - uid: 31272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,44.5
+ parent: 1
+ - uid: 31273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,44.5
+ parent: 1
+ - uid: 31274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,44.5
+ parent: 1
+ - uid: 31275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,44.5
+ parent: 1
+ - uid: 31276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,44.5
+ parent: 1
+ - uid: 31277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,44.5
+ parent: 1
+ - uid: 31278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,45.5
+ parent: 1
+ - uid: 31279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,45.5
+ parent: 1
+ - uid: 31281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,46.5
+ parent: 1
+ - uid: 31283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,47.5
+ parent: 1
+ - uid: 31284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,48.5
+ parent: 1
+ - uid: 31285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,49.5
+ parent: 1
+ - uid: 31286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,50.5
+ parent: 1
+ - uid: 31287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,51.5
+ parent: 1
+ - uid: 31288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,52.5
+ parent: 1
+ - uid: 31289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,47.5
+ parent: 1
+ - uid: 31579
+ components:
+ - type: Transform
+ pos: 173.5,62.5
+ parent: 1
+ - uid: 31580
+ components:
+ - type: Transform
+ pos: 173.5,58.5
+ parent: 1
+ - uid: 31581
+ components:
+ - type: Transform
+ pos: 173.5,61.5
+ parent: 1
+ - uid: 31582
+ components:
+ - type: Transform
+ pos: 173.5,60.5
+ parent: 1
+ - uid: 31583
+ components:
+ - type: Transform
+ pos: 173.5,63.5
+ parent: 1
+ - uid: 31584
+ components:
+ - type: Transform
+ pos: 173.5,59.5
+ parent: 1
+ - uid: 31585
+ components:
+ - type: Transform
+ pos: 173.5,64.5
+ parent: 1
+ - uid: 31586
+ components:
+ - type: Transform
+ pos: 173.5,57.5
+ parent: 1
+ - uid: 31587
+ components:
+ - type: Transform
+ pos: 173.5,56.5
+ parent: 1
+ - uid: 31588
+ components:
+ - type: Transform
+ pos: 173.5,55.5
+ parent: 1
+ - uid: 31609
+ components:
+ - type: Transform
+ pos: 169.5,62.5
+ parent: 1
+ - uid: 31610
+ components:
+ - type: Transform
+ pos: 169.5,61.5
+ parent: 1
+ - uid: 31611
+ components:
+ - type: Transform
+ pos: 169.5,63.5
+ parent: 1
+ - uid: 31612
+ components:
+ - type: Transform
+ pos: 169.5,54.5
+ parent: 1
+ - uid: 31613
+ components:
+ - type: Transform
+ pos: 169.5,56.5
+ parent: 1
+ - uid: 31614
+ components:
+ - type: Transform
+ pos: 169.5,55.5
+ parent: 1
+ - uid: 31615
+ components:
+ - type: Transform
+ pos: 169.5,60.5
+ parent: 1
+ - uid: 31616
+ components:
+ - type: Transform
+ pos: 169.5,58.5
+ parent: 1
+ - uid: 31617
+ components:
+ - type: Transform
+ pos: 169.5,57.5
+ parent: 1
+ - uid: 31618
+ components:
+ - type: Transform
+ pos: 169.5,59.5
+ parent: 1
+ - uid: 31638
+ components:
+ - type: Transform
+ pos: 169.5,65.5
+ parent: 1
+ - uid: 31639
+ components:
+ - type: Transform
+ pos: 169.5,66.5
+ parent: 1
+ - uid: 31640
+ components:
+ - type: Transform
+ pos: 169.5,67.5
+ parent: 1
+ - uid: 31641
+ components:
+ - type: Transform
+ pos: 169.5,68.5
+ parent: 1
+ - uid: 31643
+ components:
+ - type: Transform
+ pos: 173.5,66.5
+ parent: 1
+ - uid: 31644
+ components:
+ - type: Transform
+ pos: 173.5,65.5
+ parent: 1
+ - uid: 31645
+ components:
+ - type: Transform
+ pos: 173.5,67.5
+ parent: 1
+ - uid: 31646
+ components:
+ - type: Transform
+ pos: 169.5,64.5
+ parent: 1
+ - uid: 31647
+ components:
+ - type: Transform
+ pos: 173.5,68.5
+ parent: 1
+ - uid: 31649
+ components:
+ - type: Transform
+ pos: 169.5,69.5
+ parent: 1
+ - uid: 31669
+ components:
+ - type: Transform
+ pos: 173.5,53.5
+ parent: 1
+ - uid: 31670
+ components:
+ - type: Transform
+ pos: 173.5,54.5
+ parent: 1
+ - uid: 31671
+ components:
+ - type: Transform
+ pos: 173.5,52.5
+ parent: 1
+ - uid: 31672
+ components:
+ - type: Transform
+ pos: 173.5,51.5
+ parent: 1
+ - uid: 31673
+ components:
+ - type: Transform
+ pos: 173.5,50.5
+ parent: 1
+ - uid: 31674
+ components:
+ - type: Transform
+ pos: 173.5,48.5
+ parent: 1
+ - uid: 31675
+ components:
+ - type: Transform
+ pos: 173.5,49.5
+ parent: 1
+ - uid: 31676
+ components:
+ - type: Transform
+ pos: 173.5,45.5
+ parent: 1
+ - uid: 31677
+ components:
+ - type: Transform
+ pos: 173.5,47.5
+ parent: 1
+ - uid: 31698
+ components:
+ - type: Transform
+ pos: 169.5,52.5
+ parent: 1
+ - uid: 31699
+ components:
+ - type: Transform
+ pos: 169.5,48.5
+ parent: 1
+ - uid: 31700
+ components:
+ - type: Transform
+ pos: 169.5,50.5
+ parent: 1
+ - uid: 31701
+ components:
+ - type: Transform
+ pos: 169.5,49.5
+ parent: 1
+ - uid: 31702
+ components:
+ - type: Transform
+ pos: 169.5,53.5
+ parent: 1
+ - uid: 31703
+ components:
+ - type: Transform
+ pos: 169.5,51.5
+ parent: 1
+ - uid: 31704
+ components:
+ - type: Transform
+ pos: 169.5,46.5
+ parent: 1
+ - uid: 31705
+ components:
+ - type: Transform
+ pos: 169.5,47.5
+ parent: 1
+ - uid: 31706
+ components:
+ - type: Transform
+ pos: 169.5,45.5
+ parent: 1
+ - uid: 31718
+ components:
+ - type: Transform
+ pos: 173.5,69.5
+ parent: 1
+ - uid: 31719
+ components:
+ - type: Transform
+ pos: 173.5,46.5
+ parent: 1
+ - uid: 31720
+ components:
+ - type: Transform
+ pos: 177.5,45.5
+ parent: 1
+ - uid: 31721
+ components:
+ - type: Transform
+ pos: 177.5,46.5
+ parent: 1
+ - uid: 31722
+ components:
+ - type: Transform
+ pos: 177.5,47.5
+ parent: 1
+ - uid: 31723
+ components:
+ - type: Transform
+ pos: 177.5,48.5
+ parent: 1
+ - uid: 31724
+ components:
+ - type: Transform
+ pos: 177.5,49.5
+ parent: 1
+ - uid: 31725
+ components:
+ - type: Transform
+ pos: 177.5,50.5
+ parent: 1
+ - uid: 31726
+ components:
+ - type: Transform
+ pos: 177.5,51.5
+ parent: 1
+ - uid: 31727
+ components:
+ - type: Transform
+ pos: 177.5,53.5
+ parent: 1
+ - uid: 31728
+ components:
+ - type: Transform
+ pos: 177.5,54.5
+ parent: 1
+ - uid: 31729
+ components:
+ - type: Transform
+ pos: 177.5,55.5
+ parent: 1
+ - uid: 31730
+ components:
+ - type: Transform
+ pos: 177.5,56.5
+ parent: 1
+ - uid: 31731
+ components:
+ - type: Transform
+ pos: 177.5,57.5
+ parent: 1
+ - uid: 31732
+ components:
+ - type: Transform
+ pos: 177.5,58.5
+ parent: 1
+ - uid: 31733
+ components:
+ - type: Transform
+ pos: 177.5,59.5
+ parent: 1
+ - uid: 31734
+ components:
+ - type: Transform
+ pos: 177.5,52.5
+ parent: 1
+ - uid: 31735
+ components:
+ - type: Transform
+ pos: 177.5,61.5
+ parent: 1
+ - uid: 31736
+ components:
+ - type: Transform
+ pos: 177.5,60.5
+ parent: 1
+ - uid: 31737
+ components:
+ - type: Transform
+ pos: 177.5,62.5
+ parent: 1
+ - uid: 31738
+ components:
+ - type: Transform
+ pos: 177.5,65.5
+ parent: 1
+ - uid: 31739
+ components:
+ - type: Transform
+ pos: 177.5,64.5
+ parent: 1
+ - uid: 31740
+ components:
+ - type: Transform
+ pos: 177.5,67.5
+ parent: 1
+ - uid: 31741
+ components:
+ - type: Transform
+ pos: 177.5,68.5
+ parent: 1
+ - uid: 31742
+ components:
+ - type: Transform
+ pos: 177.5,69.5
+ parent: 1
+ - uid: 31743
+ components:
+ - type: Transform
+ pos: 177.5,66.5
+ parent: 1
+ - uid: 31744
+ components:
+ - type: Transform
+ pos: 177.5,63.5
+ parent: 1
+ - uid: 31745
+ components:
+ - type: Transform
+ pos: 180.5,57.5
+ parent: 1
+ - uid: 31746
+ components:
+ - type: Transform
+ pos: 179.5,57.5
+ parent: 1
+ - uid: 31747
+ components:
+ - type: Transform
+ pos: 178.5,57.5
+ parent: 1
+ - uid: 31748
+ components:
+ - type: Transform
+ pos: 176.5,57.5
+ parent: 1
+ - uid: 31749
+ components:
+ - type: Transform
+ pos: 175.5,57.5
+ parent: 1
+ - uid: 31750
+ components:
+ - type: Transform
+ pos: 174.5,57.5
+ parent: 1
+ - uid: 31751
+ components:
+ - type: Transform
+ pos: 172.5,57.5
+ parent: 1
+ - uid: 31752
+ components:
+ - type: Transform
+ pos: 171.5,57.5
+ parent: 1
+ - uid: 31753
+ components:
+ - type: Transform
+ pos: 170.5,57.5
+ parent: 1
+ - uid: 31754
+ components:
+ - type: Transform
+ pos: 168.5,57.5
+ parent: 1
+ - uid: 31755
+ components:
+ - type: Transform
+ pos: 167.5,57.5
+ parent: 1
+ - uid: 31770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 31771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 31772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 31773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 31774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 31775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 31776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 31777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 31778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 31779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 31780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 31781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 31782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 31802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 31804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 31805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 31806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 31807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 31808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 31809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 31810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 31811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 31812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 31813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 31814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 31815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 31816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 31817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 31818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 31819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 31821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 31823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 31824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 32062
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 32076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,174.5
+ parent: 1
+ - uid: 32127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 32166
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 32168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 32204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 180.5,73.5
+ parent: 1
+ - uid: 32222
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 32369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 32418
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 32419
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 32420
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 32421
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 32422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 32436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 32442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,58.5
+ parent: 1
+ - uid: 32443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,56.5
+ parent: 1
+ - uid: 32444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,55.5
+ parent: 1
+ - uid: 32445
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,54.5
+ parent: 1
+ - uid: 32446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,53.5
+ parent: 1
+ - uid: 32447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,52.5
+ parent: 1
+ - uid: 32448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,57.5
+ parent: 1
+ - uid: 32449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 185.5,52.5
+ parent: 1
+ - uid: 32450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 184.5,52.5
+ parent: 1
+ - uid: 32451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,52.5
+ parent: 1
+ - uid: 32452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,51.5
+ parent: 1
+ - uid: 32453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,50.5
+ parent: 1
+ - uid: 32454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,49.5
+ parent: 1
+ - uid: 32455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,48.5
+ parent: 1
+ - uid: 32456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,47.5
+ parent: 1
+ - uid: 32457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,46.5
+ parent: 1
+ - uid: 32458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,45.5
+ parent: 1
+ - uid: 32459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,44.5
+ parent: 1
+ - uid: 32460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,43.5
+ parent: 1
+ - uid: 32461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,42.5
+ parent: 1
+ - uid: 32462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,41.5
+ parent: 1
+ - uid: 32463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,41.5
+ parent: 1
+ - uid: 32464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 181.5,41.5
+ parent: 1
+ - uid: 32465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 180.5,41.5
+ parent: 1
+ - uid: 32466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 179.5,41.5
+ parent: 1
+ - uid: 32467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 178.5,41.5
+ parent: 1
+ - uid: 32468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 177.5,41.5
+ parent: 1
+ - uid: 32469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 176.5,41.5
+ parent: 1
+ - uid: 32470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 175.5,41.5
+ parent: 1
+ - uid: 32471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 174.5,41.5
+ parent: 1
+ - uid: 32472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 173.5,41.5
+ parent: 1
+ - uid: 32473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 172.5,41.5
+ parent: 1
+ - uid: 32474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 171.5,41.5
+ parent: 1
+ - uid: 32475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,41.5
+ parent: 1
+ - uid: 32476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,41.5
+ parent: 1
+ - uid: 32477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,41.5
+ parent: 1
+ - uid: 32478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,41.5
+ parent: 1
+ - uid: 32479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,41.5
+ parent: 1
+ - uid: 32480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,41.5
+ parent: 1
+ - uid: 32481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,40.5
+ parent: 1
+ - uid: 32482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,39.5
+ parent: 1
+ - uid: 32483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,38.5
+ parent: 1
+ - uid: 32484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,38.5
+ parent: 1
+ - uid: 32485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,38.5
+ parent: 1
+ - uid: 32486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,38.5
+ parent: 1
+ - uid: 32487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,38.5
+ parent: 1
+ - uid: 32488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,38.5
+ parent: 1
+ - uid: 32489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,38.5
+ parent: 1
+ - uid: 32490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,38.5
+ parent: 1
+ - uid: 32491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,38.5
+ parent: 1
+ - uid: 32492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,38.5
+ parent: 1
+ - uid: 32493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,38.5
+ parent: 1
+ - uid: 32494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,38.5
+ parent: 1
+ - uid: 32495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,38.5
+ parent: 1
+ - uid: 32496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,38.5
+ parent: 1
+ - uid: 32497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,38.5
+ parent: 1
+ - uid: 32498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,38.5
+ parent: 1
+ - uid: 32499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,38.5
+ parent: 1
+ - uid: 32500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,38.5
+ parent: 1
+ - uid: 32501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,38.5
+ parent: 1
+ - uid: 32502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,38.5
+ parent: 1
+ - uid: 32503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,38.5
+ parent: 1
+ - uid: 32504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,38.5
+ parent: 1
+ - uid: 32505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,38.5
+ parent: 1
+ - uid: 32506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,38.5
+ parent: 1
+ - uid: 32507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,38.5
+ parent: 1
+ - uid: 32508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,38.5
+ parent: 1
+ - uid: 32509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,38.5
+ parent: 1
+ - uid: 32510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,38.5
+ parent: 1
+ - uid: 32511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,39.5
+ parent: 1
+ - uid: 32512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,38.5
+ parent: 1
+ - uid: 32513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,38.5
+ parent: 1
+ - uid: 32514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,38.5
+ parent: 1
+ - uid: 32515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,38.5
+ parent: 1
+ - uid: 32516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,38.5
+ parent: 1
+ - uid: 32517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,38.5
+ parent: 1
+ - uid: 32518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,38.5
+ parent: 1
+ - uid: 32519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,38.5
+ parent: 1
+ - uid: 32520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,38.5
+ parent: 1
+ - uid: 32521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,36.5
+ parent: 1
+ - uid: 32522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,35.5
+ parent: 1
+ - uid: 32523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,34.5
+ parent: 1
+ - uid: 32524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,33.5
+ parent: 1
+ - uid: 32525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,32.5
+ parent: 1
+ - uid: 32526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,32.5
+ parent: 1
+ - uid: 32527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,32.5
+ parent: 1
+ - uid: 32528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,31.5
+ parent: 1
+ - uid: 32529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,29.5
+ parent: 1
+ - uid: 32530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,28.5
+ parent: 1
+ - uid: 32531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,27.5
+ parent: 1
+ - uid: 32532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,26.5
+ parent: 1
+ - uid: 32533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,25.5
+ parent: 1
+ - uid: 32534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,24.5
+ parent: 1
+ - uid: 32535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,23.5
+ parent: 1
+ - uid: 32536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,22.5
+ parent: 1
+ - uid: 32537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,30.5
+ parent: 1
+ - uid: 32538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,22.5
+ parent: 1
+ - uid: 32539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,22.5
+ parent: 1
+ - uid: 32540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,22.5
+ parent: 1
+ - uid: 32541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,22.5
+ parent: 1
+ - uid: 32542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,21.5
+ parent: 1
+ - uid: 32543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,20.5
+ parent: 1
+ - uid: 32544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,19.5
+ parent: 1
+ - uid: 32545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,18.5
+ parent: 1
+ - uid: 32546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,17.5
+ parent: 1
+ - uid: 32547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,16.5
+ parent: 1
+ - uid: 32548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,15.5
+ parent: 1
+ - uid: 32549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,16.5
+ parent: 1
+ - uid: 32550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,16.5
+ parent: 1
+ - uid: 32551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,16.5
+ parent: 1
+ - uid: 32552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,16.5
+ parent: 1
+ - uid: 32553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,16.5
+ parent: 1
+ - uid: 32554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,16.5
+ parent: 1
+ - uid: 32555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,14.5
+ parent: 1
+ - uid: 32556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,13.5
+ parent: 1
+ - uid: 32557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,13.5
+ parent: 1
+ - uid: 32559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,13.5
+ parent: 1
+ - uid: 32560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,13.5
+ parent: 1
+ - uid: 32561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,13.5
+ parent: 1
+ - uid: 32562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,14.5
+ parent: 1
+ - uid: 32563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,15.5
+ parent: 1
+ - uid: 32564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,15.5
+ parent: 1
+ - uid: 32565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,15.5
+ parent: 1
+ - uid: 32566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,15.5
+ parent: 1
+ - uid: 32567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,15.5
+ parent: 1
+ - uid: 32568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,15.5
+ parent: 1
+ - uid: 32569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,15.5
+ parent: 1
+ - uid: 32570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,15.5
+ parent: 1
+ - uid: 32571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,15.5
+ parent: 1
+ - uid: 32572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,15.5
+ parent: 1
+ - uid: 32573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,15.5
+ parent: 1
+ - uid: 32574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,15.5
+ parent: 1
+ - uid: 32575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,15.5
+ parent: 1
+ - uid: 32576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,14.5
+ parent: 1
+ - uid: 32577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,14.5
+ parent: 1
+ - uid: 32578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,15.5
+ parent: 1
+ - uid: 32580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,15.5
+ parent: 1
+ - uid: 32581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,15.5
+ parent: 1
+ - uid: 32591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,13.5
+ parent: 1
+ - uid: 32594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,13.5
+ parent: 1
+ - uid: 32595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,13.5
+ parent: 1
+ - uid: 32596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,13.5
+ parent: 1
+ - uid: 32597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,13.5
+ parent: 1
+ - uid: 32598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,13.5
+ parent: 1
+ - uid: 32599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,13.5
+ parent: 1
+ - uid: 32600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,13.5
+ parent: 1
+ - uid: 32602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,12.5
+ parent: 1
+ - uid: 32603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,11.5
+ parent: 1
+ - uid: 32604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,11.5
+ parent: 1
+ - uid: 32605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,11.5
+ parent: 1
+ - uid: 32606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,11.5
+ parent: 1
+ - uid: 32607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,11.5
+ parent: 1
+ - uid: 32608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,12.5
+ parent: 1
+ - uid: 32609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,13.5
+ parent: 1
+ - uid: 32610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,13.5
+ parent: 1
+ - uid: 32611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,13.5
+ parent: 1
+ - uid: 32612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,11.5
+ parent: 1
+ - uid: 32613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,11.5
+ parent: 1
+ - uid: 32614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,11.5
+ parent: 1
+ - uid: 32615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,11.5
+ parent: 1
+ - uid: 32616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,11.5
+ parent: 1
+ - uid: 32617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,11.5
+ parent: 1
+ - uid: 32618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,22.5
+ parent: 1
+ - uid: 32619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,12.5
+ parent: 1
+ - uid: 32620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,12.5
+ parent: 1
+ - uid: 32621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,12.5
+ parent: 1
+ - uid: 32622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,12.5
+ parent: 1
+ - uid: 32623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,12.5
+ parent: 1
+ - uid: 32624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,12.5
+ parent: 1
+ - uid: 32625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,12.5
+ parent: 1
+ - uid: 32626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,12.5
+ parent: 1
+ - uid: 32627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,12.5
+ parent: 1
+ - uid: 32628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,12.5
+ parent: 1
+ - uid: 32629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,12.5
+ parent: 1
+ - uid: 32630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,12.5
+ parent: 1
+ - uid: 32631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,12.5
+ parent: 1
+ - uid: 32632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,12.5
+ parent: 1
+ - uid: 32633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,12.5
+ parent: 1
+ - uid: 32634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,12.5
+ parent: 1
+ - uid: 32635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,12.5
+ parent: 1
+ - uid: 32636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 1
+ - uid: 32637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 1
+ - uid: 32638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,12.5
+ parent: 1
+ - uid: 32639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,12.5
+ parent: 1
+ - uid: 32640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,12.5
+ parent: 1
+ - uid: 32641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,12.5
+ parent: 1
+ - uid: 32642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,13.5
+ parent: 1
+ - uid: 32643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,14.5
+ parent: 1
+ - uid: 32644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,15.5
+ parent: 1
+ - uid: 32645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,16.5
+ parent: 1
+ - uid: 32646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,17.5
+ parent: 1
+ - uid: 32647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,18.5
+ parent: 1
+ - uid: 32648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,19.5
+ parent: 1
+ - uid: 32649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,20.5
+ parent: 1
+ - uid: 32650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,21.5
+ parent: 1
+ - uid: 32651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,22.5
+ parent: 1
+ - uid: 32652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,22.5
+ parent: 1
+ - uid: 32653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 1
+ - uid: 32654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,22.5
+ parent: 1
+ - uid: 32655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1
+ - uid: 32656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 1
+ - uid: 32657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,22.5
+ parent: 1
+ - uid: 32658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,22.5
+ parent: 1
+ - uid: 32659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,22.5
+ parent: 1
+ - uid: 32660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,22.5
+ parent: 1
+ - uid: 32661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,22.5
+ parent: 1
+ - uid: 32662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,22.5
+ parent: 1
+ - uid: 32663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,22.5
+ parent: 1
+ - uid: 32664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,22.5
+ parent: 1
+ - uid: 32665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
+ parent: 1
+ - uid: 32666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,22.5
+ parent: 1
+ - uid: 32667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,22.5
+ parent: 1
+ - uid: 32668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,48.5
+ parent: 1
+ - uid: 32669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,23.5
+ parent: 1
+ - uid: 32670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,24.5
+ parent: 1
+ - uid: 32671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,25.5
+ parent: 1
+ - uid: 32672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,26.5
+ parent: 1
+ - uid: 32673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,27.5
+ parent: 1
+ - uid: 32674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,28.5
+ parent: 1
+ - uid: 32675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,29.5
+ parent: 1
+ - uid: 32676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,30.5
+ parent: 1
+ - uid: 32677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,31.5
+ parent: 1
+ - uid: 32678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,32.5
+ parent: 1
+ - uid: 32679
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,34.5
+ parent: 1
+ - uid: 32680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,35.5
+ parent: 1
+ - uid: 32681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,36.5
+ parent: 1
+ - uid: 32682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,33.5
+ parent: 1
+ - uid: 32683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,38.5
+ parent: 1
+ - uid: 32684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,39.5
+ parent: 1
+ - uid: 32685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,37.5
+ parent: 1
+ - uid: 32686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,41.5
+ parent: 1
+ - uid: 32687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,43.5
+ parent: 1
+ - uid: 32688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,44.5
+ parent: 1
+ - uid: 32689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,40.5
+ parent: 1
+ - uid: 32690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,45.5
+ parent: 1
+ - uid: 32691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,46.5
+ parent: 1
+ - uid: 32692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,42.5
+ parent: 1
+ - uid: 32693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,47.5
+ parent: 1
+ - uid: 32694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,48.5
+ parent: 1
+ - uid: 32695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,48.5
+ parent: 1
+ - uid: 32696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,48.5
+ parent: 1
+ - uid: 32697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,48.5
+ parent: 1
+ - uid: 32698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,49.5
+ parent: 1
+ - uid: 32699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,50.5
+ parent: 1
+ - uid: 32700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,52.5
+ parent: 1
+ - uid: 32701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,53.5
+ parent: 1
+ - uid: 32702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,54.5
+ parent: 1
+ - uid: 32703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,55.5
+ parent: 1
+ - uid: 32704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,56.5
+ parent: 1
+ - uid: 32705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,57.5
+ parent: 1
+ - uid: 32706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,51.5
+ parent: 1
+ - uid: 32707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,58.5
+ parent: 1
+ - uid: 32708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,66.5
+ parent: 1
+ - uid: 32709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,58.5
+ parent: 1
+ - uid: 32710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,58.5
+ parent: 1
+ - uid: 32711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,58.5
+ parent: 1
+ - uid: 32712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,58.5
+ parent: 1
+ - uid: 32713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,59.5
+ parent: 1
+ - uid: 32714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,60.5
+ parent: 1
+ - uid: 32715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,61.5
+ parent: 1
+ - uid: 32716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,62.5
+ parent: 1
+ - uid: 32717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,63.5
+ parent: 1
+ - uid: 32718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,64.5
+ parent: 1
+ - uid: 32719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,65.5
+ parent: 1
+ - uid: 32720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,65.5
+ parent: 1
+ - uid: 32721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,65.5
+ parent: 1
+ - uid: 32722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,67.5
+ parent: 1
+ - uid: 32723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,68.5
+ parent: 1
+ - uid: 32724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,69.5
+ parent: 1
+ - uid: 32725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,70.5
+ parent: 1
+ - uid: 32726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,71.5
+ parent: 1
+ - uid: 32727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,72.5
+ parent: 1
+ - uid: 32728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,100.5
+ parent: 1
+ - uid: 32729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,103.5
+ parent: 1
+ - uid: 32730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,74.5
+ parent: 1
+ - uid: 32731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,103.5
+ parent: 1
+ - uid: 32732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,103.5
+ parent: 1
+ - uid: 32733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,104.5
+ parent: 1
+ - uid: 32734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,105.5
+ parent: 1
+ - uid: 32735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,109.5
+ parent: 1
+ - uid: 32736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,110.5
+ parent: 1
+ - uid: 32737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,111.5
+ parent: 1
+ - uid: 32738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,111.5
+ parent: 1
+ - uid: 32739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,111.5
+ parent: 1
+ - uid: 32740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,111.5
+ parent: 1
+ - uid: 32741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,112.5
+ parent: 1
+ - uid: 32742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,113.5
+ parent: 1
+ - uid: 32743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,114.5
+ parent: 1
+ - uid: 32744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,115.5
+ parent: 1
+ - uid: 32745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,116.5
+ parent: 1
+ - uid: 32746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,117.5
+ parent: 1
+ - uid: 32747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,118.5
+ parent: 1
+ - uid: 32748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,119.5
+ parent: 1
+ - uid: 32749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,120.5
+ parent: 1
+ - uid: 32750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,121.5
+ parent: 1
+ - uid: 32751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,122.5
+ parent: 1
+ - uid: 32752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,123.5
+ parent: 1
+ - uid: 32753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,123.5
+ parent: 1
+ - uid: 32754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,123.5
+ parent: 1
+ - uid: 32755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,123.5
+ parent: 1
+ - uid: 32756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,122.5
+ parent: 1
+ - uid: 32757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,125.5
+ parent: 1
+ - uid: 32758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,126.5
+ parent: 1
+ - uid: 32759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,127.5
+ parent: 1
+ - uid: 32760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,127.5
+ parent: 1
+ - uid: 32761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,127.5
+ parent: 1
+ - uid: 32762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,127.5
+ parent: 1
+ - uid: 32763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,127.5
+ parent: 1
+ - uid: 32764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,127.5
+ parent: 1
+ - uid: 32765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,127.5
+ parent: 1
+ - uid: 32766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,127.5
+ parent: 1
+ - uid: 32767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,127.5
+ parent: 1
+ - uid: 32768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,127.5
+ parent: 1
+ - uid: 32769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,127.5
+ parent: 1
+ - uid: 32770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,127.5
+ parent: 1
+ - uid: 32771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,127.5
+ parent: 1
+ - uid: 32772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,127.5
+ parent: 1
+ - uid: 32773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,127.5
+ parent: 1
+ - uid: 32774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,127.5
+ parent: 1
+ - uid: 32775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,128.5
+ parent: 1
+ - uid: 32776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,129.5
+ parent: 1
+ - uid: 32777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,130.5
+ parent: 1
+ - uid: 32778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,131.5
+ parent: 1
+ - uid: 32779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,132.5
+ parent: 1
+ - uid: 32780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,133.5
+ parent: 1
+ - uid: 32781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,134.5
+ parent: 1
+ - uid: 32782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,135.5
+ parent: 1
+ - uid: 32783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,136.5
+ parent: 1
+ - uid: 32784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,136.5
+ parent: 1
+ - uid: 32785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,136.5
+ parent: 1
+ - uid: 32786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,136.5
+ parent: 1
+ - uid: 32787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,136.5
+ parent: 1
+ - uid: 32788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,137.5
+ parent: 1
+ - uid: 32789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,138.5
+ parent: 1
+ - uid: 32790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,139.5
+ parent: 1
+ - uid: 32791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,140.5
+ parent: 1
+ - uid: 32792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,141.5
+ parent: 1
+ - uid: 32793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,142.5
+ parent: 1
+ - uid: 32794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,143.5
+ parent: 1
+ - uid: 32795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,144.5
+ parent: 1
+ - uid: 32796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,145.5
+ parent: 1
+ - uid: 32797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,146.5
+ parent: 1
+ - uid: 32798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,146.5
+ parent: 1
+ - uid: 32799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,146.5
+ parent: 1
+ - uid: 32800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,146.5
+ parent: 1
+ - uid: 32801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,146.5
+ parent: 1
+ - uid: 32802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,147.5
+ parent: 1
+ - uid: 32803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,148.5
+ parent: 1
+ - uid: 32804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,149.5
+ parent: 1
+ - uid: 32805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,150.5
+ parent: 1
+ - uid: 32806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,151.5
+ parent: 1
+ - uid: 32807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,152.5
+ parent: 1
+ - uid: 32808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,153.5
+ parent: 1
+ - uid: 32809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,154.5
+ parent: 1
+ - uid: 32810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,155.5
+ parent: 1
+ - uid: 32811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,156.5
+ parent: 1
+ - uid: 32812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,157.5
+ parent: 1
+ - uid: 32813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,157.5
+ parent: 1
+ - uid: 32814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,157.5
+ parent: 1
+ - uid: 32815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,157.5
+ parent: 1
+ - uid: 32816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,157.5
+ parent: 1
+ - uid: 32817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,157.5
+ parent: 1
+ - uid: 32818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,157.5
+ parent: 1
+ - uid: 32819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,157.5
+ parent: 1
+ - uid: 32820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,157.5
+ parent: 1
+ - uid: 32821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,157.5
+ parent: 1
+ - uid: 32822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,157.5
+ parent: 1
+ - uid: 32823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,157.5
+ parent: 1
+ - uid: 32824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,157.5
+ parent: 1
+ - uid: 32825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,157.5
+ parent: 1
+ - uid: 32826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,157.5
+ parent: 1
+ - uid: 32827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,157.5
+ parent: 1
+ - uid: 32828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,157.5
+ parent: 1
+ - uid: 32829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,157.5
+ parent: 1
+ - uid: 32830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,157.5
+ parent: 1
+ - uid: 32831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,157.5
+ parent: 1
+ - uid: 32833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,157.5
+ parent: 1
+ - uid: 32834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,169.5
+ parent: 1
+ - uid: 32835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,159.5
+ parent: 1
+ - uid: 32836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,160.5
+ parent: 1
+ - uid: 32837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,161.5
+ parent: 1
+ - uid: 32838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,162.5
+ parent: 1
+ - uid: 32839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,158.5
+ parent: 1
+ - uid: 32840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,162.5
+ parent: 1
+ - uid: 32841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,162.5
+ parent: 1
+ - uid: 32842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,162.5
+ parent: 1
+ - uid: 32843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,162.5
+ parent: 1
+ - uid: 32844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,161.5
+ parent: 1
+ - uid: 32845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,163.5
+ parent: 1
+ - uid: 32846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,164.5
+ parent: 1
+ - uid: 32847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,164.5
+ parent: 1
+ - uid: 32848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,164.5
+ parent: 1
+ - uid: 32849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,164.5
+ parent: 1
+ - uid: 32850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,164.5
+ parent: 1
+ - uid: 32851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,164.5
+ parent: 1
+ - uid: 32852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,164.5
+ parent: 1
+ - uid: 32853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,165.5
+ parent: 1
+ - uid: 32854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,166.5
+ parent: 1
+ - uid: 32855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,167.5
+ parent: 1
+ - uid: 32856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,167.5
+ parent: 1
+ - uid: 32857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,167.5
+ parent: 1
+ - uid: 32858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,167.5
+ parent: 1
+ - uid: 32859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,167.5
+ parent: 1
+ - uid: 32860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,167.5
+ parent: 1
+ - uid: 32861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,167.5
+ parent: 1
+ - uid: 32862
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,167.5
+ parent: 1
+ - uid: 32863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,167.5
+ parent: 1
+ - uid: 32864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,167.5
+ parent: 1
+ - uid: 32865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,167.5
+ parent: 1
+ - uid: 32866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,166.5
+ parent: 1
+ - uid: 32867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,165.5
+ parent: 1
+ - uid: 32868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,165.5
+ parent: 1
+ - uid: 32869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,165.5
+ parent: 1
+ - uid: 32870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,165.5
+ parent: 1
+ - uid: 32871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,165.5
+ parent: 1
+ - uid: 32872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,165.5
+ parent: 1
+ - uid: 32873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,165.5
+ parent: 1
+ - uid: 32874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,165.5
+ parent: 1
+ - uid: 32875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,165.5
+ parent: 1
+ - uid: 32876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,165.5
+ parent: 1
+ - uid: 32877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,165.5
+ parent: 1
+ - uid: 32878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,166.5
+ parent: 1
+ - uid: 32879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,167.5
+ parent: 1
+ - uid: 32880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,168.5
+ parent: 1
+ - uid: 32881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,170.5
+ parent: 1
+ - uid: 32882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,171.5
+ parent: 1
+ - uid: 32883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,172.5
+ parent: 1
+ - uid: 32884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,173.5
+ parent: 1
+ - uid: 32885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,174.5
+ parent: 1
+ - uid: 32886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,176.5
+ parent: 1
+ - uid: 32887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,175.5
+ parent: 1
+ - uid: 32888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,168.5
+ parent: 1
+ - uid: 32889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,168.5
+ parent: 1
+ - uid: 32890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,168.5
+ parent: 1
+ - uid: 32892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,176.5
+ parent: 1
+ - uid: 32893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,176.5
+ parent: 1
+ - uid: 32894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,176.5
+ parent: 1
+ - uid: 32895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,176.5
+ parent: 1
+ - uid: 32896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,176.5
+ parent: 1
+ - uid: 32897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,176.5
+ parent: 1
+ - uid: 32898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,176.5
+ parent: 1
+ - uid: 32899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,176.5
+ parent: 1
+ - uid: 32900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,176.5
+ parent: 1
+ - uid: 32901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,176.5
+ parent: 1
+ - uid: 32902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,176.5
+ parent: 1
+ - uid: 32903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,175.5
+ parent: 1
+ - uid: 32904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,175.5
+ parent: 1
+ - uid: 32905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,175.5
+ parent: 1
+ - uid: 32906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,175.5
+ parent: 1
+ - uid: 32907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,175.5
+ parent: 1
+ - uid: 32908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,175.5
+ parent: 1
+ - uid: 32909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,175.5
+ parent: 1
+ - uid: 32910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,174.5
+ parent: 1
+ - uid: 32911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,174.5
+ parent: 1
+ - uid: 32912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,174.5
+ parent: 1
+ - uid: 32913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,174.5
+ parent: 1
+ - uid: 32914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,174.5
+ parent: 1
+ - uid: 32915
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,174.5
+ parent: 1
+ - uid: 32916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,174.5
+ parent: 1
+ - uid: 32917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,174.5
+ parent: 1
+ - uid: 32918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,174.5
+ parent: 1
+ - uid: 32919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,174.5
+ parent: 1
+ - uid: 32920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,174.5
+ parent: 1
+ - uid: 32921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,174.5
+ parent: 1
+ - uid: 32922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,174.5
+ parent: 1
+ - uid: 32923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,174.5
+ parent: 1
+ - uid: 32924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,174.5
+ parent: 1
+ - uid: 32925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,174.5
+ parent: 1
+ - uid: 32926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,174.5
+ parent: 1
+ - uid: 32929
+ components:
+ - type: Transform
+ pos: 157.5,90.5
+ parent: 1
+ - uid: 32944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,161.5
+ parent: 1
+ - uid: 32945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,160.5
+ parent: 1
+ - uid: 32946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,159.5
+ parent: 1
+ - uid: 32947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,158.5
+ parent: 1
+ - uid: 32948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,157.5
+ parent: 1
+ - uid: 32954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,156.5
+ parent: 1
+ - uid: 32955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,156.5
+ parent: 1
+ - uid: 32956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,156.5
+ parent: 1
+ - uid: 32957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,156.5
+ parent: 1
+ - uid: 32958
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,156.5
+ parent: 1
+ - uid: 32959
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,156.5
+ parent: 1
+ - uid: 32960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,156.5
+ parent: 1
+ - uid: 32961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,156.5
+ parent: 1
+ - uid: 32962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,156.5
+ parent: 1
+ - uid: 32963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,156.5
+ parent: 1
+ - uid: 32964
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,156.5
+ parent: 1
+ - uid: 32965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,156.5
+ parent: 1
+ - uid: 32966
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,121.5
+ parent: 1
+ - uid: 32967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,155.5
+ parent: 1
+ - uid: 32968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,154.5
+ parent: 1
+ - uid: 32969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,152.5
+ parent: 1
+ - uid: 32970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,153.5
+ parent: 1
+ - uid: 32998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,170.5
+ parent: 1
+ - uid: 33001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,128.5
+ parent: 1
+ - uid: 33002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,127.5
+ parent: 1
+ - uid: 33003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,126.5
+ parent: 1
+ - uid: 33004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,125.5
+ parent: 1
+ - uid: 33005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,124.5
+ parent: 1
+ - uid: 33006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,123.5
+ parent: 1
+ - uid: 33007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,126.5
+ parent: 1
+ - uid: 33010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,123.5
+ parent: 1
+ - uid: 33784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 33785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 33787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 33788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 33789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 33790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 33798
+ components:
+ - type: Transform
+ pos: 107.5,36.5
+ parent: 1
+ - uid: 33799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 33800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 33801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 33802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 33803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 33804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 33805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 33806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 33807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 33831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,34.5
+ parent: 1
+ - uid: 33832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 33833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 33834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 33835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 33836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 33837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 33838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 33839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 33840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 33846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,45.5
+ parent: 1
+ - uid: 33847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,45.5
+ parent: 1
+ - uid: 33848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,45.5
+ parent: 1
+ - uid: 33849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,45.5
+ parent: 1
+ - uid: 33850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,45.5
+ parent: 1
+ - uid: 33851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,45.5
+ parent: 1
+ - uid: 33852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,45.5
+ parent: 1
+ - uid: 33853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,45.5
+ parent: 1
+ - uid: 33854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,45.5
+ parent: 1
+ - uid: 33855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,44.5
+ parent: 1
+ - uid: 33856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,44.5
+ parent: 1
+ - uid: 33857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,44.5
+ parent: 1
+ - uid: 33858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,44.5
+ parent: 1
+ - uid: 33859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,41.5
+ parent: 1
+ - uid: 33860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,42.5
+ parent: 1
+ - uid: 33861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,43.5
+ parent: 1
+ - uid: 33862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,44.5
+ parent: 1
+ - uid: 33863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,41.5
+ parent: 1
+ - uid: 33864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,41.5
+ parent: 1
+ - uid: 33865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,30.5
+ parent: 1
+ - uid: 33866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 33867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,31.5
+ parent: 1
+ - uid: 33872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 33873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 33874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 33876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 33877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 33878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 33879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 33881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 33883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 33897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 33901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 33917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 33918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 33919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 33920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 33921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 33922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 33923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 33924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 33925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 33926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 33927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 33928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 33929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 33931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 33933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 33934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 33935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 33936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 33937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 33938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 33942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 33943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 33944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 33945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 33946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 33947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 33948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 33950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 33951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 33952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 33953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 33954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 33955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 33956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 33957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 33958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 33959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 33960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 33961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 33986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,33.5
+ parent: 1
+ - uid: 33987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,32.5
+ parent: 1
+ - uid: 33988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,31.5
+ parent: 1
+ - uid: 33989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,30.5
+ parent: 1
+ - uid: 33990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,29.5
+ parent: 1
+ - uid: 33991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,28.5
+ parent: 1
+ - uid: 33992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,27.5
+ parent: 1
+ - uid: 33993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,28.5
+ parent: 1
+ - uid: 34002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,33.5
+ parent: 1
+ - uid: 34003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,33.5
+ parent: 1
+ - uid: 34004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,33.5
+ parent: 1
+ - uid: 34005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,33.5
+ parent: 1
+ - uid: 34006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,33.5
+ parent: 1
+ - uid: 34184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 34232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 34233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 34234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 34272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 34273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 34287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 34289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 34290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 34293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 34294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 34296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 34406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 34414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 34415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 34416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 34426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 34429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 34430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 34431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 34440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 34448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 34449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 34450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 34451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 34452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 34453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 34454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 34455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 34456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 34457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 34458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 34459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 34460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 34461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 34462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 34463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 34464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 34465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 34466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 34467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 34468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 34469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 34471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 34475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 34481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 34482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 34483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 34484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 34485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 34486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 34487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 34488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 34489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 34490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 34491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 34492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 34493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 34494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 34603
+ components:
+ - type: Transform
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34623
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 34628
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 34649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 34717
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 34718
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 34725
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 34726
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 34729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,157.5
+ parent: 1
+ - uid: 34730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,157.5
+ parent: 1
+ - uid: 34732
+ components:
+ - type: Transform
+ pos: 157.5,91.5
+ parent: 1
+ - uid: 34733
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 34734
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 34746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,157.5
+ parent: 1
+ - uid: 34747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,157.5
+ parent: 1
+ - uid: 34748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,157.5
+ parent: 1
+ - uid: 34832
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 34838
+ components:
+ - type: Transform
+ pos: 168.5,128.5
+ parent: 1
+ - uid: 34846
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34847
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34848
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34849
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34850
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34851
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34852
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34853
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 34854
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 34856
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 34857
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 34858
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 34859
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 34860
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 34861
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 34862
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 34863
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 34864
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 34865
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 34866
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 34867
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 34869
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 34878
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - uid: 34880
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 34881
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 34882
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 34883
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 34884
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 34903
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 34904
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 34905
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 34906
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 34907
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 34908
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 34918
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 34919
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 34929
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 34930
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 34931
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 34932
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 34960
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 34961
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 34963
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 34991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,157.5
+ parent: 1
+ - uid: 35012
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 35015
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 35087
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 35101
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 35186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,165.5
+ parent: 1
+ - uid: 35187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,165.5
+ parent: 1
+ - uid: 35205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,82.5
+ parent: 1
+ - uid: 35363
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 35433
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 35436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 35449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 35450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 35457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 35485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 35494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 35514
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 35545
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 35571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,174.5
+ parent: 1
+ - uid: 35586
+ components:
+ - type: Transform
+ pos: 149.5,86.5
+ parent: 1
+ - uid: 35599
+ components:
+ - type: Transform
+ pos: 151.5,86.5
+ parent: 1
+ - uid: 35634
+ components:
+ - type: Transform
+ pos: 150.5,86.5
+ parent: 1
+ - uid: 35644
+ components:
+ - type: Transform
+ pos: 152.5,86.5
+ parent: 1
+ - uid: 35664
+ components:
+ - type: Transform
+ pos: 127.5,173.5
+ parent: 1
+ - uid: 35745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 35746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 35812
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 35819
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 35897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 35898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 35906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 35907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 35919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35939
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 35947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 35948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 35959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 35960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 35961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 35962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 35963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 35964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 35965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 35967
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 35970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 35971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 35972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 35973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 35974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 35975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 35976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 35977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 35978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 35979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 35980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 35981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 35982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 35983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 36043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 36044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 36045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 36046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 36056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,152.5
+ parent: 1
+ - uid: 36057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,152.5
+ parent: 1
+ - uid: 36140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 36141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 36155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 36331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 36332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 36333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 36334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 36335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 36336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 36345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 36346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 36347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 36348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 36349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 36350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 36351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 36352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 36353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 36359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 36360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 36361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 36365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,96.5
+ parent: 1
+ - uid: 36374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 36387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 36396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 36398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 36407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 36408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 36412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 36413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 36414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 36415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 36416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 36417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 36433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 36450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 36453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 36455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 36468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 36474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 36480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 36481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 36482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 36483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 36484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 36485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 36486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 36487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 36493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 36499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 36503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 36504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 36526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,168.5
+ parent: 1
+ - uid: 36528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,167.5
+ parent: 1
+ - uid: 36531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,166.5
+ parent: 1
+ - uid: 36532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,165.5
+ parent: 1
+ - uid: 36533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,164.5
+ parent: 1
+ - uid: 36534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,162.5
+ parent: 1
+ - uid: 36535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,163.5
+ parent: 1
+ - uid: 36831
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 37043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 37044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 37054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 37055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 37057
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 37058
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 37059
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 37060
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 37061
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 37062
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 37063
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 37064
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 37065
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 37066
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 37067
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 37068
+ components:
+ - type: Transform
+ pos: 160.5,113.5
+ parent: 1
+ - uid: 37069
+ components:
+ - type: Transform
+ pos: 161.5,113.5
+ parent: 1
+ - uid: 37070
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 37071
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 37072
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 37093
+ components:
+ - type: Transform
+ pos: 170.5,129.5
+ parent: 1
+ - uid: 37094
+ components:
+ - type: Transform
+ pos: 171.5,129.5
+ parent: 1
+ - uid: 37095
+ components:
+ - type: Transform
+ pos: 172.5,129.5
+ parent: 1
+ - uid: 37096
+ components:
+ - type: Transform
+ pos: 172.5,130.5
+ parent: 1
+ - uid: 37097
+ components:
+ - type: Transform
+ pos: 172.5,131.5
+ parent: 1
+ - uid: 37098
+ components:
+ - type: Transform
+ pos: 172.5,132.5
+ parent: 1
+ - uid: 37099
+ components:
+ - type: Transform
+ pos: 161.5,152.5
+ parent: 1
+ - uid: 37100
+ components:
+ - type: Transform
+ pos: 162.5,152.5
+ parent: 1
+ - uid: 37101
+ components:
+ - type: Transform
+ pos: 163.5,152.5
+ parent: 1
+ - uid: 37102
+ components:
+ - type: Transform
+ pos: 164.5,152.5
+ parent: 1
+ - uid: 37103
+ components:
+ - type: Transform
+ pos: 165.5,152.5
+ parent: 1
+ - uid: 37104
+ components:
+ - type: Transform
+ pos: 166.5,152.5
+ parent: 1
+ - uid: 37105
+ components:
+ - type: Transform
+ pos: 167.5,152.5
+ parent: 1
+ - uid: 37106
+ components:
+ - type: Transform
+ pos: 167.5,151.5
+ parent: 1
+ - uid: 37107
+ components:
+ - type: Transform
+ pos: 167.5,150.5
+ parent: 1
+ - uid: 37108
+ components:
+ - type: Transform
+ pos: 167.5,149.5
+ parent: 1
+ - uid: 37109
+ components:
+ - type: Transform
+ pos: 167.5,148.5
+ parent: 1
+ - uid: 37110
+ components:
+ - type: Transform
+ pos: 168.5,148.5
+ parent: 1
+ - uid: 37111
+ components:
+ - type: Transform
+ pos: 168.5,147.5
+ parent: 1
+ - uid: 37112
+ components:
+ - type: Transform
+ pos: 168.5,146.5
+ parent: 1
+ - uid: 37113
+ components:
+ - type: Transform
+ pos: 168.5,145.5
+ parent: 1
+ - uid: 37114
+ components:
+ - type: Transform
+ pos: 168.5,144.5
+ parent: 1
+ - uid: 37115
+ components:
+ - type: Transform
+ pos: 168.5,143.5
+ parent: 1
+ - uid: 37116
+ components:
+ - type: Transform
+ pos: 168.5,142.5
+ parent: 1
+ - uid: 37117
+ components:
+ - type: Transform
+ pos: 168.5,141.5
+ parent: 1
+ - uid: 37118
+ components:
+ - type: Transform
+ pos: 168.5,140.5
+ parent: 1
+ - uid: 37119
+ components:
+ - type: Transform
+ pos: 169.5,140.5
+ parent: 1
+ - uid: 37120
+ components:
+ - type: Transform
+ pos: 170.5,140.5
+ parent: 1
+ - uid: 37121
+ components:
+ - type: Transform
+ pos: 170.5,139.5
+ parent: 1
+ - uid: 37122
+ components:
+ - type: Transform
+ pos: 171.5,139.5
+ parent: 1
+ - uid: 37123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 172.5,139.5
+ parent: 1
+ - uid: 37124
+ components:
+ - type: Transform
+ pos: 172.5,138.5
+ parent: 1
+ - uid: 37125
+ components:
+ - type: Transform
+ pos: 172.5,137.5
+ parent: 1
+ - uid: 37126
+ components:
+ - type: Transform
+ pos: 172.5,136.5
+ parent: 1
+ - uid: 37127
+ components:
+ - type: Transform
+ pos: 172.5,135.5
+ parent: 1
+ - uid: 37128
+ components:
+ - type: Transform
+ pos: 172.5,134.5
+ parent: 1
+ - uid: 37129
+ components:
+ - type: Transform
+ pos: 172.5,133.5
+ parent: 1
+ - uid: 37153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 37163
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 37178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 37187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 37192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 37193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 37194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 37195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 37202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 37203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 37204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 37205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 37209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,85.5
+ parent: 1
+- proto: Chair
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,117.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,171.5
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 91.5,173.5
+ parent: 1
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 92.5,173.5
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 92.5,45.5
+ parent: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 142.5,96.5
+ parent: 1
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,50.5
+ parent: 1
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,54.5
+ parent: 1
+ - uid: 1912
+ components:
+ - type: Transform
+ pos: 95.5,44.5
+ parent: 1
+ - uid: 2096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,70.5
+ parent: 1
+ - uid: 3063
+ components:
+ - type: Transform
+ pos: 130.5,113.5
+ parent: 1
+ - uid: 3793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 3943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,150.5
+ parent: 1
+ - uid: 4183
+ components:
+ - type: Transform
+ pos: 98.5,46.5
+ parent: 1
+ - uid: 4185
+ components:
+ - type: Transform
+ pos: 97.5,45.5
+ parent: 1
+ - uid: 4373
+ components:
+ - type: Transform
+ pos: 86.5,34.5
+ parent: 1
+ - uid: 4699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,44.5
+ parent: 1
+ - uid: 4879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,54.5
+ parent: 1
+ - uid: 4880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,55.5
+ parent: 1
+ - uid: 5241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,67.5
+ parent: 1
+ - uid: 5372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,143.5
+ parent: 1
+ - uid: 5947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,102.5
+ parent: 1
+ - uid: 6491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - uid: 6492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - uid: 6523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,171.5
+ parent: 1
+ - uid: 6907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,122.5
+ parent: 1
+ - uid: 7201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,55.5
+ parent: 1
+ - uid: 7209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,55.5
+ parent: 1
+ - uid: 7468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,50.5
+ parent: 1
+ - uid: 7508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,50.5
+ parent: 1
+ - uid: 9260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,107.5
+ parent: 1
+ - uid: 9403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,98.5
+ parent: 1
+ - uid: 9660
+ components:
+ - type: Transform
+ pos: 87.5,42.5
+ parent: 1
+ - uid: 9776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,68.5
+ parent: 1
+ - uid: 9787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,53.5
+ parent: 1
+ - uid: 9806
+ components:
+ - type: Transform
+ pos: 109.5,71.5
+ parent: 1
+ - uid: 9827
+ components:
+ - type: Transform
+ pos: 110.5,71.5
+ parent: 1
+ - uid: 9828
+ components:
+ - type: Transform
+ pos: 111.5,71.5
+ parent: 1
+ - uid: 9829
+ components:
+ - type: Transform
+ pos: 104.5,72.5
+ parent: 1
+ - uid: 9836
+ components:
+ - type: Transform
+ pos: 108.5,71.5
+ parent: 1
+ - uid: 9837
+ components:
+ - type: Transform
+ pos: 108.5,72.5
+ parent: 1
+ - uid: 10336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,149.5
+ parent: 1
+ - uid: 10925
+ components:
+ - type: Transform
+ pos: 79.5,63.5
+ parent: 1
+ - uid: 11046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,117.5
+ parent: 1
+ - uid: 11102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,34.5
+ parent: 1
+ - uid: 12047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,115.5
+ parent: 1
+ - uid: 12704
+ components:
+ - type: Transform
+ pos: 93.5,45.5
+ parent: 1
+ - uid: 13769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,144.5
+ parent: 1
+ - uid: 14067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,117.5
+ parent: 1
+ - uid: 15047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,158.5
+ parent: 1
+ - uid: 15048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,159.5
+ parent: 1
+ - uid: 15058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,78.5
+ parent: 1
+ - uid: 15059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,78.5
+ parent: 1
+ - uid: 15060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,78.5
+ parent: 1
+ - uid: 15061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,78.5
+ parent: 1
+ - uid: 15080
+ components:
+ - type: Transform
+ pos: 105.5,86.5
+ parent: 1
+ - uid: 16013
+ components:
+ - type: Transform
+ pos: 104.5,86.5
+ parent: 1
+ - uid: 16014
+ components:
+ - type: Transform
+ pos: 107.5,86.5
+ parent: 1
+ - uid: 16044
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 16045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,136.5
+ parent: 1
+ - uid: 16046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,134.5
+ parent: 1
+ - uid: 16047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,133.5
+ parent: 1
+ - uid: 16048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,136.5
+ parent: 1
+ - uid: 16084
+ components:
+ - type: Transform
+ pos: 108.5,86.5
+ parent: 1
+ - uid: 16193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,132.5
+ parent: 1
+ - uid: 16194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,132.5
+ parent: 1
+ - uid: 16195
+ components:
+ - type: Transform
+ pos: 121.5,134.5
+ parent: 1
+ - uid: 16196
+ components:
+ - type: Transform
+ pos: 95.5,134.5
+ parent: 1
+ - uid: 16197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,154.5
+ parent: 1
+ - uid: 16198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,154.5
+ parent: 1
+ - uid: 16209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,121.5
+ parent: 1
+ - uid: 16210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,121.5
+ parent: 1
+ - uid: 17303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,147.5
+ parent: 1
+ - uid: 17722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,102.5
+ parent: 1
+ - uid: 17723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,102.5
+ parent: 1
+ - uid: 17724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,103.5
+ parent: 1
+ - uid: 17725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,104.5
+ parent: 1
+ - uid: 17921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,93.5
+ parent: 1
+ - uid: 17968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,100.5
+ parent: 1
+ - uid: 18021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,84.5
+ parent: 1
+ - uid: 18023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,84.5
+ parent: 1
+ - uid: 18135
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - uid: 18140
+ components:
+ - type: Transform
+ pos: 62.5,107.5
+ parent: 1
+ - uid: 18150
+ components:
+ - type: Transform
+ pos: 62.5,106.5
+ parent: 1
+ - uid: 18151
+ components:
+ - type: Transform
+ pos: 61.5,106.5
+ parent: 1
+ - uid: 18152
+ components:
+ - type: Transform
+ pos: 60.5,106.5
+ parent: 1
+ - uid: 18193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,98.5
+ parent: 1
+ - uid: 18194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,100.5
+ parent: 1
+ - uid: 18195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,99.5
+ parent: 1
+ - uid: 18196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 18197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,93.5
+ parent: 1
+ - uid: 18198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,94.5
+ parent: 1
+ - uid: 18225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,101.5
+ parent: 1
+ - uid: 18226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,102.5
+ parent: 1
+ - uid: 18227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,95.5
+ parent: 1
+ - uid: 18228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,94.5
+ parent: 1
+ - uid: 18229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,93.5
+ parent: 1
+ - uid: 18571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,146.5
+ parent: 1
+ - uid: 18713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,78.5
+ parent: 1
+ - uid: 18714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,79.5
+ parent: 1
+ - uid: 18884
+ components:
+ - type: Transform
+ pos: 133.5,78.5
+ parent: 1
+ - uid: 18885
+ components:
+ - type: Transform
+ pos: 132.5,78.5
+ parent: 1
+ - uid: 18903
+ components:
+ - type: Transform
+ pos: 80.5,158.5
+ parent: 1
+ - uid: 19070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,87.5
+ parent: 1
+ - uid: 19071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,88.5
+ parent: 1
+ - uid: 19332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,104.5
+ parent: 1
+ - uid: 19333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,103.5
+ parent: 1
+ - uid: 19334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,102.5
+ parent: 1
+ - uid: 19352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,102.5
+ parent: 1
+ - uid: 19355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,103.5
+ parent: 1
+ - uid: 19356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,104.5
+ parent: 1
+ - uid: 19415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,102.5
+ parent: 1
+ - uid: 19416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,102.5
+ parent: 1
+ - uid: 19417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,102.5
+ parent: 1
+ - uid: 19454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,134.5
+ parent: 1
+ - uid: 19848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,149.5
+ parent: 1
+ - uid: 20445
+ components:
+ - type: Transform
+ pos: 33.5,101.5
+ parent: 1
+ - uid: 20447
+ components:
+ - type: Transform
+ pos: 28.5,103.5
+ parent: 1
+ - uid: 20448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,101.5
+ parent: 1
+ - uid: 20458
+ components:
+ - type: Transform
+ pos: 34.5,101.5
+ parent: 1
+ - uid: 20459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20460
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20826
+ components:
+ - type: Transform
+ pos: 35.5,101.5
+ parent: 1
+ - uid: 20858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,90.5
+ parent: 1
+ - uid: 20859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,91.5
+ parent: 1
+ - uid: 20860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,92.5
+ parent: 1
+ - uid: 20861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,93.5
+ parent: 1
+ - uid: 20933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 20934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20935
+ components:
+ - type: Transform
+ pos: 42.5,87.5
+ parent: 1
+ - uid: 20936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,85.5
+ parent: 1
+ - uid: 21019
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 21020
+ components:
+ - type: Transform
+ pos: 115.5,156.5
+ parent: 1
+ - uid: 21021
+ components:
+ - type: Transform
+ pos: 102.5,156.5
+ parent: 1
+ - uid: 21022
+ components:
+ - type: Transform
+ pos: 103.5,156.5
+ parent: 1
+ - uid: 21026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,151.5
+ parent: 1
+ - uid: 21027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,152.5
+ parent: 1
+ - uid: 21028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,151.5
+ parent: 1
+ - uid: 21029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,152.5
+ parent: 1
+ - uid: 21035
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,150.5
+ parent: 1
+ - uid: 21871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,151.5
+ parent: 1
+ - uid: 22681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,51.5
+ parent: 1
+ - uid: 22682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 22683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,51.5
+ parent: 1
+ - uid: 22684
+ components:
+ - type: Transform
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 22685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,49.5
+ parent: 1
+ - uid: 22686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 22687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,48.5
+ parent: 1
+ - uid: 22699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,62.5
+ parent: 1
+ - uid: 22717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,73.5
+ parent: 1
+ - uid: 22718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,70.5
+ parent: 1
+ - uid: 22719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,67.5
+ parent: 1
+ - uid: 22851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 22874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,72.5
+ parent: 1
+ - uid: 22875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,65.5
+ parent: 1
+ - uid: 22876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - uid: 22998
+ components:
+ - type: Transform
+ pos: 141.5,71.5
+ parent: 1
+ - uid: 22999
+ components:
+ - type: Transform
+ pos: 140.5,71.5
+ parent: 1
+ - uid: 23000
+ components:
+ - type: Transform
+ pos: 142.5,71.5
+ parent: 1
+ - uid: 23001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,69.5
+ parent: 1
+ - uid: 23002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,70.5
+ parent: 1
+ - uid: 23003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,71.5
+ parent: 1
+ - uid: 23020
+ components:
+ - type: Transform
+ pos: 131.5,50.5
+ parent: 1
+ - uid: 23021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,48.5
+ parent: 1
+ - uid: 23075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,54.5
+ parent: 1
+ - uid: 23076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,54.5
+ parent: 1
+ - uid: 23077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,54.5
+ parent: 1
+ - uid: 23139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,55.5
+ parent: 1
+ - uid: 23140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 23141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,55.5
+ parent: 1
+ - uid: 23355
+ components:
+ - type: Transform
+ pos: 98.5,45.5
+ parent: 1
+ - uid: 23597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,120.5
+ parent: 1
+ - uid: 23880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 24348
+ components:
+ - type: Transform
+ pos: 101.5,71.5
+ parent: 1
+ - uid: 24389
+ components:
+ - type: Transform
+ pos: 102.5,71.5
+ parent: 1
+ - uid: 24391
+ components:
+ - type: Transform
+ pos: 103.5,71.5
+ parent: 1
+ - uid: 24412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 24517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 24538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,142.5
+ parent: 1
+ - uid: 24699
+ components:
+ - type: Transform
+ pos: 104.5,71.5
+ parent: 1
+ - uid: 25172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,54.5
+ parent: 1
+ - uid: 25475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,56.5
+ parent: 1
+ - uid: 26173
+ components:
+ - type: Transform
+ pos: 96.5,45.5
+ parent: 1
+ - uid: 26588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,103.5
+ parent: 1
+ - uid: 26687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 26688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 26689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 26724
+ components:
+ - type: Transform
+ pos: 109.5,72.5
+ parent: 1
+ - uid: 26725
+ components:
+ - type: Transform
+ pos: 110.5,72.5
+ parent: 1
+ - uid: 26726
+ components:
+ - type: Transform
+ pos: 111.5,72.5
+ parent: 1
+ - uid: 26730
+ components:
+ - type: Transform
+ pos: 103.5,72.5
+ parent: 1
+ - uid: 26731
+ components:
+ - type: Transform
+ pos: 102.5,72.5
+ parent: 1
+ - uid: 26732
+ components:
+ - type: Transform
+ pos: 101.5,72.5
+ parent: 1
+ - uid: 26824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,143.5
+ parent: 1
+ - uid: 26848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,83.5
+ parent: 1
+ - uid: 26849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,82.5
+ parent: 1
+ - uid: 26850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,81.5
+ parent: 1
+ - uid: 26851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,82.5
+ parent: 1
+ - uid: 26852
+ components:
+ - type: Transform
+ pos: 98.5,85.5
+ parent: 1
+ - uid: 26853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,83.5
+ parent: 1
+ - uid: 26854
+ components:
+ - type: Transform
+ pos: 114.5,83.5
+ parent: 1
+ - uid: 26855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,81.5
+ parent: 1
+ - uid: 26858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,91.5
+ parent: 1
+ - uid: 26859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,92.5
+ parent: 1
+ - uid: 26860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,93.5
+ parent: 1
+ - uid: 27221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,82.5
+ parent: 1
+ - uid: 27225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,82.5
+ parent: 1
+ - uid: 27255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 27397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,81.5
+ parent: 1
+ - uid: 27398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,80.5
+ parent: 1
+ - uid: 27962
+ components:
+ - type: Transform
+ pos: 62.5,65.5
+ parent: 1
+ - uid: 27963
+ components:
+ - type: Transform
+ pos: 61.5,65.5
+ parent: 1
+ - uid: 27964
+ components:
+ - type: Transform
+ pos: 63.5,65.5
+ parent: 1
+ - uid: 28144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,104.5
+ parent: 1
+ - uid: 28145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 28163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,102.5
+ parent: 1
+ - uid: 28255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,123.5
+ parent: 1
+ - uid: 28260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,123.5
+ parent: 1
+ - uid: 28261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,123.5
+ parent: 1
+ - uid: 28262
+ components:
+ - type: Transform
+ pos: 109.5,119.5
+ parent: 1
+ - uid: 28263
+ components:
+ - type: Transform
+ pos: 107.5,119.5
+ parent: 1
+ - uid: 28264
+ components:
+ - type: Transform
+ pos: 108.5,119.5
+ parent: 1
+ - uid: 28282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,120.5
+ parent: 1
+ - uid: 28283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,120.5
+ parent: 1
+ - uid: 28285
+ components:
+ - type: Transform
+ pos: 105.5,122.5
+ parent: 1
+ - uid: 28287
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - uid: 28489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,143.5
+ parent: 1
+ - uid: 28619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,86.5
+ parent: 1
+ - uid: 28620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,85.5
+ parent: 1
+ - uid: 28621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,84.5
+ parent: 1
+ - uid: 28652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - uid: 28653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,54.5
+ parent: 1
+ - uid: 28654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,55.5
+ parent: 1
+ - uid: 28739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,142.5
+ parent: 1
+ - uid: 28800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,92.5
+ parent: 1
+ - uid: 28801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,91.5
+ parent: 1
+ - uid: 28802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,90.5
+ parent: 1
+ - uid: 28898
+ components:
+ - type: Transform
+ pos: 136.5,78.5
+ parent: 1
+ - uid: 28901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,63.5
+ parent: 1
+ - uid: 28902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,63.5
+ parent: 1
+ - uid: 28930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - uid: 28931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,65.5
+ parent: 1
+ - uid: 28935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,77.5
+ parent: 1
+ - uid: 28936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,76.5
+ parent: 1
+ - uid: 28937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,75.5
+ parent: 1
+ - uid: 28949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,41.5
+ parent: 1
+ - uid: 28951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,71.5
+ parent: 1
+ - uid: 29059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,144.5
+ parent: 1
+ - uid: 29103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,150.5
+ parent: 1
+ - uid: 29104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,151.5
+ parent: 1
+ - uid: 29136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,41.5
+ parent: 1
+ - uid: 29137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,41.5
+ parent: 1
+ - uid: 29138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,41.5
+ parent: 1
+ - uid: 29139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,41.5
+ parent: 1
+ - uid: 29140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,41.5
+ parent: 1
+ - uid: 29651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,117.5
+ parent: 1
+ - uid: 29652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,117.5
+ parent: 1
+ - uid: 29653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,117.5
+ parent: 1
+ - uid: 29734
+ components:
+ - type: Transform
+ pos: 150.5,139.5
+ parent: 1
+ - uid: 29735
+ components:
+ - type: Transform
+ pos: 151.5,139.5
+ parent: 1
+ - uid: 29818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,127.5
+ parent: 1
+ - uid: 29819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 29820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,128.5
+ parent: 1
+ - uid: 29843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,151.5
+ parent: 1
+ - uid: 29845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 29847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,149.5
+ parent: 1
+ - uid: 29861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,151.5
+ parent: 1
+ - uid: 29866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,149.5
+ parent: 1
+ - uid: 29868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,150.5
+ parent: 1
+ - uid: 29929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,151.5
+ parent: 1
+ - uid: 29933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,151.5
+ parent: 1
+ - uid: 30013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,150.5
+ parent: 1
+ - uid: 30137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,136.5
+ parent: 1
+ - uid: 30191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,148.5
+ parent: 1
+ - uid: 30424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,85.5
+ parent: 1
+ - uid: 30555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,155.5
+ parent: 1
+ - uid: 30597
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - uid: 32073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,155.5
+ parent: 1
+ - uid: 32090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,75.5
+ parent: 1
+ - uid: 32091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,74.5
+ parent: 1
+ - uid: 32092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,73.5
+ parent: 1
+ - uid: 32126
+ components:
+ - type: Transform
+ pos: 18.5,116.5
+ parent: 1
+ - uid: 32165
+ components:
+ - type: Transform
+ pos: 19.5,116.5
+ parent: 1
+ - uid: 32387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,171.5
+ parent: 1
+ - uid: 33436
+ components:
+ - type: Transform
+ pos: 90.5,20.5
+ parent: 1
+ - uid: 33438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,21.5
+ parent: 1
+ - uid: 33439
+ components:
+ - type: Transform
+ pos: 93.5,20.5
+ parent: 1
+ - uid: 33441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,21.5
+ parent: 1
+ - uid: 33442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,21.5
+ parent: 1
+ - uid: 33444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,21.5
+ parent: 1
+ - uid: 33445
+ components:
+ - type: Transform
+ pos: 91.5,20.5
+ parent: 1
+ - uid: 33447
+ components:
+ - type: Transform
+ pos: 96.5,20.5
+ parent: 1
+ - uid: 33464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,22.5
+ parent: 1
+ - uid: 33465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,23.5
+ parent: 1
+ - uid: 33607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,37.5
+ parent: 1
+ - uid: 33608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,36.5
+ parent: 1
+ - uid: 33609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,35.5
+ parent: 1
+ - uid: 33610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,34.5
+ parent: 1
+ - uid: 33611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,31.5
+ parent: 1
+ - uid: 33612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,31.5
+ parent: 1
+ - uid: 33718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,27.5
+ parent: 1
+ - uid: 33719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,26.5
+ parent: 1
+ - uid: 33720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,25.5
+ parent: 1
+ - uid: 33721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,18.5
+ parent: 1
+ - uid: 33722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,18.5
+ parent: 1
+ - uid: 33723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,18.5
+ parent: 1
+ - uid: 33724
+ components:
+ - type: Transform
+ pos: 94.5,32.5
+ parent: 1
+ - uid: 33725
+ components:
+ - type: Transform
+ pos: 96.5,32.5
+ parent: 1
+ - uid: 33726
+ components:
+ - type: Transform
+ pos: 95.5,32.5
+ parent: 1
+ - uid: 33744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,45.5
+ parent: 1
+ - uid: 33745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,44.5
+ parent: 1
+ - uid: 33746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,45.5
+ parent: 1
+ - uid: 33892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,17.5
+ parent: 1
+ - uid: 33972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,15.5
+ parent: 1
+ - uid: 33973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,16.5
+ parent: 1
+ - uid: 33977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,16.5
+ parent: 1
+ - uid: 33978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,16.5
+ parent: 1
+ - uid: 34030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,16.5
+ parent: 1
+ - uid: 34035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,17.5
+ parent: 1
+ - uid: 34041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,16.5
+ parent: 1
+ - uid: 34042
+ components:
+ - type: Transform
+ pos: 74.5,18.5
+ parent: 1
+ - uid: 34043
+ components:
+ - type: Transform
+ pos: 75.5,18.5
+ parent: 1
+ - uid: 34044
+ components:
+ - type: Transform
+ pos: 76.5,18.5
+ parent: 1
+ - uid: 34045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,16.5
+ parent: 1
+ - uid: 34046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,16.5
+ parent: 1
+ - uid: 34047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,16.5
+ parent: 1
+ - uid: 34080
+ components:
+ - type: Transform
+ pos: 96.5,44.5
+ parent: 1
+ - uid: 34087
+ components:
+ - type: Transform
+ pos: 92.5,32.5
+ parent: 1
+ - uid: 34476
+ components:
+ - type: Transform
+ pos: 92.5,46.5
+ parent: 1
+ - uid: 34477
+ components:
+ - type: Transform
+ pos: 91.5,45.5
+ parent: 1
+ - uid: 34479
+ components:
+ - type: Transform
+ pos: 91.5,46.5
+ parent: 1
+ - uid: 34506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,48.5
+ parent: 1
+ - uid: 34507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,48.5
+ parent: 1
+ - uid: 34508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,47.5
+ parent: 1
+ - uid: 34509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,50.5
+ parent: 1
+ - uid: 34510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,51.5
+ parent: 1
+ - uid: 34511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,51.5
+ parent: 1
+ - uid: 34612
+ components:
+ - type: Transform
+ pos: 94.5,45.5
+ parent: 1
+ - uid: 34626
+ components:
+ - type: Transform
+ pos: 136.5,86.5
+ parent: 1
+ - uid: 34642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,64.5
+ parent: 1
+ - uid: 34643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,65.5
+ parent: 1
+ - uid: 34694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,71.5
+ parent: 1
+ - uid: 34700
+ components:
+ - type: Transform
+ pos: 95.5,45.5
+ parent: 1
+ - uid: 34773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,138.5
+ parent: 1
+ - uid: 34875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,77.5
+ parent: 1
+ - uid: 34876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,77.5
+ parent: 1
+ - uid: 34987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,148.5
+ parent: 1
+ - uid: 34989
+ components:
+ - type: Transform
+ pos: 93.5,44.5
+ parent: 1
+ - uid: 34990
+ components:
+ - type: Transform
+ pos: 94.5,44.5
+ parent: 1
+ - uid: 35161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,170.5
+ parent: 1
+ - uid: 35225
+ components:
+ - type: Transform
+ pos: 97.5,46.5
+ parent: 1
+ - uid: 35227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,172.5
+ parent: 1
+ - uid: 35228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,171.5
+ parent: 1
+ - uid: 35264
+ components:
+ - type: Transform
+ pos: 93.5,46.5
+ parent: 1
+ - uid: 35380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,164.5
+ parent: 1
+ - uid: 35381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,163.5
+ parent: 1
+ - uid: 35411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,170.5
+ parent: 1
+ - uid: 35412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,171.5
+ parent: 1
+ - uid: 35484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,128.5
+ parent: 1
+ - uid: 35531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,114.5
+ parent: 1
+ - uid: 35608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,159.5
+ parent: 1
+ - uid: 35609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,160.5
+ parent: 1
+ - uid: 35631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,155.5
+ parent: 1
+ - uid: 35632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,157.5
+ parent: 1
+ - uid: 35633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,158.5
+ parent: 1
+ - uid: 35841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,131.5
+ parent: 1
+ - uid: 35842
+ components:
+ - type: Transform
+ pos: 52.5,133.5
+ parent: 1
+ - uid: 35843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,131.5
+ parent: 1
+ - uid: 35844
+ components:
+ - type: Transform
+ pos: 51.5,133.5
+ parent: 1
+ - uid: 35845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,128.5
+ parent: 1
+ - uid: 35846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,129.5
+ parent: 1
+ - uid: 35847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,129.5
+ parent: 1
+ - uid: 35910
+ components:
+ - type: Transform
+ pos: 96.5,46.5
+ parent: 1
+ - uid: 35918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,142.5
+ parent: 1
+ - uid: 35941
+ components:
+ - type: Transform
+ pos: 96.5,115.5
+ parent: 1
+ - uid: 36122
+ components:
+ - type: Transform
+ pos: 34.5,123.5
+ parent: 1
+ - uid: 36124
+ components:
+ - type: Transform
+ pos: 33.5,123.5
+ parent: 1
+ - uid: 36125
+ components:
+ - type: Transform
+ pos: 32.5,123.5
+ parent: 1
+ - uid: 36171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,109.5
+ parent: 1
+ - uid: 36172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,118.5
+ parent: 1
+ - uid: 36173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,118.5
+ parent: 1
+ - uid: 36174
+ components:
+ - type: Transform
+ pos: 16.5,108.5
+ parent: 1
+ - uid: 36175
+ components:
+ - type: Transform
+ pos: 15.5,108.5
+ parent: 1
+ - uid: 36434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,88.5
+ parent: 1
+ - uid: 36435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,87.5
+ parent: 1
+ - uid: 36436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,86.5
+ parent: 1
+ - uid: 36443
+ components:
+ - type: Transform
+ pos: 19.5,84.5
+ parent: 1
+ - uid: 36444
+ components:
+ - type: Transform
+ pos: 20.5,84.5
+ parent: 1
+ - uid: 36445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,82.5
+ parent: 1
+ - uid: 36446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,82.5
+ parent: 1
+ - uid: 36472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,82.5
+ parent: 1
+ - uid: 36473
+ components:
+ - type: Transform
+ pos: 35.5,84.5
+ parent: 1
+ - uid: 36868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,165.5
+ parent: 1
+ - uid: 36870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,164.5
+ parent: 1
+ - uid: 36872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,168.5
+ parent: 1
+ - uid: 36964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,169.5
+ parent: 1
+ - uid: 37047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,157.5
+ parent: 1
+ - uid: 37048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,155.5
+ parent: 1
+ - uid: 37140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,148.5
+ parent: 1
+ - uid: 37151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,132.5
+ parent: 1
+ - uid: 37200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,135.5
+ parent: 1
+ - uid: 37363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,64.5
+ parent: 1
+- proto: ChairFolding
+ entities:
+ - uid: 14489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 166.70659,134.48993
+ parent: 1
+ - uid: 33440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.61871,26.82513
+ parent: 1
+ - uid: 33443
+ components:
+ - type: Transform
+ pos: 99.6083,27.866798
+ parent: 1
+ - uid: 33446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.07705,25.866798
+ parent: 1
+ - uid: 33727
+ components:
+ - type: Transform
+ pos: 94.51011,20.608078
+ parent: 1
+ - uid: 33728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.369484,18.559784
+ parent: 1
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 27823
+ components:
+ - type: Transform
+ pos: 90.5,48.5
+ parent: 1
+ - uid: 30278
+ components:
+ - type: Transform
+ pos: 91.5,48.5
+ parent: 1
+ - uid: 30279
+ components:
+ - type: Transform
+ pos: 90.5016,48.969498
+ parent: 1
+ - uid: 30284
+ components:
+ - type: Transform
+ pos: 91.49901,48.966404
+ parent: 1
+ - uid: 33437
+ components:
+ - type: Transform
+ pos: 101.3583,26.898048
+ parent: 1
+ - uid: 37150
+ components:
+ - type: Transform
+ pos: 168.17188,136.5177
+ parent: 1
+- proto: ChairGreyscale
+ entities:
+ - uid: 32297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,42.5
+ parent: 1
+- proto: ChairOfficeDark
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,103.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,103.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,96.5
+ parent: 1
+ - uid: 760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,42.5
+ parent: 1
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 106.5,40.5
+ parent: 1
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,89.5
+ parent: 1
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,145.5
+ parent: 1
+ - uid: 5484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 5507
+ components:
+ - type: Transform
+ pos: 39.546955,107.65251
+ parent: 1
+ - uid: 5836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,54.5
+ parent: 1
+ - uid: 5838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,58.5
+ parent: 1
+ - uid: 5900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,96.5
+ parent: 1
+ - uid: 6374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.53877,141.65424
+ parent: 1
+ - uid: 6485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,169.5
+ parent: 1
+ - uid: 9579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,43.5
+ parent: 1
+ - uid: 9632
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 9641
+ components:
+ - type: Transform
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 9647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,62.5
+ parent: 1
+ - uid: 9651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,63.5
+ parent: 1
+ - uid: 9658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,42.5
+ parent: 1
+ - uid: 11284
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 12540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,92.5
+ parent: 1
+ - uid: 13531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.56832,56.67458
+ parent: 1
+ - uid: 13580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,75.5
+ parent: 1
+ - uid: 13669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,59.5
+ parent: 1
+ - uid: 14490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,134.5
+ parent: 1
+ - uid: 15402
+ components:
+ - type: Transform
+ pos: 126.5,145.5
+ parent: 1
+ - uid: 15403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,143.5
+ parent: 1
+ - uid: 16188
+ components:
+ - type: Transform
+ pos: 116.5,123.5
+ parent: 1
+ - uid: 16200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,159.5
+ parent: 1
+ - uid: 16457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,74.5
+ parent: 1
+ - uid: 17739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,103.5
+ parent: 1
+ - uid: 18088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,91.5
+ parent: 1
+ - uid: 18191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,108.5
+ parent: 1
+ - uid: 18192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,108.5
+ parent: 1
+ - uid: 18841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,140.5
+ parent: 1
+ - uid: 18880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,41.5
+ parent: 1
+ - uid: 18888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,41.5
+ parent: 1
+ - uid: 19340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,108.5
+ parent: 1
+ - uid: 19399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,102.5
+ parent: 1
+ - uid: 19441
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,103.5
+ parent: 1
+ - uid: 19505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,98.5
+ parent: 1
+ - uid: 20403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,92.5
+ parent: 1
+ - uid: 20417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,86.5
+ parent: 1
+ - uid: 20476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,113.5
+ parent: 1
+ - uid: 20477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,114.5
+ parent: 1
+ - uid: 20478
+ components:
+ - type: Transform
+ pos: 33.5,116.5
+ parent: 1
+ - uid: 20479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,108.5
+ parent: 1
+ - uid: 20945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,113.5
+ parent: 1
+ - uid: 20946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,113.5
+ parent: 1
+ - uid: 21033
+ components:
+ - type: Transform
+ pos: 143.5,124.5
+ parent: 1
+ - uid: 22688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,63.5
+ parent: 1
+ - uid: 22700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,61.5
+ parent: 1
+ - uid: 22733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,52.5
+ parent: 1
+ - uid: 22873
+ components:
+ - type: Transform
+ pos: 128.5,69.5
+ parent: 1
+ - uid: 22901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 22970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,74.5
+ parent: 1
+ - uid: 22971
+ components:
+ - type: Transform
+ pos: 131.5,74.5
+ parent: 1
+ - uid: 23173
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 23174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,69.5
+ parent: 1
+ - uid: 23408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,89.5
+ parent: 1
+ - uid: 24734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - uid: 25541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,115.5
+ parent: 1
+ - uid: 26699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,107.5
+ parent: 1
+ - uid: 27070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,75.5
+ parent: 1
+ - uid: 27071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,68.5
+ parent: 1
+ - uid: 27218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 27322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 28150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,123.5
+ parent: 1
+ - uid: 29341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,133.5
+ parent: 1
+ - uid: 30393
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 30455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,112.5
+ parent: 1
+ - uid: 32293
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 33422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,23.5
+ parent: 1
+ - uid: 33614
+ components:
+ - type: Transform
+ pos: 115.5,39.5
+ parent: 1
+ - uid: 34641
+ components:
+ - type: Transform
+ pos: 162.5,62.5
+ parent: 1
+ - uid: 34651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,55.5
+ parent: 1
+ - uid: 35328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,162.5
+ parent: 1
+ - uid: 35329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,161.5
+ parent: 1
+ - uid: 35330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,160.5
+ parent: 1
+ - uid: 35338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,161.5
+ parent: 1
+ - uid: 35382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,161.5
+ parent: 1
+ - uid: 35383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,161.5
+ parent: 1
+ - uid: 35384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,161.5
+ parent: 1
+ - uid: 35385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,161.5
+ parent: 1
+ - uid: 35386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,162.5
+ parent: 1
+ - uid: 35387
+ components:
+ - type: Transform
+ pos: 84.5,162.5
+ parent: 1
+ - uid: 35388
+ components:
+ - type: Transform
+ pos: 83.5,160.5
+ parent: 1
+ - uid: 35389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,162.5
+ parent: 1
+ - uid: 35390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.92874,160.96445
+ parent: 1
+ - uid: 35391
+ components:
+ - type: Transform
+ pos: 82.96951,161.98367
+ parent: 1
+ - uid: 35392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.98872,162.06522
+ parent: 1
+ - uid: 35393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.99164,161.96738
+ parent: 1
+ - uid: 35588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,89.5
+ parent: 1
+ - uid: 35754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,90.5
+ parent: 1
+ - uid: 36498
+ components:
+ - type: Transform
+ pos: 76.5,116.5
+ parent: 1
+ - uid: 37263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,43.5
+ parent: 1
+ - uid: 37369
+ components:
+ - type: Transform
+ pos: 131.5,62.5
+ parent: 1
+ - uid: 37475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,38.5
+ parent: 1
+- proto: ChairOfficeLight
+ entities:
+ - uid: 13593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,75.5
+ parent: 1
+ - uid: 13722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 26769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 28721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,51.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 29520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,91.5
+ parent: 1
+ - uid: 30166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,152.5
+ parent: 1
+ - uid: 30167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,152.5
+ parent: 1
+ - uid: 30168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,152.5
+ parent: 1
+ - uid: 30169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,152.5
+ parent: 1
+ - uid: 33453
+ components:
+ - type: Transform
+ pos: 91.5,26.5
+ parent: 1
+ - uid: 33454
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+- proto: ChairWood
+ entities:
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,107.5
+ parent: 1
+ - uid: 3556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,115.5
+ parent: 1
+ - uid: 3583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 3592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 3599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,112.5
+ parent: 1
+ - uid: 3665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 3827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,115.5
+ parent: 1
+ - uid: 3829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,112.5
+ parent: 1
+ - uid: 3834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,115.5
+ parent: 1
+ - uid: 3891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,112.5
+ parent: 1
+ - uid: 3942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,51.5
+ parent: 1
+ - uid: 3992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 4025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,114.5
+ parent: 1
+ - uid: 4026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,107.5
+ parent: 1
+ - uid: 4629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,39.5
+ parent: 1
+ - uid: 4638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,39.5
+ parent: 1
+ - uid: 4639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,39.5
+ parent: 1
+ - uid: 4640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,39.5
+ parent: 1
+ - uid: 6741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,124.5
+ parent: 1
+ - uid: 9840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,51.5
+ parent: 1
+ - uid: 11672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,114.5
+ parent: 1
+ - uid: 11673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 11674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,112.5
+ parent: 1
+ - uid: 12127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,115.5
+ parent: 1
+ - uid: 12397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,54.5
+ parent: 1
+ - uid: 12689
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 13710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 15093
+ components:
+ - type: Transform
+ pos: 39.5,125.5
+ parent: 1
+ - uid: 15094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,123.5
+ parent: 1
+ - uid: 18685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,123.5
+ parent: 1
+ - uid: 19349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,124.5
+ parent: 1
+ - uid: 23789
+ components:
+ - type: Transform
+ pos: 118.5,109.5
+ parent: 1
+ - uid: 23790
+ components:
+ - type: Transform
+ pos: 98.5,109.5
+ parent: 1
+ - uid: 25612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 26217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,78.5
+ parent: 1
+ - uid: 26218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 26219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 26638
+ components:
+ - type: Transform
+ pos: 105.5,99.5
+ parent: 1
+ - uid: 27112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,58.5
+ parent: 1
+ - uid: 27113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,59.5
+ parent: 1
+ - uid: 27115
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 27116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,58.5
+ parent: 1
+ - uid: 27202
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 27203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,57.5
+ parent: 1
+ - uid: 27509
+ components:
+ - type: Transform
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 27824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,54.5
+ parent: 1
+ - uid: 28349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,124.5
+ parent: 1
+ - uid: 34083
+ components:
+ - type: Transform
+ pos: 114.47426,168.51218
+ parent: 1
+ - uid: 35163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,171.5
+ parent: 1
+ - uid: 35164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,170.5
+ parent: 1
+ - uid: 35598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,164.5
+ parent: 1
+ - uid: 35605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,162.5
+ parent: 1
+ - uid: 37039
+ components:
+ - type: Transform
+ pos: 67.5,163.5
+ parent: 1
+- proto: CheapLighter
+ entities:
+ - uid: 23778
+ components:
+ - type: Transform
+ pos: 35.43704,90.71716
+ parent: 1
+ - uid: 37161
+ components:
+ - type: Transform
+ pos: 167.68417,134.58716
+ parent: 1
+- proto: CheapRollerBed
+ entities:
+ - uid: 28659
+ components:
+ - type: Transform
+ pos: 119.5,47.5
+ parent: 1
+- proto: CheckerBoard
+ entities:
+ - uid: 27213
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.504555,58.54173
+ parent: 1
+- proto: ChemDispenser
+ entities:
+ - uid: 18026
+ components:
+ - type: Transform
+ pos: 89.5,103.5
+ parent: 1
+ - uid: 18027
+ components:
+ - type: Transform
+ pos: 89.5,109.5
+ parent: 1
+ - uid: 18030
+ components:
+ - type: Transform
+ pos: 87.5,99.5
+ parent: 1
+- proto: ChemistryHotplate
+ entities:
+ - uid: 18039
+ components:
+ - type: Transform
+ pos: 85.5,110.5
+ parent: 1
+ - uid: 18043
+ components:
+ - type: Transform
+ pos: 85.5,100.5
+ parent: 1
+- proto: ChemMaster
+ entities:
+ - uid: 18025
+ components:
+ - type: Transform
+ pos: 89.5,104.5
+ parent: 1
+ - uid: 18028
+ components:
+ - type: Transform
+ pos: 89.5,108.5
+ parent: 1
+ - uid: 18029
+ components:
+ - type: Transform
+ pos: 88.5,99.5
+ parent: 1
+- proto: ChessBoard
+ entities:
+ - uid: 20843
+ components:
+ - type: Transform
+ pos: 28.472893,102.60607
+ parent: 1
+ - uid: 27210
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 80.47809,58.50562
+ parent: 1
+- proto: ChurchBell
+ entities:
+ - uid: 26943
+ components:
+ - type: Transform
+ pos: 84.5,78.5
+ parent: 1
+- proto: ChurchOrganInstrument
+ entities:
+ - uid: 26216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,70.5
+ parent: 1
+- proto: Cigar
+ entities:
+ - uid: 26645
+ components:
+ - type: Transform
+ pos: 110.78028,104.48201
+ parent: 1
+ - uid: 26646
+ components:
+ - type: Transform
+ pos: 110.71547,104.66411
+ parent: 1
+- proto: Cigarette
+ entities:
+ - uid: 33527
+ components:
+ - type: Transform
+ pos: 101.67412,26.29095
+ parent: 1
+ - uid: 34586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.44785,87.628365
+ parent: 1
+ - uid: 34587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.87535,86.886765
+ parent: 1
+ - uid: 34588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.44016,87.0381
+ parent: 1
+ - uid: 34589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.3707,86.23851
+ parent: 1
+ - uid: 34590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.61452,86.19836
+ parent: 1
+ - uid: 34591
+ components:
+ - type: Transform
+ pos: 155.712,85.47564
+ parent: 1
+ - uid: 34592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.49905,85.50652
+ parent: 1
+- proto: CigaretteSpent
+ entities:
+ - uid: 33511
+ components:
+ - type: Transform
+ pos: 101.83153,21.814949
+ parent: 1
+ - uid: 33512
+ components:
+ - type: Transform
+ pos: 101.93338,21.65754
+ parent: 1
+ - uid: 33513
+ components:
+ - type: Transform
+ pos: 101.67412,21.53717
+ parent: 1
+ - uid: 33514
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 102.0306,21.476982
+ parent: 1
+ - uid: 33515
+ components:
+ - type: Transform
+ pos: 101.52134,21.889023
+ parent: 1
+ - uid: 33516
+ components:
+ - type: Transform
+ pos: 101.64171,21.666801
+ parent: 1
+ - uid: 33517
+ components:
+ - type: Transform
+ pos: 101.95653,21.370506
+ parent: 1
+ - uid: 33518
+ components:
+ - type: Transform
+ pos: 101.438,21.509392
+ parent: 1
+ - uid: 33519
+ components:
+ - type: Transform
+ pos: 99.660225,26.21096
+ parent: 1
+ - uid: 33520
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 99.734886,27.018402
+ parent: 1
+ - uid: 33521
+ components:
+ - type: Transform
+ pos: 98.89634,27.507256
+ parent: 1
+ - uid: 33522
+ components:
+ - type: Transform
+ pos: 101.70653,28.340588
+ parent: 1
+ - uid: 33523
+ components:
+ - type: Transform
+ pos: 102.42412,27.368366
+ parent: 1
+ - uid: 33524
+ components:
+ - type: Transform
+ pos: 101.813,25.715591
+ parent: 1
+ - uid: 33525
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 99.8269,28.372997
+ parent: 1
+ - uid: 33526
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.56359,28.532291
+ parent: 1
+ - uid: 34593
+ components:
+ - type: Transform
+ pos: 155.68123,85.77784
+ parent: 1
+ - uid: 34594
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 155.1593,86.93618
+ parent: 1
+ - uid: 34595
+ components:
+ - type: Transform
+ pos: 155.65036,87.71746
+ parent: 1
+- proto: CigarGold
+ entities:
+ - uid: 13596
+ components:
+ - type: Transform
+ pos: 40.739925,74.47635
+ parent: 1
+ - uid: 26891
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 107.484314,72.47673
+ parent: 1
+ - uid: 30172
+ components:
+ - type: Transform
+ pos: 136.544,153.60684
+ parent: 1
+ - uid: 35793
+ components:
+ - type: Transform
+ pos: 54.95068,122.90553
+ parent: 1
+- proto: CigarGoldCase
+ entities:
+ - uid: 13597
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 131.52324,93.61302
+ parent: 1
+- proto: CigCartonGreen
+ entities:
+ - uid: 2819
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 146.51993,108.51358
+ parent: 1
+ - uid: 26504
+ components:
+ - type: Transform
+ pos: 86.52094,55.628357
+ parent: 1
+- proto: CigPackGreen
+ entities:
+ - uid: 13675
+ components:
+ - type: Transform
+ pos: 59.571968,59.56051
+ parent: 1
+ - uid: 13720
+ components:
+ - type: Transform
+ rot: -257.61059759436245 rad
+ pos: 50.00238,48.642887
+ parent: 1
+ - uid: 18080
+ components:
+ - type: Transform
+ pos: 167.68417,135.19826
+ parent: 1
+ - uid: 21000
+ components:
+ - type: Transform
+ pos: 26.243996,99.750244
+ parent: 1
+ - uid: 23777
+ components:
+ - type: Transform
+ pos: 35.78079,90.45675
+ parent: 1
+ - uid: 34596
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 155.50189,86.72616
+ parent: 1
+- proto: CircuitImprinter
+ entities:
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 49.5,89.5
+ parent: 1
+- proto: CleanerDispenser
+ entities:
+ - uid: 29573
+ components:
+ - type: Transform
+ pos: 156.5,124.5
+ parent: 1
+- proto: ClosetBombFilled
+ entities:
+ - uid: 5345
+ components:
+ - type: Transform
+ pos: 37.5,82.5
+ parent: 1
+ - uid: 26718
+ components:
+ - type: Transform
+ pos: 151.5,58.5
+ parent: 1
+- proto: ClosetChefFilled
+ entities:
+ - uid: 13310
+ components:
+ - type: Transform
+ pos: 115.5,93.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.99739
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 3731
+ components:
+ - type: Transform
+ pos: 94.5,106.5
+ parent: 1
+ - uid: 4234
+ components:
+ - type: Transform
+ pos: 86.5,66.5
+ parent: 1
+ - uid: 4589
+ components:
+ - type: Transform
+ pos: 87.5,119.5
+ parent: 1
+ - uid: 5321
+ components:
+ - type: Transform
+ pos: 161.5,132.5
+ parent: 1
+ - uid: 6507
+ components:
+ - type: Transform
+ pos: 164.5,78.5
+ parent: 1
+ - uid: 6676
+ components:
+ - type: Transform
+ pos: 141.5,42.5
+ parent: 1
+ - uid: 7099
+ components:
+ - type: Transform
+ pos: 18.5,106.5
+ parent: 1
+ - uid: 9406
+ components:
+ - type: Transform
+ pos: 24.5,95.5
+ parent: 1
+ - uid: 9994
+ components:
+ - type: Transform
+ pos: 132.5,85.5
+ parent: 1
+ - uid: 10344
+ components:
+ - type: Transform
+ pos: 117.5,65.5
+ parent: 1
+ - uid: 10385
+ components:
+ - type: Transform
+ pos: 54.5,145.5
+ parent: 1
+ - uid: 13539
+ components:
+ - type: Transform
+ pos: 44.5,48.5
+ parent: 1
+ - uid: 16122
+ components:
+ - type: Transform
+ pos: 96.5,129.5
+ parent: 1
+ - uid: 16123
+ components:
+ - type: Transform
+ pos: 120.5,128.5
+ parent: 1
+ - uid: 16124
+ components:
+ - type: Transform
+ pos: 120.5,146.5
+ parent: 1
+ - uid: 17780
+ components:
+ - type: Transform
+ pos: 65.5,104.5
+ parent: 1
+ - uid: 18268
+ components:
+ - type: Transform
+ pos: 90.5,37.5
+ parent: 1
+ - uid: 18475
+ components:
+ - type: Transform
+ pos: 159.5,62.5
+ parent: 1
+ - uid: 18484
+ components:
+ - type: Transform
+ pos: 93.5,84.5
+ parent: 1
+ - uid: 18840
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 19268
+ components:
+ - type: Transform
+ pos: 147.5,106.5
+ parent: 1
+ - uid: 19418
+ components:
+ - type: Transform
+ pos: 60.5,34.5
+ parent: 1
+ - uid: 19473
+ components:
+ - type: Transform
+ pos: 36.5,126.5
+ parent: 1
+ - uid: 19483
+ components:
+ - type: Transform
+ pos: 23.5,82.5
+ parent: 1
+ - uid: 19688
+ components:
+ - type: Transform
+ pos: 153.5,93.5
+ parent: 1
+ - uid: 20425
+ components:
+ - type: Transform
+ pos: 149.5,147.5
+ parent: 1
+ - uid: 21012
+ components:
+ - type: Transform
+ pos: 31.5,99.5
+ parent: 1
+ - uid: 21016
+ components:
+ - type: Transform
+ pos: 83.5,123.5
+ parent: 1
+ - uid: 21023
+ components:
+ - type: Transform
+ pos: 104.5,156.5
+ parent: 1
+ - uid: 21528
+ components:
+ - type: Transform
+ pos: 142.5,48.5
+ parent: 1
+ - uid: 23134
+ components:
+ - type: Transform
+ pos: 148.5,72.5
+ parent: 1
+ - uid: 24166
+ components:
+ - type: Transform
+ pos: 107.5,96.5
+ parent: 1
+ - uid: 26314
+ components:
+ - type: Transform
+ pos: 140.5,78.5
+ parent: 1
+ - uid: 26901
+ components:
+ - type: Transform
+ pos: 111.5,115.5
+ parent: 1
+ - uid: 27172
+ components:
+ - type: Transform
+ pos: 122.5,116.5
+ parent: 1
+ - uid: 27840
+ components:
+ - type: Transform
+ pos: 68.5,36.5
+ parent: 1
+ - uid: 27946
+ components:
+ - type: Transform
+ pos: 83.5,103.5
+ parent: 1
+ - uid: 27949
+ components:
+ - type: Transform
+ pos: 53.5,63.5
+ parent: 1
+ - uid: 27958
+ components:
+ - type: Transform
+ pos: 49.5,95.5
+ parent: 1
+ - uid: 27970
+ components:
+ - type: Transform
+ pos: 82.5,36.5
+ parent: 1
+ - uid: 28139
+ components:
+ - type: Transform
+ pos: 78.5,112.5
+ parent: 1
+ - uid: 28189
+ components:
+ - type: Transform
+ pos: 39.5,79.5
+ parent: 1
+ - uid: 28266
+ components:
+ - type: Transform
+ pos: 100.5,120.5
+ parent: 1
+ - uid: 28267
+ components:
+ - type: Transform
+ pos: 58.5,111.5
+ parent: 1
+ - uid: 28804
+ components:
+ - type: Transform
+ pos: 58.5,81.5
+ parent: 1
+ - uid: 29606
+ components:
+ - type: Transform
+ pos: 160.5,117.5
+ parent: 1
+ - uid: 29737
+ components:
+ - type: Transform
+ pos: 144.5,136.5
+ parent: 1
+ - uid: 30174
+ components:
+ - type: Transform
+ pos: 133.5,150.5
+ parent: 1
+ - uid: 30181
+ components:
+ - type: Transform
+ pos: 139.5,153.5
+ parent: 1
+ - uid: 30691
+ components:
+ - type: Transform
+ pos: 108.5,32.5
+ parent: 1
+ - uid: 31847
+ components:
+ - type: Transform
+ pos: 96.5,74.5
+ parent: 1
+ - uid: 32399
+ components:
+ - type: Transform
+ pos: 94.5,25.5
+ parent: 1
+ - uid: 33433
+ components:
+ - type: Transform
+ pos: 113.5,23.5
+ parent: 1
+ - uid: 33434
+ components:
+ - type: Transform
+ pos: 118.5,42.5
+ parent: 1
+ - uid: 34033
+ components:
+ - type: Transform
+ pos: 113.5,20.5
+ parent: 1
+ - uid: 34034
+ components:
+ - type: Transform
+ pos: 114.5,20.5
+ parent: 1
+ - uid: 34610
+ components:
+ - type: Transform
+ pos: 144.5,46.5
+ parent: 1
+ - uid: 34720
+ components:
+ - type: Transform
+ pos: 136.5,148.5
+ parent: 1
+ - uid: 34757
+ components:
+ - type: Transform
+ pos: 139.5,134.5
+ parent: 1
+ - uid: 35229
+ components:
+ - type: Transform
+ pos: 104.5,172.5
+ parent: 1
+ - uid: 35591
+ components:
+ - type: Transform
+ pos: 59.5,155.5
+ parent: 1
+ - uid: 36148
+ components:
+ - type: Transform
+ pos: 21.5,118.5
+ parent: 1
+ - uid: 37040
+ components:
+ - type: Transform
+ pos: 108.5,164.5
+ parent: 1
+ - uid: 37201
+ components:
+ - type: Transform
+ pos: 162.5,139.5
+ parent: 1
+- proto: ClosetEmergencyN2FilledRandom
+ entities:
+ - uid: 2499
+ components:
+ - type: Transform
+ pos: 145.5,154.5
+ parent: 1
+ - uid: 3127
+ components:
+ - type: Transform
+ pos: 44.5,49.5
+ parent: 1
+ - uid: 4213
+ components:
+ - type: Transform
+ pos: 86.5,67.5
+ parent: 1
+ - uid: 6442
+ components:
+ - type: Transform
+ pos: 68.5,37.5
+ parent: 1
+ - uid: 7111
+ components:
+ - type: Transform
+ pos: 21.5,102.5
+ parent: 1
+ - uid: 8517
+ components:
+ - type: Transform
+ pos: 58.5,144.5
+ parent: 1
+ - uid: 9853
+ components:
+ - type: Transform
+ pos: 111.5,48.5
+ parent: 1
+ - uid: 12417
+ components:
+ - type: Transform
+ pos: 96.5,87.5
+ parent: 1
+ - uid: 14493
+ components:
+ - type: Transform
+ pos: 142.5,47.5
+ parent: 1
+ - uid: 17966
+ components:
+ - type: Transform
+ pos: 65.5,103.5
+ parent: 1
+ - uid: 19047
+ components:
+ - type: Transform
+ pos: 23.5,84.5
+ parent: 1
+ - uid: 19261
+ components:
+ - type: Transform
+ pos: 93.5,161.5
+ parent: 1
+ - uid: 19425
+ components:
+ - type: Transform
+ pos: 116.5,165.5
+ parent: 1
+ - uid: 19704
+ components:
+ - type: Transform
+ pos: 153.5,94.5
+ parent: 1
+ - uid: 21013
+ components:
+ - type: Transform
+ pos: 30.5,99.5
+ parent: 1
+ - uid: 21015
+ components:
+ - type: Transform
+ pos: 84.5,123.5
+ parent: 1
+ - uid: 21018
+ components:
+ - type: Transform
+ pos: 113.5,156.5
+ parent: 1
+ - uid: 23074
+ components:
+ - type: Transform
+ pos: 149.5,72.5
+ parent: 1
+ - uid: 23496
+ components:
+ - type: Transform
+ pos: 36.5,97.5
+ parent: 1
+ - uid: 26900
+ components:
+ - type: Transform
+ pos: 105.5,115.5
+ parent: 1
+ - uid: 27950
+ components:
+ - type: Transform
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 27957
+ components:
+ - type: Transform
+ pos: 48.5,95.5
+ parent: 1
+ - uid: 28167
+ components:
+ - type: Transform
+ pos: 40.5,79.5
+ parent: 1
+ - uid: 29100
+ components:
+ - type: Transform
+ pos: 121.5,116.5
+ parent: 1
+ - uid: 29738
+ components:
+ - type: Transform
+ pos: 146.5,136.5
+ parent: 1
+ - uid: 32046
+ components:
+ - type: Transform
+ pos: 158.5,54.5
+ parent: 1
+ - uid: 32952
+ components:
+ - type: Transform
+ pos: 135.5,148.5
+ parent: 1
+ - uid: 34749
+ components:
+ - type: Transform
+ pos: 94.5,108.5
+ parent: 1
+ - uid: 34975
+ components:
+ - type: Transform
+ pos: 159.5,131.5
+ parent: 1
+ - uid: 36149
+ components:
+ - type: Transform
+ pos: 21.5,119.5
+ parent: 1
+ - uid: 37270
+ components:
+ - type: Transform
+ pos: 87.5,118.5
+ parent: 1
+- proto: ClosetFireFilled
+ entities:
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 37.5,84.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 77.5,112.5
+ parent: 1
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 8142
+ components:
+ - type: Transform
+ pos: 148.5,147.5
+ parent: 1
+ - uid: 12470
+ components:
+ - type: Transform
+ pos: 29.5,78.5
+ parent: 1
+ - uid: 16125
+ components:
+ - type: Transform
+ pos: 120.5,147.5
+ parent: 1
+ - uid: 16127
+ components:
+ - type: Transform
+ pos: 120.5,127.5
+ parent: 1
+ - uid: 17950
+ components:
+ - type: Transform
+ pos: 117.5,66.5
+ parent: 1
+ - uid: 17967
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - uid: 19229
+ components:
+ - type: Transform
+ pos: 59.5,34.5
+ parent: 1
+ - uid: 19422
+ components:
+ - type: Transform
+ pos: 139.5,133.5
+ parent: 1
+ - uid: 20890
+ components:
+ - type: Transform
+ pos: 53.5,80.5
+ parent: 1
+ - uid: 21014
+ components:
+ - type: Transform
+ pos: 85.5,123.5
+ parent: 1
+ - uid: 21669
+ components:
+ - type: Transform
+ pos: 147.5,105.5
+ parent: 1
+ - uid: 26312
+ components:
+ - type: Transform
+ pos: 141.5,78.5
+ parent: 1
+ - uid: 26899
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 27945
+ components:
+ - type: Transform
+ pos: 32.5,99.5
+ parent: 1
+ - uid: 27948
+ components:
+ - type: Transform
+ pos: 52.5,63.5
+ parent: 1
+ - uid: 27956
+ components:
+ - type: Transform
+ pos: 47.5,95.5
+ parent: 1
+ - uid: 27972
+ components:
+ - type: Transform
+ pos: 82.5,37.5
+ parent: 1
+ - uid: 28265
+ components:
+ - type: Transform
+ pos: 100.5,121.5
+ parent: 1
+ - uid: 28797
+ components:
+ - type: Transform
+ pos: 58.5,110.5
+ parent: 1
+ - uid: 28799
+ components:
+ - type: Transform
+ pos: 58.5,80.5
+ parent: 1
+ - uid: 28932
+ components:
+ - type: Transform
+ pos: 86.5,68.5
+ parent: 1
+ - uid: 29096
+ components:
+ - type: Transform
+ pos: 120.5,116.5
+ parent: 1
+ - uid: 29607
+ components:
+ - type: Transform
+ pos: 160.5,118.5
+ parent: 1
+ - uid: 29739
+ components:
+ - type: Transform
+ pos: 145.5,136.5
+ parent: 1
+ - uid: 30180
+ components:
+ - type: Transform
+ pos: 138.5,153.5
+ parent: 1
+ - uid: 30239
+ components:
+ - type: Transform
+ pos: 96.5,128.5
+ parent: 1
+ - uid: 33431
+ components:
+ - type: Transform
+ pos: 94.5,24.5
+ parent: 1
+ - uid: 33432
+ components:
+ - type: Transform
+ pos: 113.5,22.5
+ parent: 1
+ - uid: 33435
+ components:
+ - type: Transform
+ pos: 118.5,41.5
+ parent: 1
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 29555
+ components:
+ - type: Transform
+ pos: 154.5,125.5
+ parent: 1
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 29559
+ components:
+ - type: Transform
+ pos: 155.5,128.5
+ parent: 1
+- proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 38.5,82.5
+ parent: 1
+ - uid: 11360
+ components:
+ - type: Transform
+ pos: 51.5,80.5
+ parent: 1
+ - uid: 20853
+ components:
+ - type: Transform
+ pos: 30.5,105.5
+ parent: 1
+ - uid: 20854
+ components:
+ - type: Transform
+ pos: 30.5,103.5
+ parent: 1
+ - uid: 20969
+ components:
+ - type: Transform
+ pos: 50.5,80.5
+ parent: 1
+- proto: ClosetL3SecurityFilled
+ entities:
+ - uid: 22689
+ components:
+ - type: Transform
+ pos: 145.5,58.5
+ parent: 1
+ - uid: 22690
+ components:
+ - type: Transform
+ pos: 144.5,58.5
+ parent: 1
+- proto: ClosetLegalFilled
+ entities:
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: 102.5,39.5
+ parent: 1
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 65.5,122.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 16.5,106.5
+ parent: 1
+ - uid: 3034
+ components:
+ - type: Transform
+ pos: 59.5,154.5
+ parent: 1
+ - uid: 3480
+ components:
+ - type: Transform
+ pos: 63.5,49.5
+ parent: 1
+ - uid: 4125
+ components:
+ - type: Transform
+ pos: 76.5,83.5
+ parent: 1
+ - uid: 4132
+ components:
+ - type: Transform
+ pos: 120.5,19.5
+ parent: 1
+ - uid: 4643
+ components:
+ - type: Transform
+ pos: 57.5,47.5
+ parent: 1
+ - uid: 5393
+ components:
+ - type: Transform
+ pos: 154.5,145.5
+ parent: 1
+ - uid: 5961
+ components:
+ - type: Transform
+ pos: 86.5,39.5
+ parent: 1
+ - uid: 6640
+ components:
+ - type: Transform
+ pos: 69.5,157.5
+ parent: 1
+ - uid: 6748
+ components:
+ - type: Transform
+ pos: 43.5,121.5
+ parent: 1
+ - uid: 8273
+ components:
+ - type: Transform
+ pos: 31.5,80.5
+ parent: 1
+ - uid: 17293
+ components:
+ - type: Transform
+ pos: 58.5,140.5
+ parent: 1
+ - uid: 18483
+ components:
+ - type: Transform
+ pos: 93.5,88.5
+ parent: 1
+ - uid: 18744
+ components:
+ - type: Transform
+ pos: 92.5,106.5
+ parent: 1
+ - uid: 19217
+ components:
+ - type: Transform
+ pos: 151.5,76.5
+ parent: 1
+ - uid: 19234
+ components:
+ - type: Transform
+ pos: 109.5,26.5
+ parent: 1
+ - uid: 19260
+ components:
+ - type: Transform
+ pos: 102.5,166.5
+ parent: 1
+ - uid: 19447
+ components:
+ - type: Transform
+ pos: 150.5,85.5
+ parent: 1
+ - uid: 19514
+ components:
+ - type: Transform
+ pos: 51.5,77.5
+ parent: 1
+ - uid: 20140
+ components:
+ - type: Transform
+ pos: 51.5,128.5
+ parent: 1
+ - uid: 23347
+ components:
+ - type: Transform
+ pos: 140.5,88.5
+ parent: 1
+ - uid: 23521
+ components:
+ - type: Transform
+ pos: 109.5,44.5
+ parent: 1
+ - uid: 24540
+ components:
+ - type: Transform
+ pos: 96.5,65.5
+ parent: 1
+ - uid: 25128
+ components:
+ - type: Transform
+ pos: 159.5,112.5
+ parent: 1
+ - uid: 25291
+ components:
+ - type: Transform
+ pos: 98.5,34.5
+ parent: 1
+ - uid: 25424
+ components:
+ - type: Transform
+ pos: 101.5,54.5
+ parent: 1
+ - uid: 26656
+ components:
+ - type: Transform
+ pos: 106.5,34.5
+ parent: 1
+ - uid: 26728
+ components:
+ - type: Transform
+ pos: 61.5,48.5
+ parent: 1
+ - uid: 27120
+ components:
+ - type: Transform
+ pos: 95.5,55.5
+ parent: 1
+ - uid: 27180
+ components:
+ - type: Transform
+ pos: 113.5,44.5
+ parent: 1
+ - uid: 28142
+ components:
+ - type: Transform
+ pos: 115.5,72.5
+ parent: 1
+ - uid: 28336
+ components:
+ - type: Transform
+ pos: 23.5,78.5
+ parent: 1
+ - uid: 28515
+ components:
+ - type: Transform
+ pos: 71.5,45.5
+ parent: 1
+ - uid: 29594
+ components:
+ - type: Transform
+ pos: 61.5,70.5
+ parent: 1
+ - uid: 30452
+ components:
+ - type: Transform
+ pos: 91.5,158.5
+ parent: 1
+ - uid: 30542
+ components:
+ - type: Transform
+ pos: 161.5,135.5
+ parent: 1
+ - uid: 30545
+ components:
+ - type: Transform
+ pos: 125.5,88.5
+ parent: 1
+ - uid: 30690
+ components:
+ - type: Transform
+ pos: 122.5,42.5
+ parent: 1
+ - uid: 31844
+ components:
+ - type: Transform
+ pos: 97.5,72.5
+ parent: 1
+ - uid: 32277
+ components:
+ - type: Transform
+ pos: 62.5,28.5
+ parent: 1
+ - uid: 32375
+ components:
+ - type: Transform
+ pos: 137.5,139.5
+ parent: 1
+ - uid: 33597
+ components:
+ - type: Transform
+ pos: 94.5,26.5
+ parent: 1
+ - uid: 33599
+ components:
+ - type: Transform
+ pos: 106.5,32.5
+ parent: 1
+ - uid: 33600
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - uid: 33601
+ components:
+ - type: Transform
+ pos: 110.5,18.5
+ parent: 1
+ - uid: 33602
+ components:
+ - type: Transform
+ pos: 115.5,25.5
+ parent: 1
+ - uid: 33603
+ components:
+ - type: Transform
+ pos: 124.5,33.5
+ parent: 1
+ - uid: 33604
+ components:
+ - type: Transform
+ pos: 126.5,39.5
+ parent: 1
+ - uid: 33605
+ components:
+ - type: Transform
+ pos: 115.5,42.5
+ parent: 1
+ - uid: 33606
+ components:
+ - type: Transform
+ pos: 120.5,36.5
+ parent: 1
+ - uid: 33711
+ components:
+ - type: Transform
+ pos: 116.5,33.5
+ parent: 1
+ - uid: 33713
+ components:
+ - type: Transform
+ pos: 88.5,30.5
+ parent: 1
+ - uid: 33715
+ components:
+ - type: Transform
+ pos: 84.5,16.5
+ parent: 1
+ - uid: 33716
+ components:
+ - type: Transform
+ pos: 66.5,22.5
+ parent: 1
+ - uid: 33731
+ components:
+ - type: Transform
+ anchored: True
+ pos: 87.5,19.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - uid: 33963
+ components:
+ - type: Transform
+ pos: 86.5,22.5
+ parent: 1
+ - uid: 34341
+ components:
+ - type: Transform
+ pos: 155.5,78.5
+ parent: 1
+ - uid: 34354
+ components:
+ - type: Transform
+ pos: 157.5,59.5
+ parent: 1
+ - uid: 34355
+ components:
+ - type: Transform
+ pos: 152.5,47.5
+ parent: 1
+ - uid: 34505
+ components:
+ - type: Transform
+ pos: 163.5,52.5
+ parent: 1
+ - uid: 34644
+ components:
+ - type: Transform
+ pos: 160.5,64.5
+ parent: 1
+ - uid: 34713
+ components:
+ - type: Transform
+ pos: 90.5,99.5
+ parent: 1
+ - uid: 34783
+ components:
+ - type: Transform
+ pos: 122.5,167.5
+ parent: 1
+ - uid: 34870
+ components:
+ - type: Transform
+ pos: 63.5,77.5
+ parent: 1
+ - uid: 34943
+ components:
+ - type: Transform
+ pos: 161.5,141.5
+ parent: 1
+ - uid: 34945
+ components:
+ - type: Transform
+ pos: 153.5,123.5
+ parent: 1
+ - uid: 34946
+ components:
+ - type: Transform
+ pos: 162.5,124.5
+ parent: 1
+ - uid: 35130
+ components:
+ - type: Transform
+ pos: 19.5,113.5
+ parent: 1
+ - uid: 35169
+ components:
+ - type: Transform
+ pos: 115.5,171.5
+ parent: 1
+ - uid: 35189
+ components:
+ - type: Transform
+ pos: 117.5,167.5
+ parent: 1
+ - uid: 35323
+ components:
+ - type: Transform
+ pos: 90.5,167.5
+ parent: 1
+ - uid: 35324
+ components:
+ - type: Transform
+ pos: 87.5,165.5
+ parent: 1
+ - uid: 35325
+ components:
+ - type: Transform
+ pos: 78.5,162.5
+ parent: 1
+ - uid: 35327
+ components:
+ - type: Transform
+ pos: 85.5,161.5
+ parent: 1
+ - uid: 35367
+ components:
+ - type: Transform
+ pos: 90.5,173.5
+ parent: 1
+ - uid: 35426
+ components:
+ - type: Transform
+ pos: 91.5,147.5
+ parent: 1
+ - uid: 35440
+ components:
+ - type: Transform
+ pos: 91.5,131.5
+ parent: 1
+ - uid: 35442
+ components:
+ - type: Transform
+ pos: 74.5,158.5
+ parent: 1
+ - uid: 35614
+ components:
+ - type: Transform
+ pos: 65.5,159.5
+ parent: 1
+ - uid: 35622
+ components:
+ - type: Transform
+ pos: 71.5,164.5
+ parent: 1
+ - uid: 35740
+ components:
+ - type: Transform
+ pos: 41.5,120.5
+ parent: 1
+ - uid: 35896
+ components:
+ - type: Transform
+ pos: 57.5,121.5
+ parent: 1
+ - uid: 35917
+ components:
+ - type: Transform
+ pos: 90.5,79.5
+ parent: 1
+ - uid: 36041
+ components:
+ - type: Transform
+ pos: 50.5,120.5
+ parent: 1
+ - uid: 36042
+ components:
+ - type: Transform
+ pos: 50.5,113.5
+ parent: 1
+ - uid: 36129
+ components:
+ - type: Transform
+ pos: 64.5,40.5
+ parent: 1
+ - uid: 36178
+ components:
+ - type: Transform
+ pos: 20.5,105.5
+ parent: 1
+ - uid: 36421
+ components:
+ - type: Transform
+ pos: 30.5,82.5
+ parent: 1
+ - uid: 36422
+ components:
+ - type: Transform
+ pos: 27.5,83.5
+ parent: 1
+ - uid: 36423
+ components:
+ - type: Transform
+ pos: 20.5,102.5
+ parent: 1
+ - uid: 36424
+ components:
+ - type: Transform
+ pos: 24.5,93.5
+ parent: 1
+ - uid: 36425
+ components:
+ - type: Transform
+ pos: 31.5,96.5
+ parent: 1
+ - uid: 36426
+ components:
+ - type: Transform
+ pos: 29.5,73.5
+ parent: 1
+ - uid: 36518
+ components:
+ - type: Transform
+ pos: 141.5,123.5
+ parent: 1
+ - uid: 36871
+ components:
+ - type: Transform
+ pos: 125.5,163.5
+ parent: 1
+ - uid: 37160
+ components:
+ - type: Transform
+ pos: 147.5,115.5
+ parent: 1
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 39.5,82.5
+ parent: 1
+ - uid: 4199
+ components:
+ - type: Transform
+ pos: 91.5,121.5
+ parent: 1
+ - uid: 14255
+ components:
+ - type: Transform
+ pos: 121.5,135.5
+ parent: 1
+ - uid: 16192
+ components:
+ - type: Transform
+ pos: 95.5,135.5
+ parent: 1
+ - uid: 16585
+ components:
+ - type: Transform
+ pos: 115.5,152.5
+ parent: 1
+ - uid: 16588
+ components:
+ - type: Transform
+ pos: 104.5,147.5
+ parent: 1
+ - uid: 16589
+ components:
+ - type: Transform
+ pos: 112.5,147.5
+ parent: 1
+ - uid: 16592
+ components:
+ - type: Transform
+ pos: 92.5,121.5
+ parent: 1
+ - uid: 18909
+ components:
+ - type: Transform
+ pos: 52.5,145.5
+ parent: 1
+ - uid: 21017
+ components:
+ - type: Transform
+ pos: 123.5,156.5
+ parent: 1
+ - uid: 21087
+ components:
+ - type: Transform
+ pos: 93.5,156.5
+ parent: 1
+- proto: ClosetToolFilled
+ entities:
+ - uid: 33452
+ components:
+ - type: Transform
+ pos: 120.5,27.5
+ parent: 1
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 23133
+ components:
+ - type: Transform
+ pos: 126.5,75.5
+ parent: 1
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 35877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,128.5
+ parent: 1
+- proto: ClothingBackpackDuffelSurgeryFilled
+ entities:
+ - uid: 2678
+ components:
+ - type: Transform
+ pos: 61.388664,103.79057
+ parent: 1
+ - uid: 2683
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 62.513664,104.59613
+ parent: 1
+- proto: ClothingBeltUtility
+ entities:
+ - uid: 20971
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 49.668606,86.363846
+ parent: 1
+- proto: ClothingBeltUtilityFilled
+ entities:
+ - uid: 29029
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 93.496254,61.484695
+ parent: 1
+ - uid: 32040
+ components:
+ - type: Transform
+ pos: 143.51147,132.92966
+ parent: 1
+- proto: ClothingEyesEyepatch
+ entities:
+ - uid: 21091
+ components:
+ - type: Transform
+ pos: 155.482,94.42513
+ parent: 1
+- proto: ClothingEyesGlasses
+ entities:
+ - uid: 20976
+ components:
+ - type: Transform
+ pos: 50.490788,92.148834
+ parent: 1
+- proto: ClothingEyesGlassesChemical
+ entities:
+ - uid: 18044
+ components:
+ - type: Transform
+ pos: 84.5,107.5
+ parent: 1
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 16079
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 129.44867,135.59929
+ parent: 1
+- proto: ClothingEyesGlassesSunglasses
+ entities:
+ - uid: 22787
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 135.45728,66.05876
+ parent: 1
+ - uid: 26705
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 110.8869,99.52175
+ parent: 1
+ - uid: 27399
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 123.4769,83.39688
+ parent: 1
+ - uid: 36342
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 55.405693,150.59633
+ parent: 1
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 26827
+ components:
+ - type: Transform
+ pos: 110.54211,83.542854
+ parent: 1
+ - uid: 26828
+ components:
+ - type: Transform
+ pos: 110.562935,82.917854
+ parent: 1
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 26833
+ components:
+ - type: Transform
+ pos: 102.54729,82.65397
+ parent: 1
+ - uid: 26834
+ components:
+ - type: Transform
+ pos: 102.54729,83.417854
+ parent: 1
+- proto: ClothingHandsGlovesColorYellow
+ entities:
+ - uid: 16066
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16182
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 24546
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.51709,60.526367
+ parent: 1
+- proto: ClothingHandsGlovesLatex
+ entities:
+ - uid: 26995
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 61.525307,73.71391
+ parent: 1
+- proto: ClothingHandsGlovesNitrile
+ entities:
+ - uid: 18063
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.52326,83.70832
+ parent: 1
+- proto: ClothingHandsGlovesRobohands
+ entities:
+ - uid: 20956
+ components:
+ - type: Transform
+ pos: 63.492237,92.968124
+ parent: 1
+- proto: ClothingHeadHatBeretFrench
+ entities:
+ - uid: 23608
+ components:
+ - type: Transform
+ pos: 127.20696,43.77549
+ parent: 1
+- proto: ClothingHeadHatCone
+ entities:
+ - uid: 18348
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 102.61632,147.48788
+ parent: 1
+ - uid: 19731
+ components:
+ - type: Transform
+ pos: 38.41707,112.75604
+ parent: 1
+ - uid: 19733
+ components:
+ - type: Transform
+ pos: 38.222626,112.11716
+ parent: 1
+ - uid: 37021
+ components:
+ - type: Transform
+ pos: 96.66736,165.98862
+ parent: 1
+ - uid: 37308
+ components:
+ - type: Transform
+ pos: 102.1302,147.75177
+ parent: 1
+- proto: ClothingHeadHatFlowerWreath
+ entities:
+ - uid: 36005
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 47.987442,122.19965
+ parent: 1
+- proto: ClothingHeadHatHardhatBlue
+ entities:
+ - uid: 36727
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.715004,61.453438
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12660
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12660
+ - type: ActionsContainer
+- proto: ClothingHeadHatHardhatOrange
+ entities:
+ - uid: 36726
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.277504,61.411774
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12661
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12661
+ - type: ActionsContainer
+- proto: ClothingHeadHatHardhatRed
+ entities:
+ - uid: 36563
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.44417,61.661774
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12663
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12663
+ - type: ActionsContainer
+- proto: ClothingHeadHatMagician
+ entities:
+ - uid: 26681
+ components:
+ - type: Transform
+ pos: 120.54324,108.58552
+ parent: 1
+- proto: ClothingHeadHatOrangesoft
+ entities:
+ - uid: 30143
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.45529,140.5683
+ parent: 1
+- proto: ClothingHeadHatParamedicsoft
+ entities:
+ - uid: 17737
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 76.52033,103.52702
+ parent: 1
+- proto: ClothingHeadHatPwig
+ entities:
+ - uid: 35616
+ components:
+ - type: Transform
+ pos: 70.55852,163.01608
+ parent: 1
+- proto: ClothingHeadHatSecurityTrooper
+ entities:
+ - uid: 12395
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: ClothingHeadHatWelding
+ entities:
+ - uid: 20954
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 63.662262,91.464645
+ parent: 1
+ - uid: 32079
+ components:
+ - type: Transform
+ pos: 54.5,154.5
+ parent: 1
+- proto: ClothingHeadHatWeldingMaskPainted
+ entities:
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 68.768234,123.3293
+ parent: 1
+- proto: ClothingHeadHatWizardFake
+ entities:
+ - uid: 26743
+ components:
+ - type: Transform
+ rot: -182.21237390820767 rad
+ pos: 105.0978,64.79724
+ parent: 1
+- proto: ClothingHeadHelmetBasic
+ entities:
+ - uid: 22801
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 135.66498,65.6239
+ parent: 1
+- proto: ClothingHeadHelmetCosmonaut
+ entities:
+ - uid: 32170
+ components:
+ - type: Transform
+ pos: 25.906517,123.33156
+ parent: 1
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 22757
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.43488,65.39503
+ parent: 1
+ - uid: 22800
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.22287,65.38669
+ parent: 1
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 23063
+ components:
+ - type: Transform
+ pos: 136.4019,43.70142
+ parent: 1
+- proto: ClothingHeadsetGrey
+ entities:
+ - uid: 23068
+ components:
+ - type: Transform
+ pos: 122.98261,56.57529
+ parent: 1
+- proto: ClothingHeadsetRobotics
+ entities:
+ - uid: 20952
+ components:
+ - type: Transform
+ pos: 63.406113,93.697296
+ parent: 1
+- proto: ClothingMaskGas
+ entities:
+ - uid: 20816
+ components:
+ - type: Transform
+ pos: 30.588554,110.555145
+ parent: 1
+ - uid: 34075
+ components:
+ - type: Transform
+ pos: 82.51302,29.535202
+ parent: 1
+- proto: ClothingMaskGasAtmos
+ entities:
+ - uid: 16001
+ components:
+ - type: Transform
+ pos: 76.5,115.5
+ parent: 1
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 23079
+ components:
+ - type: Transform
+ pos: 138.42004,48.3799
+ parent: 1
+ - uid: 23080
+ components:
+ - type: Transform
+ pos: 138.65154,48.648422
+ parent: 1
+- proto: ClothingMaskSterile
+ entities:
+ - uid: 20947
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.398285,116.456924
+ parent: 1
+ - uid: 26992
+ components:
+ - type: Transform
+ pos: 61.52346,74.61896
+ parent: 1
+- proto: ClothingNeckCloakTrans
+ entities:
+ - uid: 34617
+ components:
+ - type: Transform
+ pos: 159.5,76.5
+ parent: 1
+- proto: ClothingNeckScarfStripedBlue
+ entities:
+ - uid: 17692
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.48974,92.38226
+ parent: 1
+- proto: ClothingNeckScarfStripedZebra
+ entities:
+ - uid: 26512
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 99.168976,60.634724
+ parent: 1
+- proto: ClothingNeckTieSci
+ entities:
+ - uid: 20845
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 26.5206,99.49299
+ parent: 1
+ - uid: 20992
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 33.606068,104.52185
+ parent: 1
+- proto: ClothingNeckTransPin
+ entities:
+ - uid: 27324
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 80.74132,53.58903
+ parent: 1
+- proto: ClothingOuterApronBar
+ entities:
+ - uid: 35137
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.46106,171.5699
+ parent: 1
+- proto: ClothingOuterApronChef
+ entities:
+ - uid: 30142
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 140.47258,136.44305
+ parent: 1
+ - uid: 33459
+ components:
+ - type: Transform
+ pos: 90.5,28.5
+ parent: 1
+- proto: ClothingOuterArmorBasic
+ entities:
+ - uid: 6321
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 135.7041,63.442642
+ parent: 1
+- proto: ClothingOuterArmorBulletproof
+ entities:
+ - uid: 21587
+ components:
+ - type: Transform
+ pos: 130.45798,63.573776
+ parent: 1
+ - uid: 22755
+ components:
+ - type: Transform
+ pos: 130.25798,63.588444
+ parent: 1
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 22761
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 130.6559,63.59461
+ parent: 1
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 22628
+ components:
+ - type: Transform
+ pos: 130.61674,63.16445
+ parent: 1
+ - uid: 22780
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.33136,63.148144
+ parent: 1
+- proto: ClothingOuterCoatRnd
+ entities:
+ - uid: 20818
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 31.299149,109.690636
+ parent: 1
+- proto: ClothingOuterHoodieChaplain
+ entities:
+ - uid: 4303
+ components:
+ - type: Transform
+ pos: 72.40076,75.076164
+ parent: 1
+- proto: ClothingOuterRobesJudge
+ entities:
+ - uid: 35615
+ components:
+ - type: Transform
+ pos: 70.53574,162.71033
+ parent: 1
+- proto: ClothingOuterStraightjacket
+ entities:
+ - uid: 28664
+ components:
+ - type: Transform
+ pos: 115.5,47.5
+ parent: 1
+- proto: ClothingOuterSuitEmergency
+ entities:
+ - uid: 6506
+ components:
+ - type: Transform
+ pos: 163.5,78.5
+ parent: 1
+ - uid: 19042
+ components:
+ - type: Transform
+ pos: 25.813568,122.86206
+ parent: 1
+- proto: ClothingOuterVestHazard
+ entities:
+ - uid: 15054
+ components:
+ - type: Transform
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 35848
+ components:
+ - type: Transform
+ rot: 6.661338147750939E-16 rad
+ pos: 52.402252,128.59384
+ parent: 1
+ - uid: 36857
+ components:
+ - type: Transform
+ pos: 93.5,61.5
+ parent: 1
+ - uid: 37221
+ components:
+ - type: Transform
+ pos: 94.593605,121.6181
+ parent: 1
+ - uid: 37222
+ components:
+ - type: Transform
+ pos: 129.5,134.5
+ parent: 1
+ - uid: 37309
+ components:
+ - type: Transform
+ pos: 104.45654,162.53265
+ parent: 1
+- proto: ClothingOuterWinterColorGray
+ entities:
+ - uid: 17691
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.448074,92.50726
+ parent: 1
+- proto: ClothingOuterWizard
+ entities:
+ - uid: 26751
+ components:
+ - type: Transform
+ rot: -182.21237390820767 rad
+ pos: 105.62867,64.621315
+ parent: 1
+- proto: ClothingShoesBootsJack
+ entities:
+ - uid: 7478
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: ClothingShoesBootsMag
+ entities:
+ - uid: 15055
+ components:
+ - type: Transform
+ pos: 102.51466,158.63791
+ parent: 1
+ - uid: 16085
+ components:
+ - type: Transform
+ pos: 96.5,162.5
+ parent: 1
+ - uid: 23312
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.47536,73.59036
+ parent: 1
+ - uid: 30024
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 35593
+ components:
+ - type: Transform
+ pos: 53.58951,74.15608
+ parent: 1
+- proto: ClothingShoesBootsMoon
+ entities:
+ - uid: 30790
+ components:
+ - type: Transform
+ pos: 21.422173,121.56831
+ parent: 1
+- proto: ClothingShoesBootsWork
+ entities:
+ - uid: 35870
+ components:
+ - type: Transform
+ pos: 51.60364,132.62259
+ parent: 1
+- proto: ClothingShoesWizard
+ entities:
+ - uid: 26788
+ components:
+ - type: Transform
+ pos: 107.51806,64.67996
+ parent: 1
+- proto: ClothingUniformJumpskirtPurpleElegantDress
+ entities:
+ - uid: 36337
+ components:
+ - type: Transform
+ pos: 56.361767,133.63138
+ parent: 1
+- proto: ClothingUniformJumpsuitHawaiBlack
+ entities:
+ - uid: 27402
+ components:
+ - type: Transform
+ pos: 123.73384,83.58438
+ parent: 1
+- proto: ClothingUniformJumpsuitHawaiRed
+ entities:
+ - uid: 27401
+ components:
+ - type: Transform
+ pos: 123.35884,83.70243
+ parent: 1
+- proto: ClothingUniformJumpsuitPyjamaSyndicateRed
+ entities:
+ - uid: 23061
+ components:
+ - type: Transform
+ pos: 136.41232,43.347256
+ parent: 1
+- proto: ClothingUniformJumpsuitSecBlue
+ entities:
+ - uid: 26227
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+- proto: ClothingUniformSecurityTrooper
+ entities:
+ - uid: 12394
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: Cobweb1
+ entities:
+ - uid: 17758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,80.5
+ parent: 1
+ - uid: 35396
+ components:
+ - type: Transform
+ pos: 86.5,88.5
+ parent: 1
+- proto: Cobweb2
+ entities:
+ - uid: 35362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,84.5
+ parent: 1
+- proto: CombatKnife
+ entities:
+ - uid: 22950
+ components:
+ - type: Transform
+ pos: 152.78305,69.64975
+ parent: 1
+- proto: ComfyChair
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 3129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,102.5
+ parent: 1
+ - uid: 11003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,41.5
+ parent: 1
+ - uid: 13592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,75.5
+ parent: 1
+ - uid: 26541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 27174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,48.5
+ parent: 1
+ - uid: 28960
+ components:
+ - type: Transform
+ pos: 105.5,73.5
+ parent: 1
+ - uid: 28961
+ components:
+ - type: Transform
+ pos: 106.5,73.5
+ parent: 1
+ - uid: 29030
+ components:
+ - type: Transform
+ pos: 107.5,73.5
+ parent: 1
+ - uid: 34557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,74.5
+ parent: 1
+ - uid: 34558
+ components:
+ - type: Transform
+ pos: 161.5,75.5
+ parent: 1
+ - uid: 34562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,68.5
+ parent: 1
+ - uid: 34563
+ components:
+ - type: Transform
+ pos: 158.5,69.5
+ parent: 1
+ - uid: 35768
+ components:
+ - type: Transform
+ pos: 55.5,124.5
+ parent: 1
+ - uid: 35769
+ components:
+ - type: Transform
+ pos: 54.5,124.5
+ parent: 1
+ - uid: 35770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,121.5
+ parent: 1
+ - uid: 35771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,121.5
+ parent: 1
+- proto: CommandmentCircuitBoard
+ entities:
+ - uid: 13269
+ components:
+ - type: Transform
+ pos: 43.350765,37.512234
+ parent: 1
+- proto: CommsComputerCircuitboard
+ entities:
+ - uid: 32045
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 141.67947,133.35913
+ parent: 1
+- proto: ComputerAlert
+ entities:
+ - uid: 1784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,149.5
+ parent: 1
+ - uid: 7125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,121.5
+ parent: 1
+ - uid: 9649
+ components:
+ - type: Transform
+ pos: 37.5,64.5
+ parent: 1
+ - uid: 15998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,116.5
+ parent: 1
+ - uid: 16166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,147.5
+ parent: 1
+ - uid: 16175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,144.5
+ parent: 1
+ - uid: 28127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,121.5
+ parent: 1
+ - uid: 32984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,129.5
+ parent: 1
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 19686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,88.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19682:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - uid: 19687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,92.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19683:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+- proto: ComputerAtmosMonitoring
+ entities:
+ - uid: 3199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,142.5
+ parent: 1
+ - uid: 19135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,133.5
+ parent: 1
+ - uid: 19139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,145.5
+ parent: 1
+ - uid: 36646
+ components:
+ - type: Transform
+ pos: 76.5,119.5
+ parent: 1
+- proto: computerBodyScanner
+ entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 63.5,104.5
+ parent: 1
+- proto: ComputerBroken
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,162.5
+ parent: 1
+ - uid: 6289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,114.5
+ parent: 1
+ - uid: 19464
+ components:
+ - type: Transform
+ pos: 55.5,154.5
+ parent: 1
+ - uid: 32075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,150.5
+ parent: 1
+ - uid: 32115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,112.5
+ parent: 1
+ - uid: 33058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,22.5
+ parent: 1
+ - uid: 33707
+ components:
+ - type: Transform
+ pos: 115.5,40.5
+ parent: 1
+ - uid: 34638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,61.5
+ parent: 1
+ - uid: 35250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,160.5
+ parent: 1
+ - uid: 35262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,161.5
+ parent: 1
+ - uid: 35335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35364
+ components:
+ - type: Transform
+ pos: 92.5,170.5
+ parent: 1
+ - uid: 37143
+ components:
+ - type: MetaData
+ desc: Originally used to make maps, this computer has seen better days.
+ name: broken cartography computer
+ - type: Transform
+ pos: 163.5,149.5
+ parent: 1
+- proto: ComputerCargoBounty
+ entities:
+ - uid: 2215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,48.5
+ parent: 1
+ - uid: 6299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,106.5
+ parent: 1
+ - uid: 19308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+- proto: ComputerCargoOrders
+ entities:
+ - uid: 2689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,48.5
+ parent: 1
+ - uid: 6341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,105.5
+ parent: 1
+ - uid: 19312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,105.5
+ parent: 1
+ - uid: 19330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,101.5
+ parent: 1
+ - uid: 19351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,104.5
+ parent: 1
+- proto: ComputerComms
+ entities:
+ - uid: 9635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,58.5
+ parent: 1
+ - uid: 13582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,74.5
+ parent: 1
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,90.5
+ parent: 1
+ - uid: 3742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,54.5
+ parent: 1
+ - uid: 5819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,66.5
+ parent: 1
+ - uid: 9642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,54.5
+ parent: 1
+ - uid: 17720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,104.5
+ parent: 1
+ - uid: 22965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,72.5
+ parent: 1
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 9638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,62.5
+ parent: 1
+ - uid: 11907
+ components:
+ - type: Transform
+ pos: 157.5,149.5
+ parent: 1
+ - uid: 22868
+ components:
+ - type: Transform
+ pos: 143.5,67.5
+ parent: 1
+ - uid: 22869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,73.5
+ parent: 1
+ - uid: 22871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,54.5
+ parent: 1
+ - uid: 22872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,68.5
+ parent: 1
+ - uid: 37452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,56.5
+ parent: 1
+- proto: ComputerFrame
+ entities:
+ - uid: 6549
+ components:
+ - type: Transform
+ pos: 57.5,124.5
+ parent: 1
+ - uid: 34122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,86.5
+ parent: 1
+- proto: ComputerId
+ entities:
+ - uid: 9629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,59.5
+ parent: 1
+ - uid: 9637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,59.5
+ parent: 1
+ - uid: 13581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,76.5
+ parent: 1
+- proto: ComputerMassMedia
+ entities:
+ - uid: 5485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,128.5
+ parent: 1
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 59.5,104.5
+ parent: 1
+ - uid: 4207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,90.5
+ parent: 1
+ - uid: 9646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,55.5
+ parent: 1
+ - uid: 20830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,89.5
+ parent: 1
+ - uid: 28589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,51.5
+ parent: 1
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 6368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,140.5
+ parent: 1
+ - uid: 9390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,121.5
+ parent: 1
+ - uid: 9650
+ components:
+ - type: Transform
+ pos: 36.5,64.5
+ parent: 1
+ - uid: 16141
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 16162
+ components:
+ - type: Transform
+ pos: 99.5,125.5
+ parent: 1
+ - uid: 16165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 31757
+ components:
+ - type: Transform
+ pos: 161.5,59.5
+ parent: 1
+ - uid: 36781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,139.5
+ parent: 1
+- proto: ComputerRadar
+ entities:
+ - uid: 6350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,48.5
+ parent: 1
+ - uid: 20432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,88.5
+ parent: 1
+ - uid: 21673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,93.5
+ parent: 1
+ - uid: 21682
+ components:
+ - type: Transform
+ pos: 162.5,92.5
+ parent: 1
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 2046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 8857
+ components:
+ - type: Transform
+ pos: 48.5,108.5
+ parent: 1
+ - uid: 20348
+ components:
+ - type: Transform
+ pos: 49.5,93.5
+ parent: 1
+ - uid: 20412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,104.5
+ parent: 1
+ - uid: 20422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,86.5
+ parent: 1
+- proto: ComputerRoboticsControl
+ entities:
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 63.5,97.5
+ parent: 1
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,49.5
+ parent: 1
+ - uid: 5896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,105.5
+ parent: 1
+- proto: ComputerSalvageExpedition
+ entities:
+ - uid: 20401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,94.5
+ parent: 1
+ - uid: 32333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+- proto: ComputerShuttleCargo
+ entities:
+ - uid: 6349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,98.5
+ parent: 1
+ - uid: 19339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,108.5
+ parent: 1
+- proto: ComputerSolarControl
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 9648
+ components:
+ - type: Transform
+ pos: 35.5,64.5
+ parent: 1
+ - uid: 16140
+ components:
+ - type: Transform
+ pos: 117.5,125.5
+ parent: 1
+ - uid: 16156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,145.5
+ parent: 1
+ - uid: 16157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,131.5
+ parent: 1
+ - uid: 16163
+ components:
+ - type: Transform
+ pos: 100.5,125.5
+ parent: 1
+ - uid: 31154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,71.5
+ parent: 1
+ - uid: 34274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,55.5
+ parent: 1
+- proto: ComputerStationRecords
+ entities:
+ - uid: 3353
+ components:
+ - type: Transform
+ pos: 133.5,70.5
+ parent: 1
+ - uid: 9643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,57.5
+ parent: 1
+ - uid: 9644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,59.5
+ parent: 1
+ - uid: 37451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,54.5
+ parent: 1
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 5765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,66.5
+ parent: 1
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,61.5
+ parent: 1
+ - uid: 22957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,74.5
+ parent: 1
+ - uid: 22959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 34020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,112.5
+ parent: 1
+- proto: ComputerSurveillanceWirelessCameraMonitor
+ entities:
+ - uid: 9639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,63.5
+ parent: 1
+- proto: ComputerTechnologyDiskTerminal
+ entities:
+ - uid: 20452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,93.5
+ parent: 1
+- proto: ComputerTelevision
+ entities:
+ - uid: 11453
+ components:
+ - type: Transform
+ pos: 37.5,66.5
+ parent: 1
+ - uid: 13659
+ components:
+ - type: Transform
+ pos: 55.5,59.5
+ parent: 1
+ - uid: 16095
+ components:
+ - type: Transform
+ pos: 124.5,115.5
+ parent: 1
+ - uid: 19421
+ components:
+ - type: Transform
+ pos: 142.5,102.5
+ parent: 1
+ - uid: 23043
+ components:
+ - type: Transform
+ pos: 130.5,52.5
+ parent: 1
+ - uid: 26591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,96.5
+ parent: 1
+ - uid: 29665
+ components:
+ - type: Transform
+ pos: 146.5,127.5
+ parent: 1
+ - uid: 31888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,48.5
+ parent: 1
+ - uid: 31924
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 32100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 36641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 36642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 36643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,70.5
+ parent: 1
+ - uid: 36644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,73.5
+ parent: 1
+- proto: ContainmentFieldGenerator
+ entities:
+ - uid: 9090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,141.5
+ parent: 1
+ - uid: 9098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,133.5
+ parent: 1
+ - uid: 9117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,141.5
+ parent: 1
+ - uid: 14061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,133.5
+ parent: 1
+ - uid: 24662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,150.5
+ parent: 1
+ - uid: 26980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,149.5
+ parent: 1
+- proto: ConveyorBelt
+ entities:
+ - uid: 1438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,97.5
+ parent: 1
+ - uid: 4529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,73.5
+ parent: 1
+ - uid: 5034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,73.5
+ parent: 1
+ - uid: 5888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,73.5
+ parent: 1
+ - uid: 16219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,100.5
+ parent: 1
+ - uid: 16220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,101.5
+ parent: 1
+ - uid: 16221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,102.5
+ parent: 1
+ - uid: 16222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,104.5
+ parent: 1
+ - uid: 16227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,103.5
+ parent: 1
+ - uid: 19277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,106.5
+ parent: 1
+ - uid: 19279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,106.5
+ parent: 1
+ - uid: 19280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,106.5
+ parent: 1
+ - uid: 19281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,106.5
+ parent: 1
+ - uid: 19283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,106.5
+ parent: 1
+ - uid: 19284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 19285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,110.5
+ parent: 1
+ - uid: 19286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,110.5
+ parent: 1
+ - uid: 19287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,110.5
+ parent: 1
+ - uid: 19288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,110.5
+ parent: 1
+ - uid: 19289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,110.5
+ parent: 1
+ - uid: 19291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 19292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 19317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - uid: 19319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+ - uid: 22735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,93.5
+ parent: 1
+ - uid: 22742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,73.5
+ parent: 1
+ - uid: 22792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,74.5
+ parent: 1
+ - uid: 22793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,74.5
+ parent: 1
+ - uid: 22802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,74.5
+ parent: 1
+ - uid: 22804
+ components:
+ - type: Transform
+ pos: 151.5,74.5
+ parent: 1
+ - uid: 23947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,95.5
+ parent: 1
+ - uid: 26175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,96.5
+ parent: 1
+ - uid: 29397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,98.5
+ parent: 1
+ - uid: 32972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 32974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 34309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,83.5
+ parent: 1
+ - uid: 34310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,84.5
+ parent: 1
+ - uid: 34311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,83.5
+ parent: 1
+ - uid: 34312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,83.5
+ parent: 1
+ - uid: 34314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,83.5
+ parent: 1
+ - uid: 34316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 34323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,85.5
+ parent: 1
+ - uid: 34324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,85.5
+ parent: 1
+ - uid: 34325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,85.5
+ parent: 1
+ - uid: 34329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,81.5
+ parent: 1
+ - uid: 34330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 36553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 36554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 36555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 36556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 36557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,110.5
+ parent: 1
+- proto: CorporateCircuitBoard
+ entities:
+ - uid: 13259
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,39.701252
+ parent: 1
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 10760
+ components:
+ - type: Transform
+ pos: 51.5,81.5
+ parent: 1
+ - uid: 20490
+ components:
+ - type: Transform
+ pos: 48.5,82.5
+ parent: 1
+- proto: CrateCoffin
+ entities:
+ - uid: 27063
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 22744
+ components:
+ - type: Transform
+ pos: 133.5,66.5
+ parent: 1
+- proto: CrateEmergencyInflatablewall
+ entities:
+ - uid: 19406
+ components:
+ - type: Transform
+ pos: 148.5,107.5
+ parent: 1
+- proto: CrateEmptySpawner
+ entities:
+ - uid: 19427
+ components:
+ - type: Transform
+ pos: 155.5,105.5
+ parent: 1
+ - uid: 19428
+ components:
+ - type: Transform
+ pos: 154.5,104.5
+ parent: 1
+ - uid: 19429
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 19433
+ components:
+ - type: Transform
+ pos: 137.5,111.5
+ parent: 1
+ - uid: 19434
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 18182
+ components:
+ - type: Transform
+ pos: 107.5,162.5
+ parent: 1
+- proto: CrateEngineeringAMEShielding
+ entities:
+ - uid: 18181
+ components:
+ - type: Transform
+ pos: 108.5,162.5
+ parent: 1
+ - uid: 33908
+ components:
+ - type: Transform
+ pos: 109.5,162.5
+ parent: 1
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 16062
+ components:
+ - type: Transform
+ pos: 136.5,133.5
+ parent: 1
+ - uid: 32024
+ components:
+ - type: Transform
+ pos: 143.5,130.5
+ parent: 1
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 19404
+ components:
+ - type: Transform
+ pos: 150.5,104.5
+ parent: 1
+ - uid: 19405
+ components:
+ - type: Transform
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 19407
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 19410
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19411
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+- proto: CrateFreezer
+ entities:
+ - uid: 17898
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 20895
+ components:
+ - type: Transform
+ pos: 59.5,100.5
+ parent: 1
+ - uid: 26447
+ components:
+ - type: Transform
+ pos: 115.5,90.5
+ parent: 1
+ - uid: 34523
+ components:
+ - type: Transform
+ pos: 157.5,42.5
+ parent: 1
+- proto: CrateFunPirate
+ entities:
+ - uid: 21080
+ components:
+ - type: Transform
+ pos: 155.5,93.5
+ parent: 1
+- proto: CrateMedicalSurgery
+ entities:
+ - uid: 36639
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+- proto: CrateNPCChicken
+ entities:
+ - uid: 26627
+ components:
+ - type: Transform
+ pos: 113.5,93.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCCow
+ entities:
+ - uid: 26629
+ components:
+ - type: Transform
+ pos: 107.5,94.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCGoat
+ entities:
+ - uid: 26628
+ components:
+ - type: Transform
+ pos: 113.5,90.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCHamlet
+ entities:
+ - uid: 13535
+ components:
+ - type: Transform
+ pos: 39.5,64.5
+ parent: 1
+- proto: CrateSecurityTrackingMindshieldImplants
+ entities:
+ - uid: 6406
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 19400
+ components:
+ - type: Transform
+ pos: 154.5,128.5
+ parent: 1
+- proto: CrateServiceTheatre
+ entities:
+ - uid: 26764
+ components:
+ - type: Transform
+ pos: 104.5,61.5
+ parent: 1
+- proto: CrateTrainingBombs
+ entities:
+ - uid: 5862
+ components:
+ - type: Transform
+ pos: 153.5,66.5
+ parent: 1
+- proto: CrateTrashCart
+ entities:
+ - uid: 34336
+ components:
+ - type: Transform
+ pos: 161.5,78.5
+ parent: 1
+- proto: CrateTrashCartJani
+ entities:
+ - uid: 29609
+ components:
+ - type: Transform
+ pos: 156.5,123.5
+ parent: 1
+- proto: CrayonBox
+ entities:
+ - uid: 23060
+ components:
+ - type: Transform
+ pos: 128.6639,49.201008
+ parent: 1
+ - uid: 26770
+ components:
+ - type: Transform
+ pos: 98.507614,60.647522
+ parent: 1
+ - uid: 26771
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 105.51406,56.639446
+ parent: 1
+- proto: Crematorium
+ entities:
+ - uid: 13479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,72.5
+ parent: 1
+- proto: CrewMonitoringServer
+ entities:
+ - uid: 19361
+ components:
+ - type: Transform
+ pos: 52.5,105.5
+ parent: 1
+ - type: SingletonDeviceNetServer
+ active: False
+ available: False
+- proto: Crowbar
+ entities:
+ - uid: 13554
+ components:
+ - type: Transform
+ rot: -138.2300767579507 rad
+ pos: 54.47016,25.617409
+ parent: 1
+ - uid: 23775
+ components:
+ - type: Transform
+ pos: 36.477272,90.52966
+ parent: 1
+ - uid: 26701
+ components:
+ - type: Transform
+ pos: 107.54996,99.53275
+ parent: 1
+ - uid: 34088
+ components:
+ - type: Transform
+ pos: 91.50937,32.475586
+ parent: 1
+ - uid: 35223
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 87.62293,85.93254
+ parent: 1
+- proto: CrowbarRed
+ entities:
+ - uid: 37145
+ components:
+ - type: Transform
+ pos: 162.5,147.5
+ parent: 1
+- proto: CryogenicSleepUnit
+ entities:
+ - uid: 5293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,63.5
+ parent: 1
+ - uid: 23059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,49.5
+ parent: 1
+- proto: CryogenicSleepUnitSpawnerLateJoin
+ entities:
+ - uid: 29717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,141.5
+ parent: 1
+ - uid: 29718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,143.5
+ parent: 1
+ - uid: 29719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,141.5
+ parent: 1
+ - uid: 29722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,143.5
+ parent: 1
+- proto: CryoPod
+ entities:
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: 77.5,92.5
+ parent: 1
+ - uid: 17061
+ components:
+ - type: Transform
+ pos: 72.5,92.5
+ parent: 1
+- proto: CryoxadoneBeakerSmall
+ entities:
+ - uid: 17687
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.291824,91.93435
+ parent: 1
+ - uid: 17688
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.323074,91.51768
+ parent: 1
+- proto: CurtainsBlackOpen
+ entities:
+ - uid: 12411
+ components:
+ - type: Transform
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 12419
+ components:
+ - type: Transform
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 12431
+ components:
+ - type: Transform
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 26791
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+- proto: CurtainsOrange
+ entities:
+ - uid: 25167
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+- proto: CurtainsPinkOpen
+ entities:
+ - uid: 26789
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+- proto: CurtainsRed
+ entities:
+ - uid: 24592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,66.5
+ parent: 1
+ - uid: 31863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,66.5
+ parent: 1
+- proto: CurtainsRedOpen
+ entities:
+ - uid: 18060
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 25848
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 34582
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 34583
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 34584
+ components:
+ - type: Transform
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 34585
+ components:
+ - type: Transform
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 37176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,135.5
+ parent: 1
+- proto: CurtainsWhiteOpen
+ entities:
+ - uid: 26790
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+- proto: d6Dice
+ entities:
+ - uid: 16911
+ components:
+ - type: Transform
+ pos: 124.887955,170.62903
+ parent: 1
+ - uid: 27208
+ components:
+ - type: Transform
+ pos: 76.48402,59.31955
+ parent: 1
+ - uid: 27209
+ components:
+ - type: Transform
+ pos: 76.67846,59.63205
+ parent: 1
+ - uid: 35772
+ components:
+ - type: Transform
+ pos: 55.238964,123.09625
+ parent: 1
+ - uid: 35773
+ components:
+ - type: Transform
+ pos: 54.789604,123.18323
+ parent: 1
+ - uid: 35837
+ components:
+ - type: Transform
+ pos: 124.61699,170.9832
+ parent: 1
+- proto: DefaultStationBeaconAICore
+ entities:
+ - uid: 13727
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+- proto: DefaultStationBeaconAME
+ entities:
+ - uid: 36732
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+- proto: DefaultStationBeaconAnomalyGenerator
+ entities:
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 43.5,113.5
+ parent: 1
+- proto: DefaultStationBeaconArmory
+ entities:
+ - uid: 22554
+ components:
+ - type: Transform
+ pos: 133.5,63.5
+ parent: 1
+- proto: DefaultStationBeaconArrivals
+ entities:
+ - uid: 2561
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 27676
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+- proto: DefaultStationBeaconArtifactLab
+ entities:
+ - uid: 19684
+ components:
+ - type: Transform
+ pos: 37.5,90.5
+ parent: 1
+- proto: DefaultStationBeaconAtmospherics
+ entities:
+ - uid: 2778
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+- proto: DefaultStationBeaconBar
+ entities:
+ - uid: 26539
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+- proto: DefaultStationBeaconBotany
+ entities:
+ - uid: 26456
+ components:
+ - type: Transform
+ pos: 98.5,100.5
+ parent: 1
+- proto: DefaultStationBeaconBridge
+ entities:
+ - uid: 11341
+ components:
+ - type: Transform
+ pos: 36.5,57.5
+ parent: 1
+- proto: DefaultStationBeaconBrig
+ entities:
+ - uid: 22556
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+- proto: DefaultStationBeaconCaptainsQuarters
+ entities:
+ - uid: 13473
+ components:
+ - type: Transform
+ pos: 36.5,73.5
+ parent: 1
+- proto: DefaultStationBeaconCargoBay
+ entities:
+ - uid: 30361
+ components:
+ - type: Transform
+ pos: 152.5,107.5
+ parent: 1
+- proto: DefaultStationBeaconCargoReception
+ entities:
+ - uid: 19322
+ components:
+ - type: Transform
+ pos: 133.5,103.5
+ parent: 1
+- proto: DefaultStationBeaconCERoom
+ entities:
+ - uid: 8997
+ components:
+ - type: Transform
+ pos: 127.5,144.5
+ parent: 1
+- proto: DefaultStationBeaconChapel
+ entities:
+ - uid: 26974
+ components:
+ - type: Transform
+ pos: 84.5,74.5
+ parent: 1
+- proto: DefaultStationBeaconChemistry
+ entities:
+ - uid: 18038
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+- proto: DefaultStationBeaconClinic
+ entities:
+ - uid: 22776
+ components:
+ - type: Transform
+ pos: 116.5,49.5
+ parent: 1
+- proto: DefaultStationBeaconCMORoom
+ entities:
+ - uid: 18100
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+- proto: DefaultStationBeaconCourtroom
+ entities:
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 94.5,41.5
+ parent: 1
+- proto: DefaultStationBeaconCryonics
+ entities:
+ - uid: 18101
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+- proto: DefaultStationBeaconDetectiveRoom
+ entities:
+ - uid: 13538
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+- proto: DefaultStationBeaconDisposals
+ entities:
+ - uid: 34352
+ components:
+ - type: Transform
+ pos: 158.5,80.5
+ parent: 1
+- proto: DefaultStationBeaconEngineering
+ entities:
+ - uid: 9021
+ components:
+ - type: Transform
+ pos: 130.5,135.5
+ parent: 1
+- proto: DefaultStationBeaconEscapePod
+ entities:
+ - uid: 5561
+ components:
+ - type: Transform
+ pos: 16.5,107.5
+ parent: 1
+ - uid: 7220
+ components:
+ - type: Transform
+ pos: 103.5,172.5
+ parent: 1
+ - uid: 29191
+ components:
+ - type: Transform
+ pos: 114.5,17.5
+ parent: 1
+- proto: DefaultStationBeaconEVAStorage
+ entities:
+ - uid: 2553
+ components:
+ - type: Transform
+ pos: 50.5,70.5
+ parent: 1
+- proto: DefaultStationBeaconGravGen
+ entities:
+ - uid: 32997
+ components:
+ - type: Transform
+ pos: 99.5,160.5
+ parent: 1
+- proto: DefaultStationBeaconHOPOffice
+ entities:
+ - uid: 13532
+ components:
+ - type: Transform
+ pos: 58.5,56.5
+ parent: 1
+- proto: DefaultStationBeaconHOSRoom
+ entities:
+ - uid: 22989
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+- proto: DefaultStationBeaconJanitorsCloset
+ entities:
+ - uid: 29556
+ components:
+ - type: Transform
+ pos: 157.5,124.5
+ parent: 1
+- proto: DefaultStationBeaconKitchen
+ entities:
+ - uid: 30317
+ components:
+ - type: Transform
+ pos: 119.5,101.5
+ parent: 1
+- proto: DefaultStationBeaconLawOffice
+ entities:
+ - uid: 33814
+ components:
+ - type: Transform
+ pos: 104.5,47.5
+ parent: 1
+- proto: DefaultStationBeaconLibrary
+ entities:
+ - uid: 24309
+ components:
+ - type: Transform
+ pos: 74.5,56.5
+ parent: 1
+- proto: DefaultStationBeaconMedbay
+ entities:
+ - uid: 17733
+ components:
+ - type: Transform
+ pos: 75.5,96.5
+ parent: 1
+- proto: DefaultStationBeaconMorgue
+ entities:
+ - uid: 18102
+ components:
+ - type: Transform
+ pos: 61.5,84.5
+ parent: 1
+- proto: DefaultStationBeaconPermaBrig
+ entities:
+ - uid: 22867
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+- proto: DefaultStationBeaconPowerBank
+ entities:
+ - uid: 14296
+ components:
+ - type: Transform
+ pos: 127.5,125.5
+ parent: 1
+- proto: DefaultStationBeaconRDRoom
+ entities:
+ - uid: 20887
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+- proto: DefaultStationBeaconRND
+ entities:
+ - uid: 20411
+ components:
+ - type: Transform
+ pos: 48.5,90.5
+ parent: 1
+- proto: DefaultStationBeaconRobotics
+ entities:
+ - uid: 20415
+ components:
+ - type: Transform
+ pos: 61.5,93.5
+ parent: 1
+- proto: DefaultStationBeaconSalvage
+ entities:
+ - uid: 23426
+ components:
+ - type: Transform
+ pos: 149.5,92.5
+ parent: 1
+- proto: DefaultStationBeaconScience
+ entities:
+ - uid: 20449
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 22558
+ components:
+ - type: Transform
+ pos: 139.5,60.5
+ parent: 1
+- proto: DefaultStationBeaconSecurityCheckpoint
+ entities:
+ - uid: 10337
+ components:
+ - type: Transform
+ pos: 153.5,149.5
+ parent: 1
+ - uid: 29513
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+- proto: DefaultStationBeaconServerRoom
+ entities:
+ - uid: 20410
+ components:
+ - type: Transform
+ pos: 48.5,106.5
+ parent: 1
+- proto: DefaultStationBeaconService
+ entities:
+ - uid: 26523
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+- proto: DefaultStationBeaconSingularity
+ entities:
+ - uid: 14297
+ components:
+ - type: Transform
+ pos: 108.5,147.5
+ parent: 1
+- proto: DefaultStationBeaconSolars
+ entities:
+ - uid: 30969
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - uid: 31155
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 31474
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+- proto: DefaultStationBeaconSupply
+ entities:
+ - uid: 19516
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+- proto: DefaultStationBeaconSurgery
+ entities:
+ - uid: 2745
+ components:
+ - type: Transform
+ pos: 61.5,101.5
+ parent: 1
+- proto: DefaultStationBeaconTechVault
+ entities:
+ - uid: 32043
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+- proto: DefaultStationBeaconTEG
+ entities:
+ - uid: 3039
+ components:
+ - type: Transform
+ pos: 82.5,139.5
+ parent: 1
+- proto: DefaultStationBeaconTelecoms
+ entities:
+ - uid: 30369
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+- proto: DefaultStationBeaconTheater
+ entities:
+ - uid: 3458
+ components:
+ - type: Transform
+ pos: 106.5,67.5
+ parent: 1
+- proto: DefaultStationBeaconToolRoom
+ entities:
+ - uid: 24594
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+- proto: DefaultStationBeaconVault
+ entities:
+ - uid: 33968
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+- proto: DefaultStationBeaconWardensOffice
+ entities:
+ - uid: 22557
+ components:
+ - type: Transform
+ pos: 132.5,70.5
+ parent: 1
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 4558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,79.5
+ parent: 1
+ - uid: 18015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,91.5
+ parent: 1
+ - uid: 18016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,91.5
+ parent: 1
+ - uid: 18017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,95.5
+ parent: 1
+ - uid: 18018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,99.5
+ parent: 1
+- proto: DeployableBarrier
+ entities:
+ - uid: 22539
+ components:
+ - type: Transform
+ pos: 141.5,60.5
+ parent: 1
+ - uid: 22705
+ components:
+ - type: Transform
+ pos: 141.5,59.5
+ parent: 1
+ - uid: 25147
+ components:
+ - type: Transform
+ pos: 129.5,54.5
+ parent: 1
+- proto: DeskBell
+ entities:
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 61.764534,60.58877
+ parent: 1
+ - uid: 16578
+ components:
+ - type: Transform
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 16579
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: 84.539505,109.665535
+ parent: 1
+ - uid: 19391
+ components:
+ - type: Transform
+ pos: 137.52434,102.312515
+ parent: 1
+ - uid: 20972
+ components:
+ - type: Transform
+ pos: 50.50759,92.77167
+ parent: 1
+ - uid: 22972
+ components:
+ - type: Transform
+ pos: 132.35202,75.57144
+ parent: 1
+ - uid: 26579
+ components:
+ - type: Transform
+ pos: 117.713455,105.588936
+ parent: 1
+ - uid: 26580
+ components:
+ - type: Transform
+ pos: 99.25979,105.57845
+ parent: 1
+ - uid: 27183
+ components:
+ - type: Transform
+ pos: 76.5,54.5
+ parent: 1
+- proto: DiceBag
+ entities:
+ - uid: 26902
+ components:
+ - type: Transform
+ pos: 109.5,115.5
+ parent: 1
+ - uid: 27207
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 27212
+ components:
+ - type: Transform
+ pos: 70.638725,61.613705
+ parent: 1
+ - uid: 30357
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 125.70212,170.54715
+ parent: 1
+- proto: DisgustingSweptSoup
+ entities:
+ - uid: 33553
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.41544,26.888775
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 2732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,47.5
+ parent: 1
+ - uid: 2804
+ components:
+ - type: Transform
+ pos: 131.5,108.5
+ parent: 1
+ - uid: 4800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 5092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,114.5
+ parent: 1
+ - uid: 5093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,50.5
+ parent: 1
+ - uid: 5410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 5821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,114.5
+ parent: 1
+ - uid: 6142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,49.5
+ parent: 1
+ - uid: 6219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,153.5
+ parent: 1
+ - uid: 6292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 6293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,49.5
+ parent: 1
+ - uid: 10599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 11376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 11377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 11399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - uid: 11449
+ components:
+ - type: Transform
+ pos: 39.5,63.5
+ parent: 1
+ - uid: 11451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,63.5
+ parent: 1
+ - uid: 11495
+ components:
+ - type: Transform
+ pos: 44.5,76.5
+ parent: 1
+ - uid: 11496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,49.5
+ parent: 1
+ - uid: 11508
+ components:
+ - type: Transform
+ pos: 55.5,58.5
+ parent: 1
+ - uid: 12415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 12430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 12709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,40.5
+ parent: 1
+ - uid: 12712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,40.5
+ parent: 1
+ - uid: 13151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,63.5
+ parent: 1
+ - uid: 13152
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 13220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 13750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,62.5
+ parent: 1
+ - uid: 13794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 14751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 14772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 14971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 14972
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 14980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 15933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,52.5
+ parent: 1
+ - uid: 16118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,50.5
+ parent: 1
+ - uid: 16139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 16178
+ components:
+ - type: Transform
+ pos: 100.5,104.5
+ parent: 1
+ - uid: 16318
+ components:
+ - type: Transform
+ pos: 74.5,118.5
+ parent: 1
+ - uid: 16319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 16363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 16364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 16453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,117.5
+ parent: 1
+ - uid: 16458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 16518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 16519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,122.5
+ parent: 1
+ - uid: 16536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,112.5
+ parent: 1
+ - uid: 16537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,114.5
+ parent: 1
+ - uid: 16538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,119.5
+ parent: 1
+ - uid: 16586
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 17090
+ components:
+ - type: Transform
+ pos: 82.5,65.5
+ parent: 1
+ - uid: 17237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 17633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,112.5
+ parent: 1
+ - uid: 17841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,96.5
+ parent: 1
+ - uid: 17854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,109.5
+ parent: 1
+ - uid: 17855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,109.5
+ parent: 1
+ - uid: 17857
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17890
+ components:
+ - type: Transform
+ pos: 68.5,102.5
+ parent: 1
+ - uid: 17891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - uid: 17920
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 17922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,84.5
+ parent: 1
+ - uid: 18688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 18787
+ components:
+ - type: Transform
+ pos: 127.5,119.5
+ parent: 1
+ - uid: 18789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,98.5
+ parent: 1
+ - uid: 18790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - uid: 18791
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 18868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 18870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,110.5
+ parent: 1
+ - uid: 18871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 20523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,87.5
+ parent: 1
+ - uid: 20524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,90.5
+ parent: 1
+ - uid: 20559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,112.5
+ parent: 1
+ - uid: 20576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,112.5
+ parent: 1
+ - uid: 20577
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - uid: 20624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,112.5
+ parent: 1
+ - uid: 20652
+ components:
+ - type: Transform
+ pos: 46.5,83.5
+ parent: 1
+ - uid: 20669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,97.5
+ parent: 1
+ - uid: 20680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,90.5
+ parent: 1
+ - uid: 20681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 20690
+ components:
+ - type: Transform
+ pos: 48.5,112.5
+ parent: 1
+ - uid: 20723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 20724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,99.5
+ parent: 1
+ - uid: 21045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,109.5
+ parent: 1
+ - uid: 21067
+ components:
+ - type: Transform
+ pos: 121.5,103.5
+ parent: 1
+ - uid: 21136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 21385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 21659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,109.5
+ parent: 1
+ - uid: 21660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,108.5
+ parent: 1
+ - uid: 22189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,95.5
+ parent: 1
+ - uid: 22191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 22192
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 22318
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 22319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 22320
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - uid: 22321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,57.5
+ parent: 1
+ - uid: 22322
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - uid: 22323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,51.5
+ parent: 1
+ - uid: 22324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,78.5
+ parent: 1
+ - uid: 22389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,78.5
+ parent: 1
+ - uid: 22390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,60.5
+ parent: 1
+ - uid: 22392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,71.5
+ parent: 1
+ - uid: 22393
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 22394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 22415
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 22427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 22430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,76.5
+ parent: 1
+ - uid: 22431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 22496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,68.5
+ parent: 1
+ - uid: 22534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,55.5
+ parent: 1
+ - uid: 22535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,56.5
+ parent: 1
+ - uid: 22537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: 151.5,56.5
+ parent: 1
+ - uid: 22542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 22547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,80.5
+ parent: 1
+ - uid: 22549
+ components:
+ - type: Transform
+ pos: 156.5,80.5
+ parent: 1
+ - uid: 22552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,76.5
+ parent: 1
+ - uid: 23218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 23224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,101.5
+ parent: 1
+ - uid: 23244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,108.5
+ parent: 1
+ - uid: 23278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 23410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 23491
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 24079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,98.5
+ parent: 1
+ - uid: 24080
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - uid: 25412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,55.5
+ parent: 1
+ - uid: 25413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - uid: 25414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 25420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 25421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,55.5
+ parent: 1
+ - uid: 25422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,52.5
+ parent: 1
+ - uid: 25423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,53.5
+ parent: 1
+ - uid: 25532
+ components:
+ - type: Transform
+ pos: 102.5,47.5
+ parent: 1
+ - uid: 25899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 26262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,103.5
+ parent: 1
+ - uid: 26263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,103.5
+ parent: 1
+ - uid: 26264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,110.5
+ parent: 1
+ - uid: 26265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,110.5
+ parent: 1
+ - uid: 26296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,113.5
+ parent: 1
+ - uid: 26297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,113.5
+ parent: 1
+ - uid: 26344
+ components:
+ - type: Transform
+ pos: 116.5,110.5
+ parent: 1
+ - uid: 26345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,110.5
+ parent: 1
+ - uid: 26346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,103.5
+ parent: 1
+ - uid: 26360
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 26380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,106.5
+ parent: 1
+ - uid: 27158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,70.5
+ parent: 1
+ - uid: 27159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,71.5
+ parent: 1
+ - uid: 27160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,70.5
+ parent: 1
+ - uid: 27161
+ components:
+ - type: Transform
+ pos: 74.5,74.5
+ parent: 1
+ - uid: 27162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,72.5
+ parent: 1
+ - uid: 27163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 28795
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 28796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 28844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 28845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 28847
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 28963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 28964
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 29646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,117.5
+ parent: 1
+ - uid: 30091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,137.5
+ parent: 1
+ - uid: 30140
+ components:
+ - type: Transform
+ pos: 148.5,153.5
+ parent: 1
+ - uid: 30835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 31890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,69.5
+ parent: 1
+ - uid: 31900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,46.5
+ parent: 1
+ - uid: 31918
+ components:
+ - type: Transform
+ pos: 131.5,58.5
+ parent: 1
+ - uid: 31920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 31921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 33342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 33343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,19.5
+ parent: 1
+ - uid: 33344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,31.5
+ parent: 1
+ - uid: 33345
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - uid: 33346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,19.5
+ parent: 1
+ - uid: 33347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,23.5
+ parent: 1
+ - uid: 33349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,23.5
+ parent: 1
+ - uid: 33350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,30.5
+ parent: 1
+ - uid: 33351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,30.5
+ parent: 1
+ - uid: 33352
+ components:
+ - type: Transform
+ pos: 119.5,39.5
+ parent: 1
+ - uid: 33417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,39.5
+ parent: 1
+ - uid: 33461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,27.5
+ parent: 1
+ - uid: 33466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,27.5
+ parent: 1
+ - uid: 34384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,83.5
+ parent: 1
+ - uid: 34389
+ components:
+ - type: Transform
+ pos: 144.5,83.5
+ parent: 1
+ - uid: 34397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,80.5
+ parent: 1
+ - uid: 35584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,96.5
+ parent: 1
+ - uid: 36163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 36164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 37334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 37351
+ components:
+ - type: Transform
+ pos: 126.5,140.5
+ parent: 1
+- proto: DisposalJunction
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,117.5
+ parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,58.5
+ parent: 1
+ - uid: 6131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,58.5
+ parent: 1
+ - uid: 6173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,69.5
+ parent: 1
+ - uid: 11409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,58.5
+ parent: 1
+ - uid: 11486
+ components:
+ - type: Transform
+ pos: 44.5,73.5
+ parent: 1
+ - uid: 15100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,117.5
+ parent: 1
+ - uid: 16334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,112.5
+ parent: 1
+ - uid: 16341
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - uid: 16476
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 16547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,108.5
+ parent: 1
+ - uid: 17832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,104.5
+ parent: 1
+ - uid: 17892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,90.5
+ parent: 1
+ - uid: 18739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,50.5
+ parent: 1
+ - uid: 20587
+ components:
+ - type: Transform
+ pos: 44.5,99.5
+ parent: 1
+ - uid: 20591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 20642
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - uid: 20670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 20710
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 21043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,96.5
+ parent: 1
+ - uid: 21670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 22177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 22409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,76.5
+ parent: 1
+ - uid: 22481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,58.5
+ parent: 1
+ - uid: 22513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 25513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,47.5
+ parent: 1
+ - uid: 25533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,47.5
+ parent: 1
+ - uid: 26305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 26310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 28887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,63.5
+ parent: 1
+ - uid: 30097
+ components:
+ - type: Transform
+ pos: 146.5,144.5
+ parent: 1
+ - uid: 30114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 33336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 37361
+ components:
+ - type: Transform
+ pos: 128.5,65.5
+ parent: 1
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,117.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,101.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,107.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,63.5
+ parent: 1
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,112.5
+ parent: 1
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,112.5
+ parent: 1
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 4152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 4154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,117.5
+ parent: 1
+ - uid: 7106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,57.5
+ parent: 1
+ - uid: 11429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,49.5
+ parent: 1
+ - uid: 12684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,56.5
+ parent: 1
+ - uid: 13143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,63.5
+ parent: 1
+ - uid: 14992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,50.5
+ parent: 1
+ - uid: 16459
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 17039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,63.5
+ parent: 1
+ - uid: 17750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - uid: 17800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,96.5
+ parent: 1
+ - uid: 17899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,64.5
+ parent: 1
+ - uid: 17900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,77.5
+ parent: 1
+ - uid: 17910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,90.5
+ parent: 1
+ - uid: 17917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 18139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,98.5
+ parent: 1
+ - uid: 20630
+ components:
+ - type: Transform
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 21049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 21683
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 22516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 22546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 22553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,68.5
+ parent: 1
+ - uid: 26292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,106.5
+ parent: 1
+ - uid: 28962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 29645
+ components:
+ - type: Transform
+ pos: 155.5,119.5
+ parent: 1
+ - uid: 33404
+ components:
+ - type: Transform
+ pos: 95.5,27.5
+ parent: 1
+ - uid: 33491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,27.5
+ parent: 1
+ - uid: 34383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,80.5
+ parent: 1
+- proto: DisposalMachineFrame
+ entities:
+ - uid: 33554
+ components:
+ - type: Transform
+ pos: 98.5,25.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,63.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 125.5,104.5
+ parent: 1
+ - uid: 1746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,64.5
+ parent: 1
+ - uid: 1933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 2339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 2803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,107.5
+ parent: 1
+ - uid: 2878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 3362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,50.5
+ parent: 1
+ - uid: 3530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,68.5
+ parent: 1
+ - uid: 3799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,50.5
+ parent: 1
+ - uid: 3858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,50.5
+ parent: 1
+ - uid: 3947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 4008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 4057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,152.5
+ parent: 1
+ - uid: 4693
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 4729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,47.5
+ parent: 1
+ - uid: 4756
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - uid: 4900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,147.5
+ parent: 1
+ - uid: 5051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,67.5
+ parent: 1
+ - uid: 5403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,53.5
+ parent: 1
+ - uid: 5429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,53.5
+ parent: 1
+ - uid: 6149
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 6218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,151.5
+ parent: 1
+ - uid: 6221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,149.5
+ parent: 1
+ - uid: 6274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,150.5
+ parent: 1
+ - uid: 6335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - uid: 6336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,57.5
+ parent: 1
+ - uid: 6370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 6609
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 7231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,114.5
+ parent: 1
+ - uid: 7234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,114.5
+ parent: 1
+ - uid: 7577
+ components:
+ - type: Transform
+ pos: 82.5,57.5
+ parent: 1
+ - uid: 8012
+ components:
+ - type: Transform
+ pos: 82.5,61.5
+ parent: 1
+ - uid: 8175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,141.5
+ parent: 1
+ - uid: 8179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,141.5
+ parent: 1
+ - uid: 8711
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 9397
+ components:
+ - type: Transform
+ pos: 82.5,60.5
+ parent: 1
+ - uid: 9506
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 9847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,56.5
+ parent: 1
+ - uid: 9848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,56.5
+ parent: 1
+ - uid: 10307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 10415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 10582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 11178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,109.5
+ parent: 1
+ - uid: 11378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,65.5
+ parent: 1
+ - uid: 11379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,65.5
+ parent: 1
+ - uid: 11380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,65.5
+ parent: 1
+ - uid: 11381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 11382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 11384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 11389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,65.5
+ parent: 1
+ - uid: 11393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,65.5
+ parent: 1
+ - uid: 11395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - uid: 11396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,65.5
+ parent: 1
+ - uid: 11397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,65.5
+ parent: 1
+ - uid: 11398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,65.5
+ parent: 1
+ - uid: 11400
+ components:
+ - type: Transform
+ pos: 55.5,66.5
+ parent: 1
+ - uid: 11401
+ components:
+ - type: Transform
+ pos: 55.5,67.5
+ parent: 1
+ - uid: 11402
+ components:
+ - type: Transform
+ pos: 55.5,68.5
+ parent: 1
+ - uid: 11403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 11404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,63.5
+ parent: 1
+ - uid: 11406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,62.5
+ parent: 1
+ - uid: 11407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,61.5
+ parent: 1
+ - uid: 11408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,60.5
+ parent: 1
+ - uid: 11411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,56.5
+ parent: 1
+ - uid: 11412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,54.5
+ parent: 1
+ - uid: 11414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,53.5
+ parent: 1
+ - uid: 11415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,52.5
+ parent: 1
+ - uid: 11416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,51.5
+ parent: 1
+ - uid: 11417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,50.5
+ parent: 1
+ - uid: 11418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,59.5
+ parent: 1
+ - uid: 11422
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 11423
+ components:
+ - type: Transform
+ pos: 44.5,51.5
+ parent: 1
+ - uid: 11424
+ components:
+ - type: Transform
+ pos: 44.5,52.5
+ parent: 1
+ - uid: 11425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,49.5
+ parent: 1
+ - uid: 11427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,49.5
+ parent: 1
+ - uid: 11428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,49.5
+ parent: 1
+ - uid: 11430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 11431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,49.5
+ parent: 1
+ - uid: 11432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,49.5
+ parent: 1
+ - uid: 11436
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11437
+ components:
+ - type: Transform
+ pos: 39.5,51.5
+ parent: 1
+ - uid: 11438
+ components:
+ - type: Transform
+ pos: 39.5,52.5
+ parent: 1
+ - uid: 11439
+ components:
+ - type: Transform
+ pos: 39.5,53.5
+ parent: 1
+ - uid: 11440
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - uid: 11441
+ components:
+ - type: Transform
+ pos: 39.5,55.5
+ parent: 1
+ - uid: 11442
+ components:
+ - type: Transform
+ pos: 39.5,56.5
+ parent: 1
+ - uid: 11443
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 1
+ - uid: 11444
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - uid: 11445
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 1
+ - uid: 11446
+ components:
+ - type: Transform
+ pos: 39.5,60.5
+ parent: 1
+ - uid: 11447
+ components:
+ - type: Transform
+ pos: 39.5,61.5
+ parent: 1
+ - uid: 11448
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - uid: 11459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 11460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,72.5
+ parent: 1
+ - uid: 11464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,69.5
+ parent: 1
+ - uid: 11465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,68.5
+ parent: 1
+ - uid: 11466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,66.5
+ parent: 1
+ - uid: 11468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,65.5
+ parent: 1
+ - uid: 11469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,64.5
+ parent: 1
+ - uid: 11470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,63.5
+ parent: 1
+ - uid: 11471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,62.5
+ parent: 1
+ - uid: 11472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,61.5
+ parent: 1
+ - uid: 11473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,59.5
+ parent: 1
+ - uid: 11474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 11475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,60.5
+ parent: 1
+ - uid: 11476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,56.5
+ parent: 1
+ - uid: 11477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,55.5
+ parent: 1
+ - uid: 11479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,53.5
+ parent: 1
+ - uid: 11480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,54.5
+ parent: 1
+ - uid: 11490
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - uid: 11491
+ components:
+ - type: Transform
+ pos: 44.5,75.5
+ parent: 1
+ - uid: 11493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 11499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,55.5
+ parent: 1
+ - uid: 11500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,56.5
+ parent: 1
+ - uid: 11501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,57.5
+ parent: 1
+ - uid: 11502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 11503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,58.5
+ parent: 1
+ - uid: 11506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,58.5
+ parent: 1
+ - uid: 11507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,58.5
+ parent: 1
+ - uid: 11715
+ components:
+ - type: Transform
+ pos: 156.5,97.5
+ parent: 1
+ - uid: 12061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,111.5
+ parent: 1
+ - uid: 12115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 12145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 12154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,111.5
+ parent: 1
+ - uid: 12406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,50.5
+ parent: 1
+ - uid: 12682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,65.5
+ parent: 1
+ - uid: 12685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 12686
+ components:
+ - type: Transform
+ pos: 68.5,53.5
+ parent: 1
+ - uid: 12706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,47.5
+ parent: 1
+ - uid: 12707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 12829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,40.5
+ parent: 1
+ - uid: 12830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 13139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,63.5
+ parent: 1
+ - uid: 13140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 13141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,63.5
+ parent: 1
+ - uid: 13142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,63.5
+ parent: 1
+ - uid: 13144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,63.5
+ parent: 1
+ - uid: 13145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,63.5
+ parent: 1
+ - uid: 13146
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 13147
+ components:
+ - type: Transform
+ pos: 57.5,65.5
+ parent: 1
+ - uid: 13148
+ components:
+ - type: Transform
+ pos: 57.5,66.5
+ parent: 1
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: 57.5,67.5
+ parent: 1
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: 57.5,68.5
+ parent: 1
+ - uid: 13153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 13211
+ components:
+ - type: Transform
+ pos: 47.5,48.5
+ parent: 1
+ - uid: 13212
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13216
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13218
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 13219
+ components:
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 13311
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 13315
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 13516
+ components:
+ - type: Transform
+ pos: 51.5,59.5
+ parent: 1
+ - uid: 13517
+ components:
+ - type: Transform
+ pos: 51.5,60.5
+ parent: 1
+ - uid: 13605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,72.5
+ parent: 1
+ - uid: 13606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,71.5
+ parent: 1
+ - uid: 13800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 14068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,50.5
+ parent: 1
+ - uid: 14774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,51.5
+ parent: 1
+ - uid: 15102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,106.5
+ parent: 1
+ - uid: 15327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,50.5
+ parent: 1
+ - uid: 15674
+ components:
+ - type: Transform
+ pos: 156.5,98.5
+ parent: 1
+ - uid: 16028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,108.5
+ parent: 1
+ - uid: 16053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,104.5
+ parent: 1
+ - uid: 16155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,50.5
+ parent: 1
+ - uid: 16177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 16180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,104.5
+ parent: 1
+ - uid: 16189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 16310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,115.5
+ parent: 1
+ - uid: 16311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 16312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 16313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 16314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 16315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,118.5
+ parent: 1
+ - uid: 16316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 16317
+ components:
+ - type: Transform
+ pos: 74.5,117.5
+ parent: 1
+ - uid: 16320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,114.5
+ parent: 1
+ - uid: 16322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,114.5
+ parent: 1
+ - uid: 16323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,114.5
+ parent: 1
+ - uid: 16324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,114.5
+ parent: 1
+ - uid: 16325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,114.5
+ parent: 1
+ - uid: 16326
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 16327
+ components:
+ - type: Transform
+ pos: 70.5,114.5
+ parent: 1
+ - uid: 16328
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: 70.5,117.5
+ parent: 1
+ - uid: 16330
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 16331
+ components:
+ - type: Transform
+ pos: 70.5,119.5
+ parent: 1
+ - uid: 16332
+ components:
+ - type: Transform
+ pos: 70.5,120.5
+ parent: 1
+ - uid: 16333
+ components:
+ - type: Transform
+ pos: 70.5,121.5
+ parent: 1
+ - uid: 16336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,112.5
+ parent: 1
+ - uid: 16337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,112.5
+ parent: 1
+ - uid: 16338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,112.5
+ parent: 1
+ - uid: 16339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,112.5
+ parent: 1
+ - uid: 16344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 16345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 16346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 16347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 16348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 16349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 16350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 16351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 16352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 16353
+ components:
+ - type: Transform
+ pos: 111.5,123.5
+ parent: 1
+ - uid: 16354
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - uid: 16355
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - uid: 16356
+ components:
+ - type: Transform
+ pos: 111.5,120.5
+ parent: 1
+ - uid: 16357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,119.5
+ parent: 1
+ - uid: 16358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,119.5
+ parent: 1
+ - uid: 16360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,119.5
+ parent: 1
+ - uid: 16361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,119.5
+ parent: 1
+ - uid: 16372
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 16373
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 16374
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 16375
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 16376
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 16377
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 16378
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 16379
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 16380
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 16381
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 16382
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 16383
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 16384
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 16385
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 16386
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 16387
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 16388
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 16389
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 16390
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 16391
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 16392
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 16393
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 16394
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 16395
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 16396
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 16397
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 16398
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 16399
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 16400
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 16401
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 16402
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 16403
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 16404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 16405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 16411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,117.5
+ parent: 1
+ - uid: 16412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,117.5
+ parent: 1
+ - uid: 16413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,117.5
+ parent: 1
+ - uid: 16414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,117.5
+ parent: 1
+ - uid: 16415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,117.5
+ parent: 1
+ - uid: 16416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,117.5
+ parent: 1
+ - uid: 16417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,117.5
+ parent: 1
+ - uid: 16418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - uid: 16419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,117.5
+ parent: 1
+ - uid: 16420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,117.5
+ parent: 1
+ - uid: 16421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,117.5
+ parent: 1
+ - uid: 16422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,117.5
+ parent: 1
+ - uid: 16423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,117.5
+ parent: 1
+ - uid: 16424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,117.5
+ parent: 1
+ - uid: 16425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,117.5
+ parent: 1
+ - uid: 16426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,117.5
+ parent: 1
+ - uid: 16427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,117.5
+ parent: 1
+ - uid: 16428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 16429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,117.5
+ parent: 1
+ - uid: 16430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,117.5
+ parent: 1
+ - uid: 16431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,117.5
+ parent: 1
+ - uid: 16434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,117.5
+ parent: 1
+ - uid: 16435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,117.5
+ parent: 1
+ - uid: 16436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,117.5
+ parent: 1
+ - uid: 16437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,117.5
+ parent: 1
+ - uid: 16438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,117.5
+ parent: 1
+ - uid: 16439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - uid: 16440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,117.5
+ parent: 1
+ - uid: 16441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,117.5
+ parent: 1
+ - uid: 16442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 16443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,117.5
+ parent: 1
+ - uid: 16444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,117.5
+ parent: 1
+ - uid: 16445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,117.5
+ parent: 1
+ - uid: 16446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,117.5
+ parent: 1
+ - uid: 16447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,117.5
+ parent: 1
+ - uid: 16448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,117.5
+ parent: 1
+ - uid: 16449
+ components:
+ - type: Transform
+ pos: 89.5,116.5
+ parent: 1
+ - uid: 16450
+ components:
+ - type: Transform
+ pos: 89.5,115.5
+ parent: 1
+ - uid: 16451
+ components:
+ - type: Transform
+ pos: 89.5,113.5
+ parent: 1
+ - uid: 16452
+ components:
+ - type: Transform
+ pos: 89.5,114.5
+ parent: 1
+ - uid: 16461
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 16462
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 16463
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 16464
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 16465
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 16466
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 16467
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 16468
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 16469
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 16470
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 16471
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 16472
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 16473
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 16474
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 16475
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 16478
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 16479
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 16480
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 16481
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 16482
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 16483
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 16484
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 16485
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 16486
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 16487
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 16488
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 16489
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 16490
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 16491
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 16492
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 16493
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 16494
+ components:
+ - type: Transform
+ pos: 94.5,123.5
+ parent: 1
+ - uid: 16495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,122.5
+ parent: 1
+ - uid: 16496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,122.5
+ parent: 1
+ - uid: 16497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,122.5
+ parent: 1
+ - uid: 16498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,122.5
+ parent: 1
+ - uid: 16499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,122.5
+ parent: 1
+ - uid: 16500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 16501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 16502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 16503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 16504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 16505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 16506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 16507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 16508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 16509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 16510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 16511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 16512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 16513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 16514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 16515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,122.5
+ parent: 1
+ - uid: 16516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 16517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 16522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,112.5
+ parent: 1
+ - uid: 16523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - uid: 16524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,112.5
+ parent: 1
+ - uid: 16525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,112.5
+ parent: 1
+ - uid: 16526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,112.5
+ parent: 1
+ - uid: 16527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,112.5
+ parent: 1
+ - uid: 16529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,112.5
+ parent: 1
+ - uid: 16530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,112.5
+ parent: 1
+ - uid: 16531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - uid: 16532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,112.5
+ parent: 1
+ - uid: 16533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,112.5
+ parent: 1
+ - uid: 16534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,112.5
+ parent: 1
+ - uid: 16535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,112.5
+ parent: 1
+ - uid: 16539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,114.5
+ parent: 1
+ - uid: 16540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,114.5
+ parent: 1
+ - uid: 16541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,114.5
+ parent: 1
+ - uid: 16542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,114.5
+ parent: 1
+ - uid: 16543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,114.5
+ parent: 1
+ - uid: 16544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,114.5
+ parent: 1
+ - uid: 16545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,114.5
+ parent: 1
+ - uid: 16546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,114.5
+ parent: 1
+ - uid: 16548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,114.5
+ parent: 1
+ - uid: 16549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,114.5
+ parent: 1
+ - uid: 16550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,114.5
+ parent: 1
+ - uid: 16551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - uid: 16552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,114.5
+ parent: 1
+ - uid: 16553
+ components:
+ - type: Transform
+ pos: 87.5,115.5
+ parent: 1
+ - uid: 16554
+ components:
+ - type: Transform
+ pos: 87.5,116.5
+ parent: 1
+ - uid: 16555
+ components:
+ - type: Transform
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 16556
+ components:
+ - type: Transform
+ pos: 87.5,118.5
+ parent: 1
+ - uid: 16557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,119.5
+ parent: 1
+ - uid: 16558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,119.5
+ parent: 1
+ - uid: 16559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,119.5
+ parent: 1
+ - uid: 16560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,119.5
+ parent: 1
+ - uid: 16561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 16562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,119.5
+ parent: 1
+ - uid: 16563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,119.5
+ parent: 1
+ - uid: 16564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,119.5
+ parent: 1
+ - uid: 16565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - uid: 16566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,119.5
+ parent: 1
+ - uid: 16567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,119.5
+ parent: 1
+ - uid: 16568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,119.5
+ parent: 1
+ - uid: 16569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,119.5
+ parent: 1
+ - uid: 16570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,119.5
+ parent: 1
+ - uid: 16572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,119.5
+ parent: 1
+ - uid: 16573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,119.5
+ parent: 1
+ - uid: 16574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 16575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,119.5
+ parent: 1
+ - uid: 16576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,119.5
+ parent: 1
+ - uid: 16577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 16627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,53.5
+ parent: 1
+ - uid: 16628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,52.5
+ parent: 1
+ - uid: 17115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,52.5
+ parent: 1
+ - uid: 17223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,52.5
+ parent: 1
+ - uid: 17224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,52.5
+ parent: 1
+ - uid: 17225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,50.5
+ parent: 1
+ - uid: 17227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,52.5
+ parent: 1
+ - uid: 17238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,93.5
+ parent: 1
+ - uid: 17329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,65.5
+ parent: 1
+ - uid: 17330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 17673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,52.5
+ parent: 1
+ - uid: 17795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,91.5
+ parent: 1
+ - uid: 17796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,92.5
+ parent: 1
+ - uid: 17797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,93.5
+ parent: 1
+ - uid: 17798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,95.5
+ parent: 1
+ - uid: 17801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,97.5
+ parent: 1
+ - uid: 17802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,98.5
+ parent: 1
+ - uid: 17803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,99.5
+ parent: 1
+ - uid: 17804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,100.5
+ parent: 1
+ - uid: 17805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,101.5
+ parent: 1
+ - uid: 17806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,108.5
+ parent: 1
+ - uid: 17812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,110.5
+ parent: 1
+ - uid: 17814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,111.5
+ parent: 1
+ - uid: 17815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,112.5
+ parent: 1
+ - uid: 17816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,111.5
+ parent: 1
+ - uid: 17817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,110.5
+ parent: 1
+ - uid: 17818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,109.5
+ parent: 1
+ - uid: 17819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,108.5
+ parent: 1
+ - uid: 17820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,107.5
+ parent: 1
+ - uid: 17821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,106.5
+ parent: 1
+ - uid: 17822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,105.5
+ parent: 1
+ - uid: 17823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,104.5
+ parent: 1
+ - uid: 17825
+ components:
+ - type: Transform
+ pos: 66.5,103.5
+ parent: 1
+ - uid: 17826
+ components:
+ - type: Transform
+ pos: 66.5,102.5
+ parent: 1
+ - uid: 17827
+ components:
+ - type: Transform
+ pos: 66.5,101.5
+ parent: 1
+ - uid: 17828
+ components:
+ - type: Transform
+ pos: 66.5,100.5
+ parent: 1
+ - uid: 17829
+ components:
+ - type: Transform
+ pos: 66.5,99.5
+ parent: 1
+ - uid: 17830
+ components:
+ - type: Transform
+ pos: 66.5,98.5
+ parent: 1
+ - uid: 17831
+ components:
+ - type: Transform
+ pos: 66.5,97.5
+ parent: 1
+ - uid: 17835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,96.5
+ parent: 1
+ - uid: 17836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,96.5
+ parent: 1
+ - uid: 17837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,96.5
+ parent: 1
+ - uid: 17838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,109.5
+ parent: 1
+ - uid: 17844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,109.5
+ parent: 1
+ - uid: 17845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,109.5
+ parent: 1
+ - uid: 17846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,109.5
+ parent: 1
+ - uid: 17847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - uid: 17848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,109.5
+ parent: 1
+ - uid: 17849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17850
+ components:
+ - type: Transform
+ pos: 81.5,110.5
+ parent: 1
+ - uid: 17851
+ components:
+ - type: Transform
+ pos: 81.5,111.5
+ parent: 1
+ - uid: 17852
+ components:
+ - type: Transform
+ pos: 81.5,112.5
+ parent: 1
+ - uid: 17853
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 17858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,86.5
+ parent: 1
+ - uid: 17860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,86.5
+ parent: 1
+ - uid: 17863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - uid: 17865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,90.5
+ parent: 1
+ - uid: 17866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,91.5
+ parent: 1
+ - uid: 17867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 17868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,93.5
+ parent: 1
+ - uid: 17869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,94.5
+ parent: 1
+ - uid: 17870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,95.5
+ parent: 1
+ - uid: 17871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,96.5
+ parent: 1
+ - uid: 17872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,88.5
+ parent: 1
+ - uid: 17873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,98.5
+ parent: 1
+ - uid: 17875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,99.5
+ parent: 1
+ - uid: 17876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,100.5
+ parent: 1
+ - uid: 17878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,106.5
+ parent: 1
+ - uid: 17881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,108.5
+ parent: 1
+ - uid: 17883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,109.5
+ parent: 1
+ - uid: 17884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,110.5
+ parent: 1
+ - uid: 17885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,111.5
+ parent: 1
+ - uid: 17886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 17888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,112.5
+ parent: 1
+ - uid: 17902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,87.5
+ parent: 1
+ - uid: 17903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,87.5
+ parent: 1
+ - uid: 17904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,87.5
+ parent: 1
+ - uid: 17907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,88.5
+ parent: 1
+ - uid: 17909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - uid: 17911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,91.5
+ parent: 1
+ - uid: 17912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,92.5
+ parent: 1
+ - uid: 17913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,93.5
+ parent: 1
+ - uid: 17914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,94.5
+ parent: 1
+ - uid: 17915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,95.5
+ parent: 1
+ - uid: 17916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,96.5
+ parent: 1
+ - uid: 17923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 17924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,86.5
+ parent: 1
+ - uid: 17932
+ components:
+ - type: Transform
+ pos: 83.5,88.5
+ parent: 1
+ - uid: 17933
+ components:
+ - type: Transform
+ pos: 83.5,89.5
+ parent: 1
+ - uid: 17934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,86.5
+ parent: 1
+ - uid: 17948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,77.5
+ parent: 1
+ - uid: 17951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 17953
+ components:
+ - type: Transform
+ pos: 68.5,52.5
+ parent: 1
+ - uid: 17959
+ components:
+ - type: Transform
+ pos: 127.5,95.5
+ parent: 1
+ - uid: 17975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,52.5
+ parent: 1
+ - uid: 17976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,52.5
+ parent: 1
+ - uid: 18136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,104.5
+ parent: 1
+ - uid: 18138
+ components:
+ - type: Transform
+ pos: 100.5,103.5
+ parent: 1
+ - uid: 18208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,52.5
+ parent: 1
+ - uid: 18360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 18407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 18412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 18413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 18417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 18418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 18540
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 18649
+ components:
+ - type: Transform
+ pos: 129.5,116.5
+ parent: 1
+ - uid: 18650
+ components:
+ - type: Transform
+ pos: 129.5,115.5
+ parent: 1
+ - uid: 18651
+ components:
+ - type: Transform
+ pos: 129.5,114.5
+ parent: 1
+ - uid: 18652
+ components:
+ - type: Transform
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 18653
+ components:
+ - type: Transform
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 18654
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 18655
+ components:
+ - type: Transform
+ pos: 129.5,110.5
+ parent: 1
+ - uid: 18656
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - uid: 18657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,108.5
+ parent: 1
+ - uid: 18658
+ components:
+ - type: Transform
+ pos: 129.5,107.5
+ parent: 1
+ - uid: 18659
+ components:
+ - type: Transform
+ pos: 129.5,105.5
+ parent: 1
+ - uid: 18660
+ components:
+ - type: Transform
+ pos: 129.5,104.5
+ parent: 1
+ - uid: 18661
+ components:
+ - type: Transform
+ pos: 129.5,106.5
+ parent: 1
+ - uid: 18662
+ components:
+ - type: Transform
+ pos: 129.5,102.5
+ parent: 1
+ - uid: 18664
+ components:
+ - type: Transform
+ pos: 129.5,100.5
+ parent: 1
+ - uid: 18665
+ components:
+ - type: Transform
+ pos: 129.5,99.5
+ parent: 1
+ - uid: 18666
+ components:
+ - type: Transform
+ pos: 129.5,98.5
+ parent: 1
+ - uid: 18667
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - uid: 18668
+ components:
+ - type: Transform
+ pos: 129.5,103.5
+ parent: 1
+ - uid: 18669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,96.5
+ parent: 1
+ - uid: 18670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,96.5
+ parent: 1
+ - uid: 18671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,96.5
+ parent: 1
+ - uid: 18672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,96.5
+ parent: 1
+ - uid: 18673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 18674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 18675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,96.5
+ parent: 1
+ - uid: 18676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 18694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 18695
+ components:
+ - type: Transform
+ pos: 140.5,102.5
+ parent: 1
+ - uid: 18696
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - uid: 18697
+ components:
+ - type: Transform
+ pos: 140.5,103.5
+ parent: 1
+ - uid: 18698
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 18699
+ components:
+ - type: Transform
+ pos: 140.5,105.5
+ parent: 1
+ - uid: 18700
+ components:
+ - type: Transform
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 18701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 18722
+ components:
+ - type: Transform
+ pos: 150.5,107.5
+ parent: 1
+ - uid: 18723
+ components:
+ - type: Transform
+ pos: 150.5,106.5
+ parent: 1
+ - uid: 18724
+ components:
+ - type: Transform
+ pos: 150.5,105.5
+ parent: 1
+ - uid: 18725
+ components:
+ - type: Transform
+ pos: 150.5,104.5
+ parent: 1
+ - uid: 18726
+ components:
+ - type: Transform
+ pos: 150.5,103.5
+ parent: 1
+ - uid: 18727
+ components:
+ - type: Transform
+ pos: 150.5,102.5
+ parent: 1
+ - uid: 18728
+ components:
+ - type: Transform
+ pos: 150.5,101.5
+ parent: 1
+ - uid: 18729
+ components:
+ - type: Transform
+ pos: 150.5,100.5
+ parent: 1
+ - uid: 18747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - uid: 18748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,99.5
+ parent: 1
+ - uid: 18749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,99.5
+ parent: 1
+ - uid: 18750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,99.5
+ parent: 1
+ - uid: 18751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - uid: 18752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,98.5
+ parent: 1
+ - uid: 18753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,98.5
+ parent: 1
+ - uid: 18754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 18755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,99.5
+ parent: 1
+ - uid: 18756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,100.5
+ parent: 1
+ - uid: 18757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,101.5
+ parent: 1
+ - uid: 18758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,102.5
+ parent: 1
+ - uid: 18759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,103.5
+ parent: 1
+ - uid: 18760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,104.5
+ parent: 1
+ - uid: 18761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,105.5
+ parent: 1
+ - uid: 18762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,106.5
+ parent: 1
+ - uid: 18763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,107.5
+ parent: 1
+ - uid: 18764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,108.5
+ parent: 1
+ - uid: 18765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,109.5
+ parent: 1
+ - uid: 18767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 18768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,112.5
+ parent: 1
+ - uid: 18769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 18771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,115.5
+ parent: 1
+ - uid: 18772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,116.5
+ parent: 1
+ - uid: 18773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,117.5
+ parent: 1
+ - uid: 18774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 18775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,119.5
+ parent: 1
+ - uid: 18776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,119.5
+ parent: 1
+ - uid: 18777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 18778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,119.5
+ parent: 1
+ - uid: 18779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,119.5
+ parent: 1
+ - uid: 18780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,119.5
+ parent: 1
+ - uid: 18781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - uid: 18782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,119.5
+ parent: 1
+ - uid: 18783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,119.5
+ parent: 1
+ - uid: 18784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,119.5
+ parent: 1
+ - uid: 18785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,119.5
+ parent: 1
+ - uid: 18786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,119.5
+ parent: 1
+ - uid: 18794
+ components:
+ - type: Transform
+ pos: 127.5,97.5
+ parent: 1
+ - uid: 18795
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 18797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+ - uid: 18798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 18799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 18800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 18801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 18802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 18803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 18804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 18805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 18806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,100.5
+ parent: 1
+ - uid: 18807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,101.5
+ parent: 1
+ - uid: 18808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,102.5
+ parent: 1
+ - uid: 18809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,103.5
+ parent: 1
+ - uid: 18810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 18811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 18812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,106.5
+ parent: 1
+ - uid: 18813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,107.5
+ parent: 1
+ - uid: 18814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,108.5
+ parent: 1
+ - uid: 18820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,110.5
+ parent: 1
+ - uid: 18821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,110.5
+ parent: 1
+ - uid: 18822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,110.5
+ parent: 1
+ - uid: 18823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,110.5
+ parent: 1
+ - uid: 18824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 18827
+ components:
+ - type: Transform
+ pos: 149.5,96.5
+ parent: 1
+ - uid: 18829
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 18830
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 18831
+ components:
+ - type: Transform
+ pos: 149.5,98.5
+ parent: 1
+ - uid: 18832
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 18833
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 18834
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 18835
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 18836
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 18837
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 18838
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 18839
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 18842
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 18845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 18846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 18847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 18848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 18849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 18850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 18851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 18853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,110.5
+ parent: 1
+ - uid: 18854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,110.5
+ parent: 1
+ - uid: 18855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,110.5
+ parent: 1
+ - uid: 18856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,110.5
+ parent: 1
+ - uid: 18857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,110.5
+ parent: 1
+ - uid: 18858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,111.5
+ parent: 1
+ - uid: 18869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 20511
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+ - uid: 20512
+ components:
+ - type: Transform
+ pos: 48.5,88.5
+ parent: 1
+ - uid: 20513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,87.5
+ parent: 1
+ - uid: 20514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,87.5
+ parent: 1
+ - uid: 20515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 20516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,87.5
+ parent: 1
+ - uid: 20517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,87.5
+ parent: 1
+ - uid: 20518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,87.5
+ parent: 1
+ - uid: 20519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,88.5
+ parent: 1
+ - uid: 20520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,89.5
+ parent: 1
+ - uid: 20521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,86.5
+ parent: 1
+ - uid: 20522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,85.5
+ parent: 1
+ - uid: 20528
+ components:
+ - type: Transform
+ pos: 55.5,90.5
+ parent: 1
+ - uid: 20529
+ components:
+ - type: Transform
+ pos: 55.5,91.5
+ parent: 1
+ - uid: 20530
+ components:
+ - type: Transform
+ pos: 55.5,92.5
+ parent: 1
+ - uid: 20531
+ components:
+ - type: Transform
+ pos: 55.5,93.5
+ parent: 1
+ - uid: 20532
+ components:
+ - type: Transform
+ pos: 55.5,94.5
+ parent: 1
+ - uid: 20533
+ components:
+ - type: Transform
+ pos: 55.5,95.5
+ parent: 1
+ - uid: 20534
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 20535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,97.5
+ parent: 1
+ - uid: 20536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,97.5
+ parent: 1
+ - uid: 20537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,97.5
+ parent: 1
+ - uid: 20538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,97.5
+ parent: 1
+ - uid: 20539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,97.5
+ parent: 1
+ - uid: 20540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,97.5
+ parent: 1
+ - uid: 20541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,97.5
+ parent: 1
+ - uid: 20542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,97.5
+ parent: 1
+ - uid: 20543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,97.5
+ parent: 1
+ - uid: 20544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,97.5
+ parent: 1
+ - uid: 20545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,97.5
+ parent: 1
+ - uid: 20546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,98.5
+ parent: 1
+ - uid: 20548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,99.5
+ parent: 1
+ - uid: 20549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20550
+ components:
+ - type: Transform
+ pos: 44.5,107.5
+ parent: 1
+ - uid: 20551
+ components:
+ - type: Transform
+ pos: 44.5,108.5
+ parent: 1
+ - uid: 20552
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20553
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,112.5
+ parent: 1
+ - uid: 20556
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,112.5
+ parent: 1
+ - uid: 20558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,112.5
+ parent: 1
+ - uid: 20560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,102.5
+ parent: 1
+ - uid: 20561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,103.5
+ parent: 1
+ - uid: 20562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,104.5
+ parent: 1
+ - uid: 20563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,105.5
+ parent: 1
+ - uid: 20564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,106.5
+ parent: 1
+ - uid: 20565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,107.5
+ parent: 1
+ - uid: 20566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,108.5
+ parent: 1
+ - uid: 20567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,109.5
+ parent: 1
+ - uid: 20569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 20570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,112.5
+ parent: 1
+ - uid: 20571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,112.5
+ parent: 1
+ - uid: 20572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,112.5
+ parent: 1
+ - uid: 20573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,112.5
+ parent: 1
+ - uid: 20574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 20575
+ components:
+ - type: Transform
+ pos: 36.5,111.5
+ parent: 1
+ - uid: 20578
+ components:
+ - type: Transform
+ pos: 42.5,101.5
+ parent: 1
+ - uid: 20579
+ components:
+ - type: Transform
+ pos: 44.5,106.5
+ parent: 1
+ - uid: 20580
+ components:
+ - type: Transform
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 20581
+ components:
+ - type: Transform
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20582
+ components:
+ - type: Transform
+ pos: 44.5,103.5
+ parent: 1
+ - uid: 20583
+ components:
+ - type: Transform
+ pos: 44.5,102.5
+ parent: 1
+ - uid: 20584
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 20585
+ components:
+ - type: Transform
+ pos: 44.5,101.5
+ parent: 1
+ - uid: 20586
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20588
+ components:
+ - type: Transform
+ pos: 44.5,98.5
+ parent: 1
+ - uid: 20589
+ components:
+ - type: Transform
+ pos: 44.5,97.5
+ parent: 1
+ - uid: 20590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 20592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 20593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 20594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 20595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 20596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 20597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,96.5
+ parent: 1
+ - uid: 20598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,96.5
+ parent: 1
+ - uid: 20599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 20600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 20601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 20602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,97.5
+ parent: 1
+ - uid: 20603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,98.5
+ parent: 1
+ - uid: 20604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,99.5
+ parent: 1
+ - uid: 20605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,100.5
+ parent: 1
+ - uid: 20606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,101.5
+ parent: 1
+ - uid: 20607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,102.5
+ parent: 1
+ - uid: 20608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 20609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,105.5
+ parent: 1
+ - uid: 20610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,106.5
+ parent: 1
+ - uid: 20611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,104.5
+ parent: 1
+ - uid: 20612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,108.5
+ parent: 1
+ - uid: 20613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,109.5
+ parent: 1
+ - uid: 20615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,110.5
+ parent: 1
+ - uid: 20616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,111.5
+ parent: 1
+ - uid: 20617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,112.5
+ parent: 1
+ - uid: 20618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,112.5
+ parent: 1
+ - uid: 20619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,112.5
+ parent: 1
+ - uid: 20620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,112.5
+ parent: 1
+ - uid: 20621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,112.5
+ parent: 1
+ - uid: 20622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,112.5
+ parent: 1
+ - uid: 20623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,112.5
+ parent: 1
+ - uid: 20625
+ components:
+ - type: Transform
+ pos: 57.5,95.5
+ parent: 1
+ - uid: 20626
+ components:
+ - type: Transform
+ pos: 57.5,94.5
+ parent: 1
+ - uid: 20628
+ components:
+ - type: Transform
+ pos: 57.5,92.5
+ parent: 1
+ - uid: 20629
+ components:
+ - type: Transform
+ pos: 57.5,91.5
+ parent: 1
+ - uid: 20631
+ components:
+ - type: Transform
+ pos: 57.5,89.5
+ parent: 1
+ - uid: 20632
+ components:
+ - type: Transform
+ pos: 57.5,87.5
+ parent: 1
+ - uid: 20633
+ components:
+ - type: Transform
+ pos: 57.5,86.5
+ parent: 1
+ - uid: 20634
+ components:
+ - type: Transform
+ pos: 57.5,85.5
+ parent: 1
+ - uid: 20635
+ components:
+ - type: Transform
+ pos: 57.5,84.5
+ parent: 1
+ - uid: 20636
+ components:
+ - type: Transform
+ pos: 57.5,83.5
+ parent: 1
+ - uid: 20637
+ components:
+ - type: Transform
+ pos: 57.5,82.5
+ parent: 1
+ - uid: 20638
+ components:
+ - type: Transform
+ pos: 57.5,81.5
+ parent: 1
+ - uid: 20639
+ components:
+ - type: Transform
+ pos: 57.5,80.5
+ parent: 1
+ - uid: 20640
+ components:
+ - type: Transform
+ pos: 57.5,79.5
+ parent: 1
+ - uid: 20641
+ components:
+ - type: Transform
+ pos: 57.5,88.5
+ parent: 1
+ - uid: 20645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,90.5
+ parent: 1
+ - uid: 20646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,90.5
+ parent: 1
+ - uid: 20647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 20648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,90.5
+ parent: 1
+ - uid: 20649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,90.5
+ parent: 1
+ - uid: 20650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 20651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 20653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,83.5
+ parent: 1
+ - uid: 20655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 20656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20657
+ components:
+ - type: Transform
+ pos: 44.5,84.5
+ parent: 1
+ - uid: 20658
+ components:
+ - type: Transform
+ pos: 44.5,85.5
+ parent: 1
+ - uid: 20659
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 20660
+ components:
+ - type: Transform
+ pos: 44.5,87.5
+ parent: 1
+ - uid: 20661
+ components:
+ - type: Transform
+ pos: 44.5,88.5
+ parent: 1
+ - uid: 20662
+ components:
+ - type: Transform
+ pos: 44.5,89.5
+ parent: 1
+ - uid: 20663
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - uid: 20664
+ components:
+ - type: Transform
+ pos: 44.5,91.5
+ parent: 1
+ - uid: 20665
+ components:
+ - type: Transform
+ pos: 44.5,92.5
+ parent: 1
+ - uid: 20666
+ components:
+ - type: Transform
+ pos: 44.5,93.5
+ parent: 1
+ - uid: 20667
+ components:
+ - type: Transform
+ pos: 44.5,94.5
+ parent: 1
+ - uid: 20668
+ components:
+ - type: Transform
+ pos: 44.5,95.5
+ parent: 1
+ - uid: 20673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 20674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 20675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 20676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,88.5
+ parent: 1
+ - uid: 20677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,89.5
+ parent: 1
+ - uid: 20678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 20679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,90.5
+ parent: 1
+ - uid: 20684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,81.5
+ parent: 1
+ - uid: 20685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,82.5
+ parent: 1
+ - uid: 20694
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - uid: 20695
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20696
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20697
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20698
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20699
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20700
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20701
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20702
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20703
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20704
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20705
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20706
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20707
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20708
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 20709
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,99.5
+ parent: 1
+ - uid: 20712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,99.5
+ parent: 1
+ - uid: 20713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,99.5
+ parent: 1
+ - uid: 20714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,99.5
+ parent: 1
+ - uid: 20715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,99.5
+ parent: 1
+ - uid: 20716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,99.5
+ parent: 1
+ - uid: 20717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,99.5
+ parent: 1
+ - uid: 20719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,99.5
+ parent: 1
+ - uid: 20720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,99.5
+ parent: 1
+ - uid: 20721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,99.5
+ parent: 1
+ - uid: 20722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 20726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 20729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 20780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 21044
+ components:
+ - type: Transform
+ pos: 138.5,97.5
+ parent: 1
+ - uid: 21048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,98.5
+ parent: 1
+ - uid: 21052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 21135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 21138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 21379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,100.5
+ parent: 1
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: 44.5,71.5
+ parent: 1
+ - uid: 21651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 21657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 21658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,98.5
+ parent: 1
+ - uid: 21671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 21687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+ - uid: 21757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,61.5
+ parent: 1
+ - uid: 21759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,62.5
+ parent: 1
+ - uid: 21761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,60.5
+ parent: 1
+ - uid: 21764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,59.5
+ parent: 1
+ - uid: 21765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,63.5
+ parent: 1
+ - uid: 21809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,58.5
+ parent: 1
+ - uid: 21872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,98.5
+ parent: 1
+ - uid: 22047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,57.5
+ parent: 1
+ - uid: 22049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,50.5
+ parent: 1
+ - uid: 22102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,98.5
+ parent: 1
+ - uid: 22176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,98.5
+ parent: 1
+ - uid: 22185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,98.5
+ parent: 1
+ - uid: 22187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,110.5
+ parent: 1
+ - uid: 22193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 22274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 22281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22282
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - uid: 22283
+ components:
+ - type: Transform
+ pos: 140.5,53.5
+ parent: 1
+ - uid: 22284
+ components:
+ - type: Transform
+ pos: 140.5,54.5
+ parent: 1
+ - uid: 22285
+ components:
+ - type: Transform
+ pos: 140.5,55.5
+ parent: 1
+ - uid: 22286
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - uid: 22287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,57.5
+ parent: 1
+ - uid: 22288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 22289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,58.5
+ parent: 1
+ - uid: 22290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 22291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,60.5
+ parent: 1
+ - uid: 22292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,62.5
+ parent: 1
+ - uid: 22294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,63.5
+ parent: 1
+ - uid: 22295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,64.5
+ parent: 1
+ - uid: 22296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,65.5
+ parent: 1
+ - uid: 22297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,67.5
+ parent: 1
+ - uid: 22298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,66.5
+ parent: 1
+ - uid: 22299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22300
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,70.5
+ parent: 1
+ - uid: 22301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,71.5
+ parent: 1
+ - uid: 22302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,72.5
+ parent: 1
+ - uid: 22303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,69.5
+ parent: 1
+ - uid: 22304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,73.5
+ parent: 1
+ - uid: 22305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,74.5
+ parent: 1
+ - uid: 22306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,75.5
+ parent: 1
+ - uid: 22307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 22308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 22309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,78.5
+ parent: 1
+ - uid: 22310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,78.5
+ parent: 1
+ - uid: 22311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,78.5
+ parent: 1
+ - uid: 22312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,78.5
+ parent: 1
+ - uid: 22313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,78.5
+ parent: 1
+ - uid: 22314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,78.5
+ parent: 1
+ - uid: 22315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,78.5
+ parent: 1
+ - uid: 22316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,78.5
+ parent: 1
+ - uid: 22325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,80.5
+ parent: 1
+ - uid: 22326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,81.5
+ parent: 1
+ - uid: 22327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,82.5
+ parent: 1
+ - uid: 22328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,83.5
+ parent: 1
+ - uid: 22329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,85.5
+ parent: 1
+ - uid: 22330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,86.5
+ parent: 1
+ - uid: 22331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,87.5
+ parent: 1
+ - uid: 22332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,88.5
+ parent: 1
+ - uid: 22333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,89.5
+ parent: 1
+ - uid: 22334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 22335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,91.5
+ parent: 1
+ - uid: 22336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,92.5
+ parent: 1
+ - uid: 22337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,93.5
+ parent: 1
+ - uid: 22338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,84.5
+ parent: 1
+ - uid: 22339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,94.5
+ parent: 1
+ - uid: 22340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 22341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 22342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 22343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 22344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,71.5
+ parent: 1
+ - uid: 22345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 22346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 22347
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - uid: 22348
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+ - uid: 22349
+ components:
+ - type: Transform
+ pos: 126.5,68.5
+ parent: 1
+ - uid: 22350
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - uid: 22351
+ components:
+ - type: Transform
+ pos: 126.5,66.5
+ parent: 1
+ - uid: 22352
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 22353
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - uid: 22354
+ components:
+ - type: Transform
+ pos: 126.5,63.5
+ parent: 1
+ - uid: 22355
+ components:
+ - type: Transform
+ pos: 126.5,62.5
+ parent: 1
+ - uid: 22356
+ components:
+ - type: Transform
+ pos: 126.5,61.5
+ parent: 1
+ - uid: 22357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,60.5
+ parent: 1
+ - uid: 22358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,60.5
+ parent: 1
+ - uid: 22359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,60.5
+ parent: 1
+ - uid: 22360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 22361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,60.5
+ parent: 1
+ - uid: 22362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 22363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 22364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,61.5
+ parent: 1
+ - uid: 22365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - uid: 22366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,63.5
+ parent: 1
+ - uid: 22367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,64.5
+ parent: 1
+ - uid: 22368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,65.5
+ parent: 1
+ - uid: 22369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,66.5
+ parent: 1
+ - uid: 22370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,67.5
+ parent: 1
+ - uid: 22371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,68.5
+ parent: 1
+ - uid: 22372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,69.5
+ parent: 1
+ - uid: 22373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,71.5
+ parent: 1
+ - uid: 22374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,72.5
+ parent: 1
+ - uid: 22375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 22376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,74.5
+ parent: 1
+ - uid: 22377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,75.5
+ parent: 1
+ - uid: 22378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,70.5
+ parent: 1
+ - uid: 22379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 22380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,76.5
+ parent: 1
+ - uid: 22381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,78.5
+ parent: 1
+ - uid: 22382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,78.5
+ parent: 1
+ - uid: 22383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,78.5
+ parent: 1
+ - uid: 22384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 22385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,78.5
+ parent: 1
+ - uid: 22386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,78.5
+ parent: 1
+ - uid: 22387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,78.5
+ parent: 1
+ - uid: 22388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,78.5
+ parent: 1
+ - uid: 22400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,76.5
+ parent: 1
+ - uid: 22401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,76.5
+ parent: 1
+ - uid: 22402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,76.5
+ parent: 1
+ - uid: 22403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,76.5
+ parent: 1
+ - uid: 22404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,76.5
+ parent: 1
+ - uid: 22405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,76.5
+ parent: 1
+ - uid: 22406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,76.5
+ parent: 1
+ - uid: 22407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 22408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,76.5
+ parent: 1
+ - uid: 22410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,76.5
+ parent: 1
+ - uid: 22411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 22412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 22413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 22414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 22416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 22422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 22423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 22424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 22425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,78.5
+ parent: 1
+ - uid: 22426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,79.5
+ parent: 1
+ - uid: 22432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,76.5
+ parent: 1
+ - uid: 22433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,76.5
+ parent: 1
+ - uid: 22434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,76.5
+ parent: 1
+ - uid: 22435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,76.5
+ parent: 1
+ - uid: 22436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,76.5
+ parent: 1
+ - uid: 22437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,76.5
+ parent: 1
+ - uid: 22438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,59.5
+ parent: 1
+ - uid: 22439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 22440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,61.5
+ parent: 1
+ - uid: 22441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,63.5
+ parent: 1
+ - uid: 22444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,66.5
+ parent: 1
+ - uid: 22445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,67.5
+ parent: 1
+ - uid: 22446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,68.5
+ parent: 1
+ - uid: 22447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,69.5
+ parent: 1
+ - uid: 22448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,70.5
+ parent: 1
+ - uid: 22449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,71.5
+ parent: 1
+ - uid: 22450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,72.5
+ parent: 1
+ - uid: 22451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,73.5
+ parent: 1
+ - uid: 22452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,62.5
+ parent: 1
+ - uid: 22453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,58.5
+ parent: 1
+ - uid: 22454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,58.5
+ parent: 1
+ - uid: 22455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,74.5
+ parent: 1
+ - uid: 22456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,58.5
+ parent: 1
+ - uid: 22457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,58.5
+ parent: 1
+ - uid: 22458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,58.5
+ parent: 1
+ - uid: 22459
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 22460
+ components:
+ - type: Transform
+ pos: 128.5,60.5
+ parent: 1
+ - uid: 22461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,58.5
+ parent: 1
+ - uid: 22462
+ components:
+ - type: Transform
+ pos: 128.5,63.5
+ parent: 1
+ - uid: 22464
+ components:
+ - type: Transform
+ pos: 128.5,62.5
+ parent: 1
+ - uid: 22465
+ components:
+ - type: Transform
+ pos: 128.5,61.5
+ parent: 1
+ - uid: 22466
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22467
+ components:
+ - type: Transform
+ pos: 128.5,64.5
+ parent: 1
+ - uid: 22468
+ components:
+ - type: Transform
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,58.5
+ parent: 1
+ - uid: 22470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,76.5
+ parent: 1
+ - uid: 22471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,76.5
+ parent: 1
+ - uid: 22472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,76.5
+ parent: 1
+ - uid: 22473
+ components:
+ - type: Transform
+ pos: 128.5,68.5
+ parent: 1
+ - uid: 22474
+ components:
+ - type: Transform
+ pos: 128.5,69.5
+ parent: 1
+ - uid: 22475
+ components:
+ - type: Transform
+ pos: 128.5,70.5
+ parent: 1
+ - uid: 22476
+ components:
+ - type: Transform
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 22477
+ components:
+ - type: Transform
+ pos: 128.5,72.5
+ parent: 1
+ - uid: 22478
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - uid: 22482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,57.5
+ parent: 1
+ - uid: 22484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,68.5
+ parent: 1
+ - uid: 22485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 22486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22488
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 22489
+ components:
+ - type: Transform
+ pos: 139.5,71.5
+ parent: 1
+ - uid: 22490
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - uid: 22491
+ components:
+ - type: Transform
+ pos: 139.5,73.5
+ parent: 1
+ - uid: 22492
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - uid: 22493
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - uid: 22502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,67.5
+ parent: 1
+ - uid: 22503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,65.5
+ parent: 1
+ - uid: 22504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,64.5
+ parent: 1
+ - uid: 22505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,63.5
+ parent: 1
+ - uid: 22506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,62.5
+ parent: 1
+ - uid: 22507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,61.5
+ parent: 1
+ - uid: 22508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,60.5
+ parent: 1
+ - uid: 22509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,59.5
+ parent: 1
+ - uid: 22510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,58.5
+ parent: 1
+ - uid: 22511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,57.5
+ parent: 1
+ - uid: 22512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,56.5
+ parent: 1
+ - uid: 22514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 22515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,66.5
+ parent: 1
+ - uid: 22517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 22519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 22520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,55.5
+ parent: 1
+ - uid: 22521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,55.5
+ parent: 1
+ - uid: 22522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,55.5
+ parent: 1
+ - uid: 22523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 22524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,55.5
+ parent: 1
+ - uid: 22525
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 22526
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 22527
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 22528
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 22529
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 22530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,55.5
+ parent: 1
+ - uid: 22531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,55.5
+ parent: 1
+ - uid: 22532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,55.5
+ parent: 1
+ - uid: 22533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,56.5
+ parent: 1
+ - uid: 22536
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 22543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,59.5
+ parent: 1
+ - uid: 22551
+ components:
+ - type: Transform
+ pos: 120.5,75.5
+ parent: 1
+ - uid: 22642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,56.5
+ parent: 1
+ - uid: 22648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,55.5
+ parent: 1
+ - uid: 22650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,50.5
+ parent: 1
+ - uid: 22652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,50.5
+ parent: 1
+ - uid: 22653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,50.5
+ parent: 1
+ - uid: 22667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,50.5
+ parent: 1
+ - uid: 22670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,52.5
+ parent: 1
+ - uid: 22671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,52.5
+ parent: 1
+ - uid: 22672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,52.5
+ parent: 1
+ - uid: 22674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,52.5
+ parent: 1
+ - uid: 22704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,54.5
+ parent: 1
+ - uid: 22893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,52.5
+ parent: 1
+ - uid: 23150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,46.5
+ parent: 1
+ - uid: 23189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,47.5
+ parent: 1
+ - uid: 23192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,47.5
+ parent: 1
+ - uid: 23193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,41.5
+ parent: 1
+ - uid: 23194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,43.5
+ parent: 1
+ - uid: 23201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 23202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 23203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 23225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,101.5
+ parent: 1
+ - uid: 23226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,102.5
+ parent: 1
+ - uid: 23250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 23321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,109.5
+ parent: 1
+ - uid: 23326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,101.5
+ parent: 1
+ - uid: 23414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,50.5
+ parent: 1
+ - uid: 23415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,50.5
+ parent: 1
+ - uid: 23428
+ components:
+ - type: Transform
+ pos: 125.5,105.5
+ parent: 1
+ - uid: 23489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,98.5
+ parent: 1
+ - uid: 23523
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 23604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,52.5
+ parent: 1
+ - uid: 23609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,52.5
+ parent: 1
+ - uid: 23610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,50.5
+ parent: 1
+ - uid: 24131
+ components:
+ - type: Transform
+ pos: 57.5,76.5
+ parent: 1
+ - uid: 25093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - uid: 25132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,109.5
+ parent: 1
+ - uid: 25153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 25154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 25155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 25157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,110.5
+ parent: 1
+ - uid: 25318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,114.5
+ parent: 1
+ - uid: 25319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,114.5
+ parent: 1
+ - uid: 25320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,114.5
+ parent: 1
+ - uid: 25321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,114.5
+ parent: 1
+ - uid: 25322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,114.5
+ parent: 1
+ - uid: 25323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,114.5
+ parent: 1
+ - uid: 25324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,114.5
+ parent: 1
+ - uid: 25325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,114.5
+ parent: 1
+ - uid: 25326
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 25327
+ components:
+ - type: Transform
+ pos: 55.5,112.5
+ parent: 1
+ - uid: 25328
+ components:
+ - type: Transform
+ pos: 55.5,111.5
+ parent: 1
+ - uid: 25329
+ components:
+ - type: Transform
+ pos: 55.5,110.5
+ parent: 1
+ - uid: 25330
+ components:
+ - type: Transform
+ pos: 55.5,109.5
+ parent: 1
+ - uid: 25331
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 25332
+ components:
+ - type: Transform
+ pos: 55.5,107.5
+ parent: 1
+ - uid: 25333
+ components:
+ - type: Transform
+ pos: 55.5,106.5
+ parent: 1
+ - uid: 25334
+ components:
+ - type: Transform
+ pos: 55.5,105.5
+ parent: 1
+ - uid: 25335
+ components:
+ - type: Transform
+ pos: 55.5,104.5
+ parent: 1
+ - uid: 25336
+ components:
+ - type: Transform
+ pos: 55.5,102.5
+ parent: 1
+ - uid: 25337
+ components:
+ - type: Transform
+ pos: 55.5,101.5
+ parent: 1
+ - uid: 25338
+ components:
+ - type: Transform
+ pos: 55.5,100.5
+ parent: 1
+ - uid: 25339
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - uid: 25340
+ components:
+ - type: Transform
+ pos: 55.5,103.5
+ parent: 1
+ - uid: 25341
+ components:
+ - type: Transform
+ pos: 55.5,98.5
+ parent: 1
+ - uid: 25342
+ components:
+ - type: Transform
+ pos: 55.5,69.5
+ parent: 1
+ - uid: 25343
+ components:
+ - type: Transform
+ pos: 55.5,71.5
+ parent: 1
+ - uid: 25344
+ components:
+ - type: Transform
+ pos: 55.5,72.5
+ parent: 1
+ - uid: 25345
+ components:
+ - type: Transform
+ pos: 55.5,73.5
+ parent: 1
+ - uid: 25346
+ components:
+ - type: Transform
+ pos: 55.5,74.5
+ parent: 1
+ - uid: 25347
+ components:
+ - type: Transform
+ pos: 55.5,75.5
+ parent: 1
+ - uid: 25348
+ components:
+ - type: Transform
+ pos: 55.5,76.5
+ parent: 1
+ - uid: 25349
+ components:
+ - type: Transform
+ pos: 55.5,77.5
+ parent: 1
+ - uid: 25350
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 25351
+ components:
+ - type: Transform
+ pos: 55.5,79.5
+ parent: 1
+ - uid: 25352
+ components:
+ - type: Transform
+ pos: 55.5,80.5
+ parent: 1
+ - uid: 25353
+ components:
+ - type: Transform
+ pos: 55.5,81.5
+ parent: 1
+ - uid: 25354
+ components:
+ - type: Transform
+ pos: 55.5,82.5
+ parent: 1
+ - uid: 25355
+ components:
+ - type: Transform
+ pos: 55.5,83.5
+ parent: 1
+ - uid: 25356
+ components:
+ - type: Transform
+ pos: 55.5,84.5
+ parent: 1
+ - uid: 25357
+ components:
+ - type: Transform
+ pos: 55.5,70.5
+ parent: 1
+ - uid: 25358
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 25361
+ components:
+ - type: Transform
+ pos: 57.5,75.5
+ parent: 1
+ - uid: 25362
+ components:
+ - type: Transform
+ pos: 57.5,74.5
+ parent: 1
+ - uid: 25363
+ components:
+ - type: Transform
+ pos: 57.5,73.5
+ parent: 1
+ - uid: 25364
+ components:
+ - type: Transform
+ pos: 57.5,72.5
+ parent: 1
+ - uid: 25365
+ components:
+ - type: Transform
+ pos: 57.5,71.5
+ parent: 1
+ - uid: 25366
+ components:
+ - type: Transform
+ pos: 57.5,70.5
+ parent: 1
+ - uid: 25367
+ components:
+ - type: Transform
+ pos: 57.5,69.5
+ parent: 1
+ - uid: 25368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,56.5
+ parent: 1
+ - uid: 25369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,55.5
+ parent: 1
+ - uid: 25370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,54.5
+ parent: 1
+ - uid: 25371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,53.5
+ parent: 1
+ - uid: 25372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,53.5
+ parent: 1
+ - uid: 25373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,53.5
+ parent: 1
+ - uid: 25374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,53.5
+ parent: 1
+ - uid: 25375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,53.5
+ parent: 1
+ - uid: 25376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,53.5
+ parent: 1
+ - uid: 25377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,53.5
+ parent: 1
+ - uid: 25378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,53.5
+ parent: 1
+ - uid: 25379
+ components:
+ - type: Transform
+ pos: 111.5,52.5
+ parent: 1
+ - uid: 25381
+ components:
+ - type: Transform
+ pos: 109.5,53.5
+ parent: 1
+ - uid: 25382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 25383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,50.5
+ parent: 1
+ - uid: 25384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - uid: 25385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,50.5
+ parent: 1
+ - uid: 25386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,50.5
+ parent: 1
+ - uid: 25387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,50.5
+ parent: 1
+ - uid: 25388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,50.5
+ parent: 1
+ - uid: 25394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 25395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,52.5
+ parent: 1
+ - uid: 25396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,52.5
+ parent: 1
+ - uid: 25397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,52.5
+ parent: 1
+ - uid: 25398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,52.5
+ parent: 1
+ - uid: 25399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,52.5
+ parent: 1
+ - uid: 25400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,52.5
+ parent: 1
+ - uid: 25401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - uid: 25402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,55.5
+ parent: 1
+ - uid: 25403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,55.5
+ parent: 1
+ - uid: 25404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,55.5
+ parent: 1
+ - uid: 25405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,55.5
+ parent: 1
+ - uid: 25406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,55.5
+ parent: 1
+ - uid: 25407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,55.5
+ parent: 1
+ - uid: 25408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,55.5
+ parent: 1
+ - uid: 25409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,56.5
+ parent: 1
+ - uid: 25410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,57.5
+ parent: 1
+ - uid: 25411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,58.5
+ parent: 1
+ - uid: 25425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,63.5
+ parent: 1
+ - uid: 25427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 25428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,63.5
+ parent: 1
+ - uid: 25429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,63.5
+ parent: 1
+ - uid: 25430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,63.5
+ parent: 1
+ - uid: 25431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,63.5
+ parent: 1
+ - uid: 25432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 25433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,63.5
+ parent: 1
+ - uid: 25434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,63.5
+ parent: 1
+ - uid: 25435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,63.5
+ parent: 1
+ - uid: 25436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,63.5
+ parent: 1
+ - uid: 25437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,63.5
+ parent: 1
+ - uid: 25438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,63.5
+ parent: 1
+ - uid: 25439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,63.5
+ parent: 1
+ - uid: 25440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,63.5
+ parent: 1
+ - uid: 25441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,63.5
+ parent: 1
+ - uid: 25443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 25444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,63.5
+ parent: 1
+ - uid: 25445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,63.5
+ parent: 1
+ - uid: 25446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,63.5
+ parent: 1
+ - uid: 25447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,63.5
+ parent: 1
+ - uid: 25448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,63.5
+ parent: 1
+ - uid: 25449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,63.5
+ parent: 1
+ - uid: 25450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,63.5
+ parent: 1
+ - uid: 25451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 25452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,65.5
+ parent: 1
+ - uid: 25453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,65.5
+ parent: 1
+ - uid: 25454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,65.5
+ parent: 1
+ - uid: 25455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 25456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,65.5
+ parent: 1
+ - uid: 25457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,65.5
+ parent: 1
+ - uid: 25458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,65.5
+ parent: 1
+ - uid: 25459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,65.5
+ parent: 1
+ - uid: 25460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,65.5
+ parent: 1
+ - uid: 25461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,65.5
+ parent: 1
+ - uid: 25462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,65.5
+ parent: 1
+ - uid: 25463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,65.5
+ parent: 1
+ - uid: 25464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,65.5
+ parent: 1
+ - uid: 25465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,65.5
+ parent: 1
+ - uid: 25466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,65.5
+ parent: 1
+ - uid: 25467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,65.5
+ parent: 1
+ - uid: 25468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,65.5
+ parent: 1
+ - uid: 25469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,65.5
+ parent: 1
+ - uid: 25470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,65.5
+ parent: 1
+ - uid: 25471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,65.5
+ parent: 1
+ - uid: 25472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,65.5
+ parent: 1
+ - uid: 25531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,40.5
+ parent: 1
+ - uid: 25853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 26229
+ components:
+ - type: Transform
+ pos: 82.5,54.5
+ parent: 1
+ - uid: 26242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 26244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,117.5
+ parent: 1
+ - uid: 26245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,116.5
+ parent: 1
+ - uid: 26246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,115.5
+ parent: 1
+ - uid: 26247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,114.5
+ parent: 1
+ - uid: 26248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,113.5
+ parent: 1
+ - uid: 26249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,112.5
+ parent: 1
+ - uid: 26250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 26251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,110.5
+ parent: 1
+ - uid: 26252
+ components:
+ - type: Transform
+ pos: 99.5,109.5
+ parent: 1
+ - uid: 26253
+ components:
+ - type: Transform
+ pos: 99.5,108.5
+ parent: 1
+ - uid: 26254
+ components:
+ - type: Transform
+ pos: 99.5,107.5
+ parent: 1
+ - uid: 26255
+ components:
+ - type: Transform
+ pos: 99.5,106.5
+ parent: 1
+ - uid: 26256
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 26257
+ components:
+ - type: Transform
+ pos: 99.5,104.5
+ parent: 1
+ - uid: 26258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,103.5
+ parent: 1
+ - uid: 26259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,103.5
+ parent: 1
+ - uid: 26260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,103.5
+ parent: 1
+ - uid: 26266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,110.5
+ parent: 1
+ - uid: 26269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,97.5
+ parent: 1
+ - uid: 26270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 26278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 26279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 26280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,100.5
+ parent: 1
+ - uid: 26281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,101.5
+ parent: 1
+ - uid: 26282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,103.5
+ parent: 1
+ - uid: 26284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,104.5
+ parent: 1
+ - uid: 26285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,105.5
+ parent: 1
+ - uid: 26286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,107.5
+ parent: 1
+ - uid: 26287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,108.5
+ parent: 1
+ - uid: 26288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,109.5
+ parent: 1
+ - uid: 26289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,110.5
+ parent: 1
+ - uid: 26290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 26291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,112.5
+ parent: 1
+ - uid: 26293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 26294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,115.5
+ parent: 1
+ - uid: 26295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,116.5
+ parent: 1
+ - uid: 26299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 26301
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 26302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,98.5
+ parent: 1
+ - uid: 26306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 26307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 26308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 26309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 26311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 26321
+ components:
+ - type: Transform
+ pos: 104.5,41.5
+ parent: 1
+ - uid: 26323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,103.5
+ parent: 1
+ - uid: 26324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,103.5
+ parent: 1
+ - uid: 26325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,103.5
+ parent: 1
+ - uid: 26326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,103.5
+ parent: 1
+ - uid: 26327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,104.5
+ parent: 1
+ - uid: 26328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 26329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,106.5
+ parent: 1
+ - uid: 26330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,107.5
+ parent: 1
+ - uid: 26331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,108.5
+ parent: 1
+ - uid: 26332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,109.5
+ parent: 1
+ - uid: 26333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,110.5
+ parent: 1
+ - uid: 26334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,110.5
+ parent: 1
+ - uid: 26335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,110.5
+ parent: 1
+ - uid: 26336
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 26337
+ components:
+ - type: Transform
+ pos: 112.5,112.5
+ parent: 1
+ - uid: 26338
+ components:
+ - type: Transform
+ pos: 112.5,113.5
+ parent: 1
+ - uid: 26339
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 26340
+ components:
+ - type: Transform
+ pos: 112.5,115.5
+ parent: 1
+ - uid: 26341
+ components:
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - uid: 26342
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 26343
+ components:
+ - type: Transform
+ pos: 112.5,117.5
+ parent: 1
+ - uid: 26356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,101.5
+ parent: 1
+ - uid: 26357
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 26358
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 26361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,106.5
+ parent: 1
+ - uid: 26362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,106.5
+ parent: 1
+ - uid: 26363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,106.5
+ parent: 1
+ - uid: 26364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,106.5
+ parent: 1
+ - uid: 26365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,106.5
+ parent: 1
+ - uid: 26367
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 26368
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - uid: 26369
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - uid: 26370
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26371
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - uid: 26372
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - uid: 26373
+ components:
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - uid: 26374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,106.5
+ parent: 1
+ - uid: 26375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,106.5
+ parent: 1
+ - uid: 26376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,106.5
+ parent: 1
+ - uid: 26454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - uid: 26486
+ components:
+ - type: Transform
+ pos: 82.5,58.5
+ parent: 1
+ - uid: 27111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,70.5
+ parent: 1
+ - uid: 27122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,69.5
+ parent: 1
+ - uid: 27124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,65.5
+ parent: 1
+ - uid: 27125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,66.5
+ parent: 1
+ - uid: 27127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,63.5
+ parent: 1
+ - uid: 27128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,63.5
+ parent: 1
+ - uid: 27130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,73.5
+ parent: 1
+ - uid: 27131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 27132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 27133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 27134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 27135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,74.5
+ parent: 1
+ - uid: 27136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 27137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 27138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 27139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 27140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 27141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,74.5
+ parent: 1
+ - uid: 27142
+ components:
+ - type: Transform
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 27143
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 27144
+ components:
+ - type: Transform
+ pos: 74.5,71.5
+ parent: 1
+ - uid: 27145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,70.5
+ parent: 1
+ - uid: 27146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,70.5
+ parent: 1
+ - uid: 27147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,70.5
+ parent: 1
+ - uid: 27148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,70.5
+ parent: 1
+ - uid: 27149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,70.5
+ parent: 1
+ - uid: 27150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,70.5
+ parent: 1
+ - uid: 27151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,70.5
+ parent: 1
+ - uid: 27152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,71.5
+ parent: 1
+ - uid: 27153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,71.5
+ parent: 1
+ - uid: 27154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,71.5
+ parent: 1
+ - uid: 27155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,71.5
+ parent: 1
+ - uid: 27156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 27157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,71.5
+ parent: 1
+ - uid: 27277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,56.5
+ parent: 1
+ - uid: 27366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,44.5
+ parent: 1
+ - uid: 27367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,44.5
+ parent: 1
+ - uid: 27368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,44.5
+ parent: 1
+ - uid: 28293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 28353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 28520
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 28544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,98.5
+ parent: 1
+ - uid: 28548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,98.5
+ parent: 1
+ - uid: 28598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 28599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 28600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 28613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 28614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,64.5
+ parent: 1
+ - uid: 28622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 28649
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 28650
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 28742
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 28743
+ components:
+ - type: Transform
+ pos: 135.5,131.5
+ parent: 1
+ - uid: 28744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 28794
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 28809
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 28810
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 28811
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 28812
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 28813
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 28814
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 28815
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 28816
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 28817
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 28818
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 28819
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 28820
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 28821
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 28822
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 28823
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 28824
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 28825
+ components:
+ - type: Transform
+ pos: 68.5,43.5
+ parent: 1
+ - uid: 28826
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - uid: 28827
+ components:
+ - type: Transform
+ pos: 68.5,45.5
+ parent: 1
+ - uid: 28828
+ components:
+ - type: Transform
+ pos: 68.5,46.5
+ parent: 1
+ - uid: 28829
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 28830
+ components:
+ - type: Transform
+ pos: 68.5,48.5
+ parent: 1
+ - uid: 28831
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 28832
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 28833
+ components:
+ - type: Transform
+ pos: 68.5,50.5
+ parent: 1
+ - uid: 28835
+ components:
+ - type: Transform
+ pos: 68.5,54.5
+ parent: 1
+ - uid: 28836
+ components:
+ - type: Transform
+ pos: 68.5,55.5
+ parent: 1
+ - uid: 28838
+ components:
+ - type: Transform
+ pos: 68.5,57.5
+ parent: 1
+ - uid: 28839
+ components:
+ - type: Transform
+ pos: 68.5,58.5
+ parent: 1
+ - uid: 28840
+ components:
+ - type: Transform
+ pos: 68.5,59.5
+ parent: 1
+ - uid: 28841
+ components:
+ - type: Transform
+ pos: 68.5,60.5
+ parent: 1
+ - uid: 28842
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - uid: 28843
+ components:
+ - type: Transform
+ pos: 68.5,61.5
+ parent: 1
+ - uid: 28848
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 28849
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 28850
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 28851
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 28852
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 28853
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 28854
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 28855
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 28856
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 28857
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 28858
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 28859
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 28860
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 28861
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 28862
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 28863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,41.5
+ parent: 1
+ - uid: 28864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,41.5
+ parent: 1
+ - uid: 28865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,41.5
+ parent: 1
+ - uid: 28866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,41.5
+ parent: 1
+ - uid: 28867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,41.5
+ parent: 1
+ - uid: 28868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,41.5
+ parent: 1
+ - uid: 28869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,41.5
+ parent: 1
+ - uid: 28870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,41.5
+ parent: 1
+ - uid: 28871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,41.5
+ parent: 1
+ - uid: 28872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,41.5
+ parent: 1
+ - uid: 28873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,41.5
+ parent: 1
+ - uid: 28874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,41.5
+ parent: 1
+ - uid: 28875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,41.5
+ parent: 1
+ - uid: 28876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,41.5
+ parent: 1
+ - uid: 28889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,63.5
+ parent: 1
+ - uid: 28890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,63.5
+ parent: 1
+ - uid: 28911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 28912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 28913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 28957
+ components:
+ - type: Transform
+ pos: 82.5,59.5
+ parent: 1
+ - uid: 28965
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - uid: 28966
+ components:
+ - type: Transform
+ pos: 91.5,61.5
+ parent: 1
+ - uid: 28967
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 28968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 28969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 29299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 29612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,119.5
+ parent: 1
+ - uid: 29613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,119.5
+ parent: 1
+ - uid: 29614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,119.5
+ parent: 1
+ - uid: 29615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,119.5
+ parent: 1
+ - uid: 29616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,120.5
+ parent: 1
+ - uid: 29617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,121.5
+ parent: 1
+ - uid: 29618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,122.5
+ parent: 1
+ - uid: 29619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 29620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,117.5
+ parent: 1
+ - uid: 29621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,117.5
+ parent: 1
+ - uid: 29622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,117.5
+ parent: 1
+ - uid: 29623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,117.5
+ parent: 1
+ - uid: 29624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,117.5
+ parent: 1
+ - uid: 29625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,117.5
+ parent: 1
+ - uid: 29626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,117.5
+ parent: 1
+ - uid: 29627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,117.5
+ parent: 1
+ - uid: 29628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,117.5
+ parent: 1
+ - uid: 29629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,117.5
+ parent: 1
+ - uid: 29630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,117.5
+ parent: 1
+ - uid: 29631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,117.5
+ parent: 1
+ - uid: 29633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,117.5
+ parent: 1
+ - uid: 29634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,117.5
+ parent: 1
+ - uid: 29635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,117.5
+ parent: 1
+ - uid: 29636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,125.5
+ parent: 1
+ - uid: 29637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,117.5
+ parent: 1
+ - uid: 29638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,117.5
+ parent: 1
+ - uid: 29639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,117.5
+ parent: 1
+ - uid: 29640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,117.5
+ parent: 1
+ - uid: 29641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,117.5
+ parent: 1
+ - uid: 29642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,117.5
+ parent: 1
+ - uid: 29643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,117.5
+ parent: 1
+ - uid: 29644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 29707
+ components:
+ - type: Transform
+ pos: 82.5,62.5
+ parent: 1
+ - uid: 29708
+ components:
+ - type: Transform
+ pos: 82.5,53.5
+ parent: 1
+ - uid: 29709
+ components:
+ - type: Transform
+ pos: 82.5,55.5
+ parent: 1
+ - uid: 29711
+ components:
+ - type: Transform
+ pos: 82.5,63.5
+ parent: 1
+ - uid: 29712
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 29720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 29723
+ components:
+ - type: Transform
+ pos: 125.5,123.5
+ parent: 1
+ - uid: 29724
+ components:
+ - type: Transform
+ pos: 125.5,124.5
+ parent: 1
+ - uid: 29858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 29939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 29943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 29949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 30046
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 30047
+ components:
+ - type: Transform
+ pos: 150.5,119.5
+ parent: 1
+ - uid: 30048
+ components:
+ - type: Transform
+ pos: 150.5,120.5
+ parent: 1
+ - uid: 30049
+ components:
+ - type: Transform
+ pos: 150.5,121.5
+ parent: 1
+ - uid: 30050
+ components:
+ - type: Transform
+ pos: 150.5,122.5
+ parent: 1
+ - uid: 30051
+ components:
+ - type: Transform
+ pos: 150.5,124.5
+ parent: 1
+ - uid: 30052
+ components:
+ - type: Transform
+ pos: 150.5,123.5
+ parent: 1
+ - uid: 30053
+ components:
+ - type: Transform
+ pos: 150.5,126.5
+ parent: 1
+ - uid: 30054
+ components:
+ - type: Transform
+ pos: 150.5,125.5
+ parent: 1
+ - uid: 30055
+ components:
+ - type: Transform
+ pos: 150.5,127.5
+ parent: 1
+ - uid: 30056
+ components:
+ - type: Transform
+ pos: 150.5,128.5
+ parent: 1
+ - uid: 30057
+ components:
+ - type: Transform
+ pos: 150.5,130.5
+ parent: 1
+ - uid: 30058
+ components:
+ - type: Transform
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 30059
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 30060
+ components:
+ - type: Transform
+ pos: 150.5,132.5
+ parent: 1
+ - uid: 30061
+ components:
+ - type: Transform
+ pos: 150.5,133.5
+ parent: 1
+ - uid: 30062
+ components:
+ - type: Transform
+ pos: 150.5,134.5
+ parent: 1
+ - uid: 30063
+ components:
+ - type: Transform
+ pos: 150.5,135.5
+ parent: 1
+ - uid: 30064
+ components:
+ - type: Transform
+ pos: 150.5,136.5
+ parent: 1
+ - uid: 30065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,137.5
+ parent: 1
+ - uid: 30066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,137.5
+ parent: 1
+ - uid: 30067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,137.5
+ parent: 1
+ - uid: 30068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,137.5
+ parent: 1
+ - uid: 30069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,137.5
+ parent: 1
+ - uid: 30070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,137.5
+ parent: 1
+ - uid: 30071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,137.5
+ parent: 1
+ - uid: 30072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,137.5
+ parent: 1
+ - uid: 30073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,137.5
+ parent: 1
+ - uid: 30080
+ components:
+ - type: Transform
+ pos: 146.5,146.5
+ parent: 1
+ - uid: 30081
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 30082
+ components:
+ - type: Transform
+ pos: 146.5,143.5
+ parent: 1
+ - uid: 30083
+ components:
+ - type: Transform
+ pos: 146.5,142.5
+ parent: 1
+ - uid: 30084
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - uid: 30085
+ components:
+ - type: Transform
+ pos: 146.5,140.5
+ parent: 1
+ - uid: 30086
+ components:
+ - type: Transform
+ pos: 146.5,139.5
+ parent: 1
+ - uid: 30087
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 30088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,137.5
+ parent: 1
+ - uid: 30089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,137.5
+ parent: 1
+ - uid: 30090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 30092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 30095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 30096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 30243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 30244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,107.5
+ parent: 1
+ - uid: 30286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,63.5
+ parent: 1
+ - uid: 30315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 30400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,101.5
+ parent: 1
+ - uid: 30521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,108.5
+ parent: 1
+ - uid: 31891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,69.5
+ parent: 1
+ - uid: 31892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,69.5
+ parent: 1
+ - uid: 31893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,69.5
+ parent: 1
+ - uid: 31894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,69.5
+ parent: 1
+ - uid: 31895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,69.5
+ parent: 1
+ - uid: 31896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,69.5
+ parent: 1
+ - uid: 31897
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 31898
+ components:
+ - type: Transform
+ pos: 146.5,71.5
+ parent: 1
+ - uid: 31899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,47.5
+ parent: 1
+ - uid: 31901
+ components:
+ - type: Transform
+ pos: 123.5,49.5
+ parent: 1
+ - uid: 31902
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 31903
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 31904
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 31905
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 31906
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 31907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 31908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 31909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 31910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 31911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 31912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 31913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 31914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,56.5
+ parent: 1
+ - uid: 31915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,57.5
+ parent: 1
+ - uid: 31916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 31917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,58.5
+ parent: 1
+ - uid: 31919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,48.5
+ parent: 1
+ - uid: 32247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 32307
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 33326
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 33327
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 33328
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 33329
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 33330
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 33331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,19.5
+ parent: 1
+ - uid: 33332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,19.5
+ parent: 1
+ - uid: 33333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 33334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,19.5
+ parent: 1
+ - uid: 33335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,19.5
+ parent: 1
+ - uid: 33337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,19.5
+ parent: 1
+ - uid: 33339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,19.5
+ parent: 1
+ - uid: 33340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,19.5
+ parent: 1
+ - uid: 33341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 33354
+ components:
+ - type: Transform
+ pos: 116.5,41.5
+ parent: 1
+ - uid: 33355
+ components:
+ - type: Transform
+ pos: 116.5,40.5
+ parent: 1
+ - uid: 33356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,39.5
+ parent: 1
+ - uid: 33357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,39.5
+ parent: 1
+ - uid: 33358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,37.5
+ parent: 1
+ - uid: 33360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,36.5
+ parent: 1
+ - uid: 33361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,34.5
+ parent: 1
+ - uid: 33363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,32.5
+ parent: 1
+ - uid: 33365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,31.5
+ parent: 1
+ - uid: 33366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,30.5
+ parent: 1
+ - uid: 33369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,30.5
+ parent: 1
+ - uid: 33370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,30.5
+ parent: 1
+ - uid: 33371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,30.5
+ parent: 1
+ - uid: 33372
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33373
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - uid: 33374
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - uid: 33375
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - uid: 33376
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - uid: 33377
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - uid: 33378
+ components:
+ - type: Transform
+ pos: 109.5,20.5
+ parent: 1
+ - uid: 33379
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33380
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33381
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - uid: 33382
+ components:
+ - type: Transform
+ pos: 105.5,21.5
+ parent: 1
+ - uid: 33383
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - uid: 33384
+ components:
+ - type: Transform
+ pos: 105.5,23.5
+ parent: 1
+ - uid: 33385
+ components:
+ - type: Transform
+ pos: 105.5,24.5
+ parent: 1
+ - uid: 33386
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33387
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - uid: 33388
+ components:
+ - type: Transform
+ pos: 105.5,27.5
+ parent: 1
+ - uid: 33389
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33390
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - uid: 33391
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - uid: 33392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,31.5
+ parent: 1
+ - uid: 33395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,31.5
+ parent: 1
+ - uid: 33397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,31.5
+ parent: 1
+ - uid: 33398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,31.5
+ parent: 1
+ - uid: 33399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,31.5
+ parent: 1
+ - uid: 33400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,31.5
+ parent: 1
+ - uid: 33401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,29.5
+ parent: 1
+ - uid: 33403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,28.5
+ parent: 1
+ - uid: 33405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,26.5
+ parent: 1
+ - uid: 33406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,25.5
+ parent: 1
+ - uid: 33407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,23.5
+ parent: 1
+ - uid: 33409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,21.5
+ parent: 1
+ - uid: 33410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,20.5
+ parent: 1
+ - uid: 33411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,22.5
+ parent: 1
+ - uid: 33412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,19.5
+ parent: 1
+ - uid: 33414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,19.5
+ parent: 1
+ - uid: 33415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,23.5
+ parent: 1
+ - uid: 33416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,23.5
+ parent: 1
+ - uid: 33467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,27.5
+ parent: 1
+ - uid: 33468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33469
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33470
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33471
+ components:
+ - type: Transform
+ pos: 89.5,23.5
+ parent: 1
+ - uid: 33472
+ components:
+ - type: Transform
+ pos: 89.5,22.5
+ parent: 1
+ - uid: 33473
+ components:
+ - type: Transform
+ pos: 89.5,21.5
+ parent: 1
+ - uid: 33474
+ components:
+ - type: Transform
+ pos: 89.5,25.5
+ parent: 1
+ - uid: 33475
+ components:
+ - type: Transform
+ pos: 89.5,20.5
+ parent: 1
+ - uid: 33484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,26.5
+ parent: 1
+ - uid: 33485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,27.5
+ parent: 1
+ - uid: 33792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,95.5
+ parent: 1
+ - uid: 34387
+ components:
+ - type: Transform
+ pos: 144.5,82.5
+ parent: 1
+ - uid: 34390
+ components:
+ - type: Transform
+ pos: 140.5,82.5
+ parent: 1
+ - uid: 34393
+ components:
+ - type: Transform
+ pos: 144.5,81.5
+ parent: 1
+ - uid: 34394
+ components:
+ - type: Transform
+ pos: 140.5,81.5
+ parent: 1
+ - uid: 34396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,80.5
+ parent: 1
+ - uid: 35652
+ components:
+ - type: Transform
+ pos: 82.5,56.5
+ parent: 1
+ - uid: 36165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,92.5
+ parent: 1
+ - uid: 36176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,93.5
+ parent: 1
+ - uid: 36177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,94.5
+ parent: 1
+ - uid: 36192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,95.5
+ parent: 1
+ - uid: 36193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 36657
+ components:
+ - type: Transform
+ pos: 100.5,102.5
+ parent: 1
+ - uid: 36658
+ components:
+ - type: Transform
+ pos: 100.5,101.5
+ parent: 1
+ - uid: 36659
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - uid: 36660
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - uid: 37220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 37360
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 37371
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 37373
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 37426
+ components:
+ - type: Transform
+ pos: 126.5,135.5
+ parent: 1
+ - uid: 37490
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - uid: 37539
+ components:
+ - type: Transform
+ pos: 126.5,137.5
+ parent: 1
+ - uid: 37540
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - uid: 37541
+ components:
+ - type: Transform
+ pos: 126.5,139.5
+ parent: 1
+ - uid: 37542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,132.5
+ parent: 1
+ - uid: 37543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 37544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 37545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 37546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 37547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 37548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 37549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 37594
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 37595
+ components:
+ - type: Transform
+ pos: 94.5,52.5
+ parent: 1
+- proto: DisposalPipeBroken
+ entities:
+ - uid: 33534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,27.5
+ parent: 1
+ - uid: 34395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,80.5
+ parent: 1
+ - uid: 34398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,80.5
+ parent: 1
+- proto: DisposalRouter
+ entities:
+ - uid: 11374
+ components:
+ - type: Transform
+ pos: 55.5,65.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Bridge
+ - uid: 16309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Atmos
+ - uid: 16362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Engineering
+ - uid: 18766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,110.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Salvage
+ - uid: 18788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,98.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Cargo
+ - uid: 20510
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Science
+ - uid: 20526
+ components:
+ - type: Transform
+ pos: 55.5,97.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Xenobio
+ - uid: 22317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,79.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Security
+ - uid: 22391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,60.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Warden
+- proto: DisposalRouterFlipped
+ entities:
+ - uid: 1686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Medbay
+ - uid: 1807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Chemistry
+ - uid: 4153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Kitchen
+ - uid: 4155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Botany
+ - uid: 22186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Arcade
+- proto: DisposalTrunk
+ entities:
+ - uid: 842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,70.5
+ parent: 1
+ - uid: 4477
+ components:
+ - type: Transform
+ pos: 104.5,42.5
+ parent: 1
+ - uid: 5400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,53.5
+ parent: 1
+ - uid: 6227
+ components:
+ - type: Transform
+ pos: 146.5,72.5
+ parent: 1
+ - uid: 8182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,141.5
+ parent: 1
+ - uid: 10308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,143.5
+ parent: 1
+ - uid: 11434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,48.5
+ parent: 1
+ - uid: 11435
+ components:
+ - type: Transform
+ pos: 38.5,64.5
+ parent: 1
+ - uid: 11492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,76.5
+ parent: 1
+ - uid: 11498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,54.5
+ parent: 1
+ - uid: 12066
+ components:
+ - type: Transform
+ pos: 152.5,112.5
+ parent: 1
+ - uid: 12683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,56.5
+ parent: 1
+ - uid: 12703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 12708
+ components:
+ - type: Transform
+ pos: 101.5,48.5
+ parent: 1
+ - uid: 13222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,42.5
+ parent: 1
+ - uid: 13515
+ components:
+ - type: Transform
+ pos: 51.5,61.5
+ parent: 1
+ - uid: 15074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,96.5
+ parent: 1
+ - uid: 15408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,112.5
+ parent: 1
+ - uid: 16038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,105.5
+ parent: 1
+ - uid: 16051
+ components:
+ - type: Transform
+ pos: 94.5,53.5
+ parent: 1
+ - uid: 16308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,116.5
+ parent: 1
+ - uid: 16343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,116.5
+ parent: 1
+ - uid: 16365
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 16370
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16371
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 16460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 16477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 16655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,87.5
+ parent: 1
+ - uid: 17794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,90.5
+ parent: 1
+ - uid: 17840
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17856
+ components:
+ - type: Transform
+ pos: 89.5,110.5
+ parent: 1
+ - uid: 17862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,85.5
+ parent: 1
+ - uid: 17893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,104.5
+ parent: 1
+ - uid: 17894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,84.5
+ parent: 1
+ - uid: 17918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,90.5
+ parent: 1
+ - uid: 17937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,84.5
+ parent: 1
+ - uid: 18137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,77.5
+ parent: 1
+ - uid: 18687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,107.5
+ parent: 1
+ - uid: 18720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 20525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,90.5
+ parent: 1
+ - uid: 20555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,110.5
+ parent: 1
+ - uid: 20644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 20671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,90.5
+ parent: 1
+ - uid: 20686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,80.5
+ parent: 1
+ - uid: 20688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,95.5
+ parent: 1
+ - uid: 20691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,110.5
+ parent: 1
+ - uid: 20692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,99.5
+ parent: 1
+ - uid: 20693
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - uid: 22280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,51.5
+ parent: 1
+ - uid: 22395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,70.5
+ parent: 1
+ - uid: 22479
+ components:
+ - type: Transform
+ pos: 128.5,74.5
+ parent: 1
+ - uid: 22494
+ components:
+ - type: Transform
+ pos: 135.5,69.5
+ parent: 1
+ - uid: 22499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,48.5
+ parent: 1
+ - uid: 22540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,55.5
+ parent: 1
+ - uid: 22541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,49.5
+ parent: 1
+ - uid: 22544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,52.5
+ parent: 1
+ - uid: 23151
+ components:
+ - type: Transform
+ pos: 99.5,48.5
+ parent: 1
+ - uid: 23267
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 23286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,95.5
+ parent: 1
+ - uid: 25156
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 25898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,62.5
+ parent: 1
+ - uid: 26261
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 26267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,104.5
+ parent: 1
+ - uid: 26359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,101.5
+ parent: 1
+ - uid: 26366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,106.5
+ parent: 1
+ - uid: 26379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,106.5
+ parent: 1
+ - uid: 26562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,103.5
+ parent: 1
+ - uid: 27129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 27164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,72.5
+ parent: 1
+ - uid: 27369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,44.5
+ parent: 1
+ - uid: 28793
+ components:
+ - type: Transform
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 28846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,25.5
+ parent: 1
+ - uid: 28877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,25.5
+ parent: 1
+ - uid: 28886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,63.5
+ parent: 1
+ - uid: 28888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,58.5
+ parent: 1
+ - uid: 29094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,64.5
+ parent: 1
+ - uid: 29610
+ components:
+ - type: Transform
+ pos: 155.5,123.5
+ parent: 1
+ - uid: 29611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,119.5
+ parent: 1
+ - uid: 30075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,137.5
+ parent: 1
+ - uid: 30225
+ components:
+ - type: Transform
+ pos: 147.5,154.5
+ parent: 1
+ - uid: 30245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,107.5
+ parent: 1
+ - uid: 30362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,96.5
+ parent: 1
+ - uid: 30522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,96.5
+ parent: 1
+ - uid: 31922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,46.5
+ parent: 1
+ - uid: 33418
+ components:
+ - type: Transform
+ pos: 116.5,42.5
+ parent: 1
+ - uid: 33463
+ components:
+ - type: Transform
+ pos: 92.5,28.5
+ parent: 1
+ - uid: 33488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,25.5
+ parent: 1
+ - uid: 33827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,101.5
+ parent: 1
+ - uid: 34317
+ components:
+ - type: Transform
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 34388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,83.5
+ parent: 1
+ - uid: 34391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,83.5
+ parent: 1
+ - uid: 34443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,101.5
+ parent: 1
+ - uid: 36162
+ components:
+ - type: Transform
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 37352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,140.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 40.5,90.5
+ parent: 1
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 51.5,61.5
+ parent: 1
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 131.5,105.5
+ parent: 1
+ - uid: 2724
+ components:
+ - type: Transform
+ pos: 99.5,48.5
+ parent: 1
+ - uid: 3528
+ components:
+ - type: Transform
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 4300
+ components:
+ - type: Transform
+ pos: 43.5,44.5
+ parent: 1
+ - uid: 4432
+ components:
+ - type: Transform
+ pos: 101.5,48.5
+ parent: 1
+ - uid: 4468
+ components:
+ - type: Transform
+ pos: 104.5,42.5
+ parent: 1
+ - uid: 4476
+ components:
+ - type: Transform
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 10327
+ components:
+ - type: Transform
+ pos: 142.5,143.5
+ parent: 1
+ - uid: 10329
+ components:
+ - type: Transform
+ pos: 142.5,141.5
+ parent: 1
+ - uid: 11433
+ components:
+ - type: Transform
+ pos: 35.5,48.5
+ parent: 1
+ - uid: 11450
+ components:
+ - type: Transform
+ pos: 38.5,64.5
+ parent: 1
+ - uid: 11494
+ components:
+ - type: Transform
+ pos: 42.5,76.5
+ parent: 1
+ - uid: 11497
+ components:
+ - type: Transform
+ pos: 55.5,54.5
+ parent: 1
+ - uid: 13221
+ components:
+ - type: Transform
+ pos: 46.5,42.5
+ parent: 1
+ - uid: 13604
+ components:
+ - type: Transform
+ pos: 40.5,70.5
+ parent: 1
+ - uid: 13717
+ components:
+ - type: Transform
+ pos: 106.5,96.5
+ parent: 1
+ - uid: 14063
+ components:
+ - type: Transform
+ pos: 73.5,112.5
+ parent: 1
+ - uid: 16029
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 16342
+ components:
+ - type: Transform
+ pos: 68.5,116.5
+ parent: 1
+ - uid: 16366
+ components:
+ - type: Transform
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 16367
+ components:
+ - type: Transform
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 16368
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16369
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 17233
+ components:
+ - type: Transform
+ pos: 59.5,87.5
+ parent: 1
+ - uid: 17632
+ components:
+ - type: Transform
+ pos: 69.5,104.5
+ parent: 1
+ - uid: 17711
+ components:
+ - type: Transform
+ pos: 84.5,84.5
+ parent: 1
+ - uid: 17791
+ components:
+ - type: Transform
+ pos: 84.5,90.5
+ parent: 1
+ - uid: 17839
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17919
+ components:
+ - type: Transform
+ pos: 65.5,90.5
+ parent: 1
+ - uid: 17925
+ components:
+ - type: Transform
+ pos: 65.5,84.5
+ parent: 1
+ - uid: 18690
+ components:
+ - type: Transform
+ pos: 138.5,107.5
+ parent: 1
+ - uid: 18692
+ components:
+ - type: Transform
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 19269
+ components:
+ - type: Transform
+ pos: 152.5,96.5
+ parent: 1
+ - uid: 19458
+ components:
+ - type: Transform
+ pos: 94.5,53.5
+ parent: 1
+ - uid: 19701
+ components:
+ - type: Transform
+ pos: 48.5,110.5
+ parent: 1
+ - uid: 20328
+ components:
+ - type: Transform
+ pos: 117.5,64.5
+ parent: 1
+ - uid: 20507
+ components:
+ - type: Transform
+ pos: 24.5,99.5
+ parent: 1
+ - uid: 20509
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - uid: 20643
+ components:
+ - type: Transform
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 20654
+ components:
+ - type: Transform
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20683
+ components:
+ - type: Transform
+ pos: 46.5,80.5
+ parent: 1
+ - uid: 20689
+ components:
+ - type: Transform
+ pos: 46.5,95.5
+ parent: 1
+ - uid: 22480
+ components:
+ - type: Transform
+ pos: 128.5,74.5
+ parent: 1
+ - uid: 22495
+ components:
+ - type: Transform
+ pos: 135.5,69.5
+ parent: 1
+ - uid: 22497
+ components:
+ - type: Transform
+ pos: 146.5,72.5
+ parent: 1
+ - uid: 22500
+ components:
+ - type: Transform
+ pos: 151.5,55.5
+ parent: 1
+ - uid: 22501
+ components:
+ - type: Transform
+ pos: 138.5,49.5
+ parent: 1
+ - uid: 22545
+ components:
+ - type: Transform
+ pos: 138.5,52.5
+ parent: 1
+ - uid: 22703
+ components:
+ - type: Transform
+ pos: 144.5,48.5
+ parent: 1
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: 126.5,101.5
+ parent: 1
+ - uid: 23403
+ components:
+ - type: Transform
+ pos: 144.5,96.5
+ parent: 1
+ - uid: 26268
+ components:
+ - type: Transform
+ pos: 96.5,104.5
+ parent: 1
+ - uid: 26355
+ components:
+ - type: Transform
+ pos: 106.5,101.5
+ parent: 1
+ - uid: 26377
+ components:
+ - type: Transform
+ pos: 118.5,106.5
+ parent: 1
+ - uid: 26378
+ components:
+ - type: Transform
+ pos: 98.5,106.5
+ parent: 1
+ - uid: 27064
+ components:
+ - type: Transform
+ pos: 61.5,72.5
+ parent: 1
+ - uid: 27280
+ components:
+ - type: Transform
+ pos: 63.5,56.5
+ parent: 1
+ - uid: 28626
+ components:
+ - type: Transform
+ pos: 54.5,77.5
+ parent: 1
+ - uid: 28792
+ components:
+ - type: Transform
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 28878
+ components:
+ - type: Transform
+ pos: 68.5,25.5
+ parent: 1
+ - uid: 28884
+ components:
+ - type: Transform
+ pos: 82.5,25.5
+ parent: 1
+ - uid: 28891
+ components:
+ - type: Transform
+ pos: 94.5,63.5
+ parent: 1
+ - uid: 29031
+ components:
+ - type: Transform
+ pos: 94.5,58.5
+ parent: 1
+ - uid: 29565
+ components:
+ - type: Transform
+ pos: 155.5,123.5
+ parent: 1
+ - uid: 29608
+ components:
+ - type: Transform
+ pos: 160.5,119.5
+ parent: 1
+ - uid: 30076
+ components:
+ - type: Transform
+ pos: 160.5,137.5
+ parent: 1
+ - uid: 30226
+ components:
+ - type: Transform
+ pos: 147.5,154.5
+ parent: 1
+ - uid: 30246
+ components:
+ - type: Transform
+ pos: 54.5,107.5
+ parent: 1
+ - uid: 31923
+ components:
+ - type: Transform
+ pos: 122.5,46.5
+ parent: 1
+ - uid: 32976
+ components:
+ - type: Transform
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 33353
+ components:
+ - type: Transform
+ pos: 116.5,42.5
+ parent: 1
+ - uid: 33462
+ components:
+ - type: Transform
+ pos: 92.5,28.5
+ parent: 1
+ - uid: 34131
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 36180
+ components:
+ - type: Transform
+ pos: 125.5,140.5
+ parent: 1
+- proto: DisposalYJunction
+ entities:
+ - uid: 6372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,57.5
+ parent: 1
+ - uid: 20682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 20687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,96.5
+ parent: 1
+ - uid: 25538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,40.5
+ parent: 1
+ - uid: 26298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 27126
+ components:
+ - type: Transform
+ pos: 89.5,71.5
+ parent: 1
+ - uid: 28879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,41.5
+ parent: 1
+ - uid: 30074
+ components:
+ - type: Transform
+ pos: 150.5,137.5
+ parent: 1
+- proto: DogBed
+ entities:
+ - uid: 13534
+ components:
+ - type: Transform
+ pos: 55.5,56.5
+ parent: 1
+ - uid: 13577
+ components:
+ - type: Transform
+ pos: 37.5,70.5
+ parent: 1
+ - uid: 19444
+ components:
+ - type: Transform
+ pos: 144.5,102.5
+ parent: 1
+ - uid: 20883
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+ - uid: 22968
+ components:
+ - type: Transform
+ pos: 130.5,70.5
+ parent: 1
+ - uid: 23681
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+- proto: DonkpocketBoxSpawner
+ entities:
+ - uid: 13719
+ components:
+ - type: Transform
+ pos: 50.5,49.5
+ parent: 1
+ - uid: 22852
+ components:
+ - type: Transform
+ pos: 150.5,52.5
+ parent: 1
+- proto: DoubleEmergencyOxygenTankFilled
+ entities:
+ - uid: 19472
+ components:
+ - type: Transform
+ pos: 155.5,89.5
+ parent: 1
+- proto: DresserCaptainFilled
+ entities:
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 40.5,68.5
+ parent: 1
+- proto: DresserChiefEngineerFilled
+ entities:
+ - uid: 16148
+ components:
+ - type: Transform
+ pos: 132.5,146.5
+ parent: 1
+- proto: DresserChiefMedicalOfficerFilled
+ entities:
+ - uid: 3171
+ components:
+ - type: Transform
+ pos: 93.5,92.5
+ parent: 1
+- proto: DresserFilled
+ entities:
+ - uid: 26759
+ components:
+ - type: Transform
+ pos: 114.5,59.5
+ parent: 1
+ - uid: 26761
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 26762
+ components:
+ - type: Transform
+ pos: 102.5,59.5
+ parent: 1
+ - uid: 26933
+ components:
+ - type: Transform
+ pos: 69.5,70.5
+ parent: 1
+ - uid: 27306
+ components:
+ - type: Transform
+ pos: 77.5,47.5
+ parent: 1
+ - uid: 29794
+ components:
+ - type: Transform
+ pos: 153.5,133.5
+ parent: 1
+ - uid: 29795
+ components:
+ - type: Transform
+ pos: 156.5,133.5
+ parent: 1
+ - uid: 29796
+ components:
+ - type: Transform
+ pos: 159.5,133.5
+ parent: 1
+ - uid: 29797
+ components:
+ - type: Transform
+ pos: 158.5,143.5
+ parent: 1
+ - uid: 29798
+ components:
+ - type: Transform
+ pos: 152.5,143.5
+ parent: 1
+ - uid: 29799
+ components:
+ - type: Transform
+ pos: 155.5,143.5
+ parent: 1
+- proto: DresserHeadOfPersonnelFilled
+ entities:
+ - uid: 13660
+ components:
+ - type: Transform
+ pos: 58.5,49.5
+ parent: 1
+- proto: DresserHeadOfSecurityFilled
+ entities:
+ - uid: 22936
+ components:
+ - type: Transform
+ pos: 145.5,60.5
+ parent: 1
+- proto: DresserQuarterMasterFilled
+ entities:
+ - uid: 19378
+ components:
+ - type: Transform
+ pos: 142.5,110.5
+ parent: 1
+- proto: DresserResearchDirectorFilled
+ entities:
+ - uid: 20406
+ components:
+ - type: Transform
+ pos: 33.5,105.5
+ parent: 1
+- proto: DrinkBeepskySmashGlass
+ entities:
+ - uid: 23128
+ components:
+ - type: Transform
+ pos: 147.4688,51.692593
+ parent: 1
+- proto: DrinkBeerBottleFull
+ entities:
+ - uid: 13697
+ components:
+ - type: Transform
+ pos: 46.669025,65.20469
+ parent: 1
+ - uid: 13698
+ components:
+ - type: Transform
+ pos: 46.377357,64.881775
+ parent: 1
+ - uid: 16152
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 129.7259,135.31372
+ parent: 1
+ - uid: 19475
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 35151
+ components:
+ - type: Transform
+ pos: 107.40368,170.63882
+ parent: 1
+ - uid: 35152
+ components:
+ - type: Transform
+ pos: 107.64014,170.76112
+ parent: 1
+- proto: DrinkBeerGrowler
+ entities:
+ - uid: 35144
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.34629,171.48898
+ parent: 1
+- proto: DrinkBottleOfNothingFull
+ entities:
+ - uid: 26778
+ components:
+ - type: Transform
+ pos: 98.30359,59.92186
+ parent: 1
+- proto: DrinkChampagneBottleFull
+ entities:
+ - uid: 35792
+ components:
+ - type: Transform
+ pos: 55.680527,123.92868
+ parent: 1
+- proto: DrinkDrGibbCan
+ entities:
+ - uid: 33505
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 101.01259,27.87312
+ parent: 1
+- proto: DrinkEnergyDrinkCan
+ entities:
+ - uid: 26888
+ components:
+ - type: Transform
+ pos: 114.50276,82.58419
+ parent: 1
+- proto: DrinkFlask
+ entities:
+ - uid: 13528
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 35.670593,76.30603
+ parent: 1
+- proto: DrinkFlaskBar
+ entities:
+ - uid: 35138
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+- proto: DrinkGildlagerBottleFull
+ entities:
+ - uid: 26869
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 105.44265,72.66436
+ parent: 1
+- proto: DrinkGlass
+ entities:
+ - uid: 3026
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 106.57773,106.73536
+ parent: 1
+ - uid: 5901
+ components:
+ - type: Transform
+ pos: 106.24439,106.54091
+ parent: 1
+ - uid: 23034
+ components:
+ - type: Transform
+ pos: 128.33939,50.610058
+ parent: 1
+ - uid: 23036
+ components:
+ - type: Transform
+ pos: 128.62064,50.839226
+ parent: 1
+ - uid: 32103
+ components:
+ - type: Transform
+ pos: 110.45967,106.54091
+ parent: 1
+ - uid: 32104
+ components:
+ - type: Transform
+ pos: 110.74439,106.73536
+ parent: 1
+- proto: DrinkGrapeCan
+ entities:
+ - uid: 30658
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.272648,132.84619
+ parent: 1
+ - uid: 32235
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.765915,132.5168
+ parent: 1
+ - uid: 32237
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.290768,134.15079
+ parent: 1
+ - uid: 32989
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.80215,133.1075
+ parent: 1
+ - uid: 32992
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.28756,134.73462
+ parent: 1
+ - uid: 33492
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 100.688515,25.623123
+ parent: 1
+ - uid: 34408
+ components:
+ - type: Transform
+ pos: 59.740353,134.32512
+ parent: 1
+- proto: DrinkHotCoffee
+ entities:
+ - uid: 10309
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 139.78354,142.58481
+ parent: 1
+ - uid: 10313
+ components:
+ - type: Transform
+ pos: 142.79439,138.6644
+ parent: 1
+ - uid: 10314
+ components:
+ - type: Transform
+ pos: 142.53397,138.74773
+ parent: 1
+ - uid: 18145
+ components:
+ - type: Transform
+ pos: 60.463547,110.73983
+ parent: 1
+ - uid: 18146
+ components:
+ - type: Transform
+ pos: 60.8316,110.50372
+ parent: 1
+ - uid: 30113
+ components:
+ - type: Transform
+ pos: 142.53523,145.54161
+ parent: 1
+ - uid: 30129
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 139.34784,142.48033
+ parent: 1
+- proto: DrinkIcedCoffeeGlass
+ entities:
+ - uid: 13634
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 136.4754,92.59015
+ parent: 1
+- proto: DrinkIcedTeaCan
+ entities:
+ - uid: 33507
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 99.30888,26.488861
+ parent: 1
+ - uid: 33508
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 99.11452,25.840393
+ parent: 1
+- proto: DrinkLean
+ entities:
+ - uid: 34407
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.28352,133.45863
+ parent: 1
+- proto: DrinkMug
+ entities:
+ - uid: 13653
+ components:
+ - type: Transform
+ pos: 50.72685,50.354713
+ parent: 1
+- proto: DrinkMugHeart
+ entities:
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 50.37268,50.278324
+ parent: 1
+- proto: DrinkMugMoebius
+ entities:
+ - uid: 20993
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.4454,106.54369
+ parent: 1
+- proto: DrinkMugOne
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 50.47685,50.597767
+ parent: 1
+- proto: DrinkPoisonWinebottleFull
+ entities:
+ - uid: 27035
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 71.46709,73.75255
+ parent: 1
+- proto: DrinkShaker
+ entities:
+ - uid: 35139
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.7268,171.45094
+ parent: 1
+- proto: DrinkShotGlass
+ entities:
+ - uid: 27036
+ components:
+ - type: Transform
+ pos: 71.795204,73.69125
+ parent: 1
+ - uid: 27037
+ components:
+ - type: Transform
+ pos: 72.13766,73.46295
+ parent: 1
+- proto: DrinkSodaWaterCan
+ entities:
+ - uid: 34542
+ components:
+ - type: Transform
+ pos: 162.5,47.5
+ parent: 1
+ - uid: 37364
+ components:
+ - type: MetaData
+ desc: It's just some soda water... you think that it is, at least.
+ name: dr. breen's private reserve
+ - type: Transform
+ pos: 122.5,63.5
+ parent: 1
+- proto: DrinkSyndicatebomb
+ entities:
+ - uid: 18085
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 88.48815,92.5693
+ parent: 1
+- proto: DrinkTeacup
+ entities:
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 98.22192,54.420486
+ parent: 1
+ - uid: 27845
+ components:
+ - type: Transform
+ pos: 98.73858,54.453102
+ parent: 1
+- proto: DrinkTeapot
+ entities:
+ - uid: 19720
+ components:
+ - type: Transform
+ pos: 98.37963,54.746635
+ parent: 1
+- proto: DrinkVodkaBottleFull
+ entities:
+ - uid: 35853
+ components:
+ - type: Transform
+ pos: 54.707806,128.79317
+ parent: 1
+ - uid: 37037
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 122.515144,171.48755
+ parent: 1
+- proto: DrinkVodkaGlass
+ entities:
+ - uid: 35817
+ components:
+ - type: Transform
+ pos: 54.311974,129.48761
+ parent: 1
+ - uid: 37179
+ components:
+ - type: Transform
+ pos: 167.3439,134.64966
+ parent: 1
+ - uid: 37180
+ components:
+ - type: Transform
+ pos: 167.30917,135.62187
+ parent: 1
+- proto: DrinkWhiskeyBottleFull
+ entities:
+ - uid: 26318
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 88.40253,57.67301
+ parent: 1
+ - uid: 35170
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 113.83795,167.55002
+ parent: 1
+- proto: DrinkWhiskeyColaGlass
+ entities:
+ - uid: 30171
+ components:
+ - type: Transform
+ pos: 134.46994,153.60684
+ parent: 1
+- proto: DrinkWhiskeyGlass
+ entities:
+ - uid: 18741
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 89.53657,57.55711
+ parent: 1
+ - uid: 35171
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 114.47426,167.61526
+ parent: 1
+- proto: DrinkWineBottleFull
+ entities:
+ - uid: 13590
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 40.330204,74.6678
+ parent: 1
+ - uid: 18578
+ components:
+ - type: Transform
+ pos: 38.5,124.5
+ parent: 1
+- proto: DrinkWineGlass
+ entities:
+ - uid: 13594
+ components:
+ - type: Transform
+ pos: 40.739925,74.71641
+ parent: 1
+ - uid: 26779
+ components:
+ - type: Transform
+ pos: 98.68322,59.750565
+ parent: 1
+ - uid: 27176
+ components:
+ - type: Transform
+ pos: 74.5,49.5
+ parent: 1
+ - uid: 35790
+ components:
+ - type: Transform
+ pos: 54.765514,123.87313
+ parent: 1
+ - uid: 35791
+ components:
+ - type: Transform
+ pos: 55.097195,122.52128
+ parent: 1
+- proto: EmergencyLight
+ entities:
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: 119.5,104.5
+ parent: 1
+ - uid: 6229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,58.5
+ parent: 1
+ - uid: 6232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,69.5
+ parent: 1
+ - uid: 8000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,101.5
+ parent: 1
+ - uid: 9842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 13302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,71.5
+ parent: 1
+ - uid: 13555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,19.5
+ parent: 1
+ - uid: 13556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 13557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,29.5
+ parent: 1
+ - uid: 13559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,37.5
+ parent: 1
+ - uid: 13560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,39.5
+ parent: 1
+ - uid: 13561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,44.5
+ parent: 1
+ - uid: 13562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,60.5
+ parent: 1
+ - uid: 13563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,52.5
+ parent: 1
+ - uid: 13565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,53.5
+ parent: 1
+ - uid: 13566
+ components:
+ - type: Transform
+ pos: 49.5,60.5
+ parent: 1
+ - uid: 13567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,54.5
+ parent: 1
+ - uid: 13568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,56.5
+ parent: 1
+ - uid: 13569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 13570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 13572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,68.5
+ parent: 1
+ - uid: 13576
+ components:
+ - type: Transform
+ pos: 47.5,66.5
+ parent: 1
+ - uid: 13583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,74.5
+ parent: 1
+ - uid: 16456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 16596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,147.5
+ parent: 1
+ - uid: 16602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,131.5
+ parent: 1
+ - uid: 16603
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 16604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,131.5
+ parent: 1
+ - uid: 16605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,143.5
+ parent: 1
+ - uid: 16606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,143.5
+ parent: 1
+ - uid: 16607
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16608
+ components:
+ - type: Transform
+ pos: 103.5,156.5
+ parent: 1
+ - uid: 16609
+ components:
+ - type: Transform
+ pos: 113.5,156.5
+ parent: 1
+ - uid: 16610
+ components:
+ - type: Transform
+ pos: 109.5,162.5
+ parent: 1
+ - uid: 16613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,147.5
+ parent: 1
+ - uid: 16614
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16615
+ components:
+ - type: Transform
+ pos: 81.5,123.5
+ parent: 1
+ - uid: 16616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,129.5
+ parent: 1
+ - uid: 16617
+ components:
+ - type: Transform
+ pos: 113.5,145.5
+ parent: 1
+ - uid: 16618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,131.5
+ parent: 1
+ - uid: 16619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,143.5
+ parent: 1
+ - uid: 16620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,131.5
+ parent: 1
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,143.5
+ parent: 1
+ - uid: 16622
+ components:
+ - type: Transform
+ pos: 103.5,145.5
+ parent: 1
+ - uid: 16623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,129.5
+ parent: 1
+ - uid: 16624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,120.5
+ parent: 1
+ - uid: 16625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,116.5
+ parent: 1
+ - uid: 16626
+ components:
+ - type: Transform
+ pos: 74.5,119.5
+ parent: 1
+ - uid: 16629
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 16632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,125.5
+ parent: 1
+ - uid: 16633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 16634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 16640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,144.5
+ parent: 1
+ - uid: 16641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 16642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,137.5
+ parent: 1
+ - uid: 16643
+ components:
+ - type: Transform
+ pos: 133.5,136.5
+ parent: 1
+ - uid: 16644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 16645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,125.5
+ parent: 1
+ - uid: 17971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,142.5
+ parent: 1
+ - uid: 18156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,100.5
+ parent: 1
+ - uid: 18158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,91.5
+ parent: 1
+ - uid: 18159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,91.5
+ parent: 1
+ - uid: 18160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - uid: 18161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,86.5
+ parent: 1
+ - uid: 18162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - uid: 18163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 18164
+ components:
+ - type: Transform
+ pos: 82.5,84.5
+ parent: 1
+ - uid: 18166
+ components:
+ - type: Transform
+ pos: 87.5,94.5
+ parent: 1
+ - uid: 18167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 18168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,106.5
+ parent: 1
+ - uid: 18169
+ components:
+ - type: Transform
+ pos: 68.5,108.5
+ parent: 1
+ - uid: 18170
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 18172
+ components:
+ - type: Transform
+ pos: 62.5,110.5
+ parent: 1
+ - uid: 18173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 18174
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 18175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 18176
+ components:
+ - type: Transform
+ pos: 76.5,100.5
+ parent: 1
+ - uid: 18177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,90.5
+ parent: 1
+ - uid: 18178
+ components:
+ - type: Transform
+ pos: 73.5,92.5
+ parent: 1
+ - uid: 18179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 18180
+ components:
+ - type: Transform
+ pos: 73.5,100.5
+ parent: 1
+ - uid: 18525
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 20503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,125.5
+ parent: 1
+ - uid: 26710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 26711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 26870
+ components:
+ - type: Transform
+ pos: 79.5,61.5
+ parent: 1
+ - uid: 27119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,55.5
+ parent: 1
+ - uid: 27416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,90.5
+ parent: 1
+ - uid: 27418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,101.5
+ parent: 1
+ - uid: 27421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,106.5
+ parent: 1
+ - uid: 27422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,111.5
+ parent: 1
+ - uid: 27423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,83.5
+ parent: 1
+ - uid: 27424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,83.5
+ parent: 1
+ - uid: 27425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,83.5
+ parent: 1
+ - uid: 27426
+ components:
+ - type: Transform
+ pos: 109.5,94.5
+ parent: 1
+ - uid: 27429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,61.5
+ parent: 1
+ - uid: 27430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,59.5
+ parent: 1
+ - uid: 27431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 27432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,59.5
+ parent: 1
+ - uid: 27434
+ components:
+ - type: Transform
+ pos: 81.5,78.5
+ parent: 1
+ - uid: 27435
+ components:
+ - type: Transform
+ pos: 71.5,76.5
+ parent: 1
+ - uid: 27436
+ components:
+ - type: Transform
+ pos: 63.5,75.5
+ parent: 1
+ - uid: 27437
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 1
+ - uid: 27438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,80.5
+ parent: 1
+ - uid: 27439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,112.5
+ parent: 1
+ - uid: 27440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,95.5
+ parent: 1
+ - uid: 27441
+ components:
+ - type: Transform
+ pos: 50.5,97.5
+ parent: 1
+ - uid: 27442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,86.5
+ parent: 1
+ - uid: 27443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 27444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,86.5
+ parent: 1
+ - uid: 27445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,82.5
+ parent: 1
+ - uid: 27446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,103.5
+ parent: 1
+ - uid: 27447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,107.5
+ parent: 1
+ - uid: 27448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,103.5
+ parent: 1
+ - uid: 27450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,105.5
+ parent: 1
+ - uid: 27451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,106.5
+ parent: 1
+ - uid: 27452
+ components:
+ - type: Transform
+ pos: 50.5,103.5
+ parent: 1
+ - uid: 27453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 27454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,113.5
+ parent: 1
+ - uid: 27455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 27456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,99.5
+ parent: 1
+ - uid: 27457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,88.5
+ parent: 1
+ - uid: 27460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,102.5
+ parent: 1
+ - uid: 27461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,96.5
+ parent: 1
+ - uid: 27462
+ components:
+ - type: Transform
+ pos: 146.5,100.5
+ parent: 1
+ - uid: 27463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,90.5
+ parent: 1
+ - uid: 27464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,88.5
+ parent: 1
+ - uid: 27465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,93.5
+ parent: 1
+ - uid: 27466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,98.5
+ parent: 1
+ - uid: 27467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 27468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 27469
+ components:
+ - type: Transform
+ pos: 133.5,110.5
+ parent: 1
+ - uid: 27470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 27471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,100.5
+ parent: 1
+ - uid: 27472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,102.5
+ parent: 1
+ - uid: 27473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,109.5
+ parent: 1
+ - uid: 27474
+ components:
+ - type: Transform
+ pos: 155.5,91.5
+ parent: 1
+ - uid: 27475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,73.5
+ parent: 1
+ - uid: 27476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,59.5
+ parent: 1
+ - uid: 27477
+ components:
+ - type: Transform
+ pos: 144.5,71.5
+ parent: 1
+ - uid: 27478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,68.5
+ parent: 1
+ - uid: 27479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,58.5
+ parent: 1
+ - uid: 27480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,65.5
+ parent: 1
+ - uid: 27481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 27482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,54.5
+ parent: 1
+ - uid: 27483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,50.5
+ parent: 1
+ - uid: 27484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,49.5
+ parent: 1
+ - uid: 27485
+ components:
+ - type: Transform
+ pos: 133.5,56.5
+ parent: 1
+ - uid: 27487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,58.5
+ parent: 1
+ - uid: 27490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,66.5
+ parent: 1
+ - uid: 27491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,66.5
+ parent: 1
+ - uid: 27492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,58.5
+ parent: 1
+ - uid: 27493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,64.5
+ parent: 1
+ - uid: 27494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,61.5
+ parent: 1
+ - uid: 27495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 27496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,46.5
+ parent: 1
+ - uid: 27497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 27498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 27507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,47.5
+ parent: 1
+ - uid: 27508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,51.5
+ parent: 1
+ - uid: 27511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 27719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,31.5
+ parent: 1
+ - uid: 27721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,31.5
+ parent: 1
+ - uid: 27723
+ components:
+ - type: Transform
+ pos: 69.5,43.5
+ parent: 1
+ - uid: 27724
+ components:
+ - type: Transform
+ pos: 81.5,43.5
+ parent: 1
+ - uid: 27826
+ components:
+ - type: Transform
+ pos: 65.5,65.5
+ parent: 1
+ - uid: 27827
+ components:
+ - type: Transform
+ pos: 53.5,66.5
+ parent: 1
+ - uid: 27856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 27936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,70.5
+ parent: 1
+ - uid: 27937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,79.5
+ parent: 1
+ - uid: 27938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,87.5
+ parent: 1
+ - uid: 27939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,98.5
+ parent: 1
+ - uid: 27940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,104.5
+ parent: 1
+ - uid: 27941
+ components:
+ - type: Transform
+ pos: 57.5,114.5
+ parent: 1
+ - uid: 28188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,99.5
+ parent: 1
+ - uid: 28238
+ components:
+ - type: Transform
+ pos: 68.5,114.5
+ parent: 1
+ - uid: 28240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,112.5
+ parent: 1
+ - uid: 28250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,118.5
+ parent: 1
+ - uid: 28251
+ components:
+ - type: Transform
+ pos: 98.5,119.5
+ parent: 1
+ - uid: 28252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,121.5
+ parent: 1
+ - uid: 28253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,125.5
+ parent: 1
+ - uid: 28254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,125.5
+ parent: 1
+ - uid: 28651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,114.5
+ parent: 1
+ - uid: 28752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,50.5
+ parent: 1
+ - uid: 28881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,67.5
+ parent: 1
+ - uid: 28885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,90.5
+ parent: 1
+ - uid: 28940
+ components:
+ - type: Transform
+ pos: 103.5,52.5
+ parent: 1
+ - uid: 28941
+ components:
+ - type: Transform
+ pos: 114.5,55.5
+ parent: 1
+ - uid: 28942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,60.5
+ parent: 1
+ - uid: 28944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,72.5
+ parent: 1
+ - uid: 28945
+ components:
+ - type: Transform
+ pos: 121.5,78.5
+ parent: 1
+ - uid: 28946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,76.5
+ parent: 1
+ - uid: 28947
+ components:
+ - type: Transform
+ pos: 142.5,78.5
+ parent: 1
+ - uid: 28952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,117.5
+ parent: 1
+ - uid: 28953
+ components:
+ - type: Transform
+ pos: 130.5,119.5
+ parent: 1
+ - uid: 28954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 28955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 29061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,151.5
+ parent: 1
+ - uid: 30398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,98.5
+ parent: 1
+ - uid: 31831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,83.5
+ parent: 1
+ - uid: 32172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,140.5
+ parent: 1
+ - uid: 32173
+ components:
+ - type: Transform
+ pos: 154.5,139.5
+ parent: 1
+ - uid: 32174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 32175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,130.5
+ parent: 1
+ - uid: 32176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,124.5
+ parent: 1
+ - uid: 32177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,120.5
+ parent: 1
+ - uid: 32178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,117.5
+ parent: 1
+ - uid: 32179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,117.5
+ parent: 1
+ - uid: 32306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,90.5
+ parent: 1
+ - uid: 33911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,84.5
+ parent: 1
+ - uid: 34470
+ components:
+ - type: Transform
+ pos: 99.5,163.5
+ parent: 1
+ - uid: 35558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,102.5
+ parent: 1
+ - uid: 35628
+ components:
+ - type: Transform
+ pos: 151.5,111.5
+ parent: 1
+ - uid: 35635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 35640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 36428
+ components:
+ - type: Transform
+ pos: 48.5,71.5
+ parent: 1
+ - uid: 36451
+ components:
+ - type: Transform
+ pos: 53.5,75.5
+ parent: 1
+ - uid: 37457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,57.5
+ parent: 1
+ - uid: 37575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,100.5
+ parent: 1
+- proto: EmergencyOxygenTankFilled
+ entities:
+ - uid: 34089
+ components:
+ - type: Transform
+ pos: 68.49849,29.545628
+ parent: 1
+- proto: EmergencyRollerBed
+ entities:
+ - uid: 18012
+ components:
+ - type: Transform
+ pos: 79.5,86.5
+ parent: 1
+ - uid: 18013
+ components:
+ - type: Transform
+ pos: 81.5,86.5
+ parent: 1
+ - uid: 18014
+ components:
+ - type: Transform
+ pos: 80.5,86.5
+ parent: 1
+ - uid: 27074
+ components:
+ - type: Transform
+ pos: 102.5,80.5
+ parent: 1
+ - uid: 27075
+ components:
+ - type: Transform
+ pos: 110.5,84.5
+ parent: 1
+- proto: Emitter
+ entities:
+ - uid: 14027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,141.5
+ parent: 1
+ - uid: 14029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,133.5
+ parent: 1
+ - uid: 14032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,133.5
+ parent: 1
+ - uid: 14044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,141.5
+ parent: 1
+ - uid: 24346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,152.5
+ parent: 1
+ - uid: 29056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,151.5
+ parent: 1
+- proto: EncryptionKeyCommon
+ entities:
+ - uid: 25187
+ components:
+ - type: Transform
+ pos: 137.21156,121.59246
+ parent: 1
+- proto: EncryptionKeyRobo
+ entities:
+ - uid: 20957
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.685715,93.891304
+ parent: 1
+- proto: ExosuitFabricator
+ entities:
+ - uid: 20894
+ components:
+ - type: Transform
+ pos: 63.5,94.5
+ parent: 1
+- proto: ExplosivesSignMed
+ entities:
+ - uid: 16032
+ components:
+ - type: Transform
+ pos: 78.5,118.5
+ parent: 1
+ - uid: 20977
+ components:
+ - type: Transform
+ pos: 32.5,90.5
+ parent: 1
+ - uid: 33544
+ components:
+ - type: Transform
+ pos: 118.5,24.5
+ parent: 1
+- proto: ExtendedEmergencyOxygenTankFilled
+ entities:
+ - uid: 32011
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 27.586464,121.38221
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 32012
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 32012
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 6191
+ components:
+ - type: Transform
+ pos: 154.5,101.5
+ parent: 1
+ - uid: 13712
+ components:
+ - type: Transform
+ pos: 51.5,53.5
+ parent: 1
+ - uid: 13713
+ components:
+ - type: Transform
+ pos: 34.5,48.5
+ parent: 1
+ - uid: 13714
+ components:
+ - type: Transform
+ pos: 41.5,67.5
+ parent: 1
+ - uid: 13716
+ components:
+ - type: Transform
+ pos: 57.5,21.5
+ parent: 1
+ - uid: 18119
+ components:
+ - type: Transform
+ pos: 69.5,94.5
+ parent: 1
+ - uid: 18120
+ components:
+ - type: Transform
+ pos: 79.5,89.5
+ parent: 1
+ - uid: 18121
+ components:
+ - type: Transform
+ pos: 80.5,94.5
+ parent: 1
+ - uid: 18122
+ components:
+ - type: Transform
+ pos: 69.5,105.5
+ parent: 1
+ - uid: 18123
+ components:
+ - type: Transform
+ pos: 80.5,105.5
+ parent: 1
+ - uid: 18124
+ components:
+ - type: Transform
+ pos: 86.5,105.5
+ parent: 1
+ - uid: 19502
+ components:
+ - type: Transform
+ pos: 142.5,101.5
+ parent: 1
+ - uid: 19503
+ components:
+ - type: Transform
+ pos: 135.5,111.5
+ parent: 1
+ - uid: 19506
+ components:
+ - type: Transform
+ pos: 131.5,95.5
+ parent: 1
+ - uid: 26563
+ components:
+ - type: Transform
+ pos: 111.5,100.5
+ parent: 1
+ - uid: 26564
+ components:
+ - type: Transform
+ pos: 121.5,95.5
+ parent: 1
+ - uid: 27321
+ components:
+ - type: Transform
+ pos: 79.5,62.5
+ parent: 1
+ - uid: 30831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,97.5
+ parent: 1
+ - uid: 30863
+ components:
+ - type: Transform
+ pos: 126.5,104.5
+ parent: 1
+- proto: FaxMachineBase
+ entities:
+ - uid: 13518
+ components:
+ - type: Transform
+ pos: 40.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: Bridge
+ destinationAddress: Bridge
+ - uid: 13529
+ components:
+ - type: Transform
+ pos: 57.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: HOP
+ destinationAddress: HOP
+ - uid: 18187
+ components:
+ - type: Transform
+ pos: 76.5,105.5
+ parent: 1
+ - type: FaxMachine
+ name: Medbay
+ destinationAddress: Medbay
+ - uid: 19439
+ components:
+ - type: Transform
+ pos: 140.5,103.5
+ parent: 1
+ - type: FaxMachine
+ name: Cargo
+ destinationAddress: Cargo
+ - uid: 19867
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: Library
+ destinationAddress: Library
+ - uid: 21011
+ components:
+ - type: Transform
+ pos: 46.5,93.5
+ parent: 1
+ - type: FaxMachine
+ name: Science
+ destinationAddress: Science
+ - uid: 26952
+ components:
+ - type: Transform
+ pos: 108.5,64.5
+ parent: 1
+ - type: FaxMachine
+ name: Theater
+ destinationAddress: Theater
+ - uid: 26957
+ components:
+ - type: Transform
+ pos: 76.5,67.5
+ parent: 1
+ - type: FaxMachine
+ name: Chapel
+ destinationAddress: Chapel
+ - uid: 27030
+ components:
+ - type: Transform
+ pos: 111.5,99.5
+ parent: 1
+ - type: FaxMachine
+ name: Service
+ destinationAddress: Service
+ - uid: 28642
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - type: FaxMachine
+ name: Court
+ destinationAddress: Court
+ - uid: 32398
+ components:
+ - type: Transform
+ pos: 131.5,89.5
+ parent: 1
+ - type: FaxMachine
+ name: 'Conference room '
+ destinationAddress: 'Conference room '
+ - uid: 33817
+ components:
+ - type: Transform
+ pos: 101.5,45.5
+ parent: 1
+ - type: FaxMachine
+ name: Lawyer
+ destinationAddress: Lawyer
+- proto: FaxMachineCaptain
+ entities:
+ - uid: 13494
+ components:
+ - type: Transform
+ pos: 34.5,73.5
+ parent: 1
+ - type: FaxMachine
+ destinationAddress: Captain's office
+- proto: FenceMetalBroken
+ entities:
+ - uid: 33533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,29.5
+ parent: 1
+- proto: FenceMetalStraight
+ entities:
+ - uid: 33541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,29.5
+ parent: 1
+ - uid: 33542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,29.5
+ parent: 1
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 11512
+ components:
+ - type: Transform
+ pos: 155.5,96.5
+ parent: 1
+ - uid: 13617
+ components:
+ - type: Transform
+ pos: 32.5,75.5
+ parent: 1
+ - uid: 13657
+ components:
+ - type: Transform
+ pos: 62.5,58.5
+ parent: 1
+ - uid: 18118
+ components:
+ - type: Transform
+ pos: 77.5,102.5
+ parent: 1
+ - uid: 20840
+ components:
+ - type: Transform
+ pos: 37.5,90.5
+ parent: 1
+ - uid: 22969
+ components:
+ - type: Transform
+ pos: 130.5,72.5
+ parent: 1
+ - uid: 26313
+ components:
+ - type: Transform
+ pos: 107.5,42.5
+ parent: 1
+ - uid: 27194
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 30175
+ components:
+ - type: Transform
+ pos: 136.5,150.5
+ parent: 1
+ - uid: 37486
+ components:
+ - type: Transform
+ pos: 91.5,39.5
+ parent: 1
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1868
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 3700
+ components:
+ - type: Transform
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 13616
+ components:
+ - type: Transform
+ pos: 40.5,71.5
+ parent: 1
+ - uid: 21006
+ components:
+ - type: Transform
+ pos: 49.5,80.5
+ parent: 1
+ - uid: 27261
+ components:
+ - type: Transform
+ pos: 107.5,44.5
+ parent: 1
+ - uid: 30176
+ components:
+ - type: Transform
+ pos: 135.5,150.5
+ parent: 1
+- proto: filingCabinetTallRandom
+ entities:
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 53.5,55.5
+ parent: 1
+ - uid: 21004
+ components:
+ - type: Transform
+ pos: 46.5,91.5
+ parent: 1
+- proto: FireAlarm
+ entities:
+ - uid: 443
+ components:
+ - type: MetaData
+ name: hallway 8 fire alarm
+ - type: Transform
+ pos: 125.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28130
+ - 28128
+ - 28129
+ - 296
+ - 282
+ - 27980
+ - 11687
+ - 28133
+ - 28132
+ - 28131
+ - uid: 1457
+ components:
+ - type: MetaData
+ name: arrivals south fire alarm
+ - type: Transform
+ pos: 81.5,19.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2176
+ - 2233
+ - 3141
+ - 5547
+ - 5549
+ - 6852
+ - 3190
+ - uid: 3115
+ components:
+ - type: MetaData
+ name: theater fire alarm
+ - type: Transform
+ pos: 102.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1846
+ - 1847
+ - 1780
+ - 4764
+ - 4472
+ - 4169
+ - 1845
+ - uid: 3459
+ components:
+ - type: MetaData
+ name: engineering hallway north fire alarm
+ - type: Transform
+ pos: 116.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5246
+ - 5327
+ - 5363
+ - 5087
+ - 5003
+ - 5002
+ - 4706
+ - 4393
+ - 4392
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - 4061
+ - 3822
+ - 3773
+ - 3737
+ - 3623
+ - uid: 3553
+ components:
+ - type: MetaData
+ name: bridge hallway north fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 861
+ - 6048
+ - 23644
+ - 32244
+ - 34188
+ - uid: 3966
+ components:
+ - type: MetaData
+ name: canteen fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,113.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4564
+ - 24349
+ - 18093
+ - 4236
+ - 4298
+ - 4353
+ - 4745
+ - 4818
+ - 4859
+ - 25609
+ - 3667
+ - 25715
+ - 25714
+ - 25712
+ - 25713
+ - uid: 10790
+ components:
+ - type: MetaData
+ name: bridge hallway south fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 5920
+ - 5826
+ - 5822
+ - 811
+ - 812
+ - 813
+ - 718
+ - 14866
+ - 15015
+ - 14973
+ - uid: 14826
+ components:
+ - type: MetaData
+ name: engineering hallway east fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,131.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5248
+ - 5328
+ - 5365
+ - 4603
+ - 4602
+ - 5188
+ - 5186
+ - 5246
+ - 5327
+ - 5363
+ - uid: 14844
+ components:
+ - type: MetaData
+ name: engineering hallway north fire alarm
+ - type: Transform
+ pos: 95.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5246
+ - 5327
+ - 5363
+ - 5087
+ - 5003
+ - 5002
+ - 4706
+ - 4393
+ - 4392
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - 4061
+ - 3822
+ - 3773
+ - 3737
+ - 3623
+ - uid: 14847
+ components:
+ - type: MetaData
+ name: engineering hallway west fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,131.5
+ parent: 1
+ - uid: 15938
+ components:
+ - type: MetaData
+ name: atmospherics hallway fire alarm
+ - type: Transform
+ pos: 80.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2319
+ - 2423
+ - 15434
+ - 15435
+ - 2207
+ - 2458
+ - 2516
+ - 2906
+ - 2985
+ - 3047
+ - 3102
+ - 3158
+ - 3300
+ - uid: 17009
+ components:
+ - type: MetaData
+ name: medical hallway south fire alarm
+ - type: Transform
+ pos: 80.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2165
+ - 2021
+ - 2164
+ - 2279
+ - 2473
+ - 2749
+ - 3107
+ - 3238
+ - 3106
+ - 2989
+ - 2795
+ - uid: 17010
+ components:
+ - type: MetaData
+ name: medical hallway west fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2279
+ - 2164
+ - 2331
+ - 2328
+ - 2009
+ - 3333
+ - 1809
+ - uid: 17011
+ components:
+ - type: MetaData
+ name: medical hallway east fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2989
+ - 3106
+ - 3228
+ - 2918
+ - 2915
+ - 2858
+ - 2988
+ - 3050
+ - 3169
+ - uid: 17013
+ components:
+ - type: MetaData
+ name: medical front entrance fire alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2594
+ - 2634
+ - 2858
+ - 2988
+ - 3050
+ - 17019
+ - 17022
+ - 17021
+ - 3104
+ - 3049
+ - 2987
+ - 2214
+ - 2162
+ - 2072
+ - 2000
+ - 3333
+ - 1809
+ - uid: 18615
+ components:
+ - type: MetaData
+ name: cargo front desk fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6256
+ - 6036
+ - 5427
+ - 30843
+ - 21677
+ - 35996
+ - 30687
+ - 6300
+ - 6109
+ - 18632
+ - 18633
+ - uid: 18630
+ components:
+ - type: MetaData
+ name: cargo front entrance fire alarm
+ - type: Transform
+ pos: 132.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5745
+ - 5744
+ - 5743
+ - 6256
+ - 6036
+ - 5929
+ - 5928
+ - 5726
+ - 5725
+ - 5724
+ - 18632
+ - 18633
+ - uid: 20341
+ components:
+ - type: MetaData
+ name: science hallway south fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 860
+ - 939
+ - 770
+ - 933
+ - 932
+ - 19750
+ - 19751
+ - 19752
+ - uid: 20350
+ components:
+ - type: MetaData
+ name: science front entrance fire alarm
+ - type: Transform
+ pos: 48.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 1313
+ - 1404
+ - 1403
+ - 1402
+ - 20346
+ - 293
+ - 1391
+ - 1390
+ - 1389
+ - 926
+ - 925
+ - uid: 20357
+ components:
+ - type: MetaData
+ name: science hallway north fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,104.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 380
+ - 736
+ - 831
+ - 888
+ - 915
+ - 922
+ - 921
+ - 926
+ - 925
+ - 19750
+ - 19751
+ - 19752
+ - 1256
+ - uid: 22158
+ components:
+ - type: MetaData
+ name: brig fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21573
+ - 21572
+ - 21571
+ - 5687
+ - uid: 22161
+ components:
+ - type: MetaData
+ name: security west hallway fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5476
+ - 5473
+ - 21571
+ - 21572
+ - 21573
+ - 21576
+ - 5655
+ - 21575
+ - 21574
+ - uid: 22163
+ components:
+ - type: MetaData
+ name: security hallway south fire alarm
+ - type: Transform
+ pos: 146.5,59.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 21576
+ - 21575
+ - 21574
+ - 6413
+ - 6605
+ - 6604
+ - 5994
+ - 21577
+ - 21578
+ - 21579
+ - 6207
+ - 21580
+ - 21581
+ - 21582
+ - 6600
+ - 22230
+ - uid: 22265
+ components:
+ - type: MetaData
+ name: security hallway north fire alarm
+ - type: Transform
+ pos: 141.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21580
+ - 21581
+ - 21582
+ - 6592
+ - 6511
+ - 21389
+ - 6116
+ - 6054
+ - 5985
+ - 21577
+ - 21578
+ - 21579
+ - uid: 26189
+ components:
+ - type: MetaData
+ name: service hall fire alarm
+ - type: Transform
+ pos: 106.5,100.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4361
+ - 4240
+ - 24349
+ - 4565
+ - 25609
+ - 4863
+ - 4671
+ - uid: 26193
+ components:
+ - type: MetaData
+ name: boxing ring fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3925
+ - 3924
+ - 3923
+ - 1846
+ - 1847
+ - 4985
+ - 4984
+ - 4983
+ - 4624
+ - 4308
+ - 4921
+ - 4361
+ - uid: 27671
+ components:
+ - type: MetaData
+ name: arrivals fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,30.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2290
+ - 2233
+ - 3141
+ - 3069
+ - 3066
+ - 2287
+ - 2285
+ - 2232
+ - 2172
+ - 2540
+ - 6730
+ - 751
+ - 6611
+ - 4360
+ - 4960
+ - 5992
+ - uid: 27822
+ components:
+ - type: MetaData
+ name: hallway 2 fire alarm
+ - type: Transform
+ pos: 58.5,66.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2537
+ - 2536
+ - 2535
+ - 10747
+ - 10748
+ - 10749
+ - 2034
+ - 1270
+ - 1269
+ - 27815
+ - 27816
+ - 27817
+ - 10792
+ - uid: 27825
+ components:
+ - type: MetaData
+ name: hallway 3 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27817
+ - 27816
+ - 27815
+ - 1626
+ - 122
+ - 27820
+ - 27819
+ - 27818
+ - 23633
+ - 23637
+ - uid: 27853
+ components:
+ - type: MetaData
+ name: hallway 4 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,88.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27820
+ - 27819
+ - 27818
+ - 1404
+ - 1403
+ - 1402
+ - 1391
+ - 1390
+ - 1389
+ - 20736
+ - 20737
+ - 20738
+ - 1605
+ - 1615
+ - 1614
+ - 1613
+ - uid: 27866
+ components:
+ - type: MetaData
+ name: hallway 5 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20738
+ - 20737
+ - 20736
+ - 1373
+ - 20739
+ - 20740
+ - 20741
+ - 28230
+ - uid: 27985
+ components:
+ - type: MetaData
+ name: hallway 6 fire alarm
+ - type: Transform
+ pos: 79.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20739
+ - 20740
+ - 20741
+ - 2072
+ - 2162
+ - 2214
+ - 2987
+ - 3049
+ - 3104
+ - 27977
+ - 27978
+ - 27979
+ - 2423
+ - 2319
+ - 2161
+ - 1927
+ - 15936
+ - 15937
+ - uid: 28229
+ components:
+ - type: MetaData
+ name: hallway 7 fire alarm
+ - type: Transform
+ pos: 91.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4357
+ - 25537
+ - 27977
+ - 27978
+ - 27979
+ - 4511
+ - 3808
+ - 297
+ - uid: 28237
+ components:
+ - type: MetaData
+ name: engineering front entrance fire alarm
+ - type: Transform
+ pos: 101.5,122.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4511
+ - 3808
+ - 297
+ - 4233
+ - 4856
+ - 16581
+ - 16582
+ - 296
+ - 282
+ - 27980
+ - 4859
+ - 4818
+ - 4745
+ - 4353
+ - 4298
+ - 4236
+ - uid: 28348
+ components:
+ - type: MetaData
+ name: hallway 10 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 505
+ - 506
+ - 507
+ - 5745
+ - 5744
+ - 5743
+ - 5726
+ - 5725
+ - 5724
+ - 23848
+ - 23847
+ - 5578
+ - 28128
+ - 28129
+ - 28130
+ - uid: 28488
+ components:
+ - type: MetaData
+ name: hallway 11 fire alarm
+ - type: Transform
+ pos: 131.5,79.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6115
+ - 6053
+ - 23305
+ - 23306
+ - 23307
+ - 22261
+ - 22262
+ - 6799
+ - 5756
+ - 5602
+ - 21066
+ - 505
+ - 506
+ - 507
+ - uid: 28596
+ components:
+ - type: MetaData
+ name: hallway 12 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,68.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27513
+ - 27514
+ - 27515
+ - 5055
+ - 5380
+ - 5466
+ - 23305
+ - 23306
+ - 23307
+ - 4985
+ - 4984
+ - 4983
+ - uid: 28633
+ components:
+ - type: MetaData
+ name: hallway 13 fire alarm
+ - type: Transform
+ pos: 116.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28437
+ - 28438
+ - 5291
+ - 5288
+ - 27513
+ - 27514
+ - 27515
+ - 26174
+ - 4882
+ - 27516
+ - 27517
+ - 27518
+ - 950
+ - 1641
+ - uid: 28745
+ components:
+ - type: MetaData
+ name: hallway 14 fire alarm
+ - type: Transform
+ pos: 93.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16030
+ - 2077
+ - 10727
+ - 10726
+ - 3181
+ - 1385
+ - 1884
+ - 30043
+ - 27518
+ - 27517
+ - 27516
+ - 4960
+ - 4360
+ - 6611
+ - 30188
+ - uid: 28907
+ components:
+ - type: MetaData
+ name: hallway 15 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,71.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3181
+ - 10726
+ - 10727
+ - 3601
+ - 2815
+ - 2704
+ - 2537
+ - 2536
+ - 2535
+ - 3402
+ - 3452
+ - 3841
+ - 3925
+ - 3924
+ - 3923
+ - 3754
+ - uid: 28943
+ components:
+ - type: MetaData
+ name: hallway 1 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2285
+ - 2232
+ - 2172
+ - 10749
+ - 10748
+ - 10747
+ - 1849
+ - 6729
+ - uid: 29230
+ components:
+ - type: MetaData
+ name: hallway 9 fire alarm
+ - type: Transform
+ pos: 151.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6243
+ - 28133
+ - 28132
+ - 28131
+ - 6475
+ - 6174
+ - 6337
+ - 6669
+ - 6787
+ - 6869
+ - 6916
+ - 6870
+ - 27984
+ - 27983
+ - 27982
+ - uid: 29482
+ components:
+ - type: MetaData
+ name: dorms fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,134.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27984
+ - 27983
+ - 27982
+ - 6624
+ - 8673
+ - 13735
+ - 13734
+ - 13733
+ - 5239
+ - 6688
+ - 6667
+ - 6783
+ - 6913
+ - 7044
+ - 6944
+ - 6814
+ - uid: 29826
+ components:
+ - type: MetaData
+ name: evac fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 13734
+ - 13733
+ - 29822
+ - 6542
+ - 6272
+ - 13735
+ - 4007
+ - 6168
+ - 6005
+ - 6278
+ - 6127
+ - 1471
+ - 6009
+ - uid: 30837
+ components:
+ - type: MetaData
+ name: cargo hallway fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6928
+ - 6929
+ - 6192
+ - 16223
+ - 11539
+ - 1362
+ - 23406
+ - 266
+ - 21677
+ - 35996
+ - 30687
+ - 1363
+ - uid: 33283
+ components:
+ - type: MetaData
+ name: maintance 2 fire alarm
+ - type: Transform
+ pos: 93.5,24.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5549
+ - 6852
+ - 5547
+ - 33172
+ - 8333
+ - 33286
+ - 7137
+ - 8357
+ - 4128
+ - 4127
+ - 3766
+ - 3864
+ - uid: 33284
+ components:
+ - type: MetaData
+ name: maintance 1 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,25.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9823
+ - 8357
+ - 4128
+ - 4127
+ - 8526
+ - 27657
+ - 11336
+ - 12738
+ - 29188
+ - uid: 33285
+ components:
+ - type: MetaData
+ name: maintance 3 fire alarm
+ - type: Transform
+ pos: 117.5,32.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 12738
+ - 11336
+ - 27657
+ - 12735
+ - 9802
+ - 12729
+ - 12739
+ - 27649
+ - 30509
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 16214
+ components:
+ - type: Transform
+ pos: 74.5,124.5
+ parent: 1
+ - uid: 25932
+ components:
+ - type: Transform
+ pos: 33.5,65.5
+ parent: 1
+- proto: FireExtinguisher
+ entities:
+ - uid: 19043
+ components:
+ - type: Transform
+ pos: 26.5,123.5
+ parent: 1
+ - uid: 19484
+ components:
+ - type: Transform
+ pos: 147.47488,88.51422
+ parent: 1
+ - uid: 19485
+ components:
+ - type: Transform
+ pos: 147.6728,88.7538
+ parent: 1
+ - uid: 19486
+ components:
+ - type: Transform
+ pos: 147.37071,88.72255
+ parent: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 20.5,88.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 20.5,78.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 21.5,104.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 22.5,95.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 22.5,77.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 24.5,120.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - 20350
+ - 20345
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - 20375
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - 20375
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - 20375
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20376
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 30.5,122.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - 20378
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20378
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,35.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - 20336
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - 10732
+ - 10790
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20363
+ - uid: 751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - 20341
+ - 20340
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 41.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 41.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 37335
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 42.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - 29340
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 37335
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 44.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20362
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 45.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20359
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20359
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 45.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 20357
+ - 20353
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 20357
+ - 20353
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20345
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 45.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20345
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20343
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - 10685
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - 10685
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10746
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - 13230
+ - uid: 1058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 48.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10746
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - uid: 1137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,169.5
+ parent: 1
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 50.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20345
+ - 20350
+ - 20352
+ - uid: 1198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 51.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - 27822
+ - 1303
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - 27822
+ - 1303
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - 10686
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - 20350
+ - 20352
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+ - uid: 1362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 1363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: 54.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: 54.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: 54.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 54.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 54.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 54.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,150.5
+ parent: 1
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10751
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 139.5,146.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - 29830
+ - 29826
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 1498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 126.5,152.5
+ parent: 1
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - 10752
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 58.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 58.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 58.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 58.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 58.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - 28633
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - 17614
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - 3115
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 1809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17013
+ - 17109
+ - uid: 1829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 1845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - 3115
+ - uid: 1846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 3115
+ - 3121
+ - uid: 1847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 3115
+ - 3121
+ - uid: 1849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 28943
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - uid: 1884
+ components:
+ - type: Transform
+ pos: 96.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 1927
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - uid: 1954
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - 17013
+ - 17109
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17112
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - 17009
+ - 17102
+ - uid: 2034
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: 65.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - 37459
+ - uid: 2133
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 2161
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - uid: 2162
+ components:
+ - type: Transform
+ pos: 66.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2164
+ components:
+ - type: Transform
+ pos: 66.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17010
+ - 17103
+ - uid: 2165
+ components:
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - 17009
+ - 17102
+ - uid: 2168
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 2172
+ components:
+ - type: Transform
+ pos: 66.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2176
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1457
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 67.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2223
+ components:
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - 26214
+ - uid: 2232
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2233
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 1457
+ - 25478
+ - uid: 2279
+ components:
+ - type: Transform
+ pos: 68.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17010
+ - 17103
+ - uid: 2285
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2287
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2290
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2319
+ components:
+ - type: Transform
+ pos: 69.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - 27985
+ - 27986
+ - uid: 2328
+ components:
+ - type: Transform
+ pos: 69.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 27355
+ - uid: 2331
+ components:
+ - type: Transform
+ pos: 69.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 27355
+ - uid: 2423
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - 27985
+ - 27986
+ - uid: 2458
+ components:
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 2464
+ - 15938
+ - uid: 2473
+ components:
+ - type: Transform
+ pos: 71.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17106
+ - uid: 2479
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - uid: 2493
+ components:
+ - type: Transform
+ pos: 72.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 2516
+ components:
+ - type: Transform
+ pos: 72.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 2464
+ - 15938
+ - uid: 2535
+ components:
+ - type: Transform
+ pos: 72.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2536
+ components:
+ - type: Transform
+ pos: 72.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2537
+ components:
+ - type: Transform
+ pos: 72.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2540
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2594
+ components:
+ - type: Transform
+ pos: 74.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27355
+ - uid: 2596
+ components:
+ - type: Transform
+ pos: 74.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - 27355
+ - uid: 2600
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 2622
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+ - uid: 2634
+ components:
+ - type: Transform
+ pos: 75.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27355
+ - uid: 2636
+ components:
+ - type: Transform
+ pos: 75.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - 27355
+ - uid: 2704
+ components:
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - 28907
+ - 28908
+ - uid: 2749
+ components:
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - uid: 2758
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 2795
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17106
+ - uid: 2810
+ components:
+ - type: Transform
+ pos: 78.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - 26965
+ - uid: 2815
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - 28907
+ - 28908
+ - uid: 2829
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2830
+ components:
+ - type: Transform
+ pos: 79.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2847
+ components:
+ - type: Transform
+ pos: 79.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2848
+ components:
+ - type: Transform
+ pos: 79.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2858
+ components:
+ - type: Transform
+ pos: 79.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 2906
+ components:
+ - type: Transform
+ pos: 80.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 2915
+ components:
+ - type: Transform
+ pos: 80.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 27355
+ - uid: 2918
+ components:
+ - type: Transform
+ pos: 80.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 27355
+ - uid: 2985
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 2987
+ components:
+ - type: Transform
+ pos: 81.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2988
+ components:
+ - type: Transform
+ pos: 81.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: 81.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17009
+ - 17102
+ - uid: 3047
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3049
+ components:
+ - type: Transform
+ pos: 82.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 3050
+ components:
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 3066
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 3069
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 3102
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3104
+ components:
+ - type: Transform
+ pos: 83.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 3106
+ components:
+ - type: Transform
+ pos: 83.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17009
+ - 17102
+ - uid: 3107
+ components:
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - 17009
+ - 17102
+ - uid: 3141
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 1457
+ - 25478
+ - uid: 3146
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 3158
+ components:
+ - type: Transform
+ pos: 84.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3169
+ components:
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - 17011
+ - 17097
+ - uid: 3181
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - 28907
+ - 28908
+ - uid: 3190
+ components:
+ - type: Transform
+ pos: 85.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1457
+ - uid: 3226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 3228
+ components:
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - 17011
+ - 17097
+ - uid: 3238
+ components:
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - 17009
+ - 17102
+ - uid: 3289
+ components:
+ - type: Transform
+ pos: 86.5,162.5
+ parent: 1
+ - uid: 3294
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 3300
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - 2464
+ - 15938
+ - uid: 3312
+ components:
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - 17093
+ - uid: 3320
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 3332
+ components:
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - 17096
+ - uid: 3333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17013
+ - 17109
+ - uid: 3385
+ components:
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - 36756
+ - uid: 3402
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - 28907
+ - 28908
+ - uid: 3439
+ components:
+ - type: Transform
+ pos: 80.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - uid: 3452
+ components:
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - 28907
+ - 28908
+ - uid: 3488
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 3519
+ components:
+ - type: Transform
+ pos: 90.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 3524
+ components:
+ - type: Transform
+ pos: 90.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - 2722
+ - uid: 3550
+ components:
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - uid: 3573
+ components:
+ - type: Transform
+ pos: 91.5,166.5
+ parent: 1
+ - uid: 3585
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 3601
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - 28907
+ - 28908
+ - uid: 3608
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 3623
+ components:
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 3459
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 3667
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 15935
+ - uid: 3733
+ components:
+ - type: Transform
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: 93.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3739
+ components:
+ - type: Transform
+ pos: 93.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3754
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28907
+ - 28908
+ - uid: 3766
+ components:
+ - type: Transform
+ pos: 93.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3774
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: 95.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - uid: 3822
+ components:
+ - type: Transform
+ pos: 95.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3824
+ components:
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3841
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28907
+ - 28908
+ - uid: 3855
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 3864
+ components:
+ - type: Transform
+ pos: 95.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 3882
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 3892
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - 14603
+ - uid: 3894
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - 14603
+ - uid: 3916
+ components:
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - uid: 3923
+ components:
+ - type: Transform
+ pos: 96.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: 96.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 4007
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - 29826
+ - uid: 4013
+ components:
+ - type: Transform
+ pos: 98.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4061
+ components:
+ - type: Transform
+ pos: 99.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14669
+ - 14844
+ - 3459
+ - uid: 4062
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4103
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26186
+ - uid: 4109
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - uid: 4124
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 4127
+ components:
+ - type: Transform
+ pos: 99.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 4128
+ components:
+ - type: Transform
+ pos: 99.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 4144
+ components:
+ - type: Transform
+ pos: 100.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4169
+ components:
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 3113
+ - uid: 4187
+ components:
+ - type: Transform
+ pos: 101.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4233
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - 28237
+ - 28247
+ - uid: 4236
+ components:
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4240
+ components:
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26189
+ - 26188
+ - uid: 4273
+ components:
+ - type: Transform
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 4298
+ components:
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - 10750
+ - uid: 4308
+ components:
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4353
+ components:
+ - type: Transform
+ pos: 104.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - 28229
+ - 30227
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: 104.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26189
+ - 26188
+ - 26193
+ - 26190
+ - uid: 4371
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - uid: 4392
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14840
+ - 14844
+ - 3459
+ - uid: 4393
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - 14573
+ - 14844
+ - 3459
+ - uid: 4472
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 3112
+ - uid: 4474
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 4494
+ components:
+ - type: Transform
+ pos: 118.5,166.5
+ parent: 1
+ - uid: 4511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26182
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - 26189
+ - 26188
+ - uid: 4602
+ components:
+ - type: Transform
+ pos: 124.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14600
+ - uid: 4603
+ components:
+ - type: Transform
+ pos: 124.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14600
+ - uid: 4624
+ components:
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4671
+ components:
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - 26189
+ - 26188
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: 88.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - uid: 4706
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - 14573
+ - 14844
+ - 3459
+ - uid: 4736
+ components:
+ - type: Transform
+ pos: 112.5,163.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - uid: 4745
+ components:
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4764
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 4625
+ - uid: 4779
+ components:
+ - type: Transform
+ pos: 112.5,38.5
+ parent: 1
+ - uid: 4818
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4856
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 4859
+ components:
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4863
+ components:
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26189
+ - 26188
+ - 143
+ - uid: 4882
+ components:
+ - type: Transform
+ pos: 114.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 4883
+ components:
+ - type: Transform
+ pos: 139.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 4906
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 4921
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4949
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - uid: 4960
+ components:
+ - type: Transform
+ pos: 84.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 4983
+ components:
+ - type: Transform
+ pos: 116.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 4984
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 4985
+ components:
+ - type: Transform
+ pos: 116.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 5002
+ components:
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 36963
+ - 3459
+ - uid: 5003
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14846
+ - 3459
+ - uid: 5048
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 5055
+ components:
+ - type: Transform
+ pos: 117.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - uid: 5087
+ components:
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14846
+ - 3459
+ - uid: 5103
+ components:
+ - type: Transform
+ pos: 118.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - uid: 5168
+ components:
+ - type: Transform
+ pos: 120.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - uid: 5170
+ components:
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - uid: 5186
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14594
+ - uid: 5188
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14594
+ - uid: 5239
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 5246
+ components:
+ - type: Transform
+ pos: 121.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5248
+ components:
+ - type: Transform
+ pos: 121.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5288
+ components:
+ - type: Transform
+ pos: 121.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 5291
+ components:
+ - type: Transform
+ pos: 121.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 5299
+ components:
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - 28638
+ - uid: 5327
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5328
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5335
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 5338
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - uid: 5363
+ components:
+ - type: Transform
+ pos: 123.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5365
+ components:
+ - type: Transform
+ pos: 123.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5380
+ components:
+ - type: Transform
+ pos: 123.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - 28596
+ - 28597
+ - uid: 5388
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - 22635
+ - uid: 5389
+ components:
+ - type: Transform
+ pos: 123.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - uid: 5427
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - uid: 5428
+ components:
+ - type: Transform
+ pos: 124.5,128.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - uid: 5466
+ components:
+ - type: Transform
+ pos: 124.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - 28596
+ - 28597
+ - uid: 5473
+ components:
+ - type: Transform
+ pos: 124.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - uid: 5476
+ components:
+ - type: Transform
+ pos: 124.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - uid: 5547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 5549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 5568
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 5578
+ components:
+ - type: Transform
+ pos: 126.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 5585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,126.5
+ parent: 1
+ - uid: 5602
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 5616
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - 22634
+ - uid: 5617
+ components:
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - uid: 5619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,31.5
+ parent: 1
+ - uid: 5648
+ components:
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - 14601
+ - uid: 5649
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - 14600
+ - uid: 5655
+ components:
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22635
+ - uid: 5669
+ components:
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - uid: 5687
+ components:
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 3062
+ - uid: 5711
+ components:
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - 14599
+ - uid: 5724
+ components:
+ - type: Transform
+ pos: 130.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5725
+ components:
+ - type: Transform
+ pos: 130.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5726
+ components:
+ - type: Transform
+ pos: 130.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5743
+ components:
+ - type: Transform
+ pos: 130.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5744
+ components:
+ - type: Transform
+ pos: 130.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5745
+ components:
+ - type: Transform
+ pos: 130.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5756
+ components:
+ - type: Transform
+ pos: 130.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 5822
+ components:
+ - type: Transform
+ pos: 45.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5826
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5851
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 5870
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 5889
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - 22270
+ - uid: 5918
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - uid: 5919
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - 14599
+ - uid: 5920
+ components:
+ - type: Transform
+ pos: 45.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5928
+ components:
+ - type: Transform
+ pos: 135.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18630
+ - 18634
+ - uid: 5929
+ components:
+ - type: Transform
+ pos: 135.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18630
+ - 18634
+ - uid: 5985
+ components:
+ - type: Transform
+ pos: 136.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - 3062
+ - uid: 5992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - uid: 5994
+ components:
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22270
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6009
+ components:
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 6022
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 6036
+ components:
+ - type: Transform
+ pos: 137.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - 18630
+ - 18634
+ - uid: 6048
+ components:
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 10730
+ - 3553
+ - uid: 6053
+ components:
+ - type: Transform
+ pos: 137.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6054
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6109
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18615
+ - 18616
+ - uid: 6115
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6116
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6117
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22252
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - 10326
+ - uid: 6168
+ components:
+ - type: Transform
+ pos: 141.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6174
+ components:
+ - type: Transform
+ pos: 141.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6178
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 6192
+ components:
+ - type: Transform
+ pos: 150.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6207
+ components:
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22269
+ - uid: 6243
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6250
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 6256
+ components:
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - 18630
+ - 18634
+ - uid: 6272
+ components:
+ - type: Transform
+ pos: 143.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6278
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - 10326
+ - uid: 6298
+ components:
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - uid: 6300
+ components:
+ - type: Transform
+ pos: 143.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - 18615
+ - 18616
+ - uid: 6337
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 3344
+ - uid: 6356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - 3062
+ - uid: 6360
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - uid: 6413
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22209
+ - uid: 6414
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - uid: 6475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6542
+ components:
+ - type: Transform
+ pos: 149.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6546
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 6592
+ components:
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - 22265
+ - 22267
+ - uid: 6600
+ components:
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22246
+ - uid: 6604
+ components:
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22229
+ - uid: 6605
+ components:
+ - type: Transform
+ pos: 150.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22229
+ - uid: 6611
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 6612
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 6624
+ components:
+ - type: Transform
+ pos: 151.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6667
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6669
+ components:
+ - type: Transform
+ pos: 152.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6702
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6703
+ components:
+ - type: Transform
+ pos: 153.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6708
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 6729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 28943
+ - uid: 6730
+ components:
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 6783
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6787
+ components:
+ - type: Transform
+ pos: 155.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6814
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6820
+ components:
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 6828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6836
+ components:
+ - type: Transform
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 6837
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - uid: 6852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 6869
+ components:
+ - type: Transform
+ pos: 157.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6870
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6890
+ components:
+ - type: Transform
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 6913
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6916
+ components:
+ - type: Transform
+ pos: 158.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6920
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6921
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6923
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6924
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6928
+ components:
+ - type: Transform
+ pos: 148.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6929
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6944
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6990
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 7044
+ components:
+ - type: Transform
+ pos: 161.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 7102
+ components:
+ - type: Transform
+ pos: 151.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - 22229
+ - uid: 7137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 7154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 8333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 8357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 8526
+ components:
+ - type: Transform
+ pos: 107.5,28.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 8635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - uid: 8673
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 1588
+ - uid: 8854
+ components:
+ - type: Transform
+ pos: 116.5,170.5
+ parent: 1
+ - uid: 9254
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 9300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 14598
+ - uid: 9802
+ components:
+ - type: Transform
+ pos: 110.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 9823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 10317
+ components:
+ - type: Transform
+ pos: 130.5,149.5
+ parent: 1
+ - uid: 10318
+ components:
+ - type: Transform
+ pos: 126.5,153.5
+ parent: 1
+ - uid: 10700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 10726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - 28907
+ - 28745
+ - 25419
+ - uid: 10727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - 28907
+ - 28745
+ - 25419
+ - uid: 10747
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10748
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10749
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - 27822
+ - 1303
+ - uid: 11103
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 11336
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 11366
+ components:
+ - type: Transform
+ pos: 142.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - uid: 11520
+ components:
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - 37358
+ - uid: 11539
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 37358
+ - uid: 11687
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - uid: 12729
+ components:
+ - type: Transform
+ pos: 115.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 12735
+ components:
+ - type: Transform
+ pos: 114.5,26.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 12738
+ components:
+ - type: Transform
+ pos: 110.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 12739
+ components:
+ - type: Transform
+ pos: 117.5,39.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 13207
+ components:
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 13312
+ components:
+ - type: Transform
+ pos: 125.5,99.5
+ parent: 1
+ - uid: 13733
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 13734
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 13735
+ components:
+ - type: Transform
+ pos: 144.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 14749
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 14793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 14866
+ components:
+ - type: Transform
+ pos: 41.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 14973
+ components:
+ - type: Transform
+ pos: 41.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 15015
+ components:
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 15071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,168.5
+ parent: 1
+ - uid: 15334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,149.5
+ parent: 1
+ - uid: 15434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 2486
+ - 15938
+ - uid: 15435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 2486
+ - 15938
+ - uid: 15519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 15936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - 27985
+ - 27986
+ - uid: 15937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - 27985
+ - 27986
+ - uid: 15984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 16009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 16017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 16030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 16223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 20038
+ - uid: 16581
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 16582
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 16639
+ components:
+ - type: Transform
+ pos: 102.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26188
+ - uid: 16979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 17019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 17021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 18093
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - uid: 18632
+ components:
+ - type: Transform
+ pos: 137.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 18615
+ - 18616
+ - uid: 18633
+ components:
+ - type: Transform
+ pos: 137.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 18615
+ - 18616
+ - uid: 18844
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - uid: 19117
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 19750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 19751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 19752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 20346
+ components:
+ - type: Transform
+ pos: 50.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20345
+ - 20350
+ - 20352
+ - uid: 20736
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20737
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20738
+ components:
+ - type: Transform
+ pos: 57.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20739
+ components:
+ - type: Transform
+ pos: 61.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20740
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20741
+ components:
+ - type: Transform
+ pos: 61.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20755
+ components:
+ - type: Transform
+ pos: 114.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - 143
+ - uid: 21066
+ components:
+ - type: MetaData
+ name: glass firelock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 23328
+ - uid: 21389
+ components:
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 22265
+ - 22267
+ - uid: 21571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21677
+ components:
+ - type: Transform
+ pos: 145.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 22230
+ components:
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22252
+ - uid: 22259
+ components:
+ - type: Transform
+ pos: 140.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22260
+ components:
+ - type: Transform
+ pos: 140.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22261
+ components:
+ - type: Transform
+ pos: 142.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 28488
+ - 28486
+ - uid: 22262
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 28488
+ - 28486
+ - uid: 22275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 22276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 22419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 23305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23364
+ components:
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - uid: 23375
+ components:
+ - type: Transform
+ pos: 52.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - uid: 23406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 23442
+ components:
+ - type: Transform
+ pos: 103.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - uid: 23633
+ components:
+ - type: Transform
+ pos: 54.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 18183
+ - uid: 23637
+ components:
+ - type: Transform
+ pos: 54.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 18183
+ - uid: 23644
+ components:
+ - type: Transform
+ pos: 45.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - 18183
+ - uid: 23847
+ components:
+ - type: Transform
+ pos: 126.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 23848
+ components:
+ - type: Transform
+ pos: 126.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 23853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,128.5
+ parent: 1
+ - uid: 23856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - uid: 24202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 24286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,89.5
+ parent: 1
+ - uid: 24312
+ components:
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 24349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26189
+ - 26188
+ - uid: 25505
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - uid: 25537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - 28229
+ - 30227
+ - uid: 25609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26189
+ - 26188
+ - uid: 25712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 143
+ - uid: 25713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 143
+ - uid: 25714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26183
+ - uid: 25715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26183
+ - uid: 26174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 26210
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 26471
+ components:
+ - type: Transform
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 26556
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - uid: 26668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 27271
+ components:
+ - type: Transform
+ pos: 34.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 27513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27639
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 27649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 27657
+ components:
+ - type: Transform
+ pos: 108.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 27658
+ components:
+ - type: Transform
+ pos: 121.5,26.5
+ parent: 1
+ - uid: 27815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 27982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 27983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 27984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 28128
+ components:
+ - type: Transform
+ pos: 127.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28129
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28130
+ components:
+ - type: Transform
+ pos: 129.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28193
+ components:
+ - type: Transform
+ pos: 53.5,118.5
+ parent: 1
+ - uid: 28230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - uid: 28437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 28438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 28531
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - uid: 29188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 29235
+ components:
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29238
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29822
+ components:
+ - type: Transform
+ pos: 150.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - 29826
+ - uid: 30037
+ components:
+ - type: Transform
+ pos: 100.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - 28741
+ - uid: 30043
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - 28745
+ - 25419
+ - uid: 30178
+ components:
+ - type: Transform
+ pos: 129.5,149.5
+ parent: 1
+ - uid: 30188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 30372
+ components:
+ - type: MetaData
+ name: lawyer's office glass firelock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,37.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - uid: 30509
+ components:
+ - type: Transform
+ pos: 121.5,41.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 30559
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 30649
+ components:
+ - type: Transform
+ pos: 87.5,159.5
+ parent: 1
+ - uid: 30687
+ components:
+ - type: Transform
+ pos: 145.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 30688
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 30843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - 18615
+ - uid: 30960
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 31870
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 32008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - 15935
+ - uid: 32244
+ components:
+ - type: Transform
+ pos: 45.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - 18183
+ - uid: 32279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 32951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 33172
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 33286
+ components:
+ - type: Transform
+ pos: 100.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 33313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,38.5
+ parent: 1
+ - uid: 33750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 33752
+ components:
+ - type: Transform
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 33845
+ components:
+ - type: Transform
+ pos: 108.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 34108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 34188
+ components:
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 19097
+ - 3553
+ - uid: 34303
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 34304
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 34716
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 34727
+ components:
+ - type: Transform
+ pos: 116.5,168.5
+ parent: 1
+ - uid: 34736
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 35646
+ components:
+ - type: Transform
+ pos: 134.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - uid: 35667
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 35735
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 35800
+ components:
+ - type: Transform
+ pos: 160.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 35801
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 35996
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 36004
+ components:
+ - type: Transform
+ pos: 89.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 36166
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 36282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 36755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 36757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 36976
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 37138
+ components:
+ - type: Transform
+ pos: 163.5,146.5
+ parent: 1
+- proto: Fireplace
+ entities:
+ - uid: 13176
+ components:
+ - type: Transform
+ pos: 106.5,64.5
+ parent: 1
+ - uid: 13493
+ components:
+ - type: Transform
+ pos: 38.5,76.5
+ parent: 1
+ - uid: 26483
+ components:
+ - type: Transform
+ pos: 109.5,104.5
+ parent: 1
+ - uid: 26975
+ components:
+ - type: Transform
+ pos: 69.5,76.5
+ parent: 1
+ - uid: 27168
+ components:
+ - type: Transform
+ pos: 75.5,49.5
+ parent: 1
+ - uid: 34539
+ components:
+ - type: Transform
+ pos: 160.5,76.5
+ parent: 1
+- proto: Flash
+ entities:
+ - uid: 13645
+ components:
+ - type: Transform
+ pos: 32.98226,64.61545
+ parent: 1
+ - uid: 22743
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 135.30386,65.6239
+ parent: 1
+ - uid: 22953
+ components:
+ - type: Transform
+ pos: 144.52515,67.61508
+ parent: 1
+ - uid: 22954
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 154.3164,58.696693
+ parent: 1
+ - uid: 22955
+ components:
+ - type: Transform
+ pos: 152.02014,66.68728
+ parent: 1
+ - uid: 30328
+ components:
+ - type: Transform
+ pos: 95.6445,112.5665
+ parent: 1
+- proto: FlashlightLantern
+ entities:
+ - uid: 16136
+ components:
+ - type: Transform
+ pos: 93.5,121.5
+ parent: 1
+ - uid: 36664
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.45459,60.995117
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 19863
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19863
+ - type: ActionsContainer
+- proto: FlashlightSeclite
+ entities:
+ - uid: 15306
+ components:
+ - type: Transform
+ pos: 153.5,152.5
+ parent: 1
+ - uid: 22657
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 153.14178,58.45595
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 20506
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20506
+ - type: ActionsContainer
+ - uid: 22658
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.35611,58.58867
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 20855
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20855
+ - type: ActionsContainer
+- proto: FlippoLighter
+ entities:
+ - uid: 34597
+ components:
+ - type: Transform
+ pos: 155.76785,86.17871
+ parent: 1
+- proto: FloodlightBroken
+ entities:
+ - uid: 33535
+ components:
+ - type: Transform
+ pos: 116.779175,27.51175
+ parent: 1
+ - uid: 33536
+ components:
+ - type: Transform
+ pos: 116.279724,27.51175
+ parent: 1
+- proto: FloorDrain
+ entities:
+ - uid: 13485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17094
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,102.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 23058
+ components:
+ - type: Transform
+ pos: 129.5,49.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 23625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,84.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 25689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,93.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 28166
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 29576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,122.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorTileItemEighties
+ entities:
+ - uid: 26453
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 124.5533,103.70149
+ parent: 1
+ - type: Stack
+ count: 30
+- proto: FloorTileItemSteel
+ entities:
+ - uid: 31766
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 87.56043,86.67213
+ parent: 1
+ - type: Stack
+ count: 5
+- proto: FloorWaterEntity
+ entities:
+ - uid: 24108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,85.5
+ parent: 1
+ - uid: 24109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,84.5
+ parent: 1
+ - uid: 24110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,83.5
+ parent: 1
+ - uid: 24111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,82.5
+ parent: 1
+ - uid: 24112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,81.5
+ parent: 1
+ - uid: 24113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,85.5
+ parent: 1
+ - uid: 24114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,84.5
+ parent: 1
+ - uid: 24115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,83.5
+ parent: 1
+ - uid: 24116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,82.5
+ parent: 1
+ - uid: 24117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,81.5
+ parent: 1
+ - uid: 24118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,85.5
+ parent: 1
+ - uid: 24119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,84.5
+ parent: 1
+ - uid: 24120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,83.5
+ parent: 1
+ - uid: 24121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,82.5
+ parent: 1
+ - uid: 24122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,81.5
+ parent: 1
+ - uid: 24123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,85.5
+ parent: 1
+ - uid: 24124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,84.5
+ parent: 1
+ - uid: 24125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,82.5
+ parent: 1
+ - uid: 24126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,81.5
+ parent: 1
+ - uid: 24127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,83.5
+ parent: 1
+- proto: FloraTree
+ entities:
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 132.5,82.5
+ parent: 1
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 30631
+ components:
+ - type: Transform
+ pos: 80.2924,67.71148
+ parent: 1
+- proto: FloraTreeLarge
+ entities:
+ - uid: 23432
+ components:
+ - type: Transform
+ pos: 47.5,124.5
+ parent: 1
+ - uid: 32994
+ components:
+ - type: Transform
+ pos: 135.4169,80.63467
+ parent: 1
+- proto: FloraTreeStump
+ entities:
+ - uid: 30370
+ components:
+ - type: Transform
+ pos: 83.84448,67.888565
+ parent: 1
+- proto: FoamBlade
+ entities:
+ - uid: 26742
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 107.63894,64.48506
+ parent: 1
+- proto: FoamCrossbow
+ entities:
+ - uid: 26739
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 104.52089,64.69341
+ parent: 1
+- proto: FoamCutlass
+ entities:
+ - uid: 26740
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 107.667625,64.4946
+ parent: 1
+- proto: FolderSpawner
+ entities:
+ - uid: 4747
+ components:
+ - type: Transform
+ pos: 42.51443,46.481495
+ parent: 1
+ - uid: 13688
+ components:
+ - type: Transform
+ pos: 46.512775,66.11094
+ parent: 1
+ - uid: 13689
+ components:
+ - type: Transform
+ pos: 46.794025,66.5901
+ parent: 1
+ - uid: 13690
+ components:
+ - type: Transform
+ pos: 52.48501,61.60936
+ parent: 1
+ - uid: 13699
+ components:
+ - type: Transform
+ pos: 50.504868,21.575989
+ parent: 1
+ - uid: 13700
+ components:
+ - type: Transform
+ pos: 54.53611,26.513496
+ parent: 1
+ - uid: 13708
+ components:
+ - type: Transform
+ pos: 55.57418,52.593765
+ parent: 1
+ - uid: 23417
+ components:
+ - type: Transform
+ pos: 80.42439,53.24668
+ parent: 1
+ - uid: 23770
+ components:
+ - type: Transform
+ pos: 56.84047,59.38771
+ parent: 1
+ - uid: 23771
+ components:
+ - type: Transform
+ pos: 56.51408,59.693268
+ parent: 1
+ - uid: 23773
+ components:
+ - type: Transform
+ pos: 35.51894,91.40594
+ parent: 1
+ - uid: 23774
+ components:
+ - type: Transform
+ pos: 40.352272,89.33302
+ parent: 1
+ - uid: 28738
+ components:
+ - type: Transform
+ pos: 92.61783,48.61313
+ parent: 1
+ - uid: 35617
+ components:
+ - type: Transform
+ pos: 68.61028,164.4226
+ parent: 1
+- proto: FoodApple
+ entities:
+ - uid: 11962
+ components:
+ - type: Transform
+ pos: 102.5,161.5
+ parent: 1
+- proto: FoodBakedCookie
+ entities:
+ - uid: 34691
+ components:
+ - type: Transform
+ pos: 161.5,65.5
+ parent: 1
+- proto: FoodBakedCookieRaisin
+ entities:
+ - uid: 19554
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 56.406578,132.32835
+ parent: 1
+ - uid: 34024
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.859146,133.51724
+ parent: 1
+- proto: FoodBanana
+ entities:
+ - uid: 25170
+ components:
+ - type: Transform
+ pos: 49.5,48.5
+ parent: 1
+- proto: FoodBoxDonkpocketTeriyaki
+ entities:
+ - uid: 16583
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+- proto: FoodBoxDonut
+ entities:
+ - uid: 30128
+ components:
+ - type: Transform
+ pos: 142.42981,138.46648
+ parent: 1
+- proto: FoodBoxPizzaFilled
+ entities:
+ - uid: 26684
+ components:
+ - type: Transform
+ pos: 120.50048,112.75305
+ parent: 1
+ - uid: 30442
+ components:
+ - type: Transform
+ pos: 124.55523,103.64611
+ parent: 1
+- proto: FoodBreadBaguette
+ entities:
+ - uid: 32296
+ components:
+ - type: Transform
+ rot: -194.7787445225668 rad
+ pos: 126.485794,43.59578
+ parent: 1
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: 38.5,125.5
+ parent: 1
+ - uid: 22886
+ components:
+ - type: Transform
+ pos: 35.5,108.5
+ parent: 1
+ - uid: 33552
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 102.46174,28.731365
+ parent: 1
+ - uid: 34540
+ components:
+ - type: Transform
+ pos: 162.5,48.5
+ parent: 1
+- proto: FoodBreadPlain
+ entities:
+ - uid: 37391
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 75.449486,67.63112
+ parent: 1
+- proto: FoodBurgerMcrib
+ entities:
+ - uid: 23117
+ components:
+ - type: Transform
+ pos: 147.60422,52.473843
+ parent: 1
+- proto: FoodBurgerMime
+ entities:
+ - uid: 26767
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 99.53356,60.41597
+ parent: 1
+- proto: FoodBurgerRobot
+ entities:
+ - uid: 20416
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 63.502007,96.42015
+ parent: 1
+- proto: FoodBurgerXeno
+ entities:
+ - uid: 20475
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.511524,107.538055
+ parent: 1
+- proto: FoodCakeAppleSlice
+ entities:
+ - uid: 34564
+ components:
+ - type: Transform
+ pos: 158.5,75.5
+ parent: 1
+- proto: FoodCakeSpacemanSlice
+ entities:
+ - uid: 32105
+ components:
+ - type: MetaData
+ desc: A spaceman's trumpet frosted cake.
+ name: slice of spacemann's cake
+ - type: Transform
+ pos: 110.482544,99.59047
+ parent: 1
+- proto: FoodCartCold
+ entities:
+ - uid: 33267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,91.5
+ parent: 1
+- proto: FoodCartHot
+ entities:
+ - uid: 37427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,96.5
+ parent: 1
+- proto: FoodCondimentBottleEnzyme
+ entities:
+ - uid: 27380
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 117.7593,101.903946
+ parent: 1
+- proto: FoodCondimentBottleHotsauce
+ entities:
+ - uid: 26643
+ components:
+ - type: Transform
+ pos: 112.283844,104.58257
+ parent: 1
+- proto: FoodCondimentBottleKetchup
+ entities:
+ - uid: 26642
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 112.627594,104.57216
+ parent: 1
+- proto: FoodDonutCaramel
+ entities:
+ - uid: 10311
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.70483,142.64963
+ parent: 1
+- proto: FoodDonutChocolate
+ entities:
+ - uid: 10310
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.45483,142.38112
+ parent: 1
+- proto: FoodDonutHomer
+ entities:
+ - uid: 10325
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.2465,142.64038
+ parent: 1
+- proto: FoodDonutSpaceman
+ entities:
+ - uid: 10312
+ components:
+ - type: Transform
+ pos: 137.5347,145.6211
+ parent: 1
+- proto: FoodFrozenFreezy
+ entities:
+ - uid: 26450
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+- proto: FoodFrozenSandwichStrawberry
+ entities:
+ - uid: 19955
+ components:
+ - type: Transform
+ pos: 119.61484,93.92325
+ parent: 1
+- proto: FoodFrozenSnowconeClown
+ entities:
+ - uid: 27405
+ components:
+ - type: Transform
+ pos: 107.220566,56.786407
+ parent: 1
+- proto: FoodFrozenSnowconeMime
+ entities:
+ - uid: 27406
+ components:
+ - type: Transform
+ pos: 98.604836,60.272522
+ parent: 1
+- proto: FoodGrape
+ entities:
+ - uid: 19558
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.71238,132.77524
+ parent: 1
+ - uid: 32991
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 57.18892,134.0457
+ parent: 1
+ - uid: 34021
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 56.659832,134.83932
+ parent: 1
+- proto: FoodMeat
+ entities:
+ - uid: 34524
+ components:
+ - type: Transform
+ pos: 156.31778,42.554203
+ parent: 1
+ - uid: 34528
+ components:
+ - type: Transform
+ pos: 155.89923,43.995697
+ parent: 1
+ - uid: 34535
+ components:
+ - type: Transform
+ rot: -175.9291886010281 rad
+ pos: 156.52957,43.19607
+ parent: 1
+- proto: FoodMeatRotten
+ entities:
+ - uid: 33559
+ components:
+ - type: Transform
+ pos: 122.5,38.5
+ parent: 1
+- proto: FoodNoodlesSpesslaw
+ entities:
+ - uid: 1523
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 106.15585,39.57194
+ parent: 1
+- proto: FoodPieBananaCream
+ entities:
+ - uid: 26772
+ components:
+ - type: Transform
+ pos: 106.21408,56.485596
+ parent: 1
+ - uid: 26773
+ components:
+ - type: Transform
+ pos: 106.24803,56.72942
+ parent: 1
+- proto: FoodPizzaMoldySlice
+ entities:
+ - uid: 9266
+ components:
+ - type: Transform
+ pos: 42.5,123.5
+ parent: 1
+ - uid: 16335
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.648132,115.63224
+ parent: 1
+ - uid: 33550
+ components:
+ - type: Transform
+ rot: -1.3100631690576847E-14 rad
+ pos: 98.85063,26.207417
+ parent: 1
+ - uid: 33561
+ components:
+ - type: Transform
+ pos: 122.58568,36.756916
+ parent: 1
+ - uid: 33562
+ components:
+ - type: Transform
+ pos: 122.25235,36.770805
+ parent: 1
+ - uid: 33563
+ components:
+ - type: Transform
+ pos: 122.1829,36.45136
+ parent: 1
+ - uid: 33564
+ components:
+ - type: Transform
+ pos: 122.53012,36.45136
+ parent: 1
+ - uid: 34541
+ components:
+ - type: Transform
+ pos: 161.5,50.5
+ parent: 1
+- proto: FoodPlate
+ entities:
+ - uid: 1936
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 106.16974,39.620552
+ parent: 1
+ - uid: 4102
+ components:
+ - type: Transform
+ pos: 46.499126,50.44821
+ parent: 1
+ - uid: 23037
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 25168
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 46.494495,50.749138
+ parent: 1
+ - uid: 26571
+ components:
+ - type: Transform
+ pos: 113.478195,97.01262
+ parent: 1
+ - uid: 26572
+ components:
+ - type: Transform
+ pos: 113.48437,96.51262
+ parent: 1
+ - uid: 26573
+ components:
+ - type: Transform
+ pos: 112.48128,96.51879
+ parent: 1
+ - uid: 26574
+ components:
+ - type: Transform
+ pos: 112.478195,97.00645
+ parent: 1
+ - uid: 26577
+ components:
+ - type: Transform
+ pos: 112.48335,96.76889
+ parent: 1
+ - uid: 26578
+ components:
+ - type: Transform
+ pos: 113.46483,96.76889
+ parent: 1
+- proto: FoodPlateSmallTrash
+ entities:
+ - uid: 33539
+ components:
+ - type: Transform
+ pos: 100.27154,26.038002
+ parent: 1
+- proto: FoodPlateTin
+ entities:
+ - uid: 26582
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 122.460686,104.14006
+ parent: 1
+ - uid: 26583
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 122.54402,103.79284
+ parent: 1
+- proto: FoodPoppy
+ entities:
+ - uid: 27411
+ components:
+ - type: Transform
+ pos: 82.69254,76.55759
+ parent: 1
+ - uid: 36006
+ components:
+ - type: Transform
+ pos: 48.964294,122.71123
+ parent: 1
+ - uid: 36007
+ components:
+ - type: Transform
+ pos: 46.818462,124.63484
+ parent: 1
+- proto: FoodRiceGumbo
+ entities:
+ - uid: 21604
+ components:
+ - type: Transform
+ pos: 110.51361,57.701256
+ parent: 1
+- proto: FoodSaladValid
+ entities:
+ - uid: 23127
+ components:
+ - type: Transform
+ pos: 148.48964,48.713425
+ parent: 1
+- proto: FoodShakerPepper
+ entities:
+ - uid: 26609
+ components:
+ - type: Transform
+ pos: 118.5,108.5
+ parent: 1
+- proto: FoodShakerSalt
+ entities:
+ - uid: 18574
+ components:
+ - type: Transform
+ pos: 42.5,124.5
+ parent: 1
+ - uid: 26608
+ components:
+ - type: Transform
+ pos: 98.5,108.5
+ parent: 1
+- proto: FoodSnackEnergy
+ entities:
+ - uid: 26889
+ components:
+ - type: Transform
+ pos: 98.5296,84.59
+ parent: 1
+- proto: FoodSnackPopcorn
+ entities:
+ - uid: 26875
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 105.945145,72.56824
+ parent: 1
+- proto: FoodSnackRaisins
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.725636,133.70143
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 56.3183,134.3746
+ parent: 1
+ - uid: 34022
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 57.6564,133.54198
+ parent: 1
+- proto: FoodSnackSemki
+ entities:
+ - uid: 5084
+ components:
+ - type: Transform
+ pos: 97.809265,96.53194
+ parent: 1
+ - uid: 5116
+ components:
+ - type: Transform
+ pos: 97.50744,96.64693
+ parent: 1
+- proto: FoodSnackSyndi
+ entities:
+ - uid: 33567
+ components:
+ - type: Transform
+ pos: 122.55096,37.52775
+ parent: 1
+- proto: FoodSoupChiliClown
+ entities:
+ - uid: 26747
+ components:
+ - type: Transform
+ pos: 107.46935,56.64298
+ parent: 1
+- proto: FoodSoupChiliHot
+ entities:
+ - uid: 27384
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 118.26624,102.43867
+ parent: 1
+- proto: FoodSoupClown
+ entities:
+ - uid: 30031
+ components:
+ - type: Transform
+ pos: 145.46883,60.96853
+ parent: 1
+- proto: FoodSoupEscargot
+ entities:
+ - uid: 7988
+ components:
+ - type: Transform
+ rot: -201.06192982974636 rad
+ pos: 126.78421,43.42259
+ parent: 1
+- proto: FoodTartGrape
+ entities:
+ - uid: 19557
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.37808,132.98724
+ parent: 1
+- proto: FoodTinBeans
+ entities:
+ - uid: 33510
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 98.51259,28.553677
+ parent: 1
+- proto: FoodTinPeachesMaint
+ entities:
+ - uid: 33504
+ components:
+ - type: Transform
+ pos: 101.61907,27.424046
+ parent: 1
+ - uid: 34068
+ components:
+ - type: Transform
+ pos: 53.503582,44.877876
+ parent: 1
+ - uid: 34544
+ components:
+ - type: Transform
+ rot: -194.7787445225668 rad
+ pos: 161.25739,45.757877
+ parent: 1
+- proto: Fork
+ entities:
+ - uid: 26594
+ components:
+ - type: Transform
+ pos: 104.31464,104.51566
+ parent: 1
+ - uid: 27381
+ components:
+ - type: Transform
+ pos: 104.4918,104.48849
+ parent: 1
+- proto: ForkPlastic
+ entities:
+ - uid: 23040
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 129.15233,50.581802
+ parent: 1
+- proto: FrenchHornInstrument
+ entities:
+ - uid: 7989
+ components:
+ - type: Transform
+ pos: 127.5,43.5
+ parent: 1
+ - uid: 31925
+ components:
+ - type: Transform
+ pos: 132.5,72.5
+ parent: 1
+- proto: GameMasterCircuitBoard
+ entities:
+ - uid: 13262
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.632015,39.10709
+ parent: 1
+- proto: GasAnalyzer
+ entities:
+ - uid: 20940
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 46.37894,103.55269
+ parent: 1
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 32078
+ components:
+ - type: Transform
+ pos: 52.5,147.5
+ parent: 1
+ - uid: 33537
+ components:
+ - type: Transform
+ pos: 120.5,22.5
+ parent: 1
+ - uid: 33538
+ components:
+ - type: Transform
+ pos: 118.5,23.5
+ parent: 1
+- proto: GasFilter
+ entities:
+ - uid: 34495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,45.5
+ parent: 1
+- proto: GasFilterFlipped
+ entities:
+ - uid: 4386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,37.5
+ parent: 1
+ - uid: 16959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasMinerCarbonDioxide
+ entities:
+ - uid: 30677
+ components:
+ - type: Transform
+ pos: 63.5,143.5
+ parent: 1
+- proto: GasMinerNitrogen
+ entities:
+ - uid: 30626
+ components:
+ - type: Transform
+ pos: 64.5,131.5
+ parent: 1
+- proto: GasMinerOxygenStationLarge
+ entities:
+ - uid: 35068
+ components:
+ - type: Transform
+ pos: 65.5,127.5
+ parent: 1
+- proto: GasMinerWaterVapor
+ entities:
+ - uid: 30807
+ components:
+ - type: Transform
+ pos: 63.5,135.5
+ parent: 1
+- proto: GasMixer
+ entities:
+ - uid: 36921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasOutletInjector
+ entities:
+ - uid: 7375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 19678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,130.5
+ parent: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 7382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 19680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25731
+ components:
+ - type: Transform
+ pos: 117.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,132.5
+ parent: 1
+- proto: GasPipeBend
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 53.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: 151.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: 157.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2660
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 3001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3103
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3581
+ components:
+ - type: Transform
+ pos: 150.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4320
+ components:
+ - type: Transform
+ pos: 89.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4428
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4739
+ components:
+ - type: Transform
+ pos: 143.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4833
+ components:
+ - type: Transform
+ pos: 135.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5265
+ components:
+ - type: Transform
+ pos: 88.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5413
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5456
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5734
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7300
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7393
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7766
+ components:
+ - type: Transform
+ pos: 91.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8636
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8739
+ components:
+ - type: Transform
+ pos: 44.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9120
+ components:
+ - type: Transform
+ pos: 121.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9121
+ components:
+ - type: Transform
+ pos: 123.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9268
+ components:
+ - type: Transform
+ pos: 35.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9461
+ components:
+ - type: Transform
+ pos: 113.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9505
+ components:
+ - type: Transform
+ pos: 113.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9676
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9767
+ components:
+ - type: Transform
+ pos: 65.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9773
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9774
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9775
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9778
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9826
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10334
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10488
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10495
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10503
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10570
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10608
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10670
+ components:
+ - type: Transform
+ pos: 38.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10671
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11180
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11182
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11410
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11899
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12041
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12933
+ components:
+ - type: Transform
+ pos: 52.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13163
+ components:
+ - type: Transform
+ pos: 50.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14047
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14544
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14611
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14643
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14660
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14670
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14721
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14816
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14823
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14839
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15277
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15333
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15337
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15438
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,136.5
+ parent: 1
+ - uid: 16673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16715
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: 68.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16776
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16874
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16887
+ components:
+ - type: Transform
+ pos: 65.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16907
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16947
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16973
+ components:
+ - type: Transform
+ pos: 67.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16989
+ components:
+ - type: Transform
+ pos: 88.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17056
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17069
+ components:
+ - type: Transform
+ pos: 52.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17084
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18405
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18444
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18478
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18500
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18506
+ components:
+ - type: Transform
+ pos: 161.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18549
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18717
+ components:
+ - type: Transform
+ pos: 25.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19041
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19628
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19658
+ components:
+ - type: Transform
+ pos: 39.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19695
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19769
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19835
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20392
+ components:
+ - type: Transform
+ pos: 39.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21443
+ components:
+ - type: Transform
+ pos: 139.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21479
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21617
+ components:
+ - type: Transform
+ pos: 126.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21618
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21694
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21715
+ components:
+ - type: Transform
+ pos: 149.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21778
+ components:
+ - type: Transform
+ pos: 144.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22175
+ components:
+ - type: Transform
+ pos: 149.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22224
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22563
+ components:
+ - type: Transform
+ pos: 130.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22586
+ components:
+ - type: Transform
+ pos: 122.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22590
+ components:
+ - type: Transform
+ pos: 160.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23181
+ components:
+ - type: Transform
+ pos: 124.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23264
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23288
+ components:
+ - type: Transform
+ pos: 120.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23479
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,37.5
+ parent: 1
+ - uid: 23517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23519
+ components:
+ - type: Transform
+ pos: 22.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23537
+ components:
+ - type: Transform
+ pos: 94.5,37.5
+ parent: 1
+ - uid: 23551
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23570
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23583
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23595
+ components:
+ - type: Transform
+ pos: 20.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23662
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23669
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23673
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23739
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24247
+ components:
+ - type: Transform
+ pos: 147.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24248
+ components:
+ - type: Transform
+ pos: 150.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24781
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24784
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25123
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25191
+ components:
+ - type: Transform
+ pos: 37.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25221
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25284
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25674
+ components:
+ - type: Transform
+ pos: 98.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25675
+ components:
+ - type: Transform
+ pos: 100.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25710
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25802
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25934
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26015
+ components:
+ - type: Transform
+ pos: 86.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26017
+ components:
+ - type: Transform
+ pos: 89.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26097
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26099
+ components:
+ - type: Transform
+ pos: 114.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26452
+ components:
+ - type: Transform
+ pos: 137.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28217
+ components:
+ - type: Transform
+ pos: 63.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28533
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28541
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28543
+ components:
+ - type: Transform
+ pos: 157.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29148
+ components:
+ - type: Transform
+ pos: 92.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29227
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29252
+ components:
+ - type: Transform
+ pos: 144.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30179
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30382
+ components:
+ - type: Transform
+ pos: 137.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32431
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33257
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34071
+ components:
+ - type: Transform
+ pos: 102.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34130
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34357
+ components:
+ - type: Transform
+ pos: 152.5,45.5
+ parent: 1
+ - uid: 34970
+ components:
+ - type: Transform
+ pos: 52.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35011
+ components:
+ - type: Transform
+ pos: 163.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35455
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36753
+ components:
+ - type: Transform
+ pos: 87.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,146.5
+ parent: 1
+ - uid: 36900
+ components:
+ - type: Transform
+ pos: 81.5,148.5
+ parent: 1
+ - uid: 36902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36903
+ components:
+ - type: Transform
+ pos: 84.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36997
+ components:
+ - type: Transform
+ pos: 21.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,110.5
+ parent: 1
+ - uid: 37211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 42.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2498
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3406
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3582
+ components:
+ - type: Transform
+ pos: 148.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3711
+ components:
+ - type: Transform
+ pos: 143.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4714
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4912
+ components:
+ - type: Transform
+ pos: 105.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5090
+ components:
+ - type: Transform
+ pos: 93.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5424
+ components:
+ - type: Transform
+ pos: 123.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7423
+ components:
+ - type: Transform
+ pos: 93.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7486
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7532
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15280
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16765
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16855
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19462
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20174
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21386
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21436
+ components:
+ - type: Transform
+ pos: 126.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21482
+ components:
+ - type: Transform
+ pos: 139.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21620
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21714
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22607
+ components:
+ - type: Transform
+ pos: 133.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23346
+ components:
+ - type: Transform
+ pos: 95.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25311
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorDistribution
+ entities:
+ - uid: 26271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorMixedAir
+ entities:
+ - uid: 19729
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Cryogenics)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,91.5
+ parent: 1
+ - type: Label
+ currentLabel: Cryogenics
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+ - uid: 19734
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Server room)
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - type: Label
+ currentLabel: Server room
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+ - uid: 19744
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Freezer)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,91.5
+ parent: 1
+ - type: Label
+ currentLabel: Freezer
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+- proto: GasPipeSensorTEGCold
+ entities:
+ - uid: 36884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: GasPipeSensorTEGHot
+ entities:
+ - uid: 36896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasPipeSensorWaste
+ entities:
+ - uid: 26272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 150.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 146.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2304
+ components:
+ - type: Transform
+ pos: 82.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2609
+ components:
+ - type: Transform
+ pos: 84.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2725
+ components:
+ - type: Transform
+ pos: 94.5,35.5
+ parent: 1
+ - uid: 2808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3088
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3089
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3095
+ components:
+ - type: Transform
+ pos: 122.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3172
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3254
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3255
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3256
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3366
+ components:
+ - type: Transform
+ pos: 72.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3477
+ components:
+ - type: Transform
+ pos: 127.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3602
+ components:
+ - type: Transform
+ pos: 84.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3612
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3643
+ components:
+ - type: Transform
+ pos: 82.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 3680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3690
+ components:
+ - type: Transform
+ pos: 108.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3702
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3720
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,130.5
+ parent: 1
+ - uid: 4028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4039
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4051
+ components:
+ - type: Transform
+ pos: 90.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4096
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4115
+ components:
+ - type: Transform
+ pos: 106.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4117
+ components:
+ - type: Transform
+ pos: 106.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4118
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4161
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: 96.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4367
+ components:
+ - type: Transform
+ pos: 84.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4375
+ components:
+ - type: Transform
+ pos: 92.5,36.5
+ parent: 1
+ - uid: 4414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4421
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 4425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4427
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4457
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4536
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 4561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4707
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4803
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4838
+ components:
+ - type: Transform
+ pos: 103.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4873
+ components:
+ - type: Transform
+ pos: 84.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4943
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5009
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5011
+ components:
+ - type: Transform
+ pos: 143.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5018
+ components:
+ - type: Transform
+ pos: 137.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5202
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5461
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5730
+ components:
+ - type: Transform
+ pos: 89.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6379
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6434
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6473
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,44.5
+ parent: 1
+ - uid: 6707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,45.5
+ parent: 1
+ - uid: 6718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,45.5
+ parent: 1
+ - uid: 6722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7181
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7185
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7251
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7389
+ components:
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7498
+ components:
+ - type: Transform
+ pos: 55.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7499
+ components:
+ - type: Transform
+ pos: 55.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7500
+ components:
+ - type: Transform
+ pos: 55.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7501
+ components:
+ - type: Transform
+ pos: 55.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7503
+ components:
+ - type: Transform
+ pos: 55.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7504
+ components:
+ - type: Transform
+ pos: 55.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7505
+ components:
+ - type: Transform
+ pos: 55.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7506
+ components:
+ - type: Transform
+ pos: 55.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7507
+ components:
+ - type: Transform
+ pos: 55.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7509
+ components:
+ - type: Transform
+ pos: 55.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7510
+ components:
+ - type: Transform
+ pos: 55.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7511
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7512
+ components:
+ - type: Transform
+ pos: 55.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7514
+ components:
+ - type: Transform
+ pos: 55.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7515
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7517
+ components:
+ - type: Transform
+ pos: 55.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7518
+ components:
+ - type: Transform
+ pos: 55.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7520
+ components:
+ - type: Transform
+ pos: 55.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7522
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7523
+ components:
+ - type: Transform
+ pos: 55.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7524
+ components:
+ - type: Transform
+ pos: 55.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7525
+ components:
+ - type: Transform
+ pos: 55.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7526
+ components:
+ - type: Transform
+ pos: 55.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7527
+ components:
+ - type: Transform
+ pos: 55.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7528
+ components:
+ - type: Transform
+ pos: 55.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7529
+ components:
+ - type: Transform
+ pos: 55.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7530
+ components:
+ - type: Transform
+ pos: 55.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7531
+ components:
+ - type: Transform
+ pos: 55.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7534
+ components:
+ - type: Transform
+ pos: 55.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7535
+ components:
+ - type: Transform
+ pos: 55.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7536
+ components:
+ - type: Transform
+ pos: 55.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: 55.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7538
+ components:
+ - type: Transform
+ pos: 55.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7540
+ components:
+ - type: Transform
+ pos: 55.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7541
+ components:
+ - type: Transform
+ pos: 55.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7542
+ components:
+ - type: Transform
+ pos: 55.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7543
+ components:
+ - type: Transform
+ pos: 55.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7546
+ components:
+ - type: Transform
+ pos: 55.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7660
+ components:
+ - type: Transform
+ pos: 72.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7683
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7684
+ components:
+ - type: Transform
+ pos: 65.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7685
+ components:
+ - type: Transform
+ pos: 65.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7686
+ components:
+ - type: Transform
+ pos: 65.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7687
+ components:
+ - type: Transform
+ pos: 65.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7723
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7724
+ components:
+ - type: Transform
+ pos: 71.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7769
+ components:
+ - type: Transform
+ pos: 70.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7770
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7772
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7773
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7774
+ components:
+ - type: Transform
+ pos: 70.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7775
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7776
+ components:
+ - type: Transform
+ pos: 70.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7842
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7946
+ components:
+ - type: Transform
+ pos: 118.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7947
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7948
+ components:
+ - type: Transform
+ pos: 120.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7949
+ components:
+ - type: Transform
+ pos: 120.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7950
+ components:
+ - type: Transform
+ pos: 120.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7951
+ components:
+ - type: Transform
+ pos: 120.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7953
+ components:
+ - type: Transform
+ pos: 120.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7954
+ components:
+ - type: Transform
+ pos: 120.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7955
+ components:
+ - type: Transform
+ pos: 120.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7956
+ components:
+ - type: Transform
+ pos: 120.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7957
+ components:
+ - type: Transform
+ pos: 120.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7958
+ components:
+ - type: Transform
+ pos: 120.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7959
+ components:
+ - type: Transform
+ pos: 120.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7960
+ components:
+ - type: Transform
+ pos: 120.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7961
+ components:
+ - type: Transform
+ pos: 120.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7962
+ components:
+ - type: Transform
+ pos: 120.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7963
+ components:
+ - type: Transform
+ pos: 120.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7965
+ components:
+ - type: Transform
+ pos: 120.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7966
+ components:
+ - type: Transform
+ pos: 120.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7967
+ components:
+ - type: Transform
+ pos: 120.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7968
+ components:
+ - type: Transform
+ pos: 120.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7969
+ components:
+ - type: Transform
+ pos: 120.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7983
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7985
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8029
+ components:
+ - type: Transform
+ pos: 83.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8030
+ components:
+ - type: Transform
+ pos: 83.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8032
+ components:
+ - type: Transform
+ pos: 83.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8033
+ components:
+ - type: Transform
+ pos: 83.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8108
+ components:
+ - type: Transform
+ pos: 148.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8109
+ components:
+ - type: Transform
+ pos: 148.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8110
+ components:
+ - type: Transform
+ pos: 148.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8111
+ components:
+ - type: Transform
+ pos: 148.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8112
+ components:
+ - type: Transform
+ pos: 148.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8113
+ components:
+ - type: Transform
+ pos: 148.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8114
+ components:
+ - type: Transform
+ pos: 148.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8115
+ components:
+ - type: Transform
+ pos: 148.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8116
+ components:
+ - type: Transform
+ pos: 148.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8117
+ components:
+ - type: Transform
+ pos: 148.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8119
+ components:
+ - type: Transform
+ pos: 148.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8120
+ components:
+ - type: Transform
+ pos: 148.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8121
+ components:
+ - type: Transform
+ pos: 148.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8122
+ components:
+ - type: Transform
+ pos: 148.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8123
+ components:
+ - type: Transform
+ pos: 148.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8124
+ components:
+ - type: Transform
+ pos: 148.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8126
+ components:
+ - type: Transform
+ pos: 148.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8176
+ components:
+ - type: Transform
+ pos: 148.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8208
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8209
+ components:
+ - type: Transform
+ pos: 146.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8210
+ components:
+ - type: Transform
+ pos: 146.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8211
+ components:
+ - type: Transform
+ pos: 146.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8212
+ components:
+ - type: Transform
+ pos: 146.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8213
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8214
+ components:
+ - type: Transform
+ pos: 146.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8215
+ components:
+ - type: Transform
+ pos: 146.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8216
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8233
+ components:
+ - type: Transform
+ pos: 150.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8245
+ components:
+ - type: Transform
+ pos: 150.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8246
+ components:
+ - type: Transform
+ pos: 150.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8247
+ components:
+ - type: Transform
+ pos: 150.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8248
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8249
+ components:
+ - type: Transform
+ pos: 150.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8250
+ components:
+ - type: Transform
+ pos: 150.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8251
+ components:
+ - type: Transform
+ pos: 150.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: 150.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8253
+ components:
+ - type: Transform
+ pos: 150.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8254
+ components:
+ - type: Transform
+ pos: 150.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8255
+ components:
+ - type: Transform
+ pos: 150.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8256
+ components:
+ - type: Transform
+ pos: 150.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8257
+ components:
+ - type: Transform
+ pos: 150.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8258
+ components:
+ - type: Transform
+ pos: 150.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8259
+ components:
+ - type: Transform
+ pos: 150.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8260
+ components:
+ - type: Transform
+ pos: 150.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8261
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8398
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8399
+ components:
+ - type: Transform
+ pos: 129.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8401
+ components:
+ - type: Transform
+ pos: 129.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8402
+ components:
+ - type: Transform
+ pos: 129.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8403
+ components:
+ - type: Transform
+ pos: 129.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8404
+ components:
+ - type: Transform
+ pos: 129.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8405
+ components:
+ - type: Transform
+ pos: 129.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8406
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8407
+ components:
+ - type: Transform
+ pos: 129.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8408
+ components:
+ - type: Transform
+ pos: 129.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8409
+ components:
+ - type: Transform
+ pos: 129.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8410
+ components:
+ - type: Transform
+ pos: 129.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8412
+ components:
+ - type: Transform
+ pos: 129.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8413
+ components:
+ - type: Transform
+ pos: 129.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8414
+ components:
+ - type: Transform
+ pos: 129.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8415
+ components:
+ - type: Transform
+ pos: 129.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8417
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8418
+ components:
+ - type: Transform
+ pos: 129.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8419
+ components:
+ - type: Transform
+ pos: 129.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8420
+ components:
+ - type: Transform
+ pos: 129.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8421
+ components:
+ - type: Transform
+ pos: 129.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8422
+ components:
+ - type: Transform
+ pos: 129.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8423
+ components:
+ - type: Transform
+ pos: 129.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8424
+ components:
+ - type: Transform
+ pos: 129.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8426
+ components:
+ - type: Transform
+ pos: 129.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8427
+ components:
+ - type: Transform
+ pos: 129.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8429
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8430
+ components:
+ - type: Transform
+ pos: 129.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8431
+ components:
+ - type: Transform
+ pos: 129.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8432
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8457
+ components:
+ - type: Transform
+ pos: 131.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8458
+ components:
+ - type: Transform
+ pos: 131.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8459
+ components:
+ - type: Transform
+ pos: 131.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8460
+ components:
+ - type: Transform
+ pos: 131.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8461
+ components:
+ - type: Transform
+ pos: 131.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8462
+ components:
+ - type: Transform
+ pos: 131.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8463
+ components:
+ - type: Transform
+ pos: 131.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8464
+ components:
+ - type: Transform
+ pos: 131.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8587
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8588
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8589
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8590
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8591
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8592
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8594
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8597
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8599
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8602
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8607
+ components:
+ - type: Transform
+ pos: 84.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8608
+ components:
+ - type: Transform
+ pos: 84.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8609
+ components:
+ - type: Transform
+ pos: 84.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8610
+ components:
+ - type: Transform
+ pos: 84.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8611
+ components:
+ - type: Transform
+ pos: 84.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8612
+ components:
+ - type: Transform
+ pos: 84.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8614
+ components:
+ - type: Transform
+ pos: 84.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8615
+ components:
+ - type: Transform
+ pos: 84.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8616
+ components:
+ - type: Transform
+ pos: 84.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8617
+ components:
+ - type: Transform
+ pos: 84.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8639
+ components:
+ - type: Transform
+ pos: 68.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8640
+ components:
+ - type: Transform
+ pos: 68.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8641
+ components:
+ - type: Transform
+ pos: 68.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8642
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8643
+ components:
+ - type: Transform
+ pos: 68.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8644
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8645
+ components:
+ - type: Transform
+ pos: 68.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8647
+ components:
+ - type: Transform
+ pos: 68.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8648
+ components:
+ - type: Transform
+ pos: 68.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8649
+ components:
+ - type: Transform
+ pos: 68.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8650
+ components:
+ - type: Transform
+ pos: 68.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8651
+ components:
+ - type: Transform
+ pos: 68.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8652
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8653
+ components:
+ - type: Transform
+ pos: 68.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8654
+ components:
+ - type: Transform
+ pos: 68.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8655
+ components:
+ - type: Transform
+ pos: 68.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8656
+ components:
+ - type: Transform
+ pos: 68.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8657
+ components:
+ - type: Transform
+ pos: 68.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8658
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8672
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8675
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8676
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8677
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8702
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8715
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8717
+ components:
+ - type: Transform
+ pos: 44.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8718
+ components:
+ - type: Transform
+ pos: 44.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8719
+ components:
+ - type: Transform
+ pos: 44.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8720
+ components:
+ - type: Transform
+ pos: 44.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8721
+ components:
+ - type: Transform
+ pos: 44.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8723
+ components:
+ - type: Transform
+ pos: 44.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8725
+ components:
+ - type: Transform
+ pos: 44.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8726
+ components:
+ - type: Transform
+ pos: 44.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8727
+ components:
+ - type: Transform
+ pos: 44.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8728
+ components:
+ - type: Transform
+ pos: 44.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8729
+ components:
+ - type: Transform
+ pos: 44.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8730
+ components:
+ - type: Transform
+ pos: 44.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8731
+ components:
+ - type: Transform
+ pos: 44.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8732
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8733
+ components:
+ - type: Transform
+ pos: 44.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8734
+ components:
+ - type: Transform
+ pos: 44.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8736
+ components:
+ - type: Transform
+ pos: 44.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8737
+ components:
+ - type: Transform
+ pos: 44.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8738
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8740
+ components:
+ - type: Transform
+ pos: 44.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8746
+ components:
+ - type: Transform
+ pos: 42.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8748
+ components:
+ - type: Transform
+ pos: 42.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8749
+ components:
+ - type: Transform
+ pos: 42.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8750
+ components:
+ - type: Transform
+ pos: 42.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8751
+ components:
+ - type: Transform
+ pos: 42.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8752
+ components:
+ - type: Transform
+ pos: 42.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8753
+ components:
+ - type: Transform
+ pos: 42.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8754
+ components:
+ - type: Transform
+ pos: 42.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8755
+ components:
+ - type: Transform
+ pos: 42.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8756
+ components:
+ - type: Transform
+ pos: 42.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8758
+ components:
+ - type: Transform
+ pos: 42.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8759
+ components:
+ - type: Transform
+ pos: 42.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8761
+ components:
+ - type: Transform
+ pos: 42.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8762
+ components:
+ - type: Transform
+ pos: 42.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8763
+ components:
+ - type: Transform
+ pos: 42.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8764
+ components:
+ - type: Transform
+ pos: 42.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8770
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8793
+ components:
+ - type: Transform
+ pos: 53.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8794
+ components:
+ - type: Transform
+ pos: 53.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8795
+ components:
+ - type: Transform
+ pos: 53.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8796
+ components:
+ - type: Transform
+ pos: 53.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8797
+ components:
+ - type: Transform
+ pos: 53.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8798
+ components:
+ - type: Transform
+ pos: 53.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8799
+ components:
+ - type: Transform
+ pos: 53.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8801
+ components:
+ - type: Transform
+ pos: 53.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8802
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8803
+ components:
+ - type: Transform
+ pos: 51.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8804
+ components:
+ - type: Transform
+ pos: 51.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8805
+ components:
+ - type: Transform
+ pos: 51.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8806
+ components:
+ - type: Transform
+ pos: 51.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8808
+ components:
+ - type: Transform
+ pos: 51.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8809
+ components:
+ - type: Transform
+ pos: 51.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8900
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8901
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8902
+ components:
+ - type: Transform
+ pos: 102.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8903
+ components:
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8931
+ components:
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8932
+ components:
+ - type: Transform
+ pos: 114.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8938
+ components:
+ - type: Transform
+ pos: 95.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8940
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8941
+ components:
+ - type: Transform
+ pos: 95.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8942
+ components:
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8943
+ components:
+ - type: Transform
+ pos: 95.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8944
+ components:
+ - type: Transform
+ pos: 95.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8945
+ components:
+ - type: Transform
+ pos: 95.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8946
+ components:
+ - type: Transform
+ pos: 95.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8947
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8948
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8949
+ components:
+ - type: Transform
+ pos: 95.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8950
+ components:
+ - type: Transform
+ pos: 95.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8951
+ components:
+ - type: Transform
+ pos: 95.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8953
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8954
+ components:
+ - type: Transform
+ pos: 95.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 8956
+ components:
+ - type: Transform
+ pos: 95.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8958
+ components:
+ - type: Transform
+ pos: 95.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8959
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8960
+ components:
+ - type: Transform
+ pos: 95.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8961
+ components:
+ - type: Transform
+ pos: 95.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8962
+ components:
+ - type: Transform
+ pos: 95.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8963
+ components:
+ - type: Transform
+ pos: 95.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8964
+ components:
+ - type: Transform
+ pos: 95.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8965
+ components:
+ - type: Transform
+ pos: 95.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8966
+ components:
+ - type: Transform
+ pos: 95.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8968
+ components:
+ - type: Transform
+ pos: 95.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8969
+ components:
+ - type: Transform
+ pos: 95.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9256
+ components:
+ - type: Transform
+ pos: 83.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 9267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9367
+ components:
+ - type: Transform
+ pos: 20.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9373
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9374
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9375
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9376
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9377
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9378
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9398
+ components:
+ - type: Transform
+ pos: 82.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9402
+ components:
+ - type: Transform
+ pos: 20.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 9432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 9436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,132.5
+ parent: 1
+ - uid: 9437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 9438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 9439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,130.5
+ parent: 1
+ - uid: 9446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9463
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9464
+ components:
+ - type: Transform
+ pos: 105.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9468
+ components:
+ - type: Transform
+ pos: 111.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9469
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9470
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9471
+ components:
+ - type: Transform
+ pos: 111.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9490
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9491
+ components:
+ - type: Transform
+ pos: 113.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9492
+ components:
+ - type: Transform
+ pos: 113.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9493
+ components:
+ - type: Transform
+ pos: 113.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9494
+ components:
+ - type: Transform
+ pos: 113.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9680
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9699
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9700
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9701
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9702
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9704
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9705
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9721
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9722
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9723
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9724
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9725
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9726
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9727
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9728
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9729
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9730
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9755
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9756
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9757
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9759
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9760
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9779
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9780
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9781
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9782
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9783
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9784
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9785
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9799
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9801
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9830
+ components:
+ - type: Transform
+ pos: 99.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9835
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9839
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10347
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10348
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10349
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10350
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10351
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10352
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10353
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10354
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10355
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10373
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10402
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10403
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10404
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10405
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10406
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10407
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10408
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10409
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10410
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10411
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10412
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10429
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10430
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10431
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10447
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10448
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10498
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10499
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10500
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10501
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10550
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10551
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10552
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10553
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10554
+ components:
+ - type: Transform
+ pos: 45.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10578
+ components:
+ - type: Transform
+ pos: 52.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10579
+ components:
+ - type: Transform
+ pos: 52.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10580
+ components:
+ - type: Transform
+ pos: 52.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10581
+ components:
+ - type: Transform
+ pos: 52.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10583
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10584
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10585
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10586
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10587
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10588
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10589
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10590
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10591
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10592
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10597
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10609
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10610
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10611
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10612
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10613
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10614
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10615
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10616
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10617
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10618
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10619
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10644
+ components:
+ - type: Transform
+ pos: 39.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10645
+ components:
+ - type: Transform
+ pos: 39.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10646
+ components:
+ - type: Transform
+ pos: 39.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10647
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10648
+ components:
+ - type: Transform
+ pos: 39.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10649
+ components:
+ - type: Transform
+ pos: 39.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10650
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10651
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10652
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10653
+ components:
+ - type: Transform
+ pos: 39.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10660
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10690
+ components:
+ - type: Transform
+ pos: 39.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10693
+ components:
+ - type: Transform
+ pos: 47.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10694
+ components:
+ - type: Transform
+ pos: 47.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10696
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10697
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10698
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10708
+ components:
+ - type: Transform
+ pos: 45.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10712
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10713
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10771
+ components:
+ - type: Transform
+ pos: 57.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10772
+ components:
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10773
+ components:
+ - type: Transform
+ pos: 57.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10902
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11260
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11266
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11958
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12064
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12153
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12480
+ components:
+ - type: Transform
+ pos: 147.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12517
+ components:
+ - type: Transform
+ pos: 127.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12556
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12924
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12937
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12938
+ components:
+ - type: Transform
+ pos: 50.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12939
+ components:
+ - type: Transform
+ pos: 50.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12940
+ components:
+ - type: Transform
+ pos: 50.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12941
+ components:
+ - type: Transform
+ pos: 50.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13284
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13816
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14059
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14060
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14528
+ components:
+ - type: Transform
+ pos: 123.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14534
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14536
+ components:
+ - type: Transform
+ pos: 129.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14537
+ components:
+ - type: Transform
+ pos: 129.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14575
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14576
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14577
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14578
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14579
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14580
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14581
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14582
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14602
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14604
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14605
+ components:
+ - type: Transform
+ pos: 118.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14606
+ components:
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14607
+ components:
+ - type: Transform
+ pos: 118.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14608
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14609
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14610
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14616
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14617
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14618
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14638
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14639
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14640
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14641
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14710
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14711
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14712
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14713
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14714
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14715
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14716
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14717
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14763
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14764
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14765
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14766
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14767
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14768
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14769
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14805
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14806
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14807
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14808
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14809
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14810
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14828
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15095
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 15283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15295
+ components:
+ - type: Transform
+ pos: 131.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15296
+ components:
+ - type: Transform
+ pos: 131.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15300
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15313
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15314
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15315
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15316
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15317
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,148.5
+ parent: 1
+ - uid: 15323
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15338
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15339
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15340
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15341
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15342
+ components:
+ - type: Transform
+ pos: 128.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15343
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15344
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15345
+ components:
+ - type: Transform
+ pos: 128.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15346
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15358
+ components:
+ - type: Transform
+ pos: 127.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15412
+ components:
+ - type: Transform
+ pos: 81.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15413
+ components:
+ - type: Transform
+ pos: 81.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15414
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15415
+ components:
+ - type: Transform
+ pos: 81.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15416
+ components:
+ - type: Transform
+ pos: 83.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15417
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15465
+ components:
+ - type: Transform
+ pos: 88.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15466
+ components:
+ - type: Transform
+ pos: 88.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15467
+ components:
+ - type: Transform
+ pos: 88.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15468
+ components:
+ - type: Transform
+ pos: 88.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15469
+ components:
+ - type: Transform
+ pos: 88.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15470
+ components:
+ - type: Transform
+ pos: 88.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15472
+ components:
+ - type: Transform
+ pos: 88.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15473
+ components:
+ - type: Transform
+ pos: 88.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15474
+ components:
+ - type: Transform
+ pos: 88.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15475
+ components:
+ - type: Transform
+ pos: 88.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15477
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15478
+ components:
+ - type: Transform
+ pos: 88.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15479
+ components:
+ - type: Transform
+ pos: 88.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15480
+ components:
+ - type: Transform
+ pos: 88.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15481
+ components:
+ - type: Transform
+ pos: 88.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15482
+ components:
+ - type: Transform
+ pos: 88.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15484
+ components:
+ - type: Transform
+ pos: 88.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15485
+ components:
+ - type: Transform
+ pos: 88.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15486
+ components:
+ - type: Transform
+ pos: 88.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15487
+ components:
+ - type: Transform
+ pos: 88.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15488
+ components:
+ - type: Transform
+ pos: 88.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15489
+ components:
+ - type: Transform
+ pos: 88.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15493
+ components:
+ - type: Transform
+ pos: 83.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15650
+ components:
+ - type: Transform
+ pos: 82.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15666
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 15669
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15670
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 15711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15734
+ components:
+ - type: Transform
+ pos: 82.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 15739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,132.5
+ parent: 1
+ - uid: 15740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 15950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16710
+ components:
+ - type: Transform
+ pos: 81.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16717
+ components:
+ - type: Transform
+ pos: 66.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16718
+ components:
+ - type: Transform
+ pos: 66.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16719
+ components:
+ - type: Transform
+ pos: 66.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16720
+ components:
+ - type: Transform
+ pos: 66.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16721
+ components:
+ - type: Transform
+ pos: 66.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16722
+ components:
+ - type: Transform
+ pos: 66.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16723
+ components:
+ - type: Transform
+ pos: 66.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16727
+ components:
+ - type: Transform
+ pos: 66.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16729
+ components:
+ - type: Transform
+ pos: 66.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16730
+ components:
+ - type: Transform
+ pos: 66.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16731
+ components:
+ - type: Transform
+ pos: 66.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: 66.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16733
+ components:
+ - type: Transform
+ pos: 66.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16734
+ components:
+ - type: Transform
+ pos: 68.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16735
+ components:
+ - type: Transform
+ pos: 68.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16736
+ components:
+ - type: Transform
+ pos: 68.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16737
+ components:
+ - type: Transform
+ pos: 68.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16740
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16741
+ components:
+ - type: Transform
+ pos: 68.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16743
+ components:
+ - type: Transform
+ pos: 68.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16744
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: 68.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16746
+ components:
+ - type: Transform
+ pos: 68.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16754
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16755
+ components:
+ - type: Transform
+ pos: 60.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16756
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16757
+ components:
+ - type: Transform
+ pos: 60.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16758
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16759
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16761
+ components:
+ - type: Transform
+ pos: 60.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16763
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16764
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16766
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16767
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16769
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16770
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16771
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16783
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16807
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16832
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16850
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16851
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16852
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16853
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16854
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16856
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16857
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16858
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16859
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16860
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16862
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16863
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16864
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16866
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16867
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16869
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16870
+ components:
+ - type: Transform
+ pos: 108.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16896
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16908
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16946
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16963
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16965
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16966
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16980
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17062
+ components:
+ - type: Transform
+ pos: 75.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: 75.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17781
+ components:
+ - type: Transform
+ pos: 84.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17944
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17973
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17979
+ components:
+ - type: Transform
+ pos: 84.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18290
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18291
+ components:
+ - type: Transform
+ pos: 138.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18296
+ components:
+ - type: Transform
+ pos: 138.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,146.5
+ parent: 1
+ - uid: 18298
+ components:
+ - type: Transform
+ pos: 138.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18299
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18300
+ components:
+ - type: Transform
+ pos: 138.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18301
+ components:
+ - type: Transform
+ pos: 140.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18302
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18303
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18304
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18311
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,148.5
+ parent: 1
+ - uid: 18359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18363
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18364
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18365
+ components:
+ - type: Transform
+ pos: 143.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18368
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18369
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18370
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18406
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18448
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18449
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18450
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18488
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18489
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18490
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18493
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18494
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18496
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18497
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18512
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18532
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18548
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18591
+ components:
+ - type: Transform
+ pos: 72.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18598
+ components:
+ - type: Transform
+ pos: 143.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: 143.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18644
+ components:
+ - type: Transform
+ pos: 136.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18679
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18883
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18890
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18892
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19216
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19348
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19504
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19650
+ components:
+ - type: Transform
+ pos: 39.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19759
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19760
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19761
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19763
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19764
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19765
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19776
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19792
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19793
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19794
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19850
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19851
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19852
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20133
+ components:
+ - type: Transform
+ pos: 82.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20470
+ components:
+ - type: Transform
+ pos: 108.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20494
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20850
+ components:
+ - type: Transform
+ pos: 91.5,36.5
+ parent: 1
+ - uid: 20863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21055
+ components:
+ - type: Transform
+ pos: 84.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21056
+ components:
+ - type: Transform
+ pos: 84.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21057
+ components:
+ - type: Transform
+ pos: 84.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21062
+ components:
+ - type: Transform
+ pos: 90.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21390
+ components:
+ - type: Transform
+ pos: 137.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21392
+ components:
+ - type: Transform
+ pos: 137.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21393
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21395
+ components:
+ - type: Transform
+ pos: 137.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21396
+ components:
+ - type: Transform
+ pos: 137.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21397
+ components:
+ - type: Transform
+ pos: 137.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21398
+ components:
+ - type: Transform
+ pos: 137.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21399
+ components:
+ - type: Transform
+ pos: 137.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21400
+ components:
+ - type: Transform
+ pos: 137.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21401
+ components:
+ - type: Transform
+ pos: 137.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21402
+ components:
+ - type: Transform
+ pos: 137.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21404
+ components:
+ - type: Transform
+ pos: 137.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21405
+ components:
+ - type: Transform
+ pos: 137.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21407
+ components:
+ - type: Transform
+ pos: 137.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21429
+ components:
+ - type: Transform
+ pos: 126.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21430
+ components:
+ - type: Transform
+ pos: 126.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21431
+ components:
+ - type: Transform
+ pos: 126.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21432
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21434
+ components:
+ - type: Transform
+ pos: 126.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21435
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21437
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21438
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21440
+ components:
+ - type: Transform
+ pos: 126.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21441
+ components:
+ - type: Transform
+ pos: 126.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21450
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21454
+ components:
+ - type: Transform
+ pos: 147.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21455
+ components:
+ - type: Transform
+ pos: 147.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21456
+ components:
+ - type: Transform
+ pos: 147.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21458
+ components:
+ - type: Transform
+ pos: 147.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21459
+ components:
+ - type: Transform
+ pos: 147.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21460
+ components:
+ - type: Transform
+ pos: 147.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21461
+ components:
+ - type: Transform
+ pos: 147.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21462
+ components:
+ - type: Transform
+ pos: 147.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21463
+ components:
+ - type: Transform
+ pos: 147.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21464
+ components:
+ - type: Transform
+ pos: 147.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21465
+ components:
+ - type: Transform
+ pos: 147.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21466
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21476
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21480
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21481
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21483
+ components:
+ - type: Transform
+ pos: 139.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21484
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21487
+ components:
+ - type: Transform
+ pos: 139.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21488
+ components:
+ - type: Transform
+ pos: 139.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21489
+ components:
+ - type: Transform
+ pos: 139.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21490
+ components:
+ - type: Transform
+ pos: 139.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21491
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21492
+ components:
+ - type: Transform
+ pos: 139.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21493
+ components:
+ - type: Transform
+ pos: 139.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21494
+ components:
+ - type: Transform
+ pos: 139.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21495
+ components:
+ - type: Transform
+ pos: 139.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21496
+ components:
+ - type: Transform
+ pos: 139.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21497
+ components:
+ - type: Transform
+ pos: 139.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21498
+ components:
+ - type: Transform
+ pos: 139.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21546
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21547
+ components:
+ - type: Transform
+ pos: 149.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21548
+ components:
+ - type: Transform
+ pos: 149.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21549
+ components:
+ - type: Transform
+ pos: 149.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21550
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21551
+ components:
+ - type: Transform
+ pos: 149.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21553
+ components:
+ - type: Transform
+ pos: 149.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21554
+ components:
+ - type: Transform
+ pos: 149.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21555
+ components:
+ - type: Transform
+ pos: 149.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21557
+ components:
+ - type: Transform
+ pos: 149.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21568
+ components:
+ - type: Transform
+ pos: 140.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21634
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21635
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21636
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21637
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21638
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21639
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21640
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21641
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21642
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21643
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21644
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21645
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21646
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21688
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21689
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21695
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21696
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21697
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21704
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21705
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21737
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21738
+ components:
+ - type: Transform
+ pos: 134.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21739
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21752
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21753
+ components:
+ - type: Transform
+ pos: 132.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21754
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21755
+ components:
+ - type: Transform
+ pos: 132.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21756
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21772
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21773
+ components:
+ - type: Transform
+ pos: 144.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21774
+ components:
+ - type: Transform
+ pos: 144.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21775
+ components:
+ - type: Transform
+ pos: 144.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21776
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21975
+ components:
+ - type: Transform
+ pos: 139.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22168
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22206
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22207
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22219
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22220
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22221
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22222
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22231
+ components:
+ - type: Transform
+ pos: 140.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22232
+ components:
+ - type: Transform
+ pos: 140.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22233
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22234
+ components:
+ - type: Transform
+ pos: 140.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22235
+ components:
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22236
+ components:
+ - type: Transform
+ pos: 140.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22237
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22238
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22239
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22240
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22241
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22571
+ components:
+ - type: Transform
+ pos: 126.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22572
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22573
+ components:
+ - type: Transform
+ pos: 126.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22574
+ components:
+ - type: Transform
+ pos: 126.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22575
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22576
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22577
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22617
+ components:
+ - type: Transform
+ pos: 130.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22618
+ components:
+ - type: Transform
+ pos: 130.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22619
+ components:
+ - type: Transform
+ pos: 130.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22620
+ components:
+ - type: Transform
+ pos: 130.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22621
+ components:
+ - type: Transform
+ pos: 130.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22625
+ components:
+ - type: Transform
+ pos: 132.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22956
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23136
+ components:
+ - type: Transform
+ pos: 82.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23137
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23228
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23231
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23233
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23234
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23246
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23247
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23248
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23249
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23300
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23301
+ components:
+ - type: Transform
+ pos: 118.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23302
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23354
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23373
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 23376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23395
+ components:
+ - type: Transform
+ pos: 101.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23452
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23455
+ components:
+ - type: Transform
+ pos: 155.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23472
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23473
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23492
+ components:
+ - type: Transform
+ pos: 157.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23508
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,37.5
+ parent: 1
+ - uid: 23567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 23645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23722
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23731
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23732
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24082
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24096
+ components:
+ - type: Transform
+ pos: 157.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24097
+ components:
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24134
+ components:
+ - type: Transform
+ pos: 157.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24246
+ components:
+ - type: Transform
+ pos: 150.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24332
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24333
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24709
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25082
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25083
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25192
+ components:
+ - type: Transform
+ pos: 137.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25195
+ components:
+ - type: Transform
+ pos: 137.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25213
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25215
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25229
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25241
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25242
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25552
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25557
+ components:
+ - type: Transform
+ pos: 102.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25558
+ components:
+ - type: Transform
+ pos: 102.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25559
+ components:
+ - type: Transform
+ pos: 102.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25560
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25583
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25584
+ components:
+ - type: Transform
+ pos: 112.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25585
+ components:
+ - type: Transform
+ pos: 112.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25590
+ components:
+ - type: Transform
+ pos: 114.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25616
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25640
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25641
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25642
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25643
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25644
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25645
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25646
+ components:
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25647
+ components:
+ - type: Transform
+ pos: 113.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25648
+ components:
+ - type: Transform
+ pos: 113.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25649
+ components:
+ - type: Transform
+ pos: 113.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25665
+ components:
+ - type: Transform
+ pos: 100.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25666
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25667
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25669
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25700
+ components:
+ - type: Transform
+ pos: 122.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25701
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25702
+ components:
+ - type: Transform
+ pos: 122.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25703
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25704
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25705
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25706
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25733
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25734
+ components:
+ - type: Transform
+ pos: 122.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25735
+ components:
+ - type: Transform
+ pos: 122.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25736
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25737
+ components:
+ - type: Transform
+ pos: 122.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25822
+ components:
+ - type: Transform
+ pos: 104.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25823
+ components:
+ - type: Transform
+ pos: 108.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25875
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25876
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25877
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25879
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25880
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25890
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25891
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25892
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25903
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25904
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25905
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25906
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25907
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25910
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25911
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25912
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25913
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25914
+ components:
+ - type: Transform
+ pos: 88.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25915
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25916
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25954
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25955
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25956
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25975
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25983
+ components:
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25984
+ components:
+ - type: Transform
+ pos: 74.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26018
+ components:
+ - type: Transform
+ pos: 89.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26019
+ components:
+ - type: Transform
+ pos: 89.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26020
+ components:
+ - type: Transform
+ pos: 89.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26021
+ components:
+ - type: Transform
+ pos: 89.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26022
+ components:
+ - type: Transform
+ pos: 89.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26023
+ components:
+ - type: Transform
+ pos: 89.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26024
+ components:
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26025
+ components:
+ - type: Transform
+ pos: 89.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26026
+ components:
+ - type: Transform
+ pos: 89.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26027
+ components:
+ - type: Transform
+ pos: 89.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26028
+ components:
+ - type: Transform
+ pos: 89.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26029
+ components:
+ - type: Transform
+ pos: 89.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26030
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26064
+ components:
+ - type: Transform
+ pos: 114.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26065
+ components:
+ - type: Transform
+ pos: 114.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26066
+ components:
+ - type: Transform
+ pos: 114.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26067
+ components:
+ - type: Transform
+ pos: 114.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26068
+ components:
+ - type: Transform
+ pos: 114.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26069
+ components:
+ - type: Transform
+ pos: 114.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26070
+ components:
+ - type: Transform
+ pos: 114.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26071
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26073
+ components:
+ - type: Transform
+ pos: 112.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26074
+ components:
+ - type: Transform
+ pos: 112.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26075
+ components:
+ - type: Transform
+ pos: 112.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26076
+ components:
+ - type: Transform
+ pos: 112.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26077
+ components:
+ - type: Transform
+ pos: 112.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26078
+ components:
+ - type: Transform
+ pos: 112.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26079
+ components:
+ - type: Transform
+ pos: 112.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26080
+ components:
+ - type: Transform
+ pos: 112.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26081
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26105
+ components:
+ - type: Transform
+ pos: 76.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26106
+ components:
+ - type: Transform
+ pos: 76.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26107
+ components:
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26108
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26109
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26110
+ components:
+ - type: Transform
+ pos: 78.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26111
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26112
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26113
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26114
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26116
+ components:
+ - type: Transform
+ pos: 78.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26117
+ components:
+ - type: Transform
+ pos: 78.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26120
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26121
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26124
+ components:
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26125
+ components:
+ - type: Transform
+ pos: 75.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26149
+ components:
+ - type: Transform
+ pos: 152.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26150
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26151
+ components:
+ - type: Transform
+ pos: 152.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26152
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26153
+ components:
+ - type: Transform
+ pos: 155.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26154
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26155
+ components:
+ - type: Transform
+ pos: 155.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26156
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26157
+ components:
+ - type: Transform
+ pos: 158.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26158
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26159
+ components:
+ - type: Transform
+ pos: 158.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26160
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26161
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26162
+ components:
+ - type: Transform
+ pos: 153.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26163
+ components:
+ - type: Transform
+ pos: 156.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26164
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26165
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26166
+ components:
+ - type: Transform
+ pos: 159.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26558
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26600
+ components:
+ - type: Transform
+ pos: 84.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27276
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27621
+ components:
+ - type: Transform
+ pos: 82.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28148
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28214
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28215
+ components:
+ - type: Transform
+ pos: 63.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28516
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28528
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28545
+ components:
+ - type: Transform
+ pos: 147.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28547
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28566
+ components:
+ - type: Transform
+ pos: 157.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29217
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29218
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29241
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29242
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29243
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29244
+ components:
+ - type: Transform
+ pos: 144.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29245
+ components:
+ - type: Transform
+ pos: 144.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29298
+ components:
+ - type: Transform
+ pos: 87.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29827
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29839
+ components:
+ - type: Transform
+ pos: 155.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29944
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30028
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,146.5
+ parent: 1
+ - uid: 30217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,132.5
+ parent: 1
+ - uid: 30252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30548
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30781
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31151
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32013
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,170.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32281
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33207
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33208
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33209
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33210
+ components:
+ - type: Transform
+ pos: 105.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33211
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33212
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33214
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33215
+ components:
+ - type: Transform
+ pos: 105.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33216
+ components:
+ - type: Transform
+ pos: 105.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33217
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33226
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33227
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33228
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33229
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33230
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33231
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33760
+ components:
+ - type: Transform
+ pos: 64.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33761
+ components:
+ - type: Transform
+ pos: 64.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33762
+ components:
+ - type: Transform
+ pos: 64.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33875
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33887
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33888
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34105
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34358
+ components:
+ - type: Transform
+ pos: 148.5,44.5
+ parent: 1
+ - uid: 34367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34433
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,44.5
+ parent: 1
+ - uid: 34625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34648
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34657
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34836
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35008
+ components:
+ - type: Transform
+ pos: 163.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35009
+ components:
+ - type: Transform
+ pos: 163.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 35176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35360
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35361
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35452
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35454
+ components:
+ - type: Transform
+ pos: 101.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35532
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35534
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35535
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35536
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35537
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35538
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35888
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35889
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36397
+ components:
+ - type: Transform
+ pos: 137.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36430
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36431
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36432
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36893
+ components:
+ - type: Transform
+ pos: 81.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36895
+ components:
+ - type: Transform
+ pos: 81.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36905
+ components:
+ - type: Transform
+ pos: 82.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36908
+ components:
+ - type: Transform
+ pos: 82.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36984
+ components:
+ - type: Transform
+ pos: 21.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36986
+ components:
+ - type: Transform
+ pos: 21.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36987
+ components:
+ - type: Transform
+ pos: 21.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36988
+ components:
+ - type: Transform
+ pos: 21.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36989
+ components:
+ - type: Transform
+ pos: 21.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36990
+ components:
+ - type: Transform
+ pos: 21.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36991
+ components:
+ - type: Transform
+ pos: 21.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36992
+ components:
+ - type: Transform
+ pos: 21.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37214
+ components:
+ - type: Transform
+ pos: 133.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,127.5
+ parent: 1
+ - uid: 37292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 37293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,127.5
+ parent: 1
+ - uid: 37294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,151.5
+ parent: 1
+ - uid: 37295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 37296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,151.5
+ parent: 1
+ - uid: 37412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 48.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 61.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 75.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: 117.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 88.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: 130.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: 131.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: 109.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2450
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2469
+ components:
+ - type: Transform
+ pos: 66.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2477
+ components:
+ - type: Transform
+ pos: 75.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2979
+ components:
+ - type: Transform
+ pos: 81.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 3000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3072
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3139
+ components:
+ - type: Transform
+ pos: 109.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3186
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3287
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3323
+ components:
+ - type: Transform
+ pos: 115.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3365
+ components:
+ - type: Transform
+ pos: 114.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3367
+ components:
+ - type: Transform
+ pos: 118.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3368
+ components:
+ - type: Transform
+ pos: 148.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3462
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3472
+ components:
+ - type: Transform
+ pos: 119.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3564
+ components:
+ - type: Transform
+ pos: 146.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4035
+ components:
+ - type: Transform
+ pos: 96.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4366
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4407
+ components:
+ - type: Transform
+ pos: 76.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4409
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4415
+ components:
+ - type: Transform
+ pos: 99.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4446
+ components:
+ - type: Transform
+ pos: 109.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4450
+ components:
+ - type: Transform
+ pos: 113.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4470
+ components:
+ - type: Transform
+ pos: 158.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4471
+ components:
+ - type: Transform
+ pos: 155.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4473
+ components:
+ - type: Transform
+ pos: 152.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4517
+ components:
+ - type: Transform
+ pos: 108.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4522
+ components:
+ - type: Transform
+ pos: 84.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: 83.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4569
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4596
+ components:
+ - type: Transform
+ pos: 132.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4616
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4911
+ components:
+ - type: Transform
+ pos: 98.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5020
+ components:
+ - type: Transform
+ pos: 40.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5721
+ components:
+ - type: Transform
+ pos: 131.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5723
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6462
+ components:
+ - type: Transform
+ pos: 152.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6664
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6709
+ components:
+ - type: Transform
+ pos: 148.5,45.5
+ parent: 1
+ - uid: 7040
+ components:
+ - type: Transform
+ pos: 136.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7198
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7396
+ components:
+ - type: Transform
+ pos: 88.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7411
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7477
+ components:
+ - type: Transform
+ pos: 75.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7487
+ components:
+ - type: Transform
+ pos: 81.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7689
+ components:
+ - type: Transform
+ pos: 65.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7713
+ components:
+ - type: Transform
+ pos: 81.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7728
+ components:
+ - type: Transform
+ pos: 89.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7735
+ components:
+ - type: Transform
+ pos: 83.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7779
+ components:
+ - type: Transform
+ pos: 67.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7787
+ components:
+ - type: Transform
+ pos: 83.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8165
+ components:
+ - type: Transform
+ pos: 148.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8200
+ components:
+ - type: Transform
+ pos: 118.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8336
+ components:
+ - type: Transform
+ pos: 104.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8355
+ components:
+ - type: Transform
+ pos: 127.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8356
+ components:
+ - type: Transform
+ pos: 129.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8510
+ components:
+ - type: Transform
+ pos: 118.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8511
+ components:
+ - type: Transform
+ pos: 120.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8659
+ components:
+ - type: Transform
+ pos: 66.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8660
+ components:
+ - type: Transform
+ pos: 68.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8810
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8815
+ components:
+ - type: Transform
+ pos: 51.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8816
+ components:
+ - type: Transform
+ pos: 53.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8933
+ components:
+ - type: Transform
+ pos: 102.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8935
+ components:
+ - type: Transform
+ pos: 112.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8936
+ components:
+ - type: Transform
+ pos: 114.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8939
+ components:
+ - type: Transform
+ pos: 111.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8957
+ components:
+ - type: Transform
+ pos: 101.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8967
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9460
+ components:
+ - type: Transform
+ pos: 111.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9790
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10359
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10533
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10642
+ components:
+ - type: Transform
+ pos: 36.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12178
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14811
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15120
+ components:
+ - type: Transform
+ pos: 76.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15281
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15348
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15422
+ components:
+ - type: Transform
+ pos: 73.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15427
+ components:
+ - type: Transform
+ pos: 72.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15464
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15966
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16878
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16892
+ components:
+ - type: Transform
+ pos: 66.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16897
+ components:
+ - type: Transform
+ pos: 73.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16950
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17002
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17067
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17072
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 18204
+ components:
+ - type: Transform
+ pos: 93.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18307
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18467
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19463
+ components:
+ - type: Transform
+ pos: 127.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19740
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19743
+ components:
+ - type: Transform
+ pos: 38.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21442
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21471
+ components:
+ - type: Transform
+ pos: 141.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21506
+ components:
+ - type: Transform
+ pos: 132.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21511
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21517
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21541
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21542
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21561
+ components:
+ - type: Transform
+ pos: 144.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21586
+ components:
+ - type: Transform
+ pos: 82.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21630
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21729
+ components:
+ - type: Transform
+ pos: 84.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21740
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22025
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22243
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22894
+ components:
+ - type: Transform
+ pos: 86.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23389
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23495
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23497
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23532
+ components:
+ - type: Transform
+ pos: 80.5,148.5
+ parent: 1
+ - uid: 23533
+ components:
+ - type: Transform
+ pos: 153.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23540
+ components:
+ - type: Transform
+ pos: 106.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23730
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,146.5
+ parent: 1
+ - uid: 23743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24071
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24076
+ components:
+ - type: Transform
+ pos: 155.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24695
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24698
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25037
+ components:
+ - type: Transform
+ pos: 149.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25562
+ components:
+ - type: Transform
+ pos: 100.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25574
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25633
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25634
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25656
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25761
+ components:
+ - type: Transform
+ pos: 101.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25902
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25939
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25940
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25977
+ components:
+ - type: Transform
+ pos: 75.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25997
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26100
+ components:
+ - type: Transform
+ pos: 112.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27587
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28149
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28491
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29147
+ components:
+ - type: Transform
+ pos: 92.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29833
+ components:
+ - type: Transform
+ pos: 144.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29835
+ components:
+ - type: Transform
+ pos: 140.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30310
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30371
+ components:
+ - type: Transform
+ pos: 94.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33260
+ components:
+ - type: Transform
+ pos: 95.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36771
+ components:
+ - type: Transform
+ pos: 82.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36828
+ components:
+ - type: Transform
+ pos: 103.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36898
+ components:
+ - type: Transform
+ pos: 85.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36909
+ components:
+ - type: Transform
+ pos: 83.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 3152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,136.5
+ parent: 1
+ - uid: 15955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,116.5
+ parent: 1
+ - uid: 15956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18617
+ components:
+ - type: Transform
+ pos: 21.5,113.5
+ parent: 1
+ - uid: 19662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23314
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,34.5
+ parent: 1
+ - uid: 23522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,34.5
+ parent: 1
+ - uid: 25730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 27501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,34.5
+ parent: 1
+ - uid: 30564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,149.5
+ parent: 1
+ - uid: 34356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,43.5
+ parent: 1
+ - uid: 34359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,43.5
+ parent: 1
+ - uid: 34362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,43.5
+ parent: 1
+ - uid: 36776
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,141.5
+ parent: 1
+ - uid: 36923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,137.5
+ parent: 1
+ - uid: 36925
+ components:
+ - type: Transform
+ pos: 85.5,126.5
+ parent: 1
+ - uid: 36926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,152.5
+ parent: 1
+ - uid: 36932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,136.5
+ parent: 1
+ - uid: 36933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,135.5
+ parent: 1
+ - uid: 36934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,142.5
+ parent: 1
+ - uid: 36935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,143.5
+ parent: 1
+ - uid: 36936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,143.5
+ parent: 1
+ - uid: 36937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,135.5
+ parent: 1
+- proto: GasPressurePump
+ entities:
+ - uid: 2731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2901
+ components:
+ - type: Transform
+ pos: 72.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7397
+ components:
+ - type: MetaData
+ name: oxygen gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7410
+ components:
+ - type: MetaData
+ name: nitrogen gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15443
+ components:
+ - type: MetaData
+ name: storage gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15444
+ components:
+ - type: MetaData
+ name: tritium gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15445
+ components:
+ - type: MetaData
+ name: carbon dioxide gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15446
+ components:
+ - type: MetaData
+ name: plasma gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15447
+ components:
+ - type: MetaData
+ name: water vapor gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15954
+ components:
+ - type: Transform
+ pos: 72.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 34363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 3043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,143.5
+ parent: 1
+ - uid: 3970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,143.5
+ parent: 1
+ - uid: 16961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19742
+ components:
+ - type: Transform
+ pos: 46.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,136.5
+ parent: 1
+ - uid: 25725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,125.5
+ parent: 1
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 3206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,135.5
+ parent: 1
+ - uid: 16635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,135.5
+ parent: 1
+ - uid: 36759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,142.5
+ parent: 1
+ - uid: 36927
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+- proto: GasValve
+ entities:
+ - uid: 15442
+ components:
+ - type: Transform
+ pos: 71.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,137.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 18618
+ components:
+ - type: Transform
+ pos: 21.5,112.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - uid: 36881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36914
+ components:
+ - type: MetaData
+ name: cold loop dump to waste manual valve
+ - type: Transform
+ pos: 87.5,144.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36915
+ components:
+ - type: MetaData
+ name: hot loop dump to waste manual valve
+ - type: Transform
+ pos: 87.5,134.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36928
+ components:
+ - type: MetaData
+ name: loop combiner manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,141.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - uid: 36938
+ components:
+ - type: MetaData
+ name: hot loop manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,138.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36939
+ components:
+ - type: MetaData
+ name: cold loop manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,140.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+- proto: GasVentPump
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2952
+ components:
+ - type: Transform
+ pos: 93.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4829
+ components:
+ - type: Transform
+ pos: 119.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: 57.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7390
+ components:
+ - type: Transform
+ pos: 73.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10680
+ components:
+ - type: Transform
+ pos: 36.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,121.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14277
+ components:
+ - type: Transform
+ pos: 97.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15513
+ components:
+ - type: Transform
+ pos: 87.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16794
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16967
+ components:
+ - type: Transform
+ pos: 71.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17023
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17038
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17074
+ components:
+ - type: Transform
+ pos: 87.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18607
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19002
+ components:
+ - type: Transform
+ pos: 88.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21732
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22172
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22598
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25686
+ components:
+ - type: Transform
+ pos: 105.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25747
+ components:
+ - type: Transform
+ pos: 110.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25830
+ components:
+ - type: Transform
+ pos: 108.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25836
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25837
+ components:
+ - type: Transform
+ pos: 113.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26141
+ components:
+ - type: Transform
+ pos: 75.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26170
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26171
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26172
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28504
+ components:
+ - type: Transform
+ pos: 134.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29237
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29812
+ components:
+ - type: Transform
+ pos: 145.5,132.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30030
+ components:
+ - type: Transform
+ pos: 107.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30126
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30782
+ components:
+ - type: Transform
+ pos: 53.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32262
+ components:
+ - type: Transform
+ pos: 131.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32366
+ components:
+ - type: Transform
+ pos: 47.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32939
+ components:
+ - type: Transform
+ pos: 155.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32983
+ components:
+ - type: Transform
+ pos: 156.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33319
+ components:
+ - type: Transform
+ pos: 92.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34364
+ components:
+ - type: Transform
+ pos: 157.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 34374
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34855
+ components:
+ - type: Transform
+ pos: 76.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35025
+ components:
+ - type: Transform
+ pos: 90.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35064
+ components:
+ - type: Transform
+ pos: 99.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35174
+ components:
+ - type: Transform
+ pos: 119.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35456
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35566
+ components:
+ - type: Transform
+ pos: 58.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36740
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36965
+ components:
+ - type: Transform
+ pos: 141.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36966
+ components:
+ - type: Transform
+ pos: 143.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36967
+ components:
+ - type: Transform
+ pos: 149.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36968
+ components:
+ - type: Transform
+ pos: 151.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36977
+ components:
+ - type: Transform
+ pos: 18.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36982
+ components:
+ - type: Transform
+ pos: 23.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 145.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 86.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,134.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7232
+ components:
+ - type: Transform
+ pos: 49.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8194
+ components:
+ - type: Transform
+ pos: 140.5,149.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8197
+ components:
+ - type: Transform
+ pos: 148.5,149.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8554
+ components:
+ - type: Transform
+ pos: 124.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10745
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11043
+ components:
+ - type: Transform
+ pos: 87.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13228
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14659
+ components:
+ - type: Transform
+ pos: 100.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14843
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15410
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15430
+ components:
+ - type: Transform
+ pos: 76.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16753
+ components:
+ - type: Transform
+ pos: 60.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16962
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16977
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17076
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18415
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18502
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19602
+ components:
+ - type: Transform
+ pos: 47.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19613
+ components:
+ - type: Transform
+ pos: 37.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19722
+ components:
+ - type: Transform
+ pos: 50.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20378
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20356
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20400
+ components:
+ - type: Transform
+ pos: 124.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20496
+ components:
+ - type: Transform
+ pos: 124.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20504
+ components:
+ - type: Transform
+ pos: 124.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20798
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21584
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21623
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21624
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21700
+ components:
+ - type: Transform
+ pos: 152.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21719
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22599
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25488
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25698
+ components:
+ - type: Transform
+ pos: 117.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25739
+ components:
+ - type: Transform
+ pos: 124.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25772
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25831
+ components:
+ - type: Transform
+ pos: 104.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25985
+ components:
+ - type: Transform
+ pos: 70.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26059
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26089
+ components:
+ - type: Transform
+ pos: 106.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26101
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26422
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28225
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28231
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28232
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28291
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28503
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28630
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,66.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29233
+ components:
+ - type: Transform
+ pos: 158.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30203
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36637
+ components:
+ - type: Transform
+ pos: 122.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36961
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVolumePump
+ entities:
+ - uid: 15723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36883
+ components:
+ - type: Transform
+ pos: 85.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: Gauze
+ entities:
+ - uid: 17629
+ components:
+ - type: Transform
+ pos: 61.076164,104.55446
+ parent: 1
+- proto: Girder
+ entities:
+ - uid: 1543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,77.5
+ parent: 1
+ - uid: 1896
+ components:
+ - type: Transform
+ pos: 89.5,36.5
+ parent: 1
+ - uid: 3239
+ components:
+ - type: Transform
+ pos: 69.5,159.5
+ parent: 1
+ - uid: 3563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,81.5
+ parent: 1
+ - uid: 8595
+ components:
+ - type: Transform
+ pos: 104.5,33.5
+ parent: 1
+ - uid: 8706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,127.5
+ parent: 1
+ - uid: 9633
+ components:
+ - type: Transform
+ pos: 101.5,33.5
+ parent: 1
+ - uid: 10379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,145.5
+ parent: 1
+ - uid: 12610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,33.5
+ parent: 1
+ - uid: 14770
+ components:
+ - type: Transform
+ pos: 108.5,34.5
+ parent: 1
+ - uid: 16912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,166.5
+ parent: 1
+ - uid: 18614
+ components:
+ - type: Transform
+ pos: 46.5,120.5
+ parent: 1
+ - uid: 18689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,119.5
+ parent: 1
+ - uid: 23435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,162.5
+ parent: 1
+ - uid: 23502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,47.5
+ parent: 1
+ - uid: 32993
+ components:
+ - type: Transform
+ pos: 58.5,141.5
+ parent: 1
+ - uid: 34744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,158.5
+ parent: 1
+ - uid: 35196
+ components:
+ - type: Transform
+ pos: 60.5,124.5
+ parent: 1
+ - uid: 35649
+ components:
+ - type: Transform
+ pos: 156.5,115.5
+ parent: 1
+ - uid: 35655
+ components:
+ - type: Transform
+ pos: 38.5,121.5
+ parent: 1
+ - uid: 35687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,164.5
+ parent: 1
+ - uid: 36157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,107.5
+ parent: 1
+ - uid: 37032
+ components:
+ - type: Transform
+ pos: 95.5,164.5
+ parent: 1
+ - uid: 37046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,156.5
+ parent: 1
+- proto: GlassBoxLaserFilled
+ entities:
+ - uid: 13602
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+- proto: GlowstickBase
+ entities:
+ - uid: 6214
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 146.5331,154.59888
+ parent: 1
+ - uid: 20942
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 51.897156,107.52971
+ parent: 1
+ - uid: 20943
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 52.459656,107.59221
+ parent: 1
+ - uid: 26694
+ components:
+ - type: Transform
+ pos: 121.13164,108.69944
+ parent: 1
+ - uid: 34090
+ components:
+ - type: Transform
+ pos: 76.52835,41.63775
+ parent: 1
+ - uid: 34091
+ components:
+ - type: Transform
+ pos: 76.11168,41.575207
+ parent: 1
+ - uid: 36520
+ components:
+ - type: Transform
+ pos: 23.5,74.5
+ parent: 1
+- proto: GlowstickBlue
+ entities:
+ - uid: 26697
+ components:
+ - type: Transform
+ pos: 121.28789,108.397354
+ parent: 1
+- proto: GlowstickPurple
+ entities:
+ - uid: 26695
+ components:
+ - type: Transform
+ pos: 121.48581,108.803604
+ parent: 1
+ - uid: 36318
+ components:
+ - type: Transform
+ pos: 57.193447,133.42755
+ parent: 1
+ - uid: 36457
+ components:
+ - type: Transform
+ pos: 23.5,71.5
+ parent: 1
+- proto: GlowstickRed
+ entities:
+ - uid: 26700
+ components:
+ - type: Transform
+ pos: 121.66289,108.51194
+ parent: 1
+ - uid: 36456
+ components:
+ - type: Transform
+ pos: 25.5,69.5
+ parent: 1
+- proto: GlowstickYellow
+ entities:
+ - uid: 36519
+ components:
+ - type: Transform
+ pos: 20.5,70.5
+ parent: 1
+- proto: GrapeSeeds
+ entities:
+ - uid: 30618
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.686188,134.72012
+ parent: 1
+ - uid: 30662
+ components:
+ - type: Transform
+ pos: 59.27669,132.274
+ parent: 1
+- proto: GrassBattlemap
+ entities:
+ - uid: 12694
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.56398,55.693684
+ parent: 1
+- proto: GravityGenerator
+ entities:
+ - uid: 30814
+ components:
+ - type: Transform
+ pos: 99.5,162.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 17.5,113.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 17.5,112.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 17.5,111.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 17.5,110.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 17.5,102.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 17.5,101.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 17.5,100.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 17.5,99.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 18.5,84.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 18.5,83.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 18.5,82.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 19.5,75.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 19.5,74.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 19.5,73.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 19.5,71.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 19.5,70.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 19.5,69.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 22.5,125.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 24.5,125.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 26.5,125.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 27.5,114.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 27.5,110.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 62.5,37.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 27.5,68.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 28.5,125.5
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 28.5,114.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 28.5,110.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 29.5,117.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 29.5,115.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 29.5,114.5
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 29.5,113.5
+ parent: 1
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 29.5,111.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 29.5,110.5
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 29.5,109.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 29.5,107.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 29.5,68.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 34.5,94.5
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 34.5,92.5
+ parent: 1
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 34.5,91.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 34.5,89.5
+ parent: 1
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 34.5,88.5
+ parent: 1
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 34.5,86.5
+ parent: 1
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 37.5,85.5
+ parent: 1
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 38.5,115.5
+ parent: 1
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 50.5,94.5
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ pos: 41.5,84.5
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 84.5,163.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 39.5,115.5
+ parent: 1
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 39.5,98.5
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 40.5,117.5
+ parent: 1
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 40.5,116.5
+ parent: 1
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 40.5,98.5
+ parent: 1
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 41.5,98.5
+ parent: 1
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 41.5,97.5
+ parent: 1
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 41.5,96.5
+ parent: 1
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 41.5,93.5
+ parent: 1
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 41.5,92.5
+ parent: 1
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 41.5,91.5
+ parent: 1
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 41.5,89.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 41.5,88.5
+ parent: 1
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 41.5,87.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 901
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 46.5,117.5
+ parent: 1
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 46.5,116.5
+ parent: 1
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 47.5,115.5
+ parent: 1
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,74.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 48.5,115.5
+ parent: 1
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 48.5,94.5
+ parent: 1
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 49.5,142.5
+ parent: 1
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 49.5,140.5
+ parent: 1
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 50.5,142.5
+ parent: 1
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 50.5,140.5
+ parent: 1
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 50.5,90.5
+ parent: 1
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 50.5,89.5
+ parent: 1
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 51.5,153.5
+ parent: 1
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 51.5,152.5
+ parent: 1
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 51.5,151.5
+ parent: 1
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 51.5,149.5
+ parent: 1
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 51.5,148.5
+ parent: 1
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 51.5,147.5
+ parent: 1
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 51.5,142.5
+ parent: 1
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 51.5,140.5
+ parent: 1
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 27.5,93.5
+ parent: 1
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 27.5,92.5
+ parent: 1
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 27.5,88.5
+ parent: 1
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 27.5,87.5
+ parent: 1
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 53.5,155.5
+ parent: 1
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: 54.5,93.5
+ parent: 1
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 54.5,92.5
+ parent: 1
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: 54.5,91.5
+ parent: 1
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 54.5,90.5
+ parent: 1
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 56.5,62.5
+ parent: 1
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 17.5,93.5
+ parent: 1
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 58.5,94.5
+ parent: 1
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 58.5,93.5
+ parent: 1
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 17.5,91.5
+ parent: 1
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 1773
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 50.5,71.5
+ parent: 1
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,44.5
+ parent: 1
+ - uid: 1862
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 1911
+ components:
+ - type: Transform
+ pos: 104.5,49.5
+ parent: 1
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: 93.5,27.5
+ parent: 1
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: 65.5,140.5
+ parent: 1
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 2056
+ components:
+ - type: Transform
+ pos: 65.5,138.5
+ parent: 1
+ - uid: 2086
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 1
+ - uid: 2143
+ components:
+ - type: Transform
+ pos: 66.5,144.5
+ parent: 1
+ - uid: 2145
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 2147
+ components:
+ - type: Transform
+ pos: 66.5,142.5
+ parent: 1
+ - uid: 2151
+ components:
+ - type: Transform
+ pos: 66.5,136.5
+ parent: 1
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: 66.5,134.5
+ parent: 1
+ - uid: 2189
+ components:
+ - type: Transform
+ pos: 67.5,148.5
+ parent: 1
+ - uid: 2191
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 2193
+ components:
+ - type: Transform
+ pos: 67.5,146.5
+ parent: 1
+ - uid: 2197
+ components:
+ - type: Transform
+ pos: 67.5,132.5
+ parent: 1
+ - uid: 2199
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 2201
+ components:
+ - type: Transform
+ pos: 67.5,130.5
+ parent: 1
+ - uid: 2217
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 71.5,40.5
+ parent: 1
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: 68.5,165.5
+ parent: 1
+ - uid: 2243
+ components:
+ - type: Transform
+ pos: 68.5,152.5
+ parent: 1
+ - uid: 2245
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 2247
+ components:
+ - type: Transform
+ pos: 68.5,150.5
+ parent: 1
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 2252
+ components:
+ - type: Transform
+ pos: 68.5,142.5
+ parent: 1
+ - uid: 2255
+ components:
+ - type: Transform
+ pos: 68.5,140.5
+ parent: 1
+ - uid: 2257
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: 68.5,138.5
+ parent: 1
+ - uid: 2262
+ components:
+ - type: Transform
+ pos: 68.5,136.5
+ parent: 1
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 2267
+ components:
+ - type: Transform
+ pos: 68.5,128.5
+ parent: 1
+ - uid: 2269
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 2271
+ components:
+ - type: Transform
+ pos: 68.5,126.5
+ parent: 1
+ - uid: 2295
+ components:
+ - type: Transform
+ pos: 69.5,165.5
+ parent: 1
+ - uid: 2301
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 2303
+ components:
+ - type: Transform
+ pos: 69.5,146.5
+ parent: 1
+ - uid: 2306
+ components:
+ - type: Transform
+ pos: 69.5,144.5
+ parent: 1
+ - uid: 2308
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 2310
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: 69.5,134.5
+ parent: 1
+ - uid: 2315
+ components:
+ - type: Transform
+ pos: 69.5,132.5
+ parent: 1
+ - uid: 2317
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 2330
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 2366
+ components:
+ - type: Transform
+ pos: 69.5,38.5
+ parent: 1
+ - uid: 2368
+ components:
+ - type: Transform
+ pos: 69.5,37.5
+ parent: 1
+ - uid: 2370
+ components:
+ - type: Transform
+ pos: 69.5,36.5
+ parent: 1
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: 69.5,32.5
+ parent: 1
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: 69.5,31.5
+ parent: 1
+ - uid: 2378
+ components:
+ - type: Transform
+ pos: 69.5,30.5
+ parent: 1
+ - uid: 2380
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 1
+ - uid: 2391
+ components:
+ - type: Transform
+ pos: 69.5,15.5
+ parent: 1
+ - uid: 2393
+ components:
+ - type: Transform
+ pos: 70.5,165.5
+ parent: 1
+ - uid: 2397
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 2399
+ components:
+ - type: Transform
+ pos: 70.5,152.5
+ parent: 1
+ - uid: 2401
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 2403
+ components:
+ - type: Transform
+ pos: 70.5,150.5
+ parent: 1
+ - uid: 2406
+ components:
+ - type: Transform
+ pos: 70.5,148.5
+ parent: 1
+ - uid: 2408
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 2410
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 2412
+ components:
+ - type: Transform
+ pos: 70.5,130.5
+ parent: 1
+ - uid: 2415
+ components:
+ - type: Transform
+ pos: 70.5,128.5
+ parent: 1
+ - uid: 2417
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 2419
+ components:
+ - type: Transform
+ pos: 70.5,126.5
+ parent: 1
+ - uid: 2454
+ components:
+ - type: Transform
+ pos: 70.5,15.5
+ parent: 1
+ - uid: 2505
+ components:
+ - type: Transform
+ pos: 71.5,15.5
+ parent: 1
+ - uid: 2513
+ components:
+ - type: Transform
+ pos: 37.5,127.5
+ parent: 1
+ - uid: 2531
+ components:
+ - type: Transform
+ pos: 111.5,102.5
+ parent: 1
+ - uid: 2542
+ components:
+ - type: Transform
+ pos: 72.5,40.5
+ parent: 1
+ - uid: 2579
+ components:
+ - type: Transform
+ pos: 73.5,40.5
+ parent: 1
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: 74.5,163.5
+ parent: 1
+ - uid: 2598
+ components:
+ - type: Transform
+ pos: 74.5,88.5
+ parent: 1
+ - uid: 2616
+ components:
+ - type: Transform
+ pos: 74.5,40.5
+ parent: 1
+ - uid: 2619
+ components:
+ - type: Transform
+ pos: 74.5,15.5
+ parent: 1
+ - uid: 2621
+ components:
+ - type: Transform
+ pos: 75.5,163.5
+ parent: 1
+ - uid: 2627
+ components:
+ - type: Transform
+ pos: 75.5,124.5
+ parent: 1
+ - uid: 2635
+ components:
+ - type: Transform
+ pos: 73.5,88.5
+ parent: 1
+ - uid: 2637
+ components:
+ - type: Transform
+ pos: 73.5,89.5
+ parent: 1
+ - uid: 2638
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - uid: 2655
+ components:
+ - type: Transform
+ pos: 75.5,40.5
+ parent: 1
+ - uid: 2658
+ components:
+ - type: Transform
+ pos: 75.5,15.5
+ parent: 1
+ - uid: 2664
+ components:
+ - type: Transform
+ pos: 76.5,124.5
+ parent: 1
+ - uid: 2679
+ components:
+ - type: Transform
+ pos: 76.5,89.5
+ parent: 1
+ - uid: 2681
+ components:
+ - type: Transform
+ pos: 76.5,88.5
+ parent: 1
+ - uid: 2688
+ components:
+ - type: Transform
+ pos: 76.5,78.5
+ parent: 1
+ - uid: 2691
+ components:
+ - type: Transform
+ pos: 76.5,76.5
+ parent: 1
+ - uid: 2693
+ components:
+ - type: Transform
+ pos: 76.5,75.5
+ parent: 1
+ - uid: 2695
+ components:
+ - type: Transform
+ pos: 76.5,74.5
+ parent: 1
+ - uid: 2697
+ components:
+ - type: Transform
+ pos: 76.5,73.5
+ parent: 1
+ - uid: 2699
+ components:
+ - type: Transform
+ pos: 76.5,72.5
+ parent: 1
+ - uid: 2701
+ components:
+ - type: Transform
+ pos: 76.5,71.5
+ parent: 1
+ - uid: 2710
+ components:
+ - type: Transform
+ pos: 76.5,40.5
+ parent: 1
+ - uid: 2713
+ components:
+ - type: Transform
+ pos: 76.5,15.5
+ parent: 1
+ - uid: 2715
+ components:
+ - type: Transform
+ pos: 77.5,163.5
+ parent: 1
+ - uid: 2737
+ components:
+ - type: Transform
+ pos: 77.5,124.5
+ parent: 1
+ - uid: 2753
+ components:
+ - type: Transform
+ pos: 77.5,71.5
+ parent: 1
+ - uid: 2762
+ components:
+ - type: Transform
+ pos: 77.5,40.5
+ parent: 1
+ - uid: 2767
+ components:
+ - type: Transform
+ pos: 78.5,163.5
+ parent: 1
+ - uid: 2822
+ components:
+ - type: Transform
+ pos: 78.5,40.5
+ parent: 1
+ - uid: 2866
+ components:
+ - type: Transform
+ pos: 79.5,85.5
+ parent: 1
+ - uid: 2870
+ components:
+ - type: Transform
+ pos: 79.5,77.5
+ parent: 1
+ - uid: 2872
+ components:
+ - type: Transform
+ pos: 79.5,71.5
+ parent: 1
+ - uid: 2875
+ components:
+ - type: Transform
+ pos: 79.5,66.5
+ parent: 1
+ - uid: 2889
+ components:
+ - type: Transform
+ pos: 79.5,40.5
+ parent: 1
+ - uid: 2892
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 1
+ - uid: 2894
+ components:
+ - type: Transform
+ pos: 80.5,163.5
+ parent: 1
+ - uid: 2917
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 2927
+ components:
+ - type: Transform
+ pos: 80.5,85.5
+ parent: 1
+ - uid: 2933
+ components:
+ - type: Transform
+ pos: 80.5,77.5
+ parent: 1
+ - uid: 2935
+ components:
+ - type: Transform
+ pos: 80.5,76.5
+ parent: 1
+ - uid: 2937
+ components:
+ - type: Transform
+ pos: 80.5,75.5
+ parent: 1
+ - uid: 2939
+ components:
+ - type: Transform
+ pos: 80.5,74.5
+ parent: 1
+ - uid: 2941
+ components:
+ - type: Transform
+ pos: 80.5,73.5
+ parent: 1
+ - uid: 2943
+ components:
+ - type: Transform
+ pos: 80.5,72.5
+ parent: 1
+ - uid: 2945
+ components:
+ - type: Transform
+ pos: 80.5,71.5
+ parent: 1
+ - uid: 2948
+ components:
+ - type: Transform
+ pos: 80.5,66.5
+ parent: 1
+ - uid: 2971
+ components:
+ - type: Transform
+ pos: 80.5,15.5
+ parent: 1
+ - uid: 2973
+ components:
+ - type: Transform
+ pos: 81.5,163.5
+ parent: 1
+ - uid: 2978
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 2982
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 2991
+ components:
+ - type: Transform
+ pos: 81.5,85.5
+ parent: 1
+ - uid: 2995
+ components:
+ - type: Transform
+ pos: 40.5,43.5
+ parent: 1
+ - uid: 2996
+ components:
+ - type: Transform
+ pos: 81.5,66.5
+ parent: 1
+ - uid: 3008
+ components:
+ - type: Transform
+ pos: 81.5,38.5
+ parent: 1
+ - uid: 3010
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 1
+ - uid: 3012
+ components:
+ - type: Transform
+ pos: 81.5,36.5
+ parent: 1
+ - uid: 3016
+ components:
+ - type: Transform
+ pos: 81.5,32.5
+ parent: 1
+ - uid: 3018
+ components:
+ - type: Transform
+ pos: 81.5,31.5
+ parent: 1
+ - uid: 3020
+ components:
+ - type: Transform
+ pos: 81.5,30.5
+ parent: 1
+ - uid: 3022
+ components:
+ - type: Transform
+ pos: 81.5,29.5
+ parent: 1
+ - uid: 3033
+ components:
+ - type: Transform
+ pos: 81.5,15.5
+ parent: 1
+ - uid: 3038
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 3040
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 3041
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 3052
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 3060
+ components:
+ - type: Transform
+ pos: 82.5,66.5
+ parent: 1
+ - uid: 3075
+ components:
+ - type: Transform
+ pos: 83.5,163.5
+ parent: 1
+ - uid: 3086
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 3116
+ components:
+ - type: Transform
+ pos: 83.5,66.5
+ parent: 1
+ - uid: 3136
+ components:
+ - type: Transform
+ pos: 86.5,53.5
+ parent: 1
+ - uid: 3137
+ components:
+ - type: Transform
+ pos: 85.5,53.5
+ parent: 1
+ - uid: 3140
+ components:
+ - type: Transform
+ pos: 85.5,55.5
+ parent: 1
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: 84.5,66.5
+ parent: 1
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 3231
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 3233
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 3235
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 3236
+ components:
+ - type: Transform
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 3248
+ components:
+ - type: Transform
+ pos: 85.5,68.5
+ parent: 1
+ - uid: 3250
+ components:
+ - type: Transform
+ pos: 85.5,67.5
+ parent: 1
+ - uid: 3252
+ components:
+ - type: Transform
+ pos: 85.5,66.5
+ parent: 1
+ - uid: 3299
+ components:
+ - type: Transform
+ pos: 86.5,123.5
+ parent: 1
+ - uid: 3309
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 3313
+ components:
+ - type: Transform
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 3314
+ components:
+ - type: Transform
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 3380
+ components:
+ - type: Transform
+ pos: 87.5,17.5
+ parent: 1
+ - uid: 3388
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 3391
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 3410
+ components:
+ - type: Transform
+ pos: 88.5,17.5
+ parent: 1
+ - uid: 3414
+ components:
+ - type: Transform
+ pos: 89.5,172.5
+ parent: 1
+ - uid: 3416
+ components:
+ - type: Transform
+ pos: 89.5,171.5
+ parent: 1
+ - uid: 3420
+ components:
+ - type: Transform
+ pos: 89.5,169.5
+ parent: 1
+ - uid: 3422
+ components:
+ - type: Transform
+ pos: 89.5,168.5
+ parent: 1
+ - uid: 3456
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 3457
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 3476
+ components:
+ - type: Transform
+ pos: 89.5,17.5
+ parent: 1
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: 90.5,144.5
+ parent: 1
+ - uid: 3495
+ components:
+ - type: Transform
+ pos: 90.5,143.5
+ parent: 1
+ - uid: 3509
+ components:
+ - type: Transform
+ pos: 90.5,135.5
+ parent: 1
+ - uid: 3511
+ components:
+ - type: Transform
+ pos: 90.5,134.5
+ parent: 1
+ - uid: 3523
+ components:
+ - type: Transform
+ pos: 90.5,123.5
+ parent: 1
+ - uid: 3557
+ components:
+ - type: Transform
+ pos: 90.5,66.5
+ parent: 1
+ - uid: 3560
+ components:
+ - type: Transform
+ pos: 152.5,54.5
+ parent: 1
+ - uid: 3570
+ components:
+ - type: Transform
+ pos: 90.5,17.5
+ parent: 1
+ - uid: 3572
+ components:
+ - type: Transform
+ pos: 91.5,174.5
+ parent: 1
+ - uid: 3600
+ components:
+ - type: Transform
+ pos: 91.5,66.5
+ parent: 1
+ - uid: 3616
+ components:
+ - type: Transform
+ pos: 91.5,17.5
+ parent: 1
+ - uid: 3618
+ components:
+ - type: Transform
+ pos: 92.5,174.5
+ parent: 1
+ - uid: 3635
+ components:
+ - type: Transform
+ pos: 92.5,144.5
+ parent: 1
+ - uid: 3637
+ components:
+ - type: Transform
+ pos: 92.5,143.5
+ parent: 1
+ - uid: 3651
+ components:
+ - type: Transform
+ pos: 92.5,135.5
+ parent: 1
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 92.5,134.5
+ parent: 1
+ - uid: 3691
+ components:
+ - type: Transform
+ pos: 92.5,62.5
+ parent: 1
+ - uid: 3756
+ components:
+ - type: Transform
+ pos: 93.5,62.5
+ parent: 1
+ - uid: 3776
+ components:
+ - type: Transform
+ pos: 94.5,120.5
+ parent: 1
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: 94.5,17.5
+ parent: 1
+ - uid: 3807
+ components:
+ - type: Transform
+ pos: 94.5,14.5
+ parent: 1
+ - uid: 3826
+ components:
+ - type: Transform
+ pos: 95.5,120.5
+ parent: 1
+ - uid: 3828
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 3863
+ components:
+ - type: Transform
+ pos: 125.5,30.5
+ parent: 1
+ - uid: 3886
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 3888
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 3890
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 3897
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 3899
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 3905
+ components:
+ - type: Transform
+ pos: 96.5,120.5
+ parent: 1
+ - uid: 3931
+ components:
+ - type: Transform
+ pos: 125.5,32.5
+ parent: 1
+ - uid: 3932
+ components:
+ - type: Transform
+ pos: 125.5,27.5
+ parent: 1
+ - uid: 3934
+ components:
+ - type: Transform
+ pos: 125.5,31.5
+ parent: 1
+ - uid: 3936
+ components:
+ - type: Transform
+ pos: 34.5,138.5
+ parent: 1
+ - uid: 3937
+ components:
+ - type: Transform
+ pos: 33.5,138.5
+ parent: 1
+ - uid: 3938
+ components:
+ - type: Transform
+ pos: 32.5,138.5
+ parent: 1
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: 31.5,138.5
+ parent: 1
+ - uid: 3940
+ components:
+ - type: Transform
+ pos: 35.5,138.5
+ parent: 1
+ - uid: 4011
+ components:
+ - type: Transform
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 4021
+ components:
+ - type: Transform
+ pos: 98.5,116.5
+ parent: 1
+ - uid: 4022
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 4038
+ components:
+ - type: Transform
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 4053
+ components:
+ - type: Transform
+ pos: 78.5,15.5
+ parent: 1
+ - uid: 4055
+ components:
+ - type: Transform
+ pos: 71.5,19.5
+ parent: 1
+ - uid: 4069
+ components:
+ - type: Transform
+ pos: 99.5,142.5
+ parent: 1
+ - uid: 4071
+ components:
+ - type: Transform
+ pos: 99.5,141.5
+ parent: 1
+ - uid: 4073
+ components:
+ - type: Transform
+ pos: 99.5,140.5
+ parent: 1
+ - uid: 4076
+ components:
+ - type: Transform
+ pos: 99.5,138.5
+ parent: 1
+ - uid: 4078
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 4080
+ components:
+ - type: Transform
+ pos: 99.5,136.5
+ parent: 1
+ - uid: 4083
+ components:
+ - type: Transform
+ pos: 99.5,134.5
+ parent: 1
+ - uid: 4085
+ components:
+ - type: Transform
+ pos: 99.5,133.5
+ parent: 1
+ - uid: 4086
+ components:
+ - type: Transform
+ pos: 50.5,52.5
+ parent: 1
+ - uid: 4087
+ components:
+ - type: Transform
+ pos: 99.5,132.5
+ parent: 1
+ - uid: 4097
+ components:
+ - type: Transform
+ pos: 99.5,116.5
+ parent: 1
+ - uid: 4134
+ components:
+ - type: Transform
+ pos: 125.5,28.5
+ parent: 1
+ - uid: 4136
+ components:
+ - type: Transform
+ pos: 125.5,26.5
+ parent: 1
+ - uid: 4151
+ components:
+ - type: Transform
+ pos: 100.5,116.5
+ parent: 1
+ - uid: 4195
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 4292
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 4295
+ components:
+ - type: Transform
+ pos: 103.5,128.5
+ parent: 1
+ - uid: 4297
+ components:
+ - type: Transform
+ pos: 103.5,126.5
+ parent: 1
+ - uid: 4307
+ components:
+ - type: Transform
+ pos: 103.5,85.5
+ parent: 1
+ - uid: 4310
+ components:
+ - type: Transform
+ pos: 103.5,83.5
+ parent: 1
+ - uid: 4312
+ components:
+ - type: Transform
+ pos: 103.5,82.5
+ parent: 1
+ - uid: 4314
+ components:
+ - type: Transform
+ pos: 103.5,81.5
+ parent: 1
+ - uid: 4316
+ components:
+ - type: Transform
+ pos: 103.5,80.5
+ parent: 1
+ - uid: 4318
+ components:
+ - type: Transform
+ pos: 103.5,79.5
+ parent: 1
+ - uid: 4348
+ components:
+ - type: Transform
+ pos: 104.5,146.5
+ parent: 1
+ - uid: 4350
+ components:
+ - type: Transform
+ pos: 104.5,128.5
+ parent: 1
+ - uid: 4352
+ components:
+ - type: Transform
+ pos: 104.5,126.5
+ parent: 1
+ - uid: 4358
+ components:
+ - type: Transform
+ pos: 104.5,106.5
+ parent: 1
+ - uid: 4363
+ components:
+ - type: Transform
+ pos: 104.5,85.5
+ parent: 1
+ - uid: 4365
+ components:
+ - type: Transform
+ pos: 104.5,79.5
+ parent: 1
+ - uid: 4395
+ components:
+ - type: Transform
+ pos: 105.5,146.5
+ parent: 1
+ - uid: 4397
+ components:
+ - type: Transform
+ pos: 105.5,128.5
+ parent: 1
+ - uid: 4399
+ components:
+ - type: Transform
+ pos: 105.5,126.5
+ parent: 1
+ - uid: 4408
+ components:
+ - type: Transform
+ pos: 105.5,85.5
+ parent: 1
+ - uid: 4410
+ components:
+ - type: Transform
+ pos: 105.5,79.5
+ parent: 1
+ - uid: 4430
+ components:
+ - type: Transform
+ pos: 105.5,17.5
+ parent: 1
+ - uid: 4447
+ components:
+ - type: Transform
+ pos: 106.5,116.5
+ parent: 1
+ - uid: 4454
+ components:
+ - type: Transform
+ pos: 106.5,94.5
+ parent: 1
+ - uid: 4456
+ components:
+ - type: Transform
+ pos: 106.5,93.5
+ parent: 1
+ - uid: 4458
+ components:
+ - type: Transform
+ pos: 106.5,92.5
+ parent: 1
+ - uid: 4460
+ components:
+ - type: Transform
+ pos: 106.5,91.5
+ parent: 1
+ - uid: 4462
+ components:
+ - type: Transform
+ pos: 106.5,90.5
+ parent: 1
+ - uid: 4464
+ components:
+ - type: Transform
+ pos: 106.5,85.5
+ parent: 1
+ - uid: 4466
+ components:
+ - type: Transform
+ pos: 106.5,79.5
+ parent: 1
+ - uid: 4491
+ components:
+ - type: Transform
+ pos: 106.5,17.5
+ parent: 1
+ - uid: 4498
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 4500
+ components:
+ - type: Transform
+ pos: 107.5,146.5
+ parent: 1
+ - uid: 4502
+ components:
+ - type: Transform
+ pos: 107.5,128.5
+ parent: 1
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: 107.5,126.5
+ parent: 1
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: 107.5,116.5
+ parent: 1
+ - uid: 4516
+ components:
+ - type: Transform
+ pos: 107.5,90.5
+ parent: 1
+ - uid: 4518
+ components:
+ - type: Transform
+ pos: 107.5,89.5
+ parent: 1
+ - uid: 4520
+ components:
+ - type: Transform
+ pos: 107.5,85.5
+ parent: 1
+ - uid: 4543
+ components:
+ - type: Transform
+ pos: 107.5,17.5
+ parent: 1
+ - uid: 4550
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 4552
+ components:
+ - type: Transform
+ pos: 108.5,146.5
+ parent: 1
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 4556
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 4557
+ components:
+ - type: Transform
+ pos: 159.5,96.5
+ parent: 1
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+ - uid: 4568
+ components:
+ - type: Transform
+ pos: 108.5,89.5
+ parent: 1
+ - uid: 4570
+ components:
+ - type: Transform
+ pos: 108.5,85.5
+ parent: 1
+ - uid: 4572
+ components:
+ - type: Transform
+ pos: 108.5,79.5
+ parent: 1
+ - uid: 4574
+ components:
+ - type: Transform
+ pos: 69.5,52.5
+ parent: 1
+ - uid: 4588
+ components:
+ - type: Transform
+ pos: 108.5,17.5
+ parent: 1
+ - uid: 4595
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 4597
+ components:
+ - type: Transform
+ pos: 109.5,146.5
+ parent: 1
+ - uid: 4599
+ components:
+ - type: Transform
+ pos: 109.5,128.5
+ parent: 1
+ - uid: 4601
+ components:
+ - type: Transform
+ pos: 109.5,126.5
+ parent: 1
+ - uid: 4607
+ components:
+ - type: Transform
+ pos: 109.5,116.5
+ parent: 1
+ - uid: 4613
+ components:
+ - type: Transform
+ pos: 109.5,89.5
+ parent: 1
+ - uid: 4615
+ components:
+ - type: Transform
+ pos: 109.5,85.5
+ parent: 1
+ - uid: 4617
+ components:
+ - type: Transform
+ pos: 109.5,84.5
+ parent: 1
+ - uid: 4619
+ components:
+ - type: Transform
+ pos: 109.5,83.5
+ parent: 1
+ - uid: 4621
+ components:
+ - type: Transform
+ pos: 109.5,82.5
+ parent: 1
+ - uid: 4623
+ components:
+ - type: Transform
+ pos: 109.5,81.5
+ parent: 1
+ - uid: 4626
+ components:
+ - type: Transform
+ pos: 109.5,79.5
+ parent: 1
+ - uid: 4649
+ components:
+ - type: Transform
+ pos: 109.5,17.5
+ parent: 1
+ - uid: 4666
+ components:
+ - type: Transform
+ pos: 110.5,116.5
+ parent: 1
+ - uid: 4673
+ components:
+ - type: Transform
+ pos: 110.5,89.5
+ parent: 1
+ - uid: 4708
+ components:
+ - type: Transform
+ pos: 111.5,146.5
+ parent: 1
+ - uid: 4710
+ components:
+ - type: Transform
+ pos: 111.5,128.5
+ parent: 1
+ - uid: 4712
+ components:
+ - type: Transform
+ pos: 111.5,126.5
+ parent: 1
+ - uid: 4721
+ components:
+ - type: Transform
+ pos: 111.5,89.5
+ parent: 1
+ - uid: 4740
+ components:
+ - type: Transform
+ pos: 112.5,146.5
+ parent: 1
+ - uid: 4742
+ components:
+ - type: Transform
+ pos: 112.5,128.5
+ parent: 1
+ - uid: 4744
+ components:
+ - type: Transform
+ pos: 112.5,126.5
+ parent: 1
+ - uid: 4746
+ components:
+ - type: Transform
+ pos: 42.5,42.5
+ parent: 1
+ - uid: 4750
+ components:
+ - type: Transform
+ pos: 112.5,106.5
+ parent: 1
+ - uid: 4755
+ components:
+ - type: Transform
+ pos: 112.5,89.5
+ parent: 1
+ - uid: 4793
+ components:
+ - type: Transform
+ pos: 79.5,19.5
+ parent: 1
+ - uid: 4794
+ components:
+ - type: Transform
+ pos: 75.5,19.5
+ parent: 1
+ - uid: 4795
+ components:
+ - type: Transform
+ pos: 74.5,19.5
+ parent: 1
+ - uid: 4796
+ components:
+ - type: Transform
+ pos: 72.5,19.5
+ parent: 1
+ - uid: 4798
+ components:
+ - type: Transform
+ pos: 76.5,19.5
+ parent: 1
+ - uid: 4799
+ components:
+ - type: Transform
+ pos: 78.5,19.5
+ parent: 1
+ - uid: 4815
+ components:
+ - type: Transform
+ pos: 113.5,128.5
+ parent: 1
+ - uid: 4817
+ components:
+ - type: Transform
+ pos: 113.5,126.5
+ parent: 1
+ - uid: 4827
+ components:
+ - type: Transform
+ pos: 113.5,89.5
+ parent: 1
+ - uid: 4849
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 4891
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 1
+ - uid: 4910
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 4918
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 4958
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 4971
+ components:
+ - type: Transform
+ pos: 116.5,116.5
+ parent: 1
+ - uid: 4989
+ components:
+ - type: Transform
+ pos: 116.5,52.5
+ parent: 1
+ - uid: 5000
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 5010
+ components:
+ - type: Transform
+ pos: 117.5,142.5
+ parent: 1
+ - uid: 5012
+ components:
+ - type: Transform
+ pos: 117.5,141.5
+ parent: 1
+ - uid: 5014
+ components:
+ - type: Transform
+ pos: 117.5,140.5
+ parent: 1
+ - uid: 5017
+ components:
+ - type: Transform
+ pos: 117.5,138.5
+ parent: 1
+ - uid: 5019
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 5021
+ components:
+ - type: Transform
+ pos: 117.5,136.5
+ parent: 1
+ - uid: 5024
+ components:
+ - type: Transform
+ pos: 117.5,134.5
+ parent: 1
+ - uid: 5026
+ components:
+ - type: Transform
+ pos: 117.5,133.5
+ parent: 1
+ - uid: 5027
+ components:
+ - type: Transform
+ pos: 162.5,94.5
+ parent: 1
+ - uid: 5028
+ components:
+ - type: Transform
+ pos: 117.5,132.5
+ parent: 1
+ - uid: 5038
+ components:
+ - type: Transform
+ pos: 117.5,116.5
+ parent: 1
+ - uid: 5043
+ components:
+ - type: Transform
+ pos: 85.5,60.5
+ parent: 1
+ - uid: 5052
+ components:
+ - type: Transform
+ pos: 117.5,79.5
+ parent: 1
+ - uid: 5081
+ components:
+ - type: Transform
+ pos: 117.5,18.5
+ parent: 1
+ - uid: 5082
+ components:
+ - type: Transform
+ pos: 108.5,172.5
+ parent: 1
+ - uid: 5094
+ components:
+ - type: Transform
+ pos: 118.5,116.5
+ parent: 1
+ - uid: 5100
+ components:
+ - type: Transform
+ pos: 118.5,79.5
+ parent: 1
+ - uid: 5101
+ components:
+ - type: Transform
+ pos: 141.5,142.5
+ parent: 1
+ - uid: 5113
+ components:
+ - type: Transform
+ pos: 118.5,18.5
+ parent: 1
+ - uid: 5115
+ components:
+ - type: Transform
+ pos: 112.5,172.5
+ parent: 1
+ - uid: 5123
+ components:
+ - type: Transform
+ pos: 161.5,115.5
+ parent: 1
+ - uid: 5131
+ components:
+ - type: Transform
+ pos: 85.5,54.5
+ parent: 1
+ - uid: 5140
+ components:
+ - type: Transform
+ pos: 85.5,56.5
+ parent: 1
+ - uid: 5144
+ components:
+ - type: Transform
+ pos: 119.5,79.5
+ parent: 1
+ - uid: 5147
+ components:
+ - type: Transform
+ pos: 119.5,52.5
+ parent: 1
+ - uid: 5151
+ components:
+ - type: Transform
+ pos: 127.5,37.5
+ parent: 1
+ - uid: 5152
+ components:
+ - type: Transform
+ pos: 127.5,38.5
+ parent: 1
+ - uid: 5162
+ components:
+ - type: Transform
+ pos: 119.5,18.5
+ parent: 1
+ - uid: 5180
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 5182
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 5184
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 5191
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 5193
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 5195
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 5199
+ components:
+ - type: Transform
+ pos: 120.5,120.5
+ parent: 1
+ - uid: 5221
+ components:
+ - type: Transform
+ pos: 120.5,79.5
+ parent: 1
+ - uid: 5250
+ components:
+ - type: Transform
+ pos: 121.5,120.5
+ parent: 1
+ - uid: 5267
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 5269
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 5272
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 5274
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 5277
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 5279
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 5282
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 5284
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 5290
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 5296
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 5301
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 5303
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 5313
+ components:
+ - type: Transform
+ pos: 121.5,21.5
+ parent: 1
+ - uid: 5315
+ components:
+ - type: Transform
+ pos: 121.5,20.5
+ parent: 1
+ - uid: 5326
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 5330
+ components:
+ - type: Transform
+ pos: 122.5,120.5
+ parent: 1
+ - uid: 5397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,145.5
+ parent: 1
+ - uid: 5434
+ components:
+ - type: Transform
+ pos: 35.5,55.5
+ parent: 1
+ - uid: 5475
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 5488
+ components:
+ - type: Transform
+ pos: 163.5,123.5
+ parent: 1
+ - uid: 5495
+ components:
+ - type: Transform
+ pos: 125.5,141.5
+ parent: 1
+ - uid: 5509
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 5513
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 5517
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 5521
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 5539
+ components:
+ - type: Transform
+ pos: 163.5,122.5
+ parent: 1
+ - uid: 5571
+ components:
+ - type: Transform
+ pos: 126.5,141.5
+ parent: 1
+ - uid: 5573
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 5622
+ components:
+ - type: Transform
+ pos: 63.5,162.5
+ parent: 1
+ - uid: 5627
+ components:
+ - type: Transform
+ pos: 35.5,61.5
+ parent: 1
+ - uid: 5630
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 1
+ - uid: 5636
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 5642
+ components:
+ - type: Transform
+ pos: 127.5,36.5
+ parent: 1
+ - uid: 5647
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 1
+ - uid: 5652
+ components:
+ - type: Transform
+ pos: 162.5,95.5
+ parent: 1
+ - uid: 5667
+ components:
+ - type: Transform
+ pos: 39.5,28.5
+ parent: 1
+ - uid: 5670
+ components:
+ - type: Transform
+ pos: 60.5,62.5
+ parent: 1
+ - uid: 5671
+ components:
+ - type: Transform
+ pos: 57.5,62.5
+ parent: 1
+ - uid: 5672
+ components:
+ - type: Transform
+ pos: 58.5,62.5
+ parent: 1
+ - uid: 5673
+ components:
+ - type: Transform
+ pos: 59.5,62.5
+ parent: 1
+ - uid: 5678
+ components:
+ - type: Transform
+ pos: 69.5,111.5
+ parent: 1
+ - uid: 5684
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 5686
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 5689
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 5691
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 5693
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 5705
+ components:
+ - type: Transform
+ pos: 71.5,109.5
+ parent: 1
+ - uid: 5706
+ components:
+ - type: Transform
+ pos: 75.5,111.5
+ parent: 1
+ - uid: 5709
+ components:
+ - type: Transform
+ pos: 72.5,109.5
+ parent: 1
+ - uid: 5712
+ components:
+ - type: Transform
+ pos: 70.5,109.5
+ parent: 1
+ - uid: 5713
+ components:
+ - type: Transform
+ pos: 76.5,109.5
+ parent: 1
+ - uid: 5715
+ components:
+ - type: Transform
+ pos: 79.5,111.5
+ parent: 1
+ - uid: 5716
+ components:
+ - type: Transform
+ pos: 110.5,120.5
+ parent: 1
+ - uid: 5717
+ components:
+ - type: Transform
+ pos: 77.5,109.5
+ parent: 1
+ - uid: 5729
+ components:
+ - type: Transform
+ pos: 130.5,106.5
+ parent: 1
+ - uid: 5731
+ components:
+ - type: Transform
+ pos: 130.5,105.5
+ parent: 1
+ - uid: 5733
+ components:
+ - type: Transform
+ pos: 130.5,104.5
+ parent: 1
+ - uid: 5737
+ components:
+ - type: Transform
+ pos: 130.5,102.5
+ parent: 1
+ - uid: 5739
+ components:
+ - type: Transform
+ pos: 130.5,101.5
+ parent: 1
+ - uid: 5741
+ components:
+ - type: Transform
+ pos: 130.5,100.5
+ parent: 1
+ - uid: 5746
+ components:
+ - type: Transform
+ pos: 71.5,111.5
+ parent: 1
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: 76.5,111.5
+ parent: 1
+ - uid: 5749
+ components:
+ - type: Transform
+ pos: 109.5,120.5
+ parent: 1
+ - uid: 5750
+ components:
+ - type: Transform
+ pos: 69.5,109.5
+ parent: 1
+ - uid: 5751
+ components:
+ - type: Transform
+ pos: 77.5,111.5
+ parent: 1
+ - uid: 5767
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 5769
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 5773
+ components:
+ - type: Transform
+ pos: 107.5,120.5
+ parent: 1
+ - uid: 5782
+ components:
+ - type: Transform
+ pos: 106.5,121.5
+ parent: 1
+ - uid: 5787
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 5792
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 5794
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 5801
+ components:
+ - type: Transform
+ pos: 106.5,122.5
+ parent: 1
+ - uid: 5805
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 5806
+ components:
+ - type: Transform
+ pos: 107.5,122.5
+ parent: 1
+ - uid: 5812
+ components:
+ - type: Transform
+ pos: 36.5,61.5
+ parent: 1
+ - uid: 5815
+ components:
+ - type: Transform
+ pos: 35.5,54.5
+ parent: 1
+ - uid: 5829
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 5831
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 5835
+ components:
+ - type: Transform
+ pos: 35.5,59.5
+ parent: 1
+ - uid: 5845
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 1
+ - uid: 5846
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 1
+ - uid: 5847
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 5848
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 5865
+ components:
+ - type: Transform
+ pos: 134.5,154.5
+ parent: 1
+ - uid: 5868
+ components:
+ - type: Transform
+ pos: 78.5,109.5
+ parent: 1
+ - uid: 5871
+ components:
+ - type: Transform
+ pos: 73.5,109.5
+ parent: 1
+ - uid: 5875
+ components:
+ - type: Transform
+ pos: 75.5,109.5
+ parent: 1
+ - uid: 5880
+ components:
+ - type: Transform
+ pos: 72.5,111.5
+ parent: 1
+ - uid: 5887
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 5891
+ components:
+ - type: Transform
+ pos: 162.5,97.5
+ parent: 1
+ - uid: 5894
+ components:
+ - type: Transform
+ pos: 134.5,51.5
+ parent: 1
+ - uid: 5898
+ components:
+ - type: Transform
+ pos: 134.5,48.5
+ parent: 1
+ - uid: 5902
+ components:
+ - type: Transform
+ pos: 134.5,45.5
+ parent: 1
+ - uid: 5907
+ components:
+ - type: Transform
+ pos: 135.5,154.5
+ parent: 1
+ - uid: 5931
+ components:
+ - type: Transform
+ pos: 73.5,111.5
+ parent: 1
+ - uid: 5953
+ components:
+ - type: Transform
+ pos: 78.5,111.5
+ parent: 1
+ - uid: 5959
+ components:
+ - type: Transform
+ pos: 70.5,111.5
+ parent: 1
+ - uid: 5969
+ components:
+ - type: Transform
+ pos: 79.5,109.5
+ parent: 1
+ - uid: 5973
+ components:
+ - type: Transform
+ pos: 109.5,122.5
+ parent: 1
+ - uid: 5980
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 5982
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 5984
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 6013
+ components:
+ - type: Transform
+ pos: 108.5,120.5
+ parent: 1
+ - uid: 6017
+ components:
+ - type: Transform
+ pos: 106.5,120.5
+ parent: 1
+ - uid: 6027
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 6029
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 6089
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 6091
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 6156
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 6158
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 6160
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 6186
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 6188
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 6190
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 6204
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 6211
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 6244
+ components:
+ - type: Transform
+ pos: 163.5,119.5
+ parent: 1
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 6264
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 6309
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 6334
+ components:
+ - type: Transform
+ pos: 144.5,135.5
+ parent: 1
+ - uid: 6342
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 6343
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 6358
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 6367
+ components:
+ - type: Transform
+ pos: 145.5,155.5
+ parent: 1
+ - uid: 6371
+ components:
+ - type: Transform
+ pos: 145.5,135.5
+ parent: 1
+ - uid: 6400
+ components:
+ - type: Transform
+ pos: 159.5,82.5
+ parent: 1
+ - uid: 6408
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 6418
+ components:
+ - type: Transform
+ pos: 146.5,155.5
+ parent: 1
+ - uid: 6422
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - uid: 6428
+ components:
+ - type: Transform
+ pos: 146.5,120.5
+ parent: 1
+ - uid: 6437
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 6439
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 6441
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 6450
+ components:
+ - type: Transform
+ pos: 146.5,54.5
+ parent: 1
+ - uid: 6458
+ components:
+ - type: Transform
+ pos: 147.5,155.5
+ parent: 1
+ - uid: 6484
+ components:
+ - type: Transform
+ pos: 147.5,122.5
+ parent: 1
+ - uid: 6486
+ components:
+ - type: Transform
+ pos: 147.5,121.5
+ parent: 1
+ - uid: 6488
+ components:
+ - type: Transform
+ pos: 147.5,120.5
+ parent: 1
+ - uid: 6489
+ components:
+ - type: Transform
+ pos: 163.5,120.5
+ parent: 1
+ - uid: 6493
+ components:
+ - type: Transform
+ pos: 163.5,117.5
+ parent: 1
+ - uid: 6498
+ components:
+ - type: Transform
+ pos: 163.5,116.5
+ parent: 1
+ - uid: 6505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 6513
+ components:
+ - type: Transform
+ pos: 147.5,54.5
+ parent: 1
+ - uid: 6537
+ components:
+ - type: Transform
+ pos: 148.5,54.5
+ parent: 1
+ - uid: 6544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 6550
+ components:
+ - type: Transform
+ pos: 163.5,114.5
+ parent: 1
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: 163.5,113.5
+ parent: 1
+ - uid: 6580
+ components:
+ - type: Transform
+ pos: 152.5,42.5
+ parent: 1
+ - uid: 6585
+ components:
+ - type: Transform
+ pos: 150.5,72.5
+ parent: 1
+ - uid: 6587
+ components:
+ - type: Transform
+ pos: 150.5,71.5
+ parent: 1
+ - uid: 6589
+ components:
+ - type: Transform
+ pos: 150.5,70.5
+ parent: 1
+ - uid: 6597
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 6599
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 6647
+ components:
+ - type: Transform
+ pos: 141.5,50.5
+ parent: 1
+ - uid: 6656
+ components:
+ - type: Transform
+ pos: 101.5,166.5
+ parent: 1
+ - uid: 6757
+ components:
+ - type: Transform
+ pos: 151.5,42.5
+ parent: 1
+ - uid: 6759
+ components:
+ - type: Transform
+ pos: 148.5,42.5
+ parent: 1
+ - uid: 6760
+ components:
+ - type: Transform
+ pos: 149.5,42.5
+ parent: 1
+ - uid: 6775
+ components:
+ - type: Transform
+ pos: 156.5,41.5
+ parent: 1
+ - uid: 6789
+ components:
+ - type: Transform
+ pos: 22.5,111.5
+ parent: 1
+ - uid: 6806
+ components:
+ - type: Transform
+ pos: 160.5,41.5
+ parent: 1
+ - uid: 6825
+ components:
+ - type: Transform
+ pos: 24.5,111.5
+ parent: 1
+ - uid: 6835
+ components:
+ - type: Transform
+ pos: 156.5,82.5
+ parent: 1
+ - uid: 6880
+ components:
+ - type: Transform
+ pos: 157.5,82.5
+ parent: 1
+ - uid: 6881
+ components:
+ - type: Transform
+ pos: 164.5,49.5
+ parent: 1
+ - uid: 6883
+ components:
+ - type: Transform
+ pos: 164.5,51.5
+ parent: 1
+ - uid: 6884
+ components:
+ - type: Transform
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 6896
+ components:
+ - type: Transform
+ pos: 164.5,47.5
+ parent: 1
+ - uid: 6903
+ components:
+ - type: Transform
+ pos: 103.5,27.5
+ parent: 1
+ - uid: 6904
+ components:
+ - type: Transform
+ pos: 103.5,26.5
+ parent: 1
+ - uid: 6935
+ components:
+ - type: Transform
+ pos: 158.5,82.5
+ parent: 1
+ - uid: 6936
+ components:
+ - type: Transform
+ pos: 164.5,45.5
+ parent: 1
+ - uid: 6955
+ components:
+ - type: Transform
+ pos: 159.5,108.5
+ parent: 1
+ - uid: 6959
+ components:
+ - type: Transform
+ pos: 159.5,103.5
+ parent: 1
+ - uid: 6967
+ components:
+ - type: Transform
+ pos: 159.5,99.5
+ parent: 1
+ - uid: 6969
+ components:
+ - type: Transform
+ pos: 159.5,98.5
+ parent: 1
+ - uid: 7020
+ components:
+ - type: Transform
+ pos: 160.5,108.5
+ parent: 1
+ - uid: 7039
+ components:
+ - type: Transform
+ pos: 46.5,52.5
+ parent: 1
+ - uid: 7055
+ components:
+ - type: Transform
+ pos: 161.5,108.5
+ parent: 1
+ - uid: 7081
+ components:
+ - type: Transform
+ pos: 162.5,108.5
+ parent: 1
+ - uid: 7091
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 7093
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 7161
+ components:
+ - type: Transform
+ pos: 164.5,58.5
+ parent: 1
+ - uid: 7164
+ components:
+ - type: Transform
+ pos: 164.5,56.5
+ parent: 1
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7177
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 7192
+ components:
+ - type: Transform
+ pos: 165.5,58.5
+ parent: 1
+ - uid: 7194
+ components:
+ - type: Transform
+ pos: 165.5,56.5
+ parent: 1
+ - uid: 7211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,128.5
+ parent: 1
+ - uid: 7213
+ components:
+ - type: Transform
+ pos: 166.5,58.5
+ parent: 1
+ - uid: 7216
+ components:
+ - type: Transform
+ pos: 166.5,56.5
+ parent: 1
+ - uid: 7254
+ components:
+ - type: Transform
+ pos: 108.5,122.5
+ parent: 1
+ - uid: 7259
+ components:
+ - type: Transform
+ pos: 110.5,121.5
+ parent: 1
+ - uid: 7261
+ components:
+ - type: Transform
+ pos: 110.5,122.5
+ parent: 1
+ - uid: 7292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,80.5
+ parent: 1
+ - uid: 7563
+ components:
+ - type: Transform
+ pos: 81.5,52.5
+ parent: 1
+ - uid: 7576
+ components:
+ - type: Transform
+ pos: 81.5,55.5
+ parent: 1
+ - uid: 7644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,127.5
+ parent: 1
+ - uid: 7673
+ components:
+ - type: Transform
+ pos: 81.5,58.5
+ parent: 1
+ - uid: 7718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,127.5
+ parent: 1
+ - uid: 7750
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 7760
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 8090
+ components:
+ - type: Transform
+ pos: 93.5,26.5
+ parent: 1
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: 91.5,24.5
+ parent: 1
+ - uid: 8150
+ components:
+ - type: Transform
+ pos: 146.5,150.5
+ parent: 1
+ - uid: 8160
+ components:
+ - type: Transform
+ pos: 114.5,172.5
+ parent: 1
+ - uid: 8188
+ components:
+ - type: Transform
+ pos: 113.5,172.5
+ parent: 1
+ - uid: 8637
+ components:
+ - type: Transform
+ pos: 34.5,45.5
+ parent: 1
+ - uid: 9012
+ components:
+ - type: Transform
+ pos: 103.5,127.5
+ parent: 1
+ - uid: 9050
+ components:
+ - type: Transform
+ pos: 97.5,157.5
+ parent: 1
+ - uid: 9109
+ components:
+ - type: Transform
+ pos: 101.5,157.5
+ parent: 1
+ - uid: 9123
+ components:
+ - type: Transform
+ pos: 104.5,127.5
+ parent: 1
+ - uid: 9124
+ components:
+ - type: Transform
+ pos: 105.5,127.5
+ parent: 1
+ - uid: 9125
+ components:
+ - type: Transform
+ pos: 106.5,127.5
+ parent: 1
+ - uid: 9126
+ components:
+ - type: Transform
+ pos: 107.5,127.5
+ parent: 1
+ - uid: 9127
+ components:
+ - type: Transform
+ pos: 108.5,127.5
+ parent: 1
+ - uid: 9128
+ components:
+ - type: Transform
+ pos: 109.5,127.5
+ parent: 1
+ - uid: 9129
+ components:
+ - type: Transform
+ pos: 110.5,127.5
+ parent: 1
+ - uid: 9130
+ components:
+ - type: Transform
+ pos: 111.5,127.5
+ parent: 1
+ - uid: 9131
+ components:
+ - type: Transform
+ pos: 113.5,127.5
+ parent: 1
+ - uid: 9132
+ components:
+ - type: Transform
+ pos: 112.5,127.5
+ parent: 1
+ - uid: 9368
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 9422
+ components:
+ - type: Transform
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 9426
+ components:
+ - type: Transform
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 9429
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 9430
+ components:
+ - type: Transform
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 9473
+ components:
+ - type: Transform
+ pos: 39.5,27.5
+ parent: 1
+ - uid: 9480
+ components:
+ - type: Transform
+ pos: 124.5,133.5
+ parent: 1
+ - uid: 9507
+ components:
+ - type: Transform
+ pos: 37.5,61.5
+ parent: 1
+ - uid: 9508
+ components:
+ - type: Transform
+ pos: 37.5,60.5
+ parent: 1
+ - uid: 9509
+ components:
+ - type: Transform
+ pos: 37.5,59.5
+ parent: 1
+ - uid: 9510
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 1
+ - uid: 9511
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 1
+ - uid: 9512
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 1
+ - uid: 9513
+ components:
+ - type: Transform
+ pos: 37.5,55.5
+ parent: 1
+ - uid: 9514
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 1
+ - uid: 9515
+ components:
+ - type: Transform
+ pos: 39.5,26.5
+ parent: 1
+ - uid: 9516
+ components:
+ - type: Transform
+ pos: 39.5,25.5
+ parent: 1
+ - uid: 9517
+ components:
+ - type: Transform
+ pos: 39.5,24.5
+ parent: 1
+ - uid: 9518
+ components:
+ - type: Transform
+ pos: 39.5,23.5
+ parent: 1
+ - uid: 9519
+ components:
+ - type: Transform
+ pos: 39.5,22.5
+ parent: 1
+ - uid: 9520
+ components:
+ - type: Transform
+ pos: 39.5,21.5
+ parent: 1
+ - uid: 9521
+ components:
+ - type: Transform
+ pos: 39.5,20.5
+ parent: 1
+ - uid: 9522
+ components:
+ - type: Transform
+ pos: 40.5,20.5
+ parent: 1
+ - uid: 9523
+ components:
+ - type: Transform
+ pos: 40.5,19.5
+ parent: 1
+ - uid: 9524
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 1
+ - uid: 9525
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 1
+ - uid: 9526
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 1
+ - uid: 9527
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1
+ - uid: 9528
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 1
+ - uid: 9529
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 1
+ - uid: 9530
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 1
+ - uid: 9531
+ components:
+ - type: Transform
+ pos: 47.5,15.5
+ parent: 1
+ - uid: 9532
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 1
+ - uid: 9533
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 1
+ - uid: 9534
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 1
+ - uid: 9535
+ components:
+ - type: Transform
+ pos: 51.5,15.5
+ parent: 1
+ - uid: 9536
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 1
+ - uid: 9537
+ components:
+ - type: Transform
+ pos: 53.5,15.5
+ parent: 1
+ - uid: 9538
+ components:
+ - type: Transform
+ pos: 54.5,16.5
+ parent: 1
+ - uid: 9539
+ components:
+ - type: Transform
+ pos: 55.5,16.5
+ parent: 1
+ - uid: 9540
+ components:
+ - type: Transform
+ pos: 56.5,17.5
+ parent: 1
+ - uid: 9541
+ components:
+ - type: Transform
+ pos: 57.5,17.5
+ parent: 1
+ - uid: 9542
+ components:
+ - type: Transform
+ pos: 57.5,18.5
+ parent: 1
+ - uid: 9543
+ components:
+ - type: Transform
+ pos: 58.5,19.5
+ parent: 1
+ - uid: 9544
+ components:
+ - type: Transform
+ pos: 58.5,20.5
+ parent: 1
+ - uid: 9545
+ components:
+ - type: Transform
+ pos: 59.5,20.5
+ parent: 1
+ - uid: 9546
+ components:
+ - type: Transform
+ pos: 59.5,21.5
+ parent: 1
+ - uid: 9547
+ components:
+ - type: Transform
+ pos: 59.5,22.5
+ parent: 1
+ - uid: 9548
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 1
+ - uid: 9549
+ components:
+ - type: Transform
+ pos: 59.5,24.5
+ parent: 1
+ - uid: 9550
+ components:
+ - type: Transform
+ pos: 59.5,25.5
+ parent: 1
+ - uid: 9551
+ components:
+ - type: Transform
+ pos: 59.5,26.5
+ parent: 1
+ - uid: 9552
+ components:
+ - type: Transform
+ pos: 59.5,27.5
+ parent: 1
+ - uid: 9553
+ components:
+ - type: Transform
+ pos: 58.5,28.5
+ parent: 1
+ - uid: 9554
+ components:
+ - type: Transform
+ pos: 58.5,29.5
+ parent: 1
+ - uid: 9555
+ components:
+ - type: Transform
+ pos: 57.5,30.5
+ parent: 1
+ - uid: 9556
+ components:
+ - type: Transform
+ pos: 57.5,31.5
+ parent: 1
+ - uid: 9557
+ components:
+ - type: Transform
+ pos: 56.5,31.5
+ parent: 1
+ - uid: 9558
+ components:
+ - type: Transform
+ pos: 55.5,32.5
+ parent: 1
+ - uid: 9559
+ components:
+ - type: Transform
+ pos: 54.5,32.5
+ parent: 1
+ - uid: 9560
+ components:
+ - type: Transform
+ pos: 53.5,33.5
+ parent: 1
+ - uid: 9561
+ components:
+ - type: Transform
+ pos: 48.5,33.5
+ parent: 1
+ - uid: 9562
+ components:
+ - type: Transform
+ pos: 46.5,33.5
+ parent: 1
+ - uid: 9563
+ components:
+ - type: Transform
+ pos: 45.5,33.5
+ parent: 1
+ - uid: 9564
+ components:
+ - type: Transform
+ pos: 47.5,33.5
+ parent: 1
+ - uid: 9565
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 1
+ - uid: 9566
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 1
+ - uid: 9567
+ components:
+ - type: Transform
+ pos: 42.5,31.5
+ parent: 1
+ - uid: 9568
+ components:
+ - type: Transform
+ pos: 41.5,31.5
+ parent: 1
+ - uid: 9569
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 1
+ - uid: 9570
+ components:
+ - type: Transform
+ pos: 40.5,29.5
+ parent: 1
+ - uid: 9571
+ components:
+ - type: Transform
+ pos: 40.5,28.5
+ parent: 1
+ - uid: 9572
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 1
+ - uid: 9573
+ components:
+ - type: Transform
+ pos: 42.5,35.5
+ parent: 1
+ - uid: 9574
+ components:
+ - type: Transform
+ pos: 41.5,36.5
+ parent: 1
+ - uid: 9575
+ components:
+ - type: Transform
+ pos: 41.5,37.5
+ parent: 1
+ - uid: 9576
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 1
+ - uid: 9577
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1
+ - uid: 9578
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1
+ - uid: 9580
+ components:
+ - type: Transform
+ pos: 43.5,42.5
+ parent: 1
+ - uid: 9582
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 1
+ - uid: 9583
+ components:
+ - type: Transform
+ pos: 38.5,45.5
+ parent: 1
+ - uid: 9584
+ components:
+ - type: Transform
+ pos: 37.5,45.5
+ parent: 1
+ - uid: 9585
+ components:
+ - type: Transform
+ pos: 36.5,45.5
+ parent: 1
+ - uid: 9586
+ components:
+ - type: Transform
+ pos: 33.5,45.5
+ parent: 1
+ - uid: 9587
+ components:
+ - type: Transform
+ pos: 32.5,45.5
+ parent: 1
+ - uid: 9588
+ components:
+ - type: Transform
+ pos: 32.5,46.5
+ parent: 1
+ - uid: 9589
+ components:
+ - type: Transform
+ pos: 30.5,48.5
+ parent: 1
+ - uid: 9590
+ components:
+ - type: Transform
+ pos: 31.5,46.5
+ parent: 1
+ - uid: 9591
+ components:
+ - type: Transform
+ pos: 29.5,48.5
+ parent: 1
+ - uid: 9592
+ components:
+ - type: Transform
+ pos: 29.5,49.5
+ parent: 1
+ - uid: 9593
+ components:
+ - type: Transform
+ pos: 29.5,50.5
+ parent: 1
+ - uid: 9594
+ components:
+ - type: Transform
+ pos: 29.5,51.5
+ parent: 1
+ - uid: 9596
+ components:
+ - type: Transform
+ pos: 29.5,53.5
+ parent: 1
+ - uid: 9597
+ components:
+ - type: Transform
+ pos: 29.5,54.5
+ parent: 1
+ - uid: 9598
+ components:
+ - type: Transform
+ pos: 29.5,55.5
+ parent: 1
+ - uid: 9599
+ components:
+ - type: Transform
+ pos: 29.5,56.5
+ parent: 1
+ - uid: 9600
+ components:
+ - type: Transform
+ pos: 29.5,57.5
+ parent: 1
+ - uid: 9601
+ components:
+ - type: Transform
+ pos: 29.5,59.5
+ parent: 1
+ - uid: 9602
+ components:
+ - type: Transform
+ pos: 29.5,60.5
+ parent: 1
+ - uid: 9603
+ components:
+ - type: Transform
+ pos: 29.5,61.5
+ parent: 1
+ - uid: 9604
+ components:
+ - type: Transform
+ pos: 29.5,62.5
+ parent: 1
+ - uid: 9605
+ components:
+ - type: Transform
+ pos: 29.5,63.5
+ parent: 1
+ - uid: 9606
+ components:
+ - type: Transform
+ pos: 27.5,55.5
+ parent: 1
+ - uid: 9607
+ components:
+ - type: Transform
+ pos: 27.5,56.5
+ parent: 1
+ - uid: 9608
+ components:
+ - type: Transform
+ pos: 27.5,57.5
+ parent: 1
+ - uid: 9609
+ components:
+ - type: Transform
+ pos: 27.5,58.5
+ parent: 1
+ - uid: 9610
+ components:
+ - type: Transform
+ pos: 27.5,59.5
+ parent: 1
+ - uid: 9611
+ components:
+ - type: Transform
+ pos: 27.5,51.5
+ parent: 1
+ - uid: 9612
+ components:
+ - type: Transform
+ pos: 27.5,50.5
+ parent: 1
+ - uid: 9613
+ components:
+ - type: Transform
+ pos: 27.5,49.5
+ parent: 1
+ - uid: 9614
+ components:
+ - type: Transform
+ pos: 27.5,48.5
+ parent: 1
+ - uid: 9615
+ components:
+ - type: Transform
+ pos: 27.5,47.5
+ parent: 1
+ - uid: 9616
+ components:
+ - type: Transform
+ pos: 33.5,43.5
+ parent: 1
+ - uid: 9617
+ components:
+ - type: Transform
+ pos: 28.5,44.5
+ parent: 1
+ - uid: 9618
+ components:
+ - type: Transform
+ pos: 28.5,45.5
+ parent: 1
+ - uid: 9619
+ components:
+ - type: Transform
+ pos: 29.5,44.5
+ parent: 1
+ - uid: 9620
+ components:
+ - type: Transform
+ pos: 30.5,44.5
+ parent: 1
+ - uid: 9621
+ components:
+ - type: Transform
+ pos: 34.5,43.5
+ parent: 1
+ - uid: 9622
+ components:
+ - type: Transform
+ pos: 32.5,43.5
+ parent: 1
+ - uid: 9623
+ components:
+ - type: Transform
+ pos: 38.5,43.5
+ parent: 1
+ - uid: 9624
+ components:
+ - type: Transform
+ pos: 39.5,43.5
+ parent: 1
+ - uid: 9625
+ components:
+ - type: Transform
+ pos: 27.5,61.5
+ parent: 1
+ - uid: 9626
+ components:
+ - type: Transform
+ pos: 27.5,62.5
+ parent: 1
+ - uid: 9627
+ components:
+ - type: Transform
+ pos: 27.5,63.5
+ parent: 1
+ - uid: 9628
+ components:
+ - type: Transform
+ pos: 27.5,64.5
+ parent: 1
+ - uid: 9659
+ components:
+ - type: Transform
+ pos: 35.5,53.5
+ parent: 1
+ - uid: 9661
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 1
+ - uid: 9671
+ components:
+ - type: Transform
+ pos: 69.5,54.5
+ parent: 1
+ - uid: 9820
+ components:
+ - type: Transform
+ pos: 107.5,23.5
+ parent: 1
+ - uid: 9989
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 10222
+ components:
+ - type: Transform
+ pos: 44.5,42.5
+ parent: 1
+ - uid: 10223
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 1
+ - uid: 10225
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 10228
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 1
+ - uid: 10799
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 11350
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 11362
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 11363
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 11916
+ components:
+ - type: Transform
+ pos: 54.5,73.5
+ parent: 1
+ - uid: 12401
+ components:
+ - type: Transform
+ pos: 146.5,109.5
+ parent: 1
+ - uid: 12495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,121.5
+ parent: 1
+ - uid: 12687
+ components:
+ - type: Transform
+ pos: 65.5,59.5
+ parent: 1
+ - uid: 12688
+ components:
+ - type: Transform
+ pos: 69.5,59.5
+ parent: 1
+ - uid: 12990
+ components:
+ - type: Transform
+ pos: 45.5,37.5
+ parent: 1
+ - uid: 12994
+ components:
+ - type: Transform
+ pos: 45.5,36.5
+ parent: 1
+ - uid: 13126
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1
+ - uid: 13127
+ components:
+ - type: Transform
+ pos: 45.5,40.5
+ parent: 1
+ - uid: 13234
+ components:
+ - type: Transform
+ pos: 124.5,134.5
+ parent: 1
+ - uid: 13300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,127.5
+ parent: 1
+ - uid: 13474
+ components:
+ - type: Transform
+ pos: 108.5,157.5
+ parent: 1
+ - uid: 13475
+ components:
+ - type: Transform
+ pos: 109.5,157.5
+ parent: 1
+ - uid: 13476
+ components:
+ - type: Transform
+ pos: 111.5,157.5
+ parent: 1
+ - uid: 13477
+ components:
+ - type: Transform
+ pos: 110.5,157.5
+ parent: 1
+ - uid: 13478
+ components:
+ - type: Transform
+ pos: 112.5,157.5
+ parent: 1
+ - uid: 13571
+ components:
+ - type: Transform
+ pos: 32.5,73.5
+ parent: 1
+ - uid: 13702
+ components:
+ - type: Transform
+ pos: 135.5,79.5
+ parent: 1
+ - uid: 13809
+ components:
+ - type: Transform
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 14284
+ components:
+ - type: Transform
+ pos: 115.5,127.5
+ parent: 1
+ - uid: 14285
+ components:
+ - type: Transform
+ pos: 116.5,127.5
+ parent: 1
+ - uid: 14286
+ components:
+ - type: Transform
+ pos: 117.5,127.5
+ parent: 1
+ - uid: 14287
+ components:
+ - type: Transform
+ pos: 118.5,127.5
+ parent: 1
+ - uid: 14288
+ components:
+ - type: Transform
+ pos: 118.5,128.5
+ parent: 1
+ - uid: 14289
+ components:
+ - type: Transform
+ pos: 118.5,129.5
+ parent: 1
+ - uid: 14290
+ components:
+ - type: Transform
+ pos: 118.5,130.5
+ parent: 1
+ - uid: 14291
+ components:
+ - type: Transform
+ pos: 118.5,144.5
+ parent: 1
+ - uid: 14292
+ components:
+ - type: Transform
+ pos: 118.5,145.5
+ parent: 1
+ - uid: 14293
+ components:
+ - type: Transform
+ pos: 118.5,146.5
+ parent: 1
+ - uid: 14294
+ components:
+ - type: Transform
+ pos: 118.5,147.5
+ parent: 1
+ - uid: 14295
+ components:
+ - type: Transform
+ pos: 117.5,147.5
+ parent: 1
+ - uid: 14777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,43.5
+ parent: 1
+ - uid: 14778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,43.5
+ parent: 1
+ - uid: 14977
+ components:
+ - type: Transform
+ pos: 124.5,132.5
+ parent: 1
+ - uid: 15111
+ components:
+ - type: Transform
+ pos: 137.5,79.5
+ parent: 1
+ - uid: 15458
+ components:
+ - type: Transform
+ pos: 107.5,79.5
+ parent: 1
+ - uid: 15494
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 15509
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 15517
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 15520
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 15687
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 15714
+ components:
+ - type: Transform
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 15717
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 15721
+ components:
+ - type: Transform
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 15732
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 15737
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15738
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15762
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 15820
+ components:
+ - type: Transform
+ pos: 166.5,144.5
+ parent: 1
+ - uid: 16007
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 16019
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 16112
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 16116
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 16132
+ components:
+ - type: Transform
+ pos: 119.5,112.5
+ parent: 1
+ - uid: 16298
+ components:
+ - type: Transform
+ pos: 132.5,79.5
+ parent: 1
+ - uid: 16307
+ components:
+ - type: Transform
+ pos: 96.5,150.5
+ parent: 1
+ - uid: 16528
+ components:
+ - type: Transform
+ pos: 161.5,105.5
+ parent: 1
+ - uid: 16909
+ components:
+ - type: Transform
+ pos: 107.5,164.5
+ parent: 1
+ - uid: 17346
+ components:
+ - type: Transform
+ pos: 126.5,169.5
+ parent: 1
+ - uid: 17625
+ components:
+ - type: Transform
+ pos: 125.5,172.5
+ parent: 1
+ - uid: 17641
+ components:
+ - type: Transform
+ pos: 123.5,172.5
+ parent: 1
+ - uid: 17650
+ components:
+ - type: Transform
+ pos: 126.5,170.5
+ parent: 1
+ - uid: 17742
+ components:
+ - type: Transform
+ pos: 126.5,171.5
+ parent: 1
+ - uid: 17771
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 17926
+ components:
+ - type: Transform
+ pos: 124.5,172.5
+ parent: 1
+ - uid: 17930
+ components:
+ - type: Transform
+ pos: 125.5,171.5
+ parent: 1
+ - uid: 17931
+ components:
+ - type: Transform
+ pos: 126.5,159.5
+ parent: 1
+ - uid: 17939
+ components:
+ - type: Transform
+ pos: 126.5,161.5
+ parent: 1
+ - uid: 17960
+ components:
+ - type: Transform
+ pos: 167.5,138.5
+ parent: 1
+ - uid: 18019
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 18024
+ components:
+ - type: Transform
+ pos: 168.5,137.5
+ parent: 1
+ - uid: 18062
+ components:
+ - type: Transform
+ pos: 168.5,138.5
+ parent: 1
+ - uid: 18065
+ components:
+ - type: Transform
+ pos: 170.5,135.5
+ parent: 1
+ - uid: 18073
+ components:
+ - type: Transform
+ pos: 168.5,131.5
+ parent: 1
+ - uid: 18076
+ components:
+ - type: Transform
+ pos: 168.5,132.5
+ parent: 1
+ - uid: 18081
+ components:
+ - type: Transform
+ pos: 167.5,131.5
+ parent: 1
+ - uid: 18082
+ components:
+ - type: Transform
+ pos: 169.5,132.5
+ parent: 1
+ - uid: 18224
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 18275
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 18347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,127.5
+ parent: 1
+ - uid: 18886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,44.5
+ parent: 1
+ - uid: 18887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,44.5
+ parent: 1
+ - uid: 19107
+ components:
+ - type: Transform
+ pos: 102.5,49.5
+ parent: 1
+ - uid: 19235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,42.5
+ parent: 1
+ - uid: 19432
+ components:
+ - type: Transform
+ pos: 108.5,29.5
+ parent: 1
+ - uid: 19453
+ components:
+ - type: Transform
+ pos: 146.5,149.5
+ parent: 1
+ - uid: 19560
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 19562
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 20347
+ components:
+ - type: Transform
+ pos: 50.5,93.5
+ parent: 1
+ - uid: 20349
+ components:
+ - type: Transform
+ pos: 49.5,94.5
+ parent: 1
+ - uid: 20474
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 20868
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 21063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,43.5
+ parent: 1
+ - uid: 21069
+ components:
+ - type: Transform
+ pos: 162.5,93.5
+ parent: 1
+ - uid: 21073
+ components:
+ - type: Transform
+ pos: 162.5,100.5
+ parent: 1
+ - uid: 21075
+ components:
+ - type: Transform
+ pos: 162.5,102.5
+ parent: 1
+ - uid: 21076
+ components:
+ - type: Transform
+ pos: 162.5,99.5
+ parent: 1
+ - uid: 21077
+ components:
+ - type: Transform
+ pos: 162.5,103.5
+ parent: 1
+ - uid: 21078
+ components:
+ - type: Transform
+ pos: 162.5,104.5
+ parent: 1
+ - uid: 21079
+ components:
+ - type: Transform
+ pos: 162.5,88.5
+ parent: 1
+ - uid: 21081
+ components:
+ - type: Transform
+ pos: 162.5,86.5
+ parent: 1
+ - uid: 21082
+ components:
+ - type: Transform
+ pos: 162.5,84.5
+ parent: 1
+ - uid: 21083
+ components:
+ - type: Transform
+ pos: 163.5,88.5
+ parent: 1
+ - uid: 21084
+ components:
+ - type: Transform
+ pos: 163.5,93.5
+ parent: 1
+ - uid: 22668
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+ - uid: 22734
+ components:
+ - type: Transform
+ pos: 130.5,155.5
+ parent: 1
+ - uid: 22751
+ components:
+ - type: Transform
+ pos: 128.5,155.5
+ parent: 1
+ - uid: 22860
+ components:
+ - type: Transform
+ pos: 99.5,121.5
+ parent: 1
+ - uid: 22861
+ components:
+ - type: Transform
+ pos: 100.5,122.5
+ parent: 1
+ - uid: 22862
+ components:
+ - type: Transform
+ pos: 99.5,122.5
+ parent: 1
+ - uid: 22864
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 22865
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 22920
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 22974
+ components:
+ - type: Transform
+ pos: 159.5,95.5
+ parent: 1
+ - uid: 23094
+ components:
+ - type: Transform
+ pos: 158.5,95.5
+ parent: 1
+ - uid: 23135
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+ - uid: 23219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,43.5
+ parent: 1
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: 65.5,60.5
+ parent: 1
+ - uid: 23311
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 23318
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 23333
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+ - uid: 23397
+ components:
+ - type: Transform
+ pos: 133.5,79.5
+ parent: 1
+ - uid: 23401
+ components:
+ - type: Transform
+ pos: 134.5,79.5
+ parent: 1
+ - uid: 23558
+ components:
+ - type: Transform
+ pos: 163.5,150.5
+ parent: 1
+ - uid: 23598
+ components:
+ - type: Transform
+ pos: 42.5,119.5
+ parent: 1
+ - uid: 23619
+ components:
+ - type: Transform
+ pos: 163.5,118.5
+ parent: 1
+ - uid: 23750
+ components:
+ - type: Transform
+ pos: 93.5,83.5
+ parent: 1
+ - uid: 23792
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 23849
+ components:
+ - type: Transform
+ pos: 126.5,107.5
+ parent: 1
+ - uid: 23850
+ components:
+ - type: Transform
+ pos: 126.5,108.5
+ parent: 1
+ - uid: 23851
+ components:
+ - type: Transform
+ pos: 126.5,109.5
+ parent: 1
+ - uid: 23941
+ components:
+ - type: Transform
+ pos: 42.5,41.5
+ parent: 1
+ - uid: 24189
+ components:
+ - type: Transform
+ pos: 69.5,71.5
+ parent: 1
+ - uid: 24228
+ components:
+ - type: Transform
+ pos: 141.5,96.5
+ parent: 1
+ - uid: 24314
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 24318
+ components:
+ - type: Transform
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 24319
+ components:
+ - type: Transform
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 24426
+ components:
+ - type: Transform
+ pos: 151.5,52.5
+ parent: 1
+ - uid: 24593
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 24732
+ components:
+ - type: Transform
+ pos: 69.5,57.5
+ parent: 1
+ - uid: 24945
+ components:
+ - type: Transform
+ pos: 105.5,103.5
+ parent: 1
+ - uid: 25177
+ components:
+ - type: Transform
+ pos: 161.5,122.5
+ parent: 1
+ - uid: 25236
+ components:
+ - type: Transform
+ pos: 123.5,107.5
+ parent: 1
+ - uid: 25237
+ components:
+ - type: Transform
+ pos: 123.5,108.5
+ parent: 1
+ - uid: 25392
+ components:
+ - type: Transform
+ pos: 155.5,54.5
+ parent: 1
+ - uid: 25476
+ components:
+ - type: Transform
+ pos: 29.5,104.5
+ parent: 1
+ - uid: 25921
+ components:
+ - type: Transform
+ pos: 107.5,65.5
+ parent: 1
+ - uid: 25922
+ components:
+ - type: Transform
+ pos: 103.5,65.5
+ parent: 1
+ - uid: 26178
+ components:
+ - type: Transform
+ pos: 103.5,49.5
+ parent: 1
+ - uid: 26221
+ components:
+ - type: Transform
+ pos: 97.5,49.5
+ parent: 1
+ - uid: 26274
+ components:
+ - type: Transform
+ pos: 109.5,172.5
+ parent: 1
+ - uid: 26418
+ components:
+ - type: Transform
+ pos: 111.5,172.5
+ parent: 1
+ - uid: 26717
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 26846
+ components:
+ - type: Transform
+ pos: 50.5,68.5
+ parent: 1
+ - uid: 26893
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+ - uid: 26924
+ components:
+ - type: Transform
+ pos: 130.5,128.5
+ parent: 1
+ - uid: 26927
+ components:
+ - type: Transform
+ pos: 132.5,130.5
+ parent: 1
+ - uid: 26977
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 27100
+ components:
+ - type: Transform
+ pos: 81.5,59.5
+ parent: 1
+ - uid: 27101
+ components:
+ - type: Transform
+ pos: 81.5,56.5
+ parent: 1
+ - uid: 27105
+ components:
+ - type: Transform
+ pos: 81.5,60.5
+ parent: 1
+ - uid: 27107
+ components:
+ - type: Transform
+ pos: 69.5,53.5
+ parent: 1
+ - uid: 27108
+ components:
+ - type: Transform
+ pos: 69.5,55.5
+ parent: 1
+ - uid: 27118
+ components:
+ - type: Transform
+ pos: 69.5,58.5
+ parent: 1
+ - uid: 27177
+ components:
+ - type: Transform
+ pos: 81.5,53.5
+ parent: 1
+ - uid: 27216
+ components:
+ - type: Transform
+ pos: 69.5,60.5
+ parent: 1
+ - uid: 27266
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 27269
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 27270
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 27278
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 27279
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 27433
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 27449
+ components:
+ - type: Transform
+ pos: 69.5,85.5
+ parent: 1
+ - uid: 27594
+ components:
+ - type: Transform
+ pos: 65.5,58.5
+ parent: 1
+ - uid: 27615
+ components:
+ - type: Transform
+ pos: 156.5,86.5
+ parent: 1
+ - uid: 27650
+ components:
+ - type: Transform
+ pos: 121.5,38.5
+ parent: 1
+ - uid: 27664
+ components:
+ - type: Transform
+ pos: 121.5,37.5
+ parent: 1
+ - uid: 27714
+ components:
+ - type: Transform
+ pos: 126.5,157.5
+ parent: 1
+ - uid: 27971
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+ - uid: 27973
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 28174
+ components:
+ - type: Transform
+ pos: 65.5,69.5
+ parent: 1
+ - uid: 28185
+ components:
+ - type: Transform
+ pos: 126.5,81.5
+ parent: 1
+ - uid: 28492
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 28493
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 28593
+ components:
+ - type: Transform
+ pos: 63.5,61.5
+ parent: 1
+ - uid: 28595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,65.5
+ parent: 1
+ - uid: 28609
+ components:
+ - type: Transform
+ pos: 62.5,70.5
+ parent: 1
+ - uid: 28714
+ components:
+ - type: Transform
+ pos: 121.5,36.5
+ parent: 1
+ - uid: 28755
+ components:
+ - type: Transform
+ pos: 94.5,49.5
+ parent: 1
+ - uid: 28785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,35.5
+ parent: 1
+ - uid: 28903
+ components:
+ - type: Transform
+ pos: 158.5,84.5
+ parent: 1
+ - uid: 29057
+ components:
+ - type: Transform
+ pos: 121.5,115.5
+ parent: 1
+ - uid: 29064
+ components:
+ - type: Transform
+ pos: 109.5,65.5
+ parent: 1
+ - uid: 29065
+ components:
+ - type: Transform
+ pos: 105.5,65.5
+ parent: 1
+ - uid: 29153
+ components:
+ - type: Transform
+ pos: 142.5,149.5
+ parent: 1
+ - uid: 29157
+ components:
+ - type: Transform
+ pos: 142.5,150.5
+ parent: 1
+ - uid: 29163
+ components:
+ - type: Transform
+ pos: 117.5,36.5
+ parent: 1
+ - uid: 29336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,44.5
+ parent: 1
+ - uid: 29338
+ components:
+ - type: Transform
+ pos: 77.5,62.5
+ parent: 1
+ - uid: 29505
+ components:
+ - type: Transform
+ pos: 60.5,111.5
+ parent: 1
+ - uid: 29518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,161.5
+ parent: 1
+ - uid: 29564
+ components:
+ - type: Transform
+ pos: 146.5,151.5
+ parent: 1
+ - uid: 29647
+ components:
+ - type: Transform
+ pos: 59.5,111.5
+ parent: 1
+ - uid: 29670
+ components:
+ - type: Transform
+ pos: 148.5,140.5
+ parent: 1
+ - uid: 29671
+ components:
+ - type: Transform
+ pos: 150.5,140.5
+ parent: 1
+ - uid: 29672
+ components:
+ - type: Transform
+ pos: 169.5,137.5
+ parent: 1
+ - uid: 29714
+ components:
+ - type: Transform
+ pos: 87.5,62.5
+ parent: 1
+ - uid: 29821
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 29846
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 29872
+ components:
+ - type: Transform
+ pos: 142.5,151.5
+ parent: 1
+ - uid: 29930
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 29992
+ components:
+ - type: Transform
+ pos: 142.5,156.5
+ parent: 1
+ - uid: 30011
+ components:
+ - type: Transform
+ pos: 142.5,155.5
+ parent: 1
+ - uid: 30023
+ components:
+ - type: Transform
+ pos: 150.5,156.5
+ parent: 1
+ - uid: 30025
+ components:
+ - type: Transform
+ pos: 150.5,155.5
+ parent: 1
+ - uid: 30035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,42.5
+ parent: 1
+ - uid: 30145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 30152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 30155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 30157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 30189
+ components:
+ - type: Transform
+ pos: 155.5,101.5
+ parent: 1
+ - uid: 30212
+ components:
+ - type: Transform
+ pos: 165.5,148.5
+ parent: 1
+ - uid: 30223
+ components:
+ - type: Transform
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 30228
+ components:
+ - type: Transform
+ pos: 115.5,85.5
+ parent: 1
+ - uid: 30232
+ components:
+ - type: Transform
+ pos: 112.5,52.5
+ parent: 1
+ - uid: 30233
+ components:
+ - type: Transform
+ pos: 115.5,84.5
+ parent: 1
+ - uid: 30236
+ components:
+ - type: Transform
+ pos: 112.5,51.5
+ parent: 1
+ - uid: 30237
+ components:
+ - type: Transform
+ pos: 113.5,52.5
+ parent: 1
+ - uid: 30267
+ components:
+ - type: Transform
+ pos: 115.5,81.5
+ parent: 1
+ - uid: 30273
+ components:
+ - type: Transform
+ pos: 115.5,82.5
+ parent: 1
+ - uid: 30280
+ components:
+ - type: Transform
+ pos: 145.5,120.5
+ parent: 1
+ - uid: 30285
+ components:
+ - type: Transform
+ pos: 126.5,82.5
+ parent: 1
+ - uid: 30320
+ components:
+ - type: Transform
+ pos: 142.5,97.5
+ parent: 1
+ - uid: 30349
+ components:
+ - type: Transform
+ pos: 67.5,154.5
+ parent: 1
+ - uid: 30354
+ components:
+ - type: Transform
+ pos: 66.5,124.5
+ parent: 1
+ - uid: 30381
+ components:
+ - type: Transform
+ pos: 112.5,166.5
+ parent: 1
+ - uid: 30404
+ components:
+ - type: Transform
+ pos: 145.5,94.5
+ parent: 1
+ - uid: 30457
+ components:
+ - type: Transform
+ pos: 23.5,111.5
+ parent: 1
+ - uid: 30523
+ components:
+ - type: Transform
+ pos: 147.5,128.5
+ parent: 1
+ - uid: 30602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,43.5
+ parent: 1
+ - uid: 30733
+ components:
+ - type: Transform
+ pos: 161.5,118.5
+ parent: 1
+ - uid: 30847
+ components:
+ - type: Transform
+ pos: 144.5,97.5
+ parent: 1
+ - uid: 30861
+ components:
+ - type: Transform
+ pos: 59.5,110.5
+ parent: 1
+ - uid: 30963
+ components:
+ - type: Transform
+ pos: 31.5,139.5
+ parent: 1
+ - uid: 30964
+ components:
+ - type: Transform
+ pos: 31.5,144.5
+ parent: 1
+ - uid: 30965
+ components:
+ - type: Transform
+ pos: 31.5,142.5
+ parent: 1
+ - uid: 30966
+ components:
+ - type: Transform
+ pos: 31.5,143.5
+ parent: 1
+ - uid: 30967
+ components:
+ - type: Transform
+ pos: 32.5,144.5
+ parent: 1
+ - uid: 30968
+ components:
+ - type: Transform
+ pos: 33.5,144.5
+ parent: 1
+ - uid: 30991
+ components:
+ - type: Transform
+ pos: 35.5,134.5
+ parent: 1
+ - uid: 30993
+ components:
+ - type: Transform
+ pos: 35.5,128.5
+ parent: 1
+ - uid: 30994
+ components:
+ - type: Transform
+ pos: 35.5,136.5
+ parent: 1
+ - uid: 30995
+ components:
+ - type: Transform
+ pos: 35.5,135.5
+ parent: 1
+ - uid: 30996
+ components:
+ - type: Transform
+ pos: 35.5,129.5
+ parent: 1
+ - uid: 30997
+ components:
+ - type: Transform
+ pos: 35.5,133.5
+ parent: 1
+ - uid: 30998
+ components:
+ - type: Transform
+ pos: 35.5,132.5
+ parent: 1
+ - uid: 30999
+ components:
+ - type: Transform
+ pos: 35.5,130.5
+ parent: 1
+ - uid: 31019
+ components:
+ - type: Transform
+ pos: 35.5,144.5
+ parent: 1
+ - uid: 31021
+ components:
+ - type: Transform
+ pos: 35.5,149.5
+ parent: 1
+ - uid: 31023
+ components:
+ - type: Transform
+ pos: 35.5,147.5
+ parent: 1
+ - uid: 31024
+ components:
+ - type: Transform
+ pos: 35.5,146.5
+ parent: 1
+ - uid: 31025
+ components:
+ - type: Transform
+ pos: 35.5,148.5
+ parent: 1
+ - uid: 31026
+ components:
+ - type: Transform
+ pos: 35.5,155.5
+ parent: 1
+ - uid: 31027
+ components:
+ - type: Transform
+ pos: 35.5,151.5
+ parent: 1
+ - uid: 31029
+ components:
+ - type: Transform
+ pos: 35.5,155.5
+ parent: 1
+ - uid: 31040
+ components:
+ - type: Transform
+ pos: 35.5,153.5
+ parent: 1
+ - uid: 31041
+ components:
+ - type: Transform
+ pos: 35.5,152.5
+ parent: 1
+ - uid: 31042
+ components:
+ - type: Transform
+ pos: 35.5,154.5
+ parent: 1
+ - uid: 31043
+ components:
+ - type: Transform
+ pos: 36.5,155.5
+ parent: 1
+ - uid: 31044
+ components:
+ - type: Transform
+ pos: 37.5,155.5
+ parent: 1
+ - uid: 31045
+ components:
+ - type: Transform
+ pos: 38.5,155.5
+ parent: 1
+ - uid: 31046
+ components:
+ - type: Transform
+ pos: 39.5,155.5
+ parent: 1
+ - uid: 31047
+ components:
+ - type: Transform
+ pos: 40.5,155.5
+ parent: 1
+ - uid: 31048
+ components:
+ - type: Transform
+ pos: 41.5,155.5
+ parent: 1
+ - uid: 31049
+ components:
+ - type: Transform
+ pos: 42.5,155.5
+ parent: 1
+ - uid: 31050
+ components:
+ - type: Transform
+ pos: 43.5,155.5
+ parent: 1
+ - uid: 31051
+ components:
+ - type: Transform
+ pos: 45.5,155.5
+ parent: 1
+ - uid: 31052
+ components:
+ - type: Transform
+ pos: 47.5,155.5
+ parent: 1
+ - uid: 31053
+ components:
+ - type: Transform
+ pos: 48.5,155.5
+ parent: 1
+ - uid: 31054
+ components:
+ - type: Transform
+ pos: 49.5,155.5
+ parent: 1
+ - uid: 31055
+ components:
+ - type: Transform
+ pos: 50.5,155.5
+ parent: 1
+ - uid: 31349
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1
+ - uid: 31410
+ components:
+ - type: Transform
+ pos: 37.5,24.5
+ parent: 1
+ - uid: 31411
+ components:
+ - type: Transform
+ pos: 36.5,24.5
+ parent: 1
+ - uid: 31412
+ components:
+ - type: Transform
+ pos: 35.5,24.5
+ parent: 1
+ - uid: 31413
+ components:
+ - type: Transform
+ pos: 34.5,24.5
+ parent: 1
+ - uid: 31414
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 1
+ - uid: 31415
+ components:
+ - type: Transform
+ pos: 31.5,24.5
+ parent: 1
+ - uid: 31416
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 1
+ - uid: 31417
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1
+ - uid: 31418
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 1
+ - uid: 31419
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 1
+ - uid: 31420
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 1
+ - uid: 31421
+ components:
+ - type: Transform
+ pos: 23.5,24.5
+ parent: 1
+ - uid: 31422
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1
+ - uid: 31423
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1
+ - uid: 31424
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1
+ - uid: 31425
+ components:
+ - type: Transform
+ pos: 21.5,29.5
+ parent: 1
+ - uid: 31426
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 1
+ - uid: 31427
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 1
+ - uid: 31428
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 1
+ - uid: 31429
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1
+ - uid: 31430
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1
+ - uid: 31431
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 1
+ - uid: 31432
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1
+ - uid: 31433
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1
+ - uid: 31434
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 1
+ - uid: 31435
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1
+ - uid: 31436
+ components:
+ - type: Transform
+ pos: 21.5,41.5
+ parent: 1
+ - uid: 31437
+ components:
+ - type: Transform
+ pos: 20.5,50.5
+ parent: 1
+ - uid: 31438
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1
+ - uid: 31439
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1
+ - uid: 31440
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 1
+ - uid: 31441
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 1
+ - uid: 31442
+ components:
+ - type: Transform
+ pos: 17.5,52.5
+ parent: 1
+ - uid: 31443
+ components:
+ - type: Transform
+ pos: 18.5,50.5
+ parent: 1
+ - uid: 31444
+ components:
+ - type: Transform
+ pos: 17.5,50.5
+ parent: 1
+ - uid: 31445
+ components:
+ - type: Transform
+ pos: 19.5,50.5
+ parent: 1
+ - uid: 31446
+ components:
+ - type: Transform
+ pos: 17.5,56.5
+ parent: 1
+ - uid: 31447
+ components:
+ - type: Transform
+ pos: 18.5,56.5
+ parent: 1
+ - uid: 31448
+ components:
+ - type: Transform
+ pos: 19.5,56.5
+ parent: 1
+ - uid: 31449
+ components:
+ - type: Transform
+ pos: 21.5,57.5
+ parent: 1
+ - uid: 31450
+ components:
+ - type: Transform
+ pos: 21.5,58.5
+ parent: 1
+ - uid: 31451
+ components:
+ - type: Transform
+ pos: 21.5,59.5
+ parent: 1
+ - uid: 31452
+ components:
+ - type: Transform
+ pos: 21.5,60.5
+ parent: 1
+ - uid: 31453
+ components:
+ - type: Transform
+ pos: 21.5,62.5
+ parent: 1
+ - uid: 31454
+ components:
+ - type: Transform
+ pos: 21.5,63.5
+ parent: 1
+ - uid: 31455
+ components:
+ - type: Transform
+ pos: 21.5,61.5
+ parent: 1
+ - uid: 31456
+ components:
+ - type: Transform
+ pos: 21.5,66.5
+ parent: 1
+ - uid: 31494
+ components:
+ - type: Transform
+ pos: 165.5,43.5
+ parent: 1
+ - uid: 31495
+ components:
+ - type: Transform
+ pos: 166.5,43.5
+ parent: 1
+ - uid: 31496
+ components:
+ - type: Transform
+ pos: 167.5,43.5
+ parent: 1
+ - uid: 31497
+ components:
+ - type: Transform
+ pos: 169.5,43.5
+ parent: 1
+ - uid: 31498
+ components:
+ - type: Transform
+ pos: 171.5,43.5
+ parent: 1
+ - uid: 31499
+ components:
+ - type: Transform
+ pos: 173.5,43.5
+ parent: 1
+ - uid: 31500
+ components:
+ - type: Transform
+ pos: 174.5,43.5
+ parent: 1
+ - uid: 31501
+ components:
+ - type: Transform
+ pos: 175.5,43.5
+ parent: 1
+ - uid: 31502
+ components:
+ - type: Transform
+ pos: 176.5,43.5
+ parent: 1
+ - uid: 31503
+ components:
+ - type: Transform
+ pos: 177.5,43.5
+ parent: 1
+ - uid: 31504
+ components:
+ - type: Transform
+ pos: 178.5,43.5
+ parent: 1
+ - uid: 31505
+ components:
+ - type: Transform
+ pos: 180.5,43.5
+ parent: 1
+ - uid: 31506
+ components:
+ - type: Transform
+ pos: 181.5,43.5
+ parent: 1
+ - uid: 31507
+ components:
+ - type: Transform
+ pos: 181.5,44.5
+ parent: 1
+ - uid: 31508
+ components:
+ - type: Transform
+ pos: 181.5,45.5
+ parent: 1
+ - uid: 31509
+ components:
+ - type: Transform
+ pos: 181.5,50.5
+ parent: 1
+ - uid: 31510
+ components:
+ - type: Transform
+ pos: 181.5,51.5
+ parent: 1
+ - uid: 31511
+ components:
+ - type: Transform
+ pos: 181.5,52.5
+ parent: 1
+ - uid: 31512
+ components:
+ - type: Transform
+ pos: 181.5,53.5
+ parent: 1
+ - uid: 31513
+ components:
+ - type: Transform
+ pos: 181.5,54.5
+ parent: 1
+ - uid: 31514
+ components:
+ - type: Transform
+ pos: 182.5,54.5
+ parent: 1
+ - uid: 31515
+ components:
+ - type: Transform
+ pos: 184.5,54.5
+ parent: 1
+ - uid: 31516
+ components:
+ - type: Transform
+ pos: 184.5,55.5
+ parent: 1
+ - uid: 31517
+ components:
+ - type: Transform
+ pos: 184.5,56.5
+ parent: 1
+ - uid: 31518
+ components:
+ - type: Transform
+ pos: 184.5,57.5
+ parent: 1
+ - uid: 31519
+ components:
+ - type: Transform
+ pos: 184.5,58.5
+ parent: 1
+ - uid: 31520
+ components:
+ - type: Transform
+ pos: 184.5,59.5
+ parent: 1
+ - uid: 31521
+ components:
+ - type: Transform
+ pos: 184.5,60.5
+ parent: 1
+ - uid: 31522
+ components:
+ - type: Transform
+ pos: 183.5,60.5
+ parent: 1
+ - uid: 31523
+ components:
+ - type: Transform
+ pos: 182.5,60.5
+ parent: 1
+ - uid: 31524
+ components:
+ - type: Transform
+ pos: 181.5,60.5
+ parent: 1
+ - uid: 31525
+ components:
+ - type: Transform
+ pos: 180.5,60.5
+ parent: 1
+ - uid: 31526
+ components:
+ - type: Transform
+ pos: 180.5,61.5
+ parent: 1
+ - uid: 31527
+ components:
+ - type: Transform
+ pos: 180.5,62.5
+ parent: 1
+ - uid: 31528
+ components:
+ - type: Transform
+ pos: 180.5,63.5
+ parent: 1
+ - uid: 31529
+ components:
+ - type: Transform
+ pos: 180.5,64.5
+ parent: 1
+ - uid: 31530
+ components:
+ - type: Transform
+ pos: 180.5,65.5
+ parent: 1
+ - uid: 31531
+ components:
+ - type: Transform
+ pos: 180.5,67.5
+ parent: 1
+ - uid: 31532
+ components:
+ - type: Transform
+ pos: 180.5,66.5
+ parent: 1
+ - uid: 31533
+ components:
+ - type: Transform
+ pos: 180.5,71.5
+ parent: 1
+ - uid: 31534
+ components:
+ - type: Transform
+ pos: 179.5,71.5
+ parent: 1
+ - uid: 31535
+ components:
+ - type: Transform
+ pos: 178.5,71.5
+ parent: 1
+ - uid: 31536
+ components:
+ - type: Transform
+ pos: 176.5,71.5
+ parent: 1
+ - uid: 31537
+ components:
+ - type: Transform
+ pos: 175.5,71.5
+ parent: 1
+ - uid: 31538
+ components:
+ - type: Transform
+ pos: 174.5,71.5
+ parent: 1
+ - uid: 31539
+ components:
+ - type: Transform
+ pos: 173.5,71.5
+ parent: 1
+ - uid: 31540
+ components:
+ - type: Transform
+ pos: 172.5,71.5
+ parent: 1
+ - uid: 31541
+ components:
+ - type: Transform
+ pos: 170.5,71.5
+ parent: 1
+ - uid: 31542
+ components:
+ - type: Transform
+ pos: 168.5,71.5
+ parent: 1
+ - uid: 31543
+ components:
+ - type: Transform
+ pos: 169.5,71.5
+ parent: 1
+ - uid: 31544
+ components:
+ - type: Transform
+ pos: 166.5,71.5
+ parent: 1
+ - uid: 31545
+ components:
+ - type: Transform
+ pos: 164.5,71.5
+ parent: 1
+ - uid: 31546
+ components:
+ - type: Transform
+ pos: 163.5,71.5
+ parent: 1
+ - uid: 31547
+ components:
+ - type: Transform
+ pos: 165.5,71.5
+ parent: 1
+ - uid: 31791
+ components:
+ - type: Transform
+ pos: 145.5,126.5
+ parent: 1
+ - uid: 31794
+ components:
+ - type: Transform
+ pos: 143.5,126.5
+ parent: 1
+ - uid: 31800
+ components:
+ - type: Transform
+ pos: 87.5,53.5
+ parent: 1
+ - uid: 31801
+ components:
+ - type: Transform
+ pos: 89.5,62.5
+ parent: 1
+ - uid: 32128
+ components:
+ - type: Transform
+ pos: 63.5,154.5
+ parent: 1
+ - uid: 32129
+ components:
+ - type: Transform
+ pos: 63.5,153.5
+ parent: 1
+ - uid: 32130
+ components:
+ - type: Transform
+ pos: 63.5,152.5
+ parent: 1
+ - uid: 32131
+ components:
+ - type: Transform
+ pos: 63.5,151.5
+ parent: 1
+ - uid: 32132
+ components:
+ - type: Transform
+ pos: 63.5,150.5
+ parent: 1
+ - uid: 32133
+ components:
+ - type: Transform
+ pos: 62.5,150.5
+ parent: 1
+ - uid: 32134
+ components:
+ - type: Transform
+ pos: 62.5,149.5
+ parent: 1
+ - uid: 32135
+ components:
+ - type: Transform
+ pos: 62.5,148.5
+ parent: 1
+ - uid: 32136
+ components:
+ - type: Transform
+ pos: 62.5,147.5
+ parent: 1
+ - uid: 32137
+ components:
+ - type: Transform
+ pos: 62.5,146.5
+ parent: 1
+ - uid: 32138
+ components:
+ - type: Transform
+ pos: 61.5,146.5
+ parent: 1
+ - uid: 32139
+ components:
+ - type: Transform
+ pos: 61.5,145.5
+ parent: 1
+ - uid: 32140
+ components:
+ - type: Transform
+ pos: 61.5,144.5
+ parent: 1
+ - uid: 32141
+ components:
+ - type: Transform
+ pos: 61.5,142.5
+ parent: 1
+ - uid: 32142
+ components:
+ - type: Transform
+ pos: 61.5,143.5
+ parent: 1
+ - uid: 32143
+ components:
+ - type: Transform
+ pos: 60.5,142.5
+ parent: 1
+ - uid: 32144
+ components:
+ - type: Transform
+ pos: 60.5,141.5
+ parent: 1
+ - uid: 32145
+ components:
+ - type: Transform
+ pos: 60.5,140.5
+ parent: 1
+ - uid: 32146
+ components:
+ - type: Transform
+ pos: 60.5,139.5
+ parent: 1
+ - uid: 32147
+ components:
+ - type: Transform
+ pos: 60.5,138.5
+ parent: 1
+ - uid: 32148
+ components:
+ - type: Transform
+ pos: 60.5,137.5
+ parent: 1
+ - uid: 32149
+ components:
+ - type: Transform
+ pos: 60.5,136.5
+ parent: 1
+ - uid: 32150
+ components:
+ - type: Transform
+ pos: 61.5,136.5
+ parent: 1
+ - uid: 32151
+ components:
+ - type: Transform
+ pos: 61.5,135.5
+ parent: 1
+ - uid: 32152
+ components:
+ - type: Transform
+ pos: 61.5,134.5
+ parent: 1
+ - uid: 32153
+ components:
+ - type: Transform
+ pos: 61.5,133.5
+ parent: 1
+ - uid: 32154
+ components:
+ - type: Transform
+ pos: 61.5,132.5
+ parent: 1
+ - uid: 32155
+ components:
+ - type: Transform
+ pos: 62.5,132.5
+ parent: 1
+ - uid: 32156
+ components:
+ - type: Transform
+ pos: 62.5,131.5
+ parent: 1
+ - uid: 32157
+ components:
+ - type: Transform
+ pos: 62.5,129.5
+ parent: 1
+ - uid: 32158
+ components:
+ - type: Transform
+ pos: 62.5,128.5
+ parent: 1
+ - uid: 32159
+ components:
+ - type: Transform
+ pos: 62.5,130.5
+ parent: 1
+ - uid: 32160
+ components:
+ - type: Transform
+ pos: 63.5,128.5
+ parent: 1
+ - uid: 32161
+ components:
+ - type: Transform
+ pos: 63.5,127.5
+ parent: 1
+ - uid: 32162
+ components:
+ - type: Transform
+ pos: 63.5,126.5
+ parent: 1
+ - uid: 32163
+ components:
+ - type: Transform
+ pos: 63.5,125.5
+ parent: 1
+ - uid: 32164
+ components:
+ - type: Transform
+ pos: 63.5,124.5
+ parent: 1
+ - uid: 32273
+ components:
+ - type: Transform
+ pos: 62.5,39.5
+ parent: 1
+ - uid: 32274
+ components:
+ - type: Transform
+ pos: 151.5,78.5
+ parent: 1
+ - uid: 32276
+ components:
+ - type: Transform
+ pos: 148.5,81.5
+ parent: 1
+ - uid: 32290
+ components:
+ - type: Transform
+ pos: 141.5,97.5
+ parent: 1
+ - uid: 32291
+ components:
+ - type: Transform
+ pos: 88.5,62.5
+ parent: 1
+ - uid: 32295
+ components:
+ - type: Transform
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 32348
+ components:
+ - type: Transform
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 32349
+ components:
+ - type: Transform
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 32404
+ components:
+ - type: Transform
+ pos: 117.5,41.5
+ parent: 1
+ - uid: 32405
+ components:
+ - type: Transform
+ pos: 121.5,30.5
+ parent: 1
+ - uid: 32406
+ components:
+ - type: Transform
+ pos: 117.5,37.5
+ parent: 1
+ - uid: 32416
+ components:
+ - type: Transform
+ pos: 136.5,79.5
+ parent: 1
+ - uid: 32938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,84.5
+ parent: 1
+ - uid: 33163
+ components:
+ - type: Transform
+ pos: 116.5,28.5
+ parent: 1
+ - uid: 33164
+ components:
+ - type: Transform
+ pos: 117.5,28.5
+ parent: 1
+ - uid: 33165
+ components:
+ - type: Transform
+ pos: 118.5,28.5
+ parent: 1
+ - uid: 33166
+ components:
+ - type: Transform
+ pos: 119.5,28.5
+ parent: 1
+ - uid: 33270
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 33271
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33272
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+ - uid: 33749
+ components:
+ - type: Transform
+ pos: 62.5,38.5
+ parent: 1
+ - uid: 34048
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 34049
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 34050
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 34051
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 34056
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 34057
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 34061
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 34062
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 34063
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 34064
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 34065
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 34230
+ components:
+ - type: Transform
+ pos: 54.5,74.5
+ parent: 1
+ - uid: 34265
+ components:
+ - type: Transform
+ pos: 162.5,63.5
+ parent: 1
+ - uid: 34291
+ components:
+ - type: Transform
+ pos: 66.5,154.5
+ parent: 1
+ - uid: 34353
+ components:
+ - type: Transform
+ pos: 65.5,124.5
+ parent: 1
+ - uid: 34405
+ components:
+ - type: Transform
+ pos: 65.5,154.5
+ parent: 1
+ - uid: 34410
+ components:
+ - type: Transform
+ pos: 64.5,124.5
+ parent: 1
+ - uid: 34413
+ components:
+ - type: Transform
+ pos: 64.5,154.5
+ parent: 1
+ - uid: 34434
+ components:
+ - type: Transform
+ pos: 68.5,158.5
+ parent: 1
+ - uid: 34566
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 34706
+ components:
+ - type: Transform
+ pos: 39.5,127.5
+ parent: 1
+ - uid: 34834
+ components:
+ - type: Transform
+ pos: 126.5,163.5
+ parent: 1
+ - uid: 34841
+ components:
+ - type: Transform
+ pos: 130.5,82.5
+ parent: 1
+ - uid: 34938
+ components:
+ - type: Transform
+ pos: 137.5,152.5
+ parent: 1
+ - uid: 34978
+ components:
+ - type: Transform
+ pos: 50.5,133.5
+ parent: 1
+ - uid: 34979
+ components:
+ - type: Transform
+ pos: 50.5,131.5
+ parent: 1
+ - uid: 34982
+ components:
+ - type: Transform
+ pos: 23.5,125.5
+ parent: 1
+ - uid: 34983
+ components:
+ - type: Transform
+ pos: 27.5,125.5
+ parent: 1
+ - uid: 34984
+ components:
+ - type: Transform
+ pos: 41.5,127.5
+ parent: 1
+ - uid: 34995
+ components:
+ - type: Transform
+ pos: 129.5,41.5
+ parent: 1
+ - uid: 34996
+ components:
+ - type: Transform
+ pos: 130.5,41.5
+ parent: 1
+ - uid: 34997
+ components:
+ - type: Transform
+ pos: 132.5,41.5
+ parent: 1
+ - uid: 34998
+ components:
+ - type: Transform
+ pos: 133.5,41.5
+ parent: 1
+ - uid: 34999
+ components:
+ - type: Transform
+ pos: 134.5,41.5
+ parent: 1
+ - uid: 35000
+ components:
+ - type: Transform
+ pos: 131.5,41.5
+ parent: 1
+ - uid: 35066
+ components:
+ - type: Transform
+ pos: 99.5,173.5
+ parent: 1
+ - uid: 35102
+ components:
+ - type: Transform
+ pos: 165.5,130.5
+ parent: 1
+ - uid: 35128
+ components:
+ - type: Transform
+ pos: 50.5,129.5
+ parent: 1
+ - uid: 35160
+ components:
+ - type: Transform
+ pos: 44.5,123.5
+ parent: 1
+ - uid: 35166
+ components:
+ - type: Transform
+ pos: 55.5,133.5
+ parent: 1
+ - uid: 35201
+ components:
+ - type: Transform
+ pos: 64.5,158.5
+ parent: 1
+ - uid: 35688
+ components:
+ - type: Transform
+ pos: 23.5,93.5
+ parent: 1
+ - uid: 35689
+ components:
+ - type: Transform
+ pos: 23.5,91.5
+ parent: 1
+ - uid: 35698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,98.5
+ parent: 1
+ - uid: 35742
+ components:
+ - type: Transform
+ pos: 39.5,121.5
+ parent: 1
+ - uid: 35757
+ components:
+ - type: Transform
+ pos: 79.5,157.5
+ parent: 1
+ - uid: 35797
+ components:
+ - type: Transform
+ pos: 55.5,125.5
+ parent: 1
+ - uid: 35798
+ components:
+ - type: Transform
+ pos: 77.5,157.5
+ parent: 1
+ - uid: 35799
+ components:
+ - type: Transform
+ pos: 81.5,157.5
+ parent: 1
+ - uid: 35909
+ components:
+ - type: Transform
+ pos: 59.5,149.5
+ parent: 1
+ - uid: 35937
+ components:
+ - type: Transform
+ pos: 56.5,138.5
+ parent: 1
+ - uid: 35999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,43.5
+ parent: 1
+ - uid: 36017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,44.5
+ parent: 1
+ - uid: 36063
+ components:
+ - type: Transform
+ pos: 32.5,124.5
+ parent: 1
+ - uid: 36095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,44.5
+ parent: 1
+ - uid: 36130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,45.5
+ parent: 1
+ - uid: 36573
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+ - uid: 37012
+ components:
+ - type: Transform
+ pos: 97.5,165.5
+ parent: 1
+- proto: GrilleBroken
+ entities:
+ - uid: 2179
+ components:
+ - type: Transform
+ pos: 121.5,31.5
+ parent: 1
+ - uid: 29522
+ components:
+ - type: Transform
+ pos: 19.5,99.5
+ parent: 1
+ - uid: 29900
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 32238
+ components:
+ - type: Transform
+ pos: 40.5,121.5
+ parent: 1
+ - uid: 33162
+ components:
+ - type: Transform
+ pos: 121.5,32.5
+ parent: 1
+ - uid: 35794
+ components:
+ - type: Transform
+ pos: 54.5,125.5
+ parent: 1
+ - uid: 36156
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 5297
+ components:
+ - type: Transform
+ pos: 162.5,98.5
+ parent: 1
+ - uid: 5298
+ components:
+ - type: Transform
+ pos: 162.5,96.5
+ parent: 1
+ - uid: 5892
+ components:
+ - type: Transform
+ pos: 162.5,87.5
+ parent: 1
+ - uid: 21074
+ components:
+ - type: Transform
+ pos: 162.5,101.5
+ parent: 1
+ - uid: 31020
+ components:
+ - type: Transform
+ pos: 46.5,155.5
+ parent: 1
+ - uid: 31129
+ components:
+ - type: Transform
+ pos: 44.5,155.5
+ parent: 1
+ - uid: 31130
+ components:
+ - type: Transform
+ pos: 35.5,145.5
+ parent: 1
+ - uid: 31131
+ components:
+ - type: Transform
+ pos: 35.5,150.5
+ parent: 1
+ - uid: 31132
+ components:
+ - type: Transform
+ pos: 31.5,141.5
+ parent: 1
+ - uid: 31133
+ components:
+ - type: Transform
+ pos: 34.5,144.5
+ parent: 1
+ - uid: 31134
+ components:
+ - type: Transform
+ pos: 31.5,140.5
+ parent: 1
+ - uid: 31136
+ components:
+ - type: Transform
+ pos: 35.5,137.5
+ parent: 1
+ - uid: 31137
+ components:
+ - type: Transform
+ pos: 35.5,131.5
+ parent: 1
+ - uid: 31457
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 1
+ - uid: 31458
+ components:
+ - type: Transform
+ pos: 26.5,24.5
+ parent: 1
+ - uid: 31459
+ components:
+ - type: Transform
+ pos: 24.5,24.5
+ parent: 1
+ - uid: 31460
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 1
+ - uid: 31461
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1
+ - uid: 31462
+ components:
+ - type: Transform
+ pos: 21.5,33.5
+ parent: 1
+ - uid: 31463
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1
+ - uid: 31464
+ components:
+ - type: Transform
+ pos: 21.5,37.5
+ parent: 1
+ - uid: 31465
+ components:
+ - type: Transform
+ pos: 21.5,50.5
+ parent: 1
+ - uid: 31466
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 1
+ - uid: 31467
+ components:
+ - type: Transform
+ pos: 21.5,49.5
+ parent: 1
+ - uid: 31468
+ components:
+ - type: Transform
+ pos: 17.5,51.5
+ parent: 1
+ - uid: 31469
+ components:
+ - type: Transform
+ pos: 17.5,54.5
+ parent: 1
+ - uid: 31470
+ components:
+ - type: Transform
+ pos: 17.5,53.5
+ parent: 1
+ - uid: 31471
+ components:
+ - type: Transform
+ pos: 17.5,55.5
+ parent: 1
+ - uid: 31472
+ components:
+ - type: Transform
+ pos: 20.5,56.5
+ parent: 1
+ - uid: 31473
+ components:
+ - type: Transform
+ pos: 21.5,56.5
+ parent: 1
+ - uid: 31475
+ components:
+ - type: Transform
+ pos: 21.5,64.5
+ parent: 1
+ - uid: 31476
+ components:
+ - type: Transform
+ pos: 21.5,65.5
+ parent: 1
+ - uid: 31477
+ components:
+ - type: Transform
+ pos: 168.5,43.5
+ parent: 1
+ - uid: 31478
+ components:
+ - type: Transform
+ pos: 170.5,43.5
+ parent: 1
+ - uid: 31479
+ components:
+ - type: Transform
+ pos: 172.5,43.5
+ parent: 1
+ - uid: 31480
+ components:
+ - type: Transform
+ pos: 179.5,43.5
+ parent: 1
+ - uid: 31481
+ components:
+ - type: Transform
+ pos: 181.5,46.5
+ parent: 1
+ - uid: 31482
+ components:
+ - type: Transform
+ pos: 181.5,47.5
+ parent: 1
+ - uid: 31483
+ components:
+ - type: Transform
+ pos: 181.5,48.5
+ parent: 1
+ - uid: 31484
+ components:
+ - type: Transform
+ pos: 181.5,49.5
+ parent: 1
+ - uid: 31485
+ components:
+ - type: Transform
+ pos: 183.5,54.5
+ parent: 1
+ - uid: 31486
+ components:
+ - type: Transform
+ pos: 184.5,54.5
+ parent: 1
+ - uid: 31487
+ components:
+ - type: Transform
+ pos: 184.5,55.5
+ parent: 1
+ - uid: 31488
+ components:
+ - type: Transform
+ pos: 180.5,68.5
+ parent: 1
+ - uid: 31489
+ components:
+ - type: Transform
+ pos: 180.5,69.5
+ parent: 1
+ - uid: 31490
+ components:
+ - type: Transform
+ pos: 180.5,70.5
+ parent: 1
+ - uid: 31491
+ components:
+ - type: Transform
+ pos: 177.5,71.5
+ parent: 1
+ - uid: 31492
+ components:
+ - type: Transform
+ pos: 171.5,71.5
+ parent: 1
+ - uid: 31493
+ components:
+ - type: Transform
+ pos: 167.5,71.5
+ parent: 1
+ - uid: 35648
+ components:
+ - type: Transform
+ pos: 149.5,114.5
+ parent: 1
+- proto: GroundCannabis
+ entities:
+ - uid: 37182
+ components:
+ - type: Transform
+ pos: 168.18417,135.67743
+ parent: 1
+- proto: GroundTobacco
+ entities:
+ - uid: 37183
+ components:
+ - type: Transform
+ pos: 167.42723,135.05243
+ parent: 1
+- proto: GunSafeDisabler
+ entities:
+ - uid: 22752
+ components:
+ - type: Transform
+ pos: 132.5,62.5
+ parent: 1
+- proto: GunSafeLaserCarbine
+ entities:
+ - uid: 22768
+ components:
+ - type: Transform
+ pos: 130.5,64.5
+ parent: 1
+- proto: GunSafePistolMk58
+ entities:
+ - uid: 22795
+ components:
+ - type: Transform
+ pos: 132.5,66.5
+ parent: 1
+- proto: GunSafeRifleLecter
+ entities:
+ - uid: 22609
+ components:
+ - type: Transform
+ pos: 130.5,62.5
+ parent: 1
+- proto: GunSafeShotgunKammerer
+ entities:
+ - uid: 22753
+ components:
+ - type: Transform
+ pos: 133.5,62.5
+ parent: 1
+- proto: GunSafeSubMachineGunDrozd
+ entities:
+ - uid: 22769
+ components:
+ - type: Transform
+ pos: 130.5,66.5
+ parent: 1
+- proto: Handcuffs
+ entities:
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 96.510605,113.38187
+ parent: 1
+ - uid: 13646
+ components:
+ - type: Transform
+ pos: 32.416855,53.002132
+ parent: 1
+ - uid: 22805
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.5195,63.00967
+ parent: 1
+- proto: HandheldGPSBasic
+ entities:
+ - uid: 23145
+ components:
+ - type: Transform
+ pos: 142.35602,49.441376
+ parent: 1
+ - uid: 23146
+ components:
+ - type: Transform
+ pos: 142.61298,49.614986
+ parent: 1
+- proto: HandheldHealthAnalyzer
+ entities:
+ - uid: 20418
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.426033,82.485245
+ parent: 1
+ - uid: 27073
+ components:
+ - type: Transform
+ pos: 61.51531,75.61516
+ parent: 1
+ - uid: 28662
+ components:
+ - type: Transform
+ pos: 113.5,50.5
+ parent: 1
+- proto: HandheldStationMap
+ entities:
+ - uid: 19599
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 134.56567,90.673485
+ parent: 1
+- proto: HandLabeler
+ entities:
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: 60.575592,54.587025
+ parent: 1
+ - uid: 18061
+ components:
+ - type: Transform
+ pos: 85.50959,101.16237
+ parent: 1
+ - uid: 18826
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 86.52753,54.626137
+ parent: 1
+ - uid: 22765
+ components:
+ - type: Transform
+ pos: 93.53575,104.257324
+ parent: 1
+- proto: HarmonicaInstrument
+ entities:
+ - uid: 26785
+ components:
+ - type: Transform
+ pos: 110.56206,59.442657
+ parent: 1
+- proto: HeatExchanger
+ entities:
+ - uid: 32356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,147.5
+ parent: 1
+ - uid: 36901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,147.5
+ parent: 1
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 22877
+ components:
+ - type: MetaData
+ name: armory high security door
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 22878
+ components:
+ - type: MetaData
+ name: armory entrance high security door
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - uid: 22879
+ components:
+ - type: MetaData
+ name: armory high security door
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 32039
+ components:
+ - type: MetaData
+ name: tech vault high security door
+ - type: Transform
+ pos: 142.5,134.5
+ parent: 1
+ - uid: 35207
+ components:
+ - type: MetaData
+ name: vault high security door
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+- proto: HolopadAiBackupPower
+ entities:
+ - uid: 32330
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+- proto: HolopadAiCore
+ entities:
+ - uid: 27388
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+- proto: HolopadAiEntrance
+ entities:
+ - uid: 25726
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+- proto: HolopadAiUpload
+ entities:
+ - uid: 32329
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+- proto: HolopadCargoBayLongRange
+ entities:
+ - uid: 35653
+ components:
+ - type: Transform
+ pos: 151.5,107.5
+ parent: 1
+- proto: HolopadCargoBreakroom
+ entities:
+ - uid: 34167
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+- proto: HolopadCargoFront
+ entities:
+ - uid: 37357
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+- proto: HolopadCargoSalvageBay
+ entities:
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+- proto: HolopadCommandBridge
+ entities:
+ - uid: 36879
+ components:
+ - type: Transform
+ pos: 36.5,51.5
+ parent: 1
+- proto: HolopadCommandBridgeLongRange
+ entities:
+ - uid: 36488
+ components:
+ - type: Transform
+ pos: 50.5,57.5
+ parent: 1
+- proto: HolopadCommandCaptain
+ entities:
+ - uid: 5736
+ components:
+ - type: Transform
+ pos: 36.5,72.5
+ parent: 1
+- proto: HolopadCommandCe
+ entities:
+ - uid: 36490
+ components:
+ - type: Transform
+ pos: 127.5,145.5
+ parent: 1
+- proto: HolopadCommandCmo
+ entities:
+ - uid: 36492
+ components:
+ - type: Transform
+ pos: 87.5,91.5
+ parent: 1
+- proto: HolopadCommandHop
+ entities:
+ - uid: 36616
+ components:
+ - type: Transform
+ pos: 58.5,56.5
+ parent: 1
+- proto: HolopadCommandHos
+ entities:
+ - uid: 36617
+ components:
+ - type: Transform
+ pos: 142.5,66.5
+ parent: 1
+- proto: HolopadCommandLounge
+ entities:
+ - uid: 36506
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+- proto: HolopadCommandMeetingRoom
+ entities:
+ - uid: 23433
+ components:
+ - type: Transform
+ pos: 133.5,91.5
+ parent: 1
+- proto: HolopadCommandQm
+ entities:
+ - uid: 19985
+ components:
+ - type: Transform
+ pos: 142.5,103.5
+ parent: 1
+- proto: HolopadCommandRd
+ entities:
+ - uid: 36633
+ components:
+ - type: Transform
+ pos: 38.5,105.5
+ parent: 1
+- proto: HolopadCommandVault
+ entities:
+ - uid: 23758
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+- proto: HolopadEngineeringAtmosFront
+ entities:
+ - uid: 21535
+ components:
+ - type: Transform
+ pos: 75.5,117.5
+ parent: 1
+- proto: HolopadEngineeringAtmosMain
+ entities:
+ - uid: 36661
+ components:
+ - type: Transform
+ pos: 73.5,139.5
+ parent: 1
+- proto: HolopadEngineeringAtmosTeg
+ entities:
+ - uid: 9365
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+- proto: HolopadEngineeringBreakroom
+ entities:
+ - uid: 36611
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+- proto: HolopadEngineeringFront
+ entities:
+ - uid: 21526
+ components:
+ - type: Transform
+ pos: 119.5,123.5
+ parent: 1
+- proto: HolopadEngineeringStorage
+ entities:
+ - uid: 36614
+ components:
+ - type: Transform
+ pos: 97.5,123.5
+ parent: 1
+- proto: HolopadEngineeringTechVault
+ entities:
+ - uid: 33740
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+- proto: HolopadEngineeringTelecoms
+ entities:
+ - uid: 34099
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+- proto: HolopadGeneralArcade
+ entities:
+ - uid: 33194
+ components:
+ - type: Transform
+ pos: 120.5,111.5
+ parent: 1
+- proto: HolopadGeneralArrivals
+ entities:
+ - uid: 33449
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+- proto: HolopadGeneralCryosleep
+ entities:
+ - uid: 36507
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+- proto: HolopadGeneralDisposals
+ entities:
+ - uid: 36610
+ components:
+ - type: Transform
+ pos: 158.5,80.5
+ parent: 1
+- proto: HolopadGeneralEvac
+ entities:
+ - uid: 8186
+ components:
+ - type: Transform
+ pos: 144.5,150.5
+ parent: 1
+- proto: HolopadGeneralEVAStorage
+ entities:
+ - uid: 32995
+ components:
+ - type: Transform
+ pos: 51.5,70.5
+ parent: 1
+- proto: HolopadGeneralTheater
+ entities:
+ - uid: 36663
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+- proto: HolopadGeneralTools
+ entities:
+ - uid: 25928
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 1
+- proto: HolopadMedicalBreakroom
+ entities:
+ - uid: 9679
+ components:
+ - type: Transform
+ pos: 80.5,83.5
+ parent: 1
+- proto: HolopadMedicalChemistry
+ entities:
+ - uid: 36500
+ components:
+ - type: Transform
+ pos: 86.5,108.5
+ parent: 1
+- proto: HolopadMedicalClinic
+ entities:
+ - uid: 22775
+ components:
+ - type: Transform
+ pos: 118.5,49.5
+ parent: 1
+- proto: HolopadMedicalCryopods
+ entities:
+ - uid: 36509
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+- proto: HolopadMedicalFront
+ entities:
+ - uid: 36624
+ components:
+ - type: Transform
+ pos: 74.5,103.5
+ parent: 1
+- proto: HolopadMedicalMedbay
+ entities:
+ - uid: 36625
+ components:
+ - type: Transform
+ pos: 74.5,98.5
+ parent: 1
+- proto: HolopadMedicalMorgue
+ entities:
+ - uid: 26222
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+- proto: HolopadMedicalParamed
+ entities:
+ - uid: 36630
+ components:
+ - type: Transform
+ pos: 77.5,104.5
+ parent: 1
+- proto: HolopadMedicalSurgery
+ entities:
+ - uid: 36638
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+- proto: HolopadScienceAnomaly
+ entities:
+ - uid: 32331
+ components:
+ - type: Transform
+ pos: 43.5,113.5
+ parent: 1
+- proto: HolopadScienceArtifact
+ entities:
+ - uid: 33450
+ components:
+ - type: Transform
+ pos: 39.5,90.5
+ parent: 1
+- proto: HolopadScienceBreakroom
+ entities:
+ - uid: 36636
+ components:
+ - type: Transform
+ pos: 25.5,102.5
+ parent: 1
+- proto: HolopadScienceFront
+ entities:
+ - uid: 30015
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+- proto: HolopadScienceRnd
+ entities:
+ - uid: 19864
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+- proto: HolopadScienceRobotics
+ entities:
+ - uid: 19839
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+- proto: HolopadSecurityArmory
+ entities:
+ - uid: 33448
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+- proto: HolopadSecurityBrig
+ entities:
+ - uid: 36489
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+- proto: HolopadSecurityCourtroom
+ entities:
+ - uid: 4260
+ components:
+ - type: Transform
+ pos: 95.5,41.5
+ parent: 1
+- proto: HolopadSecurityDetective
+ entities:
+ - uid: 37456
+ components:
+ - type: Transform
+ pos: 87.5,56.5
+ parent: 1
+- proto: HolopadSecurityFront
+ entities:
+ - uid: 22777
+ components:
+ - type: Transform
+ pos: 142.5,74.5
+ parent: 1
+- proto: HolopadSecurityInterrogation
+ entities:
+ - uid: 36618
+ components:
+ - type: Transform
+ pos: 154.5,64.5
+ parent: 1
+- proto: HolopadSecurityLawyer
+ entities:
+ - uid: 33868
+ components:
+ - type: Transform
+ pos: 103.5,47.5
+ parent: 1
+- proto: HolopadSecurityPerma
+ entities:
+ - uid: 36631
+ components:
+ - type: Transform
+ pos: 131.5,46.5
+ parent: 1
+- proto: HolopadSecurityWarden
+ entities:
+ - uid: 36640
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+- proto: HolopadServiceBar
+ entities:
+ - uid: 33742
+ components:
+ - type: Transform
+ pos: 108.5,113.5
+ parent: 1
+- proto: HolopadServiceBotany
+ entities:
+ - uid: 33743
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+- proto: HolopadServiceBoxer
+ entities:
+ - uid: 33741
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+- proto: HolopadServiceChapel
+ entities:
+ - uid: 36501
+ components:
+ - type: Transform
+ pos: 85.5,74.5
+ parent: 1
+- proto: HolopadServiceClown
+ entities:
+ - uid: 33451
+ components:
+ - type: Transform
+ pos: 106.5,57.5
+ parent: 1
+- proto: HolopadServiceJanitor
+ entities:
+ - uid: 36619
+ components:
+ - type: Transform
+ pos: 158.5,122.5
+ parent: 1
+- proto: HolopadServiceKitchen
+ entities:
+ - uid: 36620
+ components:
+ - type: Transform
+ pos: 119.5,98.5
+ parent: 1
+- proto: HolopadServiceLibrary
+ entities:
+ - uid: 36622
+ components:
+ - type: Transform
+ pos: 77.5,57.5
+ parent: 1
+- proto: HolopadServiceMime
+ entities:
+ - uid: 36626
+ components:
+ - type: Transform
+ pos: 100.5,59.5
+ parent: 1
+- proto: HolopadServiceMusician
+ entities:
+ - uid: 36628
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+- proto: HolopadServiceNewsroom
+ entities:
+ - uid: 36629
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 23654
+ components:
+ - type: Transform
+ pos: 153.17197,58.748314
+ parent: 1
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 13482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - uid: 13483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - uid: 13484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 17698
+ components:
+ - type: Transform
+ pos: 74.5,93.5
+ parent: 1
+ - uid: 17699
+ components:
+ - type: Transform
+ pos: 75.5,93.5
+ parent: 1
+ - uid: 20889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 20891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 20892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 32259
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 32260
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 32261
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 35912
+ components:
+ - type: Transform
+ pos: 54.5,119.5
+ parent: 1
+ - uid: 35916
+ components:
+ - type: Transform
+ pos: 56.5,119.5
+ parent: 1
+ - uid: 35969
+ components:
+ - type: Transform
+ pos: 55.5,119.5
+ parent: 1
+ - uid: 37362
+ components:
+ - type: Transform
+ pos: 124.5,62.5
+ parent: 1
+- proto: HydroponicsToolClippers
+ entities:
+ - uid: 23066
+ components:
+ - type: Transform
+ pos: 129.3514,45.367676
+ parent: 1
+ - uid: 26658
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.484825,93.68444
+ parent: 1
+- proto: HydroponicsToolHatchet
+ entities:
+ - uid: 26661
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.46399,93.29902
+ parent: 1
+- proto: HydroponicsToolMiniHoe
+ entities:
+ - uid: 23010
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 129.56793,45.5788
+ parent: 1
+ - uid: 26660
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.52649,92.89277
+ parent: 1
+- proto: HydroponicsToolScythe
+ entities:
+ - uid: 26662
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.44316,91.83027
+ parent: 1
+- proto: HydroponicsToolSpade
+ entities:
+ - uid: 23011
+ components:
+ - type: Transform
+ pos: 129.6096,45.630882
+ parent: 1
+ - uid: 26663
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.46399,92.351105
+ parent: 1
+- proto: hydroponicsTray
+ entities:
+ - uid: 7743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,98.5
+ parent: 1
+ - uid: 23007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,44.5
+ parent: 1
+ - uid: 23008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,44.5
+ parent: 1
+ - uid: 26276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,100.5
+ parent: 1
+ - uid: 26277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,100.5
+ parent: 1
+ - uid: 26303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,99.5
+ parent: 1
+ - uid: 26304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,100.5
+ parent: 1
+ - uid: 26352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,98.5
+ parent: 1
+ - uid: 26353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,99.5
+ parent: 1
+ - uid: 26409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,98.5
+ parent: 1
+ - uid: 26412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,98.5
+ parent: 1
+ - uid: 26414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,102.5
+ parent: 1
+ - uid: 26417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,102.5
+ parent: 1
+ - uid: 36632
+ components:
+ - type: Transform
+ pos: 131.5,44.5
+ parent: 1
+ - uid: 36650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,98.5
+ parent: 1
+ - uid: 36651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,100.5
+ parent: 1
+ - uid: 36652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,100.5
+ parent: 1
+ - uid: 36653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,102.5
+ parent: 1
+ - uid: 36654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,102.5
+ parent: 1
+- proto: IDComputerCircuitboard
+ entities:
+ - uid: 11347
+ components:
+ - type: Transform
+ pos: 141.37207,133.47998
+ parent: 1
+- proto: InflatableWall
+ entities:
+ - uid: 34084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,166.5
+ parent: 1
+- proto: IngotGold
+ entities:
+ - uid: 23385
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 47.62524,73.43181
+ parent: 1
+- proto: IngotGold1
+ entities:
+ - uid: 35774
+ components:
+ - type: Transform
+ pos: 54.814972,122.498314
+ parent: 1
+ - uid: 35775
+ components:
+ - type: Transform
+ pos: 55.50713,122.694
+ parent: 1
+ - uid: 35776
+ components:
+ - type: Transform
+ pos: 55.00341,123.60359
+ parent: 1
+- proto: IngotSilver
+ entities:
+ - uid: 23757
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 47.316784,73.72452
+ parent: 1
+- proto: IngotSilver1
+ entities:
+ - uid: 35777
+ components:
+ - type: Transform
+ pos: 54.36561,122.82809
+ parent: 1
+ - uid: 35778
+ components:
+ - type: Transform
+ pos: 55.518,123.44052
+ parent: 1
+- proto: IntercomAll
+ entities:
+ - uid: 13504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,23.5
+ parent: 1
+ - uid: 13505
+ components:
+ - type: Transform
+ pos: 43.5,25.5
+ parent: 1
+ - uid: 16299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,122.5
+ parent: 1
+ - uid: 33791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,91.5
+ parent: 1
+- proto: IntercomCommand
+ entities:
+ - uid: 26712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,55.5
+ parent: 1
+ - uid: 35913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,72.5
+ parent: 1
+ - uid: 36851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,47.5
+ parent: 1
+ - uid: 36852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,41.5
+ parent: 1
+ - uid: 36853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,17.5
+ parent: 1
+ - uid: 36854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,52.5
+ parent: 1
+ - uid: 36855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,61.5
+ parent: 1
+ - uid: 36860
+ components:
+ - type: Transform
+ pos: 36.5,77.5
+ parent: 1
+ - uid: 36861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,66.5
+ parent: 1
+- proto: IntercomCommon
+ entities:
+ - uid: 22946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,46.5
+ parent: 1
+ - uid: 25506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,50.5
+ parent: 1
+- proto: IntercomElectronics
+ entities:
+ - uid: 16300
+ components:
+ - type: Transform
+ pos: 137.58682,121.40492
+ parent: 1
+ - uid: 16301
+ components:
+ - type: Transform
+ pos: 137.75815,121.60062
+ parent: 1
+- proto: IntercomEngineering
+ entities:
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 99.5,120.5
+ parent: 1
+ - uid: 15022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,135.5
+ parent: 1
+ - uid: 15024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,135.5
+ parent: 1
+ - uid: 15101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,151.5
+ parent: 1
+ - uid: 16083
+ components:
+ - type: Transform
+ pos: 127.5,147.5
+ parent: 1
+ - uid: 16086
+ components:
+ - type: Transform
+ pos: 115.5,157.5
+ parent: 1
+ - uid: 16087
+ components:
+ - type: Transform
+ pos: 102.5,157.5
+ parent: 1
+ - uid: 16088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,143.5
+ parent: 1
+ - uid: 16090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,148.5
+ parent: 1
+ - uid: 16092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,120.5
+ parent: 1
+ - uid: 16094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,119.5
+ parent: 1
+ - uid: 18828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,122.5
+ parent: 1
+ - uid: 26988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,120.5
+ parent: 1
+- proto: IntercomMedical
+ entities:
+ - uid: 477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,88.5
+ parent: 1
+ - uid: 5943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,83.5
+ parent: 1
+ - uid: 17752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,100.5
+ parent: 1
+ - uid: 17753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,100.5
+ parent: 1
+ - uid: 17754
+ components:
+ - type: Transform
+ pos: 67.5,85.5
+ parent: 1
+ - uid: 17755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,85.5
+ parent: 1
+ - uid: 17756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,89.5
+ parent: 1
+ - uid: 17757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,96.5
+ parent: 1
+ - uid: 17759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,105.5
+ parent: 1
+ - uid: 17761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,89.5
+ parent: 1
+ - uid: 17762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,98.5
+ parent: 1
+ - uid: 20864
+ components:
+ - type: Transform
+ pos: 36.5,95.5
+ parent: 1
+ - uid: 20865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,101.5
+ parent: 1
+ - uid: 20866
+ components:
+ - type: Transform
+ pos: 32.5,118.5
+ parent: 1
+ - uid: 20867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,110.5
+ parent: 1
+ - uid: 20869
+ components:
+ - type: Transform
+ pos: 48.5,109.5
+ parent: 1
+ - uid: 27330
+ components:
+ - type: Transform
+ pos: 48.5,104.5
+ parent: 1
+ - uid: 28268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,109.5
+ parent: 1
+ - uid: 28717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,48.5
+ parent: 1
+- proto: IntercomScience
+ entities:
+ - uid: 20429
+ components:
+ - type: Transform
+ pos: 36.5,102.5
+ parent: 1
+ - uid: 20430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,105.5
+ parent: 1
+- proto: IntercomSecurity
+ entities:
+ - uid: 22940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,65.5
+ parent: 1
+ - uid: 22941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,75.5
+ parent: 1
+ - uid: 22942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,65.5
+ parent: 1
+ - uid: 22943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,53.5
+ parent: 1
+ - uid: 22944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,60.5
+ parent: 1
+ - uid: 22945
+ components:
+ - type: Transform
+ pos: 142.5,72.5
+ parent: 1
+ - uid: 25517
+ components:
+ - type: Transform
+ pos: 92.5,116.5
+ parent: 1
+- proto: IntercomService
+ entities:
+ - uid: 26517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,98.5
+ parent: 1
+ - uid: 26518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,100.5
+ parent: 1
+ - uid: 26519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,100.5
+ parent: 1
+ - uid: 26801
+ components:
+ - type: Transform
+ pos: 112.5,65.5
+ parent: 1
+ - uid: 26802
+ components:
+ - type: Transform
+ pos: 100.5,65.5
+ parent: 1
+- proto: IntercomSupply
+ entities:
+ - uid: 4767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,95.5
+ parent: 1
+ - uid: 19507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,101.5
+ parent: 1
+ - uid: 19508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,108.5
+ parent: 1
+ - uid: 19510
+ components:
+ - type: Transform
+ pos: 147.5,101.5
+ parent: 1
+ - uid: 19511
+ components:
+ - type: Transform
+ pos: 143.5,92.5
+ parent: 1
+- proto: JanitorialTrolley
+ entities:
+ - uid: 29558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,123.5
+ parent: 1
+- proto: JanitorServiceLight
+ entities:
+ - uid: 36813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,90.5
+ parent: 1
+ - uid: 36824
+ components:
+ - type: Transform
+ pos: 114.5,121.5
+ parent: 1
+ - uid: 36826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,117.5
+ parent: 1
+ - uid: 36834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,112.5
+ parent: 1
+ - uid: 36837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,94.5
+ parent: 1
+ - uid: 36839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,66.5
+ parent: 1
+ - uid: 36844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,76.5
+ parent: 1
+ - uid: 36845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,57.5
+ parent: 1
+ - uid: 36846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,96.5
+ parent: 1
+ - uid: 36847
+ components:
+ - type: Transform
+ pos: 131.5,110.5
+ parent: 1
+- proto: JetpackMiniFilled
+ entities:
+ - uid: 329
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.54334,75.409134
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 19390
+ - type: Jetpack
+ toggleActionEntity: 19389
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 19389
+ - 19390
+ - uid: 19098
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.457726,74.76046
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 26838
+ - type: Jetpack
+ toggleActionEntity: 23342
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 23342
+ - 26838
+- proto: Joint
+ entities:
+ - uid: 18090
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 89.441414,92.74157
+ parent: 1
+- proto: Jukebox
+ entities:
+ - uid: 23788
+ components:
+ - type: Transform
+ pos: 110.5,115.5
+ parent: 1
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 30410
+ components:
+ - type: Transform
+ pos: 118.5,104.5
+ parent: 1
+ - uid: 32977
+ components:
+ - type: Transform
+ pos: 120.5,99.5
+ parent: 1
+ - uid: 33625
+ components:
+ - type: Transform
+ pos: 126.5,36.5
+ parent: 1
+- proto: KitchenKnife
+ entities:
+ - uid: 34534
+ components:
+ - type: Transform
+ pos: 157.5,44.5
+ parent: 1
+- proto: KitchenMicrowave
+ entities:
+ - uid: 7107
+ components:
+ - type: Transform
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 9694
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 10574
+ components:
+ - type: Transform
+ pos: 144.5,93.5
+ parent: 1
+ - uid: 20819
+ components:
+ - type: Transform
+ pos: 25.5,99.5
+ parent: 1
+ - uid: 22848
+ components:
+ - type: Transform
+ pos: 150.5,53.5
+ parent: 1
+ - uid: 23019
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 32220
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 34536
+ components:
+ - type: Transform
+ pos: 161.5,42.5
+ parent: 1
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 18045
+ components:
+ - type: Transform
+ pos: 85.5,104.5
+ parent: 1
+ - uid: 20468
+ components:
+ - type: Transform
+ pos: 35.5,109.5
+ parent: 1
+ - uid: 23041
+ components:
+ - type: Transform
+ pos: 129.5,50.5
+ parent: 1
+ - uid: 26527
+ components:
+ - type: Transform
+ pos: 116.5,96.5
+ parent: 1
+ - uid: 26649
+ components:
+ - type: Transform
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 30409
+ components:
+ - type: Transform
+ pos: 123.5,97.5
+ parent: 1
+ - uid: 33615
+ components:
+ - type: Transform
+ pos: 126.5,38.5
+ parent: 1
+- proto: KitchenSpike
+ entities:
+ - uid: 26896
+ components:
+ - type: Transform
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 34533
+ components:
+ - type: Transform
+ pos: 155.5,42.5
+ parent: 1
+- proto: KnifePlastic
+ entities:
+ - uid: 23039
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 128.91275,50.59222
+ parent: 1
+- proto: Lamp
+ entities:
+ - uid: 13524
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 13525
+ components:
+ - type: Transform
+ pos: 40.483433,54.34497
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13526
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13526
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 13709
+ components:
+ - type: Transform
+ pos: 57.50933,49.88543
+ parent: 1
+ - uid: 18098
+ components:
+ - type: Transform
+ pos: 93.505325,91.79923
+ parent: 1
+ - uid: 19358
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 137.3994,103.5578
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 26840
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 26840
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 20881
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 33.460236,105.08435
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 18796
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 18796
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 20929
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 38.36207,106.76607
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 5305
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 5305
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 23071
+ components:
+ - type: Transform
+ pos: 142.37183,67.84626
+ parent: 1
+ - uid: 25290
+ components:
+ - type: Transform
+ pos: 100.59046,35.942623
+ parent: 1
+ - uid: 26939
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 70.436455,70.761185
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 26940
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 26940
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 27182
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 107.43823,48.853798
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 24287
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 24287
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 35404
+ components:
+ - type: Transform
+ pos: 76.59339,162.03687
+ parent: 1
+ - uid: 35406
+ components:
+ - type: Transform
+ pos: 80.06689,160.87488
+ parent: 1
+ - uid: 35407
+ components:
+ - type: Transform
+ pos: 73.48682,161.30302
+ parent: 1
+ - uid: 37184
+ components:
+ - type: Transform
+ pos: 168.61847,135.98645
+ parent: 1
+ - uid: 37477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.50781,40.02996
+ parent: 1
+- proto: LampBanana
+ entities:
+ - uid: 26774
+ components:
+ - type: Transform
+ pos: 106.76655,57.143
+ parent: 1
+- proto: LampGold
+ entities:
+ - uid: 13520
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 35.52334,74.33325
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13521
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13521
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 13522
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 60.47457,56.997498
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13523
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13523
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 19385
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 142.43442,104.59371
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 19386
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19386
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 23283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.64417,52.94574
+ parent: 1
+ - uid: 26941
+ components:
+ - type: Transform
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 27184
+ components:
+ - type: Transform
+ pos: 78.44548,54.59781
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 27185
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27185
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 27186
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 80.52766,47.881866
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 27187
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27187
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 30034
+ components:
+ - type: Transform
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 30170
+ components:
+ - type: Transform
+ pos: 133.419,153.93555
+ parent: 1
+ - uid: 35611
+ components:
+ - type: Transform
+ pos: 70.54259,161.79822
+ parent: 1
+- proto: LampInterrogator
+ entities:
+ - uid: 22966
+ components:
+ - type: Transform
+ pos: 154.07773,63.02546
+ parent: 1
+- proto: Lantern
+ entities:
+ - uid: 27410
+ components:
+ - type: Transform
+ pos: 82.54671,72.7555
+ parent: 1
+- proto: LargeBeaker
+ entities:
+ - uid: 20472
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 30.42717,111.66254
+ parent: 1
+- proto: LeavesCannabisDried
+ entities:
+ - uid: 37181
+ components:
+ - type: Transform
+ pos: 167.7189,135.8441
+ parent: 1
+- proto: LeftArmBorg
+ entities:
+ - uid: 20951
+ components:
+ - type: Transform
+ pos: 63.2839,93.33271
+ parent: 1
+- proto: LightBulb
+ entities:
+ - uid: 23280
+ components:
+ - type: Transform
+ parent: 23279
+ - type: Physics
+ canCollide: False
+ - uid: 23282
+ components:
+ - type: Transform
+ parent: 23281
+ - type: Physics
+ canCollide: False
+- proto: LightReplacer
+ entities:
+ - uid: 33905
+ components:
+ - type: Transform
+ pos: 158.81224,128.7817
+ parent: 1
+- proto: LiveLetLiveCircuitBoard
+ entities:
+ - uid: 13263
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.361183,38.898613
+ parent: 1
+- proto: LockableButtonChiefEngineer
+ entities:
+ - uid: 13684
+ components:
+ - type: MetaData
+ name: emergency containment access lockable button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,146.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23360:
+ - Pressed: Toggle
+- proto: LockableButtonMedical
+ entities:
+ - uid: 17751
+ components:
+ - type: MetaData
+ name: exit lockable button
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17696:
+ - Pressed: Toggle
+ 17697:
+ - Pressed: Toggle
+- proto: LockerAtmosphericsFilled
+ entities:
+ - uid: 15991
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15992
+ components:
+ - type: Transform
+ pos: 74.5,119.5
+ parent: 1
+ - uid: 15993
+ components:
+ - type: Transform
+ pos: 75.5,119.5
+ parent: 1
+- proto: LockerBoozeFilled
+ entities:
+ - uid: 26546
+ components:
+ - type: Transform
+ pos: 106.5,103.5
+ parent: 1
+ - uid: 26547
+ components:
+ - type: Transform
+ pos: 106.5,104.5
+ parent: 1
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 26461
+ components:
+ - type: Transform
+ pos: 98.5,90.5
+ parent: 1
+ - uid: 26462
+ components:
+ - type: Transform
+ pos: 99.5,90.5
+ parent: 1
+ - uid: 26463
+ components:
+ - type: Transform
+ pos: 100.5,90.5
+ parent: 1
+- proto: LockerCaptainFilledNoLaser
+ entities:
+ - uid: 13470
+ components:
+ - type: Transform
+ pos: 37.5,68.5
+ parent: 1
+- proto: LockerChemistryFilled
+ entities:
+ - uid: 18031
+ components:
+ - type: Transform
+ pos: 85.5,106.5
+ parent: 1
+ - uid: 18054
+ components:
+ - type: Transform
+ pos: 85.5,103.5
+ parent: 1
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 15397
+ components:
+ - type: Transform
+ pos: 130.5,146.5
+ parent: 1
+- proto: LockerChiefMedicalOfficerFilled
+ entities:
+ - uid: 17728
+ components:
+ - type: Transform
+ pos: 91.5,92.5
+ parent: 1
+- proto: LockerClown
+ entities:
+ - uid: 26749
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+- proto: LockerDetectiveFilled
+ entities:
+ - uid: 29849
+ components:
+ - type: Transform
+ pos: 86.5,57.5
+ parent: 1
+- proto: LockerElectricalSuppliesFilled
+ entities:
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 54.5,143.5
+ parent: 1
+ - uid: 6556
+ components:
+ - type: Transform
+ pos: 163.5,54.5
+ parent: 1
+ - uid: 7217
+ components:
+ - type: Transform
+ pos: 18.5,98.5
+ parent: 1
+ - uid: 7480
+ components:
+ - type: Transform
+ pos: 87.5,48.5
+ parent: 1
+ - uid: 16065
+ components:
+ - type: Transform
+ pos: 118.5,121.5
+ parent: 1
+ - uid: 16068
+ components:
+ - type: Transform
+ pos: 120.5,144.5
+ parent: 1
+ - uid: 19477
+ components:
+ - type: Transform
+ pos: 37.5,119.5
+ parent: 1
+ - uid: 20829
+ components:
+ - type: Transform
+ pos: 122.5,158.5
+ parent: 1
+ - uid: 33477
+ components:
+ - type: Transform
+ pos: 115.5,22.5
+ parent: 1
+ - uid: 34652
+ components:
+ - type: Transform
+ pos: 144.5,44.5
+ parent: 1
+ - uid: 34653
+ components:
+ - type: Transform
+ pos: 146.5,74.5
+ parent: 1
+ - uid: 34933
+ components:
+ - type: Transform
+ pos: 72.5,82.5
+ parent: 1
+ - uid: 34964
+ components:
+ - type: Transform
+ pos: 167.5,137.5
+ parent: 1
+ - uid: 36529
+ components:
+ - type: Transform
+ pos: 27.5,69.5
+ parent: 1
+ - uid: 37049
+ components:
+ - type: Transform
+ pos: 77.5,156.5
+ parent: 1
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 16076
+ components:
+ - type: Transform
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 16077
+ components:
+ - type: Transform
+ pos: 134.5,134.5
+ parent: 1
+ - uid: 16078
+ components:
+ - type: Transform
+ pos: 134.5,133.5
+ parent: 1
+ - uid: 16108
+ components:
+ - type: Transform
+ pos: 133.5,135.5
+ parent: 1
+ - uid: 16109
+ components:
+ - type: Transform
+ pos: 133.5,134.5
+ parent: 1
+ - uid: 16110
+ components:
+ - type: Transform
+ pos: 133.5,133.5
+ parent: 1
+- proto: LockerEvidence
+ entities:
+ - uid: 20996
+ components:
+ - type: Transform
+ pos: 155.5,153.5
+ parent: 1
+ - uid: 22824
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 22825
+ components:
+ - type: Transform
+ pos: 124.5,56.5
+ parent: 1
+ - uid: 22828
+ components:
+ - type: Transform
+ pos: 126.5,56.5
+ parent: 1
+ - uid: 22829
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - uid: 22830
+ components:
+ - type: Transform
+ pos: 128.5,70.5
+ parent: 1
+ - uid: 22831
+ components:
+ - type: Transform
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22832
+ components:
+ - type: Transform
+ pos: 128.5,64.5
+ parent: 1
+ - uid: 27506
+ components:
+ - type: Transform
+ pos: 95.5,115.5
+ parent: 1
+- proto: LockerFreezer
+ entities:
+ - uid: 26448
+ components:
+ - type: Transform
+ pos: 115.5,91.5
+ parent: 1
+ - uid: 27260
+ components:
+ - type: Transform
+ pos: 115.5,103.5
+ parent: 1
+ - uid: 30121
+ components:
+ - type: Transform
+ pos: 142.5,140.5
+ parent: 1
+- proto: LockerFreezerVaultFilled
+ entities:
+ - uid: 35218
+ components:
+ - type: Transform
+ pos: 46.5,75.5
+ parent: 1
+- proto: LockerHeadOfPersonnelFilled
+ entities:
+ - uid: 13650
+ components:
+ - type: Transform
+ pos: 54.5,52.5
+ parent: 1
+- proto: LockerHeadOfSecurityFilled
+ entities:
+ - uid: 22939
+ components:
+ - type: Transform
+ pos: 143.5,62.5
+ parent: 1
+- proto: LockerMedicalFilled
+ entities:
+ - uid: 23650
+ components:
+ - type: Transform
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 23651
+ components:
+ - type: Transform
+ pos: 70.5,82.5
+ parent: 1
+ - uid: 27966
+ components:
+ - type: Transform
+ pos: 68.5,82.5
+ parent: 1
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 17740
+ components:
+ - type: Transform
+ pos: 70.5,90.5
+ parent: 1
+ - uid: 17833
+ components:
+ - type: Transform
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 17834
+ components:
+ - type: Transform
+ pos: 73.5,100.5
+ parent: 1
+ - uid: 27605
+ components:
+ - type: Transform
+ pos: 65.5,80.5
+ parent: 1
+ - uid: 28660
+ components:
+ - type: Transform
+ pos: 113.5,51.5
+ parent: 1
+- proto: LockerMime
+ entities:
+ - uid: 26753
+ components:
+ - type: Transform
+ pos: 102.5,57.5
+ parent: 1
+- proto: LockerParamedicFilled
+ entities:
+ - uid: 17721
+ components:
+ - type: Transform
+ pos: 78.5,102.5
+ parent: 1
+- proto: LockerQuarterMasterFilled
+ entities:
+ - uid: 19377
+ components:
+ - type: Transform
+ pos: 142.5,108.5
+ parent: 1
+- proto: LockerResearchDirectorFilled
+ entities:
+ - uid: 20877
+ components:
+ - type: Transform
+ pos: 35.5,103.5
+ parent: 1
+- proto: LockerSalvageSpecialistFilledHardsuit
+ entities:
+ - uid: 19465
+ components:
+ - type: Transform
+ pos: 142.5,88.5
+ parent: 1
+ - uid: 19466
+ components:
+ - type: Transform
+ pos: 142.5,87.5
+ parent: 1
+ - uid: 19467
+ components:
+ - type: Transform
+ pos: 142.5,89.5
+ parent: 1
+- proto: LockerScienceFilled
+ entities:
+ - uid: 6030
+ components:
+ - type: Transform
+ pos: 24.5,102.5
+ parent: 1
+ - uid: 18975
+ components:
+ - type: Transform
+ pos: 36.5,117.5
+ parent: 1
+ - uid: 19307
+ components:
+ - type: Transform
+ pos: 26.5,105.5
+ parent: 1
+ - uid: 20426
+ components:
+ - type: Transform
+ pos: 27.5,105.5
+ parent: 1
+ - uid: 20821
+ components:
+ - type: Transform
+ pos: 25.5,105.5
+ parent: 1
+ - uid: 20882
+ components:
+ - type: Transform
+ pos: 36.5,116.5
+ parent: 1
+ - uid: 20983
+ components:
+ - type: Transform
+ pos: 46.5,87.5
+ parent: 1
+ - uid: 37551
+ components:
+ - type: Transform
+ pos: 24.5,103.5
+ parent: 1
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 16408
+ components:
+ - type: Transform
+ pos: 156.5,149.5
+ parent: 1
+ - uid: 22669
+ components:
+ - type: Transform
+ pos: 155.5,51.5
+ parent: 1
+ - uid: 23515
+ components:
+ - type: Transform
+ pos: 94.5,112.5
+ parent: 1
+ - uid: 25416
+ components:
+ - type: Transform
+ pos: 155.5,53.5
+ parent: 1
+ - uid: 25489
+ components:
+ - type: Transform
+ pos: 155.5,52.5
+ parent: 1
+ - uid: 27846
+ components:
+ - type: Transform
+ pos: 152.5,52.5
+ parent: 1
+ - uid: 27965
+ components:
+ - type: Transform
+ pos: 152.5,51.5
+ parent: 1
+ - uid: 28895
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 17674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,95.5
+ parent: 1
+ - uid: 17676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,99.5
+ parent: 1
+- proto: LockerWardenFilled
+ entities:
+ - uid: 22961
+ components:
+ - type: Transform
+ pos: 130.5,68.5
+ parent: 1
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 4534
+ components:
+ - type: Transform
+ pos: 96.5,34.5
+ parent: 1
+ - uid: 8265
+ components:
+ - type: Transform
+ pos: 29.5,76.5
+ parent: 1
+ - uid: 16067
+ components:
+ - type: Transform
+ pos: 120.5,130.5
+ parent: 1
+ - uid: 16070
+ components:
+ - type: Transform
+ pos: 98.5,121.5
+ parent: 1
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: 18.5,96.5
+ parent: 1
+ - uid: 19368
+ components:
+ - type: Transform
+ pos: 118.5,122.5
+ parent: 1
+ - uid: 19413
+ components:
+ - type: Transform
+ pos: 96.5,86.5
+ parent: 1
+ - uid: 30541
+ components:
+ - type: Transform
+ pos: 151.5,85.5
+ parent: 1
+ - uid: 33478
+ components:
+ - type: Transform
+ pos: 115.5,23.5
+ parent: 1
+ - uid: 34935
+ components:
+ - type: Transform
+ pos: 134.5,113.5
+ parent: 1
+ - uid: 36134
+ components:
+ - type: Transform
+ pos: 24.5,115.5
+ parent: 1
+ - uid: 36521
+ components:
+ - type: Transform
+ pos: 141.5,129.5
+ parent: 1
+ - uid: 37041
+ components:
+ - type: Transform
+ pos: 93.5,163.5
+ parent: 1
+- proto: LogicGateOr
+ entities:
+ - uid: 15393
+ components:
+ - type: Transform
+ anchored: True
+ rot: -1.5707963267948966 rad
+ pos: 114.5,148.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15025:
+ - Output: DoorBolt
+ 15026:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 15394
+ components:
+ - type: Transform
+ anchored: True
+ rot: -4.71238898038469 rad
+ pos: 115.5,147.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15027:
+ - Output: DoorBolt
+ 15028:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 19497
+ components:
+ - type: Transform
+ anchored: True
+ pos: 154.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 35643
+ components:
+ - type: Transform
+ anchored: True
+ rot: 3.141592653589793 rad
+ pos: 155.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19494:
+ - Output: DoorBolt
+ 6971:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+- proto: MachineAnomalyGenerator
+ entities:
+ - uid: 19708
+ components:
+ - type: Transform
+ pos: 43.5,115.5
+ parent: 1
+- proto: MachineAnomalyVessel
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,114.5
+ parent: 1
+ - uid: 19706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,114.5
+ parent: 1
+- proto: MachineAPE
+ entities:
+ - uid: 19699
+ components:
+ - type: Transform
+ pos: 40.5,110.5
+ parent: 1
+ - uid: 19702
+ components:
+ - type: Transform
+ pos: 39.5,110.5
+ parent: 1
+ - uid: 19703
+ components:
+ - type: Transform
+ pos: 38.5,110.5
+ parent: 1
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 19682
+ components:
+ - type: Transform
+ pos: 32.5,88.5
+ parent: 1
+ - uid: 19683
+ components:
+ - type: Transform
+ pos: 32.5,92.5
+ parent: 1
+- proto: MachineCentrifuge
+ entities:
+ - uid: 18047
+ components:
+ - type: Transform
+ pos: 85.5,101.5
+ parent: 1
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 18046
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+- proto: MachineFrame
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,85.5
+ parent: 1
+ - uid: 14512
+ components:
+ - type: Transform
+ pos: 33.5,113.5
+ parent: 1
+ - uid: 19700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,110.5
+ parent: 1
+ - uid: 20456
+ components:
+ - type: Transform
+ pos: 53.5,81.5
+ parent: 1
+ - uid: 28152
+ components:
+ - type: Transform
+ pos: 58.5,124.5
+ parent: 1
+ - uid: 30530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,150.5
+ parent: 1
+ - uid: 30563
+ components:
+ - type: Transform
+ pos: 53.5,145.5
+ parent: 1
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 14511
+ components:
+ - type: Transform
+ pos: 33.5,112.5
+ parent: 1
+- proto: MailingUnit
+ entities:
+ - uid: 6255
+ components:
+ - type: Transform
+ pos: 50.5,53.5
+ parent: 1
+ - type: MailingUnit
+ tag: Bridge
+ target: Bridge
+ - uid: 13314
+ components:
+ - type: Transform
+ pos: 124.5,101.5
+ parent: 1
+ - type: MailingUnit
+ tag: Kitchen
+ - type: Configuration
+ config:
+ tag: Kitchen
+ - uid: 16206
+ components:
+ - type: Transform
+ pos: 74.5,116.5
+ parent: 1
+ - type: MailingUnit
+ tag: Atmos
+ target: Atmos
+ - uid: 16306
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - type: MailingUnit
+ tag: Engineering
+ target: Engineering
+ - uid: 17842
+ components:
+ - type: Transform
+ pos: 89.5,110.5
+ parent: 1
+ - type: MailingUnit
+ tag: Chemistry
+ - type: Configuration
+ config:
+ tag: Chemistry
+ - uid: 17861
+ components:
+ - type: Transform
+ pos: 72.5,85.5
+ parent: 1
+ - type: MailingUnit
+ tag: Medbay
+ - type: Configuration
+ config:
+ tag: Medbay
+ - uid: 19221
+ components:
+ - type: Transform
+ pos: 152.5,95.5
+ parent: 1
+ - type: MailingUnit
+ tag: Salvage
+ - type: Configuration
+ config:
+ tag: Salvage
+ - uid: 20455
+ components:
+ - type: Transform
+ pos: 49.5,90.5
+ parent: 1
+ - type: MailingUnit
+ tag: Science
+ - type: Configuration
+ config:
+ tag: Science
+ - uid: 20527
+ components:
+ - type: Transform
+ pos: 36.5,110.5
+ parent: 1
+ - type: MailingUnit
+ tag: Xenobio
+ - type: Configuration
+ config:
+ tag: Xenobio
+ - uid: 22278
+ components:
+ - type: Transform
+ pos: 135.5,70.5
+ parent: 1
+ - type: MailingUnit
+ tag: Warden
+ - type: Configuration
+ config:
+ tag: Warden
+ - uid: 22279
+ components:
+ - type: Transform
+ pos: 138.5,51.5
+ parent: 1
+ - type: MailingUnit
+ tag: Security
+ - type: Configuration
+ config:
+ tag: Security
+ - uid: 26239
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - type: MailingUnit
+ tag: Botany
+ - type: Configuration
+ config:
+ tag: Botany
+ - uid: 30411
+ components:
+ - type: Transform
+ pos: 125.5,103.5
+ parent: 1
+ - type: MailingUnit
+ tag: Arcade
+ - type: Configuration
+ config:
+ tag: Arcade
+ - uid: 32927
+ components:
+ - type: Transform
+ pos: 152.5,112.5
+ parent: 1
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,47.5
+ parent: 1
+ - uid: 33583
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33584
+ components:
+ - type: Transform
+ pos: 96.5,20.5
+ parent: 1
+ - uid: 33585
+ components:
+ - type: Transform
+ pos: 119.5,41.5
+ parent: 1
+ - uid: 33586
+ components:
+ - type: Transform
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33589
+ components:
+ - type: Transform
+ pos: 115.5,35.5
+ parent: 1
+ - uid: 33590
+ components:
+ - type: Transform
+ pos: 114.5,35.5
+ parent: 1
+ - uid: 33591
+ components:
+ - type: Transform
+ pos: 113.5,35.5
+ parent: 1
+ - uid: 33592
+ components:
+ - type: Transform
+ pos: 116.5,35.5
+ parent: 1
+ - uid: 33593
+ components:
+ - type: Transform
+ pos: 95.5,32.5
+ parent: 1
+ - uid: 33598
+ components:
+ - type: Transform
+ pos: 120.5,30.5
+ parent: 1
+ - uid: 35370
+ components:
+ - type: Transform
+ pos: 94.5,173.5
+ parent: 1
+ - uid: 35371
+ components:
+ - type: Transform
+ pos: 91.5,169.5
+ parent: 1
+ - uid: 35372
+ components:
+ - type: Transform
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 35379
+ components:
+ - type: Transform
+ pos: 88.5,161.5
+ parent: 1
+ - uid: 35397
+ components:
+ - type: Transform
+ pos: 80.5,160.5
+ parent: 1
+ - uid: 35398
+ components:
+ - type: Transform
+ pos: 73.5,161.5
+ parent: 1
+ - uid: 35399
+ components:
+ - type: Transform
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 36475
+ components:
+ - type: Transform
+ pos: 35.5,83.5
+ parent: 1
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 9400
+ components:
+ - type: Transform
+ pos: 120.5,25.5
+ parent: 1
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 18104
+ components:
+ - type: Transform
+ pos: 87.5,39.5
+ parent: 1
+ - uid: 19346
+ components:
+ - type: Transform
+ pos: 94.5,158.5
+ parent: 1
+ - uid: 19456
+ components:
+ - type: Transform
+ pos: 161.5,112.5
+ parent: 1
+ - uid: 30543
+ components:
+ - type: Transform
+ pos: 161.5,134.5
+ parent: 1
+ - uid: 31822
+ components:
+ - type: Transform
+ pos: 152.5,76.5
+ parent: 1
+ - uid: 33568
+ components:
+ - type: Transform
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 34512
+ components:
+ - type: Transform
+ pos: 153.5,43.5
+ parent: 1
+ - uid: 35373
+ components:
+ - type: Transform
+ pos: 92.5,171.5
+ parent: 1
+ - uid: 36138
+ components:
+ - type: Transform
+ pos: 31.5,120.5
+ parent: 1
+ - uid: 36460
+ components:
+ - type: Transform
+ pos: 27.5,81.5
+ parent: 1
+ - uid: 36627
+ components:
+ - type: Transform
+ pos: 71.5,48.5
+ parent: 1
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 7112
+ components:
+ - type: Transform
+ pos: 24.5,97.5
+ parent: 1
+ - uid: 18905
+ components:
+ - type: Transform
+ pos: 82.5,155.5
+ parent: 1
+ - uid: 19459
+ components:
+ - type: Transform
+ pos: 81.5,155.5
+ parent: 1
+ - uid: 23705
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 25181
+ components:
+ - type: Transform
+ pos: 155.5,130.5
+ parent: 1
+ - uid: 30594
+ components:
+ - type: Transform
+ pos: 27.5,73.5
+ parent: 1
+ - uid: 33573
+ components:
+ - type: Transform
+ pos: 119.5,27.5
+ parent: 1
+ - uid: 33574
+ components:
+ - type: Transform
+ pos: 117.5,27.5
+ parent: 1
+ - uid: 33575
+ components:
+ - type: Transform
+ pos: 124.5,25.5
+ parent: 1
+ - uid: 33576
+ components:
+ - type: Transform
+ pos: 124.5,26.5
+ parent: 1
+ - uid: 33577
+ components:
+ - type: Transform
+ pos: 124.5,27.5
+ parent: 1
+ - uid: 33578
+ components:
+ - type: Transform
+ pos: 124.5,28.5
+ parent: 1
+ - uid: 34037
+ components:
+ - type: Transform
+ pos: 60.5,48.5
+ parent: 1
+ - uid: 34120
+ components:
+ - type: Transform
+ pos: 24.5,113.5
+ parent: 1
+ - uid: 34337
+ components:
+ - type: Transform
+ pos: 158.5,78.5
+ parent: 1
+ - uid: 34338
+ components:
+ - type: Transform
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 34620
+ components:
+ - type: Transform
+ pos: 159.5,54.5
+ parent: 1
+ - uid: 34898
+ components:
+ - type: Transform
+ pos: 121.5,94.5
+ parent: 1
+ - uid: 35369
+ components:
+ - type: Transform
+ pos: 95.5,173.5
+ parent: 1
+ - uid: 35377
+ components:
+ - type: Transform
+ pos: 90.5,161.5
+ parent: 1
+ - uid: 35378
+ components:
+ - type: Transform
+ pos: 89.5,161.5
+ parent: 1
+ - uid: 35400
+ components:
+ - type: Transform
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35402
+ components:
+ - type: Transform
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35403
+ components:
+ - type: Transform
+ pos: 73.5,160.5
+ parent: 1
+ - uid: 35438
+ components:
+ - type: Transform
+ pos: 87.5,157.5
+ parent: 1
+ - uid: 35444
+ components:
+ - type: Transform
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35621
+ components:
+ - type: Transform
+ pos: 65.5,160.5
+ parent: 1
+ - uid: 35629
+ components:
+ - type: Transform
+ pos: 57.5,154.5
+ parent: 1
+ - uid: 36170
+ components:
+ - type: Transform
+ pos: 50.5,109.5
+ parent: 1
+ - uid: 36454
+ components:
+ - type: Transform
+ pos: 62.5,45.5
+ parent: 1
+ - uid: 36470
+ components:
+ - type: Transform
+ pos: 30.5,83.5
+ parent: 1
+ - uid: 37159
+ components:
+ - type: Transform
+ pos: 154.5,114.5
+ parent: 1
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 33569
+ components:
+ - type: Transform
+ pos: 102.5,18.5
+ parent: 1
+ - uid: 33570
+ components:
+ - type: Transform
+ pos: 118.5,27.5
+ parent: 1
+ - uid: 33571
+ components:
+ - type: Transform
+ pos: 126.5,35.5
+ parent: 1
+ - uid: 33572
+ components:
+ - type: Transform
+ pos: 113.5,41.5
+ parent: 1
+ - uid: 35135
+ components:
+ - type: Transform
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 36459
+ components:
+ - type: Transform
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36461
+ components:
+ - type: Transform
+ pos: 22.5,75.5
+ parent: 1
+- proto: MakeshiftShield
+ entities:
+ - uid: 33555
+ components:
+ - type: Transform
+ pos: 106.4969,23.50216
+ parent: 1
+- proto: Matchbox
+ entities:
+ - uid: 33528
+ components:
+ - type: Transform
+ pos: 102.322266,28.314098
+ parent: 1
+- proto: MatchstickSpent
+ entities:
+ - uid: 33529
+ components:
+ - type: Transform
+ pos: 99.7343,26.457619
+ parent: 1
+ - uid: 33530
+ components:
+ - type: Transform
+ pos: 101.51671,25.744652
+ parent: 1
+ - uid: 33531
+ components:
+ - type: Transform
+ pos: 99.62319,28.610397
+ parent: 1
+- proto: MaterialCloth
+ entities:
+ - uid: 13656
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 58.557903,57.64333
+ parent: 1
+- proto: MaterialDurathread
+ entities:
+ - uid: 13655
+ components:
+ - type: Transform
+ pos: 56.09103,52.62849
+ parent: 1
+- proto: MatterBinStockPart
+ entities:
+ - uid: 20974
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 50.64077,91.76252
+ parent: 1
+- proto: Mattress
+ entities:
+ - uid: 33479
+ components:
+ - type: Transform
+ pos: 99.5,25.5
+ parent: 1
+ - uid: 33480
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33481
+ components:
+ - type: Transform
+ pos: 100.5,28.5
+ parent: 1
+ - uid: 34630
+ components:
+ - type: Transform
+ pos: 160.5,65.5
+ parent: 1
+ - uid: 34631
+ components:
+ - type: Transform
+ pos: 162.5,66.5
+ parent: 1
+ - uid: 37186
+ components:
+ - type: Transform
+ pos: 169.5,133.5
+ parent: 1
+ - uid: 37191
+ components:
+ - type: Transform
+ pos: 166.5,137.5
+ parent: 1
+- proto: MechEquipmentGrabberSmall
+ entities:
+ - uid: 19501
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 152.48033,103.53659
+ parent: 1
+- proto: MedicalBed
+ entities:
+ - uid: 17649
+ components:
+ - type: Transform
+ pos: 70.5,100.5
+ parent: 1
+ - uid: 17651
+ components:
+ - type: Transform
+ pos: 72.5,94.5
+ parent: 1
+ - uid: 17652
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 17653
+ components:
+ - type: Transform
+ pos: 79.5,94.5
+ parent: 1
+ - uid: 17658
+ components:
+ - type: Transform
+ pos: 72.5,100.5
+ parent: 1
+ - uid: 17659
+ components:
+ - type: Transform
+ pos: 77.5,94.5
+ parent: 1
+- proto: MedicalTechFab
+ entities:
+ - uid: 27967
+ components:
+ - type: Transform
+ pos: 65.5,83.5
+ parent: 1
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 13640
+ components:
+ - type: Transform
+ pos: 32.5,53.5
+ parent: 1
+ - uid: 18106
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 68.536476,80.38628
+ parent: 1
+- proto: MedkitBruteFilled
+ entities:
+ - uid: 17693
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.37616,100.58327
+ parent: 1
+ - uid: 18108
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.93908,80.23813
+ parent: 1
+ - uid: 19487
+ components:
+ - type: Transform
+ pos: 148.54587,98.56909
+ parent: 1
+ - uid: 26882
+ components:
+ - type: Transform
+ pos: 106.4852,78.49133
+ parent: 1
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 18107
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.63195,80.69021
+ parent: 1
+ - uid: 18112
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 71.469055,100.46487
+ parent: 1
+- proto: MedkitCombatFilled
+ entities:
+ - uid: 17730
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 89.38194,92.55364
+ parent: 1
+- proto: MedkitFilled
+ entities:
+ - uid: 17675
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.50448,95.54212
+ parent: 1
+ - uid: 17694
+ components:
+ - type: Transform
+ pos: 71.53867,102.50248
+ parent: 1
+ - uid: 18223
+ components:
+ - type: Transform
+ pos: 84.57056,91.6147
+ parent: 1
+ - uid: 19435
+ components:
+ - type: Transform
+ pos: 158.44234,96.461555
+ parent: 1
+ - uid: 19488
+ components:
+ - type: Transform
+ pos: 146.45892,92.49491
+ parent: 1
+ - uid: 22958
+ components:
+ - type: Transform
+ pos: 144.5488,50.486656
+ parent: 1
+ - uid: 22973
+ components:
+ - type: Transform
+ pos: 133.51228,71.47769
+ parent: 1
+ - uid: 25931
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - uid: 28720
+ components:
+ - type: Transform
+ pos: 120.5,47.5
+ parent: 1
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 17738
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 76.48908,102.65202
+ parent: 1
+ - uid: 18109
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 67.63078,80.259735
+ parent: 1
+ - uid: 18113
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.41698,94.558624
+ parent: 1
+ - uid: 19412
+ components:
+ - type: Transform
+ pos: 158.5,103.5
+ parent: 1
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 18110
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 67.336,80.650085
+ parent: 1
+ - uid: 18114
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 75.20865,97.527374
+ parent: 1
+ - uid: 30562
+ components:
+ - type: Transform
+ pos: 55.528038,148.51778
+ parent: 1
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 18111
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.31698,80.25503
+ parent: 1
+ - uid: 18115
+ components:
+ - type: Transform
+ pos: 71.43181,94.74928
+ parent: 1
+- proto: MeteorRock
+ entities:
+ - uid: 19474
+ components:
+ - type: Transform
+ pos: 28.5,122.5
+ parent: 1
+ - uid: 30536
+ components:
+ - type: Transform
+ pos: 27.5,122.5
+ parent: 1
+ - uid: 30537
+ components:
+ - type: Transform
+ pos: 26.5,121.5
+ parent: 1
+ - uid: 30565
+ components:
+ - type: Transform
+ pos: 21.5,124.5
+ parent: 1
+ - uid: 32080
+ components:
+ - type: Transform
+ pos: 21.5,122.5
+ parent: 1
+ - uid: 32109
+ components:
+ - type: Transform
+ pos: 22.5,121.5
+ parent: 1
+ - uid: 32217
+ components:
+ - type: Transform
+ pos: 25.5,124.5
+ parent: 1
+ - uid: 32218
+ components:
+ - type: Transform
+ pos: 29.5,123.5
+ parent: 1
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 20975
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 49.630356,86.710434
+ parent: 1
+- proto: MicrophoneInstrument
+ entities:
+ - uid: 4006
+ components:
+ - type: Transform
+ pos: 143.66885,123.61786
+ parent: 1
+- proto: Mirror
+ entities:
+ - uid: 13480
+ components:
+ - type: Transform
+ pos: 31.5,68.5
+ parent: 1
+ - uid: 13510
+ components:
+ - type: Transform
+ pos: 59.5,50.5
+ parent: 1
+- proto: MMI
+ entities:
+ - uid: 20900
+ components:
+ - type: Transform
+ pos: 63.50265,92.541046
+ parent: 1
+- proto: MonkeyCubeWrapped
+ entities:
+ - uid: 34537
+ components:
+ - type: Transform
+ pos: 159.5,42.5
+ parent: 1
+- proto: MoonBattlemap
+ entities:
+ - uid: 9666
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.6129,55.167767
+ parent: 1
+- proto: MopBucket
+ entities:
+ - uid: 29563
+ components:
+ - type: Transform
+ pos: 159.5,125.5
+ parent: 1
+ - uid: 30110
+ components:
+ - type: Transform
+ pos: 156.5,121.5
+ parent: 1
+- proto: MopBucketFull
+ entities:
+ - uid: 23027
+ components:
+ - type: Transform
+ pos: 133.5,50.5
+ parent: 1
+- proto: MopItem
+ entities:
+ - uid: 23028
+ components:
+ - type: Transform
+ pos: 133.45396,51.485043
+ parent: 1
+ - uid: 29570
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 159.45403,126.84702
+ parent: 1
+ - uid: 33460
+ components:
+ - type: Transform
+ pos: 92.5,25.5
+ parent: 1
+- proto: Morgue
+ entities:
+ - uid: 5242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,49.5
+ parent: 1
+ - uid: 10978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,81.5
+ parent: 1
+ - uid: 15406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,82.5
+ parent: 1
+ - uid: 17626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,81.5
+ parent: 1
+ - uid: 17897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - uid: 17943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,85.5
+ parent: 1
+ - uid: 17954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,85.5
+ parent: 1
+ - uid: 17955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,86.5
+ parent: 1
+ - uid: 26984
+ components:
+ - type: Transform
+ pos: 65.5,76.5
+ parent: 1
+ - uid: 26994
+ components:
+ - type: Transform
+ pos: 66.5,76.5
+ parent: 1
+ - uid: 28618
+ components:
+ - type: Transform
+ pos: 60.5,87.5
+ parent: 1
+ - uid: 28624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,84.5
+ parent: 1
+ - uid: 28805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,80.5
+ parent: 1
+ - uid: 28806
+ components:
+ - type: Transform
+ pos: 61.5,87.5
+ parent: 1
+ - uid: 28807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,80.5
+ parent: 1
+- proto: MouseTimedSpawner
+ entities:
+ - uid: 36874
+ components:
+ - type: Transform
+ pos: 108.5,27.5
+ parent: 1
+ - uid: 36876
+ components:
+ - type: Transform
+ pos: 15.5,106.5
+ parent: 1
+ - uid: 36877
+ components:
+ - type: Transform
+ pos: 103.5,171.5
+ parent: 1
+- proto: MousetrapArmed
+ entities:
+ - uid: 33558
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+- proto: Multitool
+ entities:
+ - uid: 13647
+ components:
+ - type: Transform
+ pos: 40.47588,54.95742
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: 64.5,32.5
+ parent: 1
+ - uid: 3734
+ components:
+ - type: Transform
+ pos: 96.5,108.5
+ parent: 1
+ - uid: 5062
+ components:
+ - type: Transform
+ pos: 115.5,70.5
+ parent: 1
+ - uid: 12412
+ components:
+ - type: Transform
+ pos: 149.5,74.5
+ parent: 1
+ - uid: 15960
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15961
+ components:
+ - type: Transform
+ pos: 79.5,118.5
+ parent: 1
+ - uid: 15964
+ components:
+ - type: Transform
+ pos: 79.5,116.5
+ parent: 1
+ - uid: 16255
+ components:
+ - type: Transform
+ pos: 148.5,115.5
+ parent: 1
+ - uid: 19366
+ components:
+ - type: Transform
+ pos: 26.5,91.5
+ parent: 1
+ - uid: 20497
+ components:
+ - type: Transform
+ pos: 51.5,101.5
+ parent: 1
+ - uid: 26494
+ components:
+ - type: Transform
+ pos: 94.5,55.5
+ parent: 1
+ - uid: 26569
+ components:
+ - type: Transform
+ pos: 98.5,37.5
+ parent: 1
+ - uid: 29062
+ components:
+ - type: Transform
+ pos: 63.5,70.5
+ parent: 1
+ - uid: 32227
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 32432
+ components:
+ - type: Transform
+ pos: 165.5,143.5
+ parent: 1
+ - uid: 32990
+ components:
+ - type: Transform
+ pos: 58.5,142.5
+ parent: 1
+ - uid: 34073
+ components:
+ - type: Transform
+ pos: 83.5,16.5
+ parent: 1
+ - uid: 34360
+ components:
+ - type: Transform
+ pos: 146.5,43.5
+ parent: 1
+ - uid: 35429
+ components:
+ - type: Transform
+ pos: 87.5,155.5
+ parent: 1
+ - uid: 35559
+ components:
+ - type: Transform
+ pos: 57.5,151.5
+ parent: 1
+ - uid: 37035
+ components:
+ - type: Transform
+ pos: 105.5,167.5
+ parent: 1
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 23052
+ components:
+ - type: Transform
+ pos: 124.56251,50.67297
+ parent: 1
+- proto: NitrousOxideCanister
+ entities:
+ - uid: 15959
+ components:
+ - type: Transform
+ pos: 79.5,119.5
+ parent: 1
+- proto: NTDefaultCircuitBoard
+ entities:
+ - uid: 13264
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.611183,38.71098
+ parent: 1
+- proto: NuclearBomb
+ entities:
+ - uid: 21652
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+- proto: NuclearBombKeg
+ entities:
+ - uid: 32071
+ components:
+ - type: Transform
+ pos: 107.5,61.5
+ parent: 1
+- proto: NutimovCircuitBoard
+ entities:
+ - uid: 13265
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,38.47123
+ parent: 1
+- proto: Ointment
+ entities:
+ - uid: 17678
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.63658,100.42702
+ parent: 1
+ - uid: 17689
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.604324,91.61143
+ parent: 1
+- proto: OperatingTable
+ entities:
+ - uid: 5332
+ components:
+ - type: Transform
+ pos: 61.5,85.5
+ parent: 1
+ - uid: 17945
+ components:
+ - type: Transform
+ pos: 62.5,103.5
+ parent: 1
+ - uid: 17946
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+- proto: OreBox
+ entities:
+ - uid: 21675
+ components:
+ - type: Transform
+ pos: 163.5,92.5
+ parent: 1
+- proto: OreProcessor
+ entities:
+ - uid: 30844
+ components:
+ - type: Transform
+ pos: 149.5,97.5
+ parent: 1
+- proto: OrganHumanEyes
+ entities:
+ - uid: 35104
+ components:
+ - type: Transform
+ pos: 162.8147,148.57959
+ parent: 1
+- proto: OxygenCanister
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 24.5,108.5
+ parent: 1
+ - uid: 2519
+ components:
+ - type: Transform
+ pos: 64.5,70.5
+ parent: 1
+ - uid: 2974
+ components:
+ - type: Transform
+ pos: 57.5,150.5
+ parent: 1
+ - uid: 4493
+ components:
+ - type: Transform
+ pos: 96.5,106.5
+ parent: 1
+ - uid: 14743
+ components:
+ - type: Transform
+ pos: 70.5,46.5
+ parent: 1
+ - uid: 16916
+ components:
+ - type: Transform
+ pos: 102.5,164.5
+ parent: 1
+ - uid: 19048
+ components:
+ - type: Transform
+ pos: 26.5,92.5
+ parent: 1
+ - uid: 19424
+ components:
+ - type: Transform
+ pos: 56.5,137.5
+ parent: 1
+ - uid: 20495
+ components:
+ - type: Transform
+ pos: 52.5,102.5
+ parent: 1
+ - uid: 23447
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 23493
+ components:
+ - type: Transform
+ pos: 153.5,114.5
+ parent: 1
+ - uid: 24543
+ components:
+ - type: Transform
+ pos: 63.5,26.5
+ parent: 1
+ - uid: 26584
+ components:
+ - type: Transform
+ pos: 104.5,28.5
+ parent: 1
+ - uid: 28737
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 28753
+ components:
+ - type: Transform
+ pos: 92.5,54.5
+ parent: 1
+ - uid: 32433
+ components:
+ - type: Transform
+ pos: 162.5,149.5
+ parent: 1
+ - uid: 33979
+ components:
+ - type: Transform
+ pos: 82.5,16.5
+ parent: 1
+ - uid: 34361
+ components:
+ - type: Transform
+ pos: 145.5,43.5
+ parent: 1
+ - uid: 34745
+ components:
+ - type: Transform
+ pos: 84.5,116.5
+ parent: 1
+ - uid: 34994
+ components:
+ - type: Transform
+ pos: 84.5,117.5
+ parent: 1
+ - uid: 35427
+ components:
+ - type: Transform
+ pos: 88.5,155.5
+ parent: 1
+ - uid: 35493
+ components:
+ - type: Transform
+ pos: 84.5,118.5
+ parent: 1
+ - uid: 37219
+ components:
+ - type: Transform
+ pos: 146.5,79.5
+ parent: 1
+- proto: OxygenTankFilled
+ entities:
+ - uid: 23051
+ components:
+ - type: Transform
+ pos: 124.52084,51.54797
+ parent: 1
+- proto: PackPaperRollingFilters
+ entities:
+ - uid: 23035
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 135.68066,48.577305
+ parent: 1
+- proto: PaintingCafeTerraceAtNight
+ entities:
+ - uid: 27222
+ components:
+ - type: Transform
+ pos: 79.5,50.5
+ parent: 1
+- proto: PaintingHelloWorld
+ entities:
+ - uid: 13601
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+- proto: PaintingMonkey
+ entities:
+ - uid: 26598
+ components:
+ - type: Transform
+ pos: 105.5,102.5
+ parent: 1
+- proto: PaintingNightHawks
+ entities:
+ - uid: 4202
+ components:
+ - type: Transform
+ pos: 75.5,50.5
+ parent: 1
+ - uid: 13598
+ components:
+ - type: Transform
+ pos: 31.5,71.5
+ parent: 1
+- proto: PaintingSadClown
+ entities:
+ - uid: 26746
+ components:
+ - type: Transform
+ pos: 103.5,58.5
+ parent: 1
+- proto: PaintingSkeletonCigarette
+ entities:
+ - uid: 13595
+ components:
+ - type: Transform
+ pos: 39.5,77.5
+ parent: 1
+- proto: PaintingSleepingGypsy
+ entities:
+ - uid: 13600
+ components:
+ - type: Transform
+ pos: 41.5,70.5
+ parent: 1
+- proto: PaintingTheGreatWave
+ entities:
+ - uid: 13599
+ components:
+ - type: Transform
+ pos: 34.5,69.5
+ parent: 1
+- proto: PaladinCircuitBoard
+ entities:
+ - uid: 13266
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.621597,38.210632
+ parent: 1
+- proto: Paper
+ entities:
+ - uid: 5381
+ components:
+ - type: Transform
+ pos: 130.5,112.5
+ parent: 1
+ - uid: 24541
+ components:
+ - type: Transform
+ pos: 64.165,52.573368
+ parent: 1
+- proto: PaperBin
+ entities:
+ - uid: 33509
+ components:
+ - type: Transform
+ pos: 101.5,18.5
+ parent: 1
+ - uid: 35401
+ components:
+ - type: Transform
+ pos: 77.5,160.5
+ parent: 1
+ - uid: 35624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,163.5
+ parent: 1
+- proto: PaperBin10
+ entities:
+ - uid: 19387
+ components:
+ - type: Transform
+ pos: 134.5,102.5
+ parent: 1
+- proto: PaperBin20
+ entities:
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,88.5
+ parent: 1
+ - uid: 4263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,42.5
+ parent: 1
+ - uid: 12664
+ components:
+ - type: Transform
+ pos: 80.5,52.5
+ parent: 1
+ - uid: 13674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,57.5
+ parent: 1
+ - uid: 26530
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 27215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,47.5
+ parent: 1
+- proto: PaperBin5
+ entities:
+ - uid: 13530
+ components:
+ - type: Transform
+ pos: 35.5,74.5
+ parent: 1
+ - uid: 13536
+ components:
+ - type: Transform
+ pos: 40.5,57.5
+ parent: 1
+ - uid: 18147
+ components:
+ - type: Transform
+ pos: 63.5,110.5
+ parent: 1
+ - uid: 18188
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18222
+ components:
+ - type: Transform
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 18879
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 19388
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 20998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,92.5
+ parent: 1
+ - uid: 21072
+ components:
+ - type: Transform
+ pos: 40.5,106.5
+ parent: 1
+ - uid: 23070
+ components:
+ - type: Transform
+ pos: 145.5,67.5
+ parent: 1
+ - uid: 23769
+ components:
+ - type: Transform
+ pos: 62.5,61.5
+ parent: 1
+ - uid: 27040
+ components:
+ - type: Transform
+ pos: 74.5,67.5
+ parent: 1
+ - uid: 27217
+ components:
+ - type: Transform
+ pos: 79.5,47.5
+ parent: 1
+ - uid: 29715
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+- proto: PaperCaptainsThoughts
+ entities:
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 35.37893,75.358116
+ parent: 1
+ - uid: 13519
+ components:
+ - type: Transform
+ pos: 35.59768,75.46228
+ parent: 1
+ - uid: 13527
+ components:
+ - type: Transform
+ pos: 35.451843,75.628944
+ parent: 1
+- proto: PaperCNCSheet
+ entities:
+ - uid: 3247
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27193
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27204
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27205
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+- proto: PaperOffice
+ entities:
+ - uid: 35405
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 76.544464,161.3764
+ parent: 1
+- proto: ParchisBoard
+ entities:
+ - uid: 27211
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.467865,57.74674
+ parent: 1
+- proto: ParticleAcceleratorControlBoxUnfinished
+ entities:
+ - uid: 14048
+ components:
+ - type: Transform
+ pos: 107.5,150.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterForeUnfinished
+ entities:
+ - uid: 14031
+ components:
+ - type: Transform
+ pos: 108.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterPortUnfinished
+ entities:
+ - uid: 14030
+ components:
+ - type: Transform
+ pos: 109.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterStarboardUnfinished
+ entities:
+ - uid: 14026
+ components:
+ - type: Transform
+ pos: 107.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEndCapUnfinished
+ entities:
+ - uid: 14054
+ components:
+ - type: Transform
+ pos: 108.5,151.5
+ parent: 1
+- proto: ParticleAcceleratorFuelChamberUnfinished
+ entities:
+ - uid: 14070
+ components:
+ - type: Transform
+ pos: 108.5,150.5
+ parent: 1
+- proto: ParticleAcceleratorPowerBoxUnfinished
+ entities:
+ - uid: 14071
+ components:
+ - type: Transform
+ pos: 108.5,149.5
+ parent: 1
+- proto: PartRodMetal
+ entities:
+ - uid: 6179
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 148.54797,95.561005
+ parent: 1
+ - uid: 16060
+ components:
+ - type: Transform
+ pos: 136.5,135.5
+ parent: 1
+ - uid: 32036
+ components:
+ - type: Transform
+ pos: 144.41653,130.58138
+ parent: 1
+ - uid: 35636
+ components:
+ - type: Transform
+ pos: 49.5,71.5
+ parent: 1
+- proto: Pen
+ entities:
+ - uid: 13711
+ components:
+ - type: Transform
+ pos: 56.62228,52.62849
+ parent: 1
+ - uid: 13721
+ components:
+ - type: Transform
+ pos: 53.472385,61.593983
+ parent: 1
+ - uid: 23767
+ components:
+ - type: Transform
+ pos: 62.366432,61.495148
+ parent: 1
+ - uid: 23768
+ components:
+ - type: Transform
+ pos: 62.387264,61.759033
+ parent: 1
+ - uid: 27206
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+- proto: PersonalAI
+ entities:
+ - uid: 2958
+ components:
+ - type: Transform
+ pos: 42.547894,45.688747
+ parent: 1
+ - uid: 4299
+ components:
+ - type: Transform
+ pos: 54.544743,23.430656
+ parent: 1
+ - uid: 21003
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.016388,106.5962
+ parent: 1
+ - uid: 27214
+ components:
+ - type: Transform
+ pos: 78.19574,59.10082
+ parent: 1
+- proto: PhoneInstrument
+ entities:
+ - uid: 14188
+ components:
+ - type: Transform
+ pos: 35.293808,76.11716
+ parent: 1
+- proto: PianoInstrument
+ entities:
+ - uid: 26637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,99.5
+ parent: 1
+- proto: Pickaxe
+ entities:
+ - uid: 19482
+ components:
+ - type: Transform
+ pos: 146.66238,88.5038
+ parent: 1
+ - uid: 35861
+ components:
+ - type: Transform
+ pos: 57.464184,128.54631
+ parent: 1
+- proto: PillCanisterTricordrazine
+ entities:
+ - uid: 18213
+ components:
+ - type: Transform
+ pos: 76.44742,104.162445
+ parent: 1
+ - uid: 18214
+ components:
+ - type: Transform
+ pos: 76.73908,104.39161
+ parent: 1
+- proto: PinpointerNuclear
+ entities:
+ - uid: 13614
+ components:
+ - type: Transform
+ pos: 35.5,73.5
+ parent: 1
+ - uid: 23444
+ components:
+ - type: Transform
+ pos: 47.562157,75.52082
+ parent: 1
+- proto: PlantBag
+ entities:
+ - uid: 26657
+ components:
+ - type: Transform
+ pos: 93.505905,103.57307
+ parent: 1
+- proto: PlantBGoneSpray
+ entities:
+ - uid: 2570
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 98.27668,96.53144
+ parent: 1
+ - uid: 26659
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.28691,92.62194
+ parent: 1
+- proto: PlaqueAtmos
+ entities:
+ - uid: 15988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,124.5
+ parent: 1
+- proto: PlasmaCanister
+ entities:
+ - uid: 21588
+ components:
+ - type: Transform
+ pos: 80.5,116.5
+ parent: 1
+ - uid: 21589
+ components:
+ - type: Transform
+ pos: 80.5,118.5
+ parent: 1
+ - uid: 21590
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 30795
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 2977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,135.5
+ parent: 1
+ - uid: 4024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,143.5
+ parent: 1
+ - uid: 8465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,143.5
+ parent: 1
+ - uid: 9434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,135.5
+ parent: 1
+- proto: PlasmaWindoorSecureEngineeringLocked
+ entities:
+ - uid: 3974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,135.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9257:
+ - DoorStatus: DoorBolt
+ - uid: 9257
+ components:
+ - type: Transform
+ pos: 85.5,134.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3974:
+ - DoorStatus: DoorBolt
+ - uid: 9413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,144.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15703:
+ - DoorStatus: DoorBolt
+ - uid: 15703
+ components:
+ - type: Transform
+ pos: 85.5,143.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9413:
+ - DoorStatus: DoorBolt
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 19301
+ components:
+ - type: Transform
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19302
+ components:
+ - type: Transform
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 34321
+ components:
+ - type: Transform
+ pos: 160.5,84.5
+ parent: 1
+- proto: PlasticFlapsClear
+ entities:
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 152.5,101.5
+ parent: 1
+ - uid: 19303
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19304
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19323
+ components:
+ - type: Transform
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 21676
+ components:
+ - type: Transform
+ pos: 148.5,97.5
+ parent: 1
+ - uid: 34322
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+- proto: PlasticFlapsOpaque
+ entities:
+ - uid: 19324
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 23371
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+- proto: PlayerStationAi
+ entities:
+ - uid: 12910
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+- proto: PlushieRGBee
+ entities:
+ - uid: 9265
+ components:
+ - type: Transform
+ pos: 44.5,119.5
+ parent: 1
+- proto: PortableFlasher
+ entities:
+ - uid: 6291
+ components:
+ - type: Transform
+ pos: 135.5,60.5
+ parent: 1
+ - uid: 22759
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 109.5,48.5
+ parent: 1
+ - uid: 19423
+ components:
+ - type: Transform
+ pos: 140.5,86.5
+ parent: 1
+ - uid: 19489
+ components:
+ - type: Transform
+ pos: 33.5,80.5
+ parent: 1
+ - uid: 21653
+ components:
+ - type: Transform
+ pos: 96.5,80.5
+ parent: 1
+ - uid: 30438
+ components:
+ - type: Transform
+ pos: 62.5,156.5
+ parent: 1
+ - uid: 30660
+ components:
+ - type: Transform
+ pos: 20.5,107.5
+ parent: 1
+ - uid: 33476
+ components:
+ - type: Transform
+ pos: 119.5,20.5
+ parent: 1
+ - uid: 33885
+ components:
+ - type: Transform
+ pos: 121.5,162.5
+ parent: 1
+ - uid: 34608
+ components:
+ - type: Transform
+ pos: 153.5,47.5
+ parent: 1
+ - uid: 34948
+ components:
+ - type: Transform
+ pos: 132.5,112.5
+ parent: 1
+ - uid: 35717
+ components:
+ - type: Transform
+ pos: 59.5,144.5
+ parent: 1
+ - uid: 35943
+ components:
+ - type: Transform
+ pos: 86.5,36.5
+ parent: 1
+ - uid: 36131
+ components:
+ - type: Transform
+ pos: 52.5,116.5
+ parent: 1
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 10226
+ components:
+ - type: Transform
+ pos: 57.5,25.5
+ parent: 1
+ - uid: 16040
+ components:
+ - type: Transform
+ pos: 129.5,121.5
+ parent: 1
+- proto: PortableGeneratorSuperPacman
+ entities:
+ - uid: 16041
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+- proto: PortableScrubber
+ entities:
+ - uid: 3156
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 3208
+ components:
+ - type: Transform
+ pos: 75.5,125.5
+ parent: 1
+ - uid: 3210
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 5285
+ components:
+ - type: Transform
+ pos: 40.5,82.5
+ parent: 1
+ - uid: 15958
+ components:
+ - type: Transform
+ pos: 73.5,116.5
+ parent: 1
+ - uid: 36766
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+- proto: PosterBroken
+ entities:
+ - uid: 35337
+ components:
+ - type: Transform
+ pos: 78.5,157.5
+ parent: 1
+- proto: PosterContrabandAmbrosiaVulgaris
+ entities:
+ - uid: 26819
+ components:
+ - type: Transform
+ pos: 97.5,95.5
+ parent: 1
+- proto: PosterContrabandAtmosiaDeclarationIndependence
+ entities:
+ - uid: 15945
+ components:
+ - type: Transform
+ pos: 90.5,129.5
+ parent: 1
+ - uid: 15989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,154.5
+ parent: 1
+- proto: PosterContrabandBorgFancy
+ entities:
+ - uid: 20906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,88.5
+ parent: 1
+- proto: PosterContrabandBorgFancyv2
+ entities:
+ - uid: 17628
+ components:
+ - type: Transform
+ pos: 109.5,61.5
+ parent: 1
+- proto: PosterContrabandBountyHunters
+ entities:
+ - uid: 19311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,90.5
+ parent: 1
+- proto: PosterContrabandC20r
+ entities:
+ - uid: 23103
+ components:
+ - type: Transform
+ pos: 136.5,44.5
+ parent: 1
+- proto: PosterContrabandClown
+ entities:
+ - uid: 26745
+ components:
+ - type: Transform
+ pos: 107.5,60.5
+ parent: 1
+- proto: PosterContrabandCommunistState
+ entities:
+ - uid: 19329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,113.5
+ parent: 1
+- proto: PosterContrabandDonk
+ entities:
+ - uid: 23104
+ components:
+ - type: Transform
+ pos: 125.5,49.5
+ parent: 1
+- proto: PosterContrabandDonutCorp
+ entities:
+ - uid: 36051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,142.5
+ parent: 1
+- proto: PosterContrabandEAT
+ entities:
+ - uid: 16115
+ components:
+ - type: Transform
+ pos: 123.5,103.5
+ parent: 1
+ - uid: 18201
+ components:
+ - type: Transform
+ pos: 83.5,81.5
+ parent: 1
+ - uid: 20908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,98.5
+ parent: 1
+ - uid: 26815
+ components:
+ - type: Transform
+ pos: 97.5,112.5
+ parent: 1
+- proto: PosterContrabandEnlistGorlex
+ entities:
+ - uid: 23105
+ components:
+ - type: Transform
+ pos: 127.5,44.5
+ parent: 1
+- proto: PosterContrabandFreeSyndicateEncryptionKey
+ entities:
+ - uid: 23106
+ components:
+ - type: Transform
+ pos: 135.5,50.5
+ parent: 1
+- proto: PosterContrabandHackingGuide
+ entities:
+ - uid: 29039
+ components:
+ - type: Transform
+ pos: 95.5,61.5
+ parent: 1
+- proto: PosterContrabandHighEffectEngineering
+ entities:
+ - uid: 14841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,148.5
+ parent: 1
+- proto: PosterContrabandKosmicheskayaStantsiya
+ entities:
+ - uid: 19543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,93.5
+ parent: 1
+ - uid: 35486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,166.5
+ parent: 1
+- proto: PosterContrabandLamarr
+ entities:
+ - uid: 20888
+ components:
+ - type: Transform
+ pos: 34.5,106.5
+ parent: 1
+- proto: PosterContrabandMissingGloves
+ entities:
+ - uid: 13247
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 1
+- proto: PosterContrabandMoth
+ entities:
+ - uid: 1826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,77.5
+ parent: 1
+- proto: PosterContrabandNuclearDeviceInformational
+ entities:
+ - uid: 19526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,76.5
+ parent: 1
+- proto: PosterContrabandPunchShit
+ entities:
+ - uid: 23107
+ components:
+ - type: Transform
+ pos: 122.5,69.5
+ parent: 1
+- proto: PosterContrabandPwrGame
+ entities:
+ - uid: 23125
+ components:
+ - type: Transform
+ pos: 144.5,54.5
+ parent: 1
+- proto: PosterContrabandRevolver
+ entities:
+ - uid: 24289
+ components:
+ - type: Transform
+ pos: 90.5,56.5
+ parent: 1
+- proto: PosterContrabandRise
+ entities:
+ - uid: 18404
+ components:
+ - type: Transform
+ pos: 121.5,63.5
+ parent: 1
+- proto: PosterContrabandShamblersJuice
+ entities:
+ - uid: 26813
+ components:
+ - type: Transform
+ pos: 119.5,107.5
+ parent: 1
+- proto: PosterContrabandSmoke
+ entities:
+ - uid: 14272
+ components:
+ - type: Transform
+ pos: 62.5,54.5
+ parent: 1
+- proto: PosterContrabandTools
+ entities:
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 132.5,152.5
+ parent: 1
+ - uid: 35489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,149.5
+ parent: 1
+ - uid: 35862
+ components:
+ - type: Transform
+ pos: 58.5,128.5
+ parent: 1
+- proto: PosterContrabandWaffleCorp
+ entities:
+ - uid: 33556
+ components:
+ - type: Transform
+ pos: 112.5,21.5
+ parent: 1
+ - uid: 34671
+ components:
+ - type: Transform
+ pos: 161.5,67.5
+ parent: 1
+- proto: PosterContrabandWehWatches
+ entities:
+ - uid: 37582
+ components:
+ - type: Transform
+ pos: 94.5,95.5
+ parent: 1
+- proto: PosterLegit50thAnniversaryVintageReprint
+ entities:
+ - uid: 35479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,163.5
+ parent: 1
+- proto: PosterLegitAnatomyPoster
+ entities:
+ - uid: 23485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,89.5
+ parent: 1
+ - uid: 32119
+ components:
+ - type: Transform
+ pos: 78.5,101.5
+ parent: 1
+- proto: PosterLegitBlessThisSpess
+ entities:
+ - uid: 35483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,160.5
+ parent: 1
+ - uid: 35574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,140.5
+ parent: 1
+- proto: PosterLegitCarbonDioxide
+ entities:
+ - uid: 27370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,99.5
+ parent: 1
+- proto: PosterLegitCarpMount
+ entities:
+ - uid: 19492
+ components:
+ - type: Transform
+ pos: 145.5,90.5
+ parent: 1
+- proto: PosterLegitCleanliness
+ entities:
+ - uid: 18200
+ components:
+ - type: Transform
+ pos: 63.5,105.5
+ parent: 1
+ - uid: 29572
+ components:
+ - type: Transform
+ pos: 155.5,124.5
+ parent: 1
+- proto: PosterLegitCohibaRobustoAd
+ entities:
+ - uid: 24291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,105.5
+ parent: 1
+ - uid: 30141
+ components:
+ - type: Transform
+ pos: 143.5,137.5
+ parent: 1
+ - uid: 35153
+ components:
+ - type: Transform
+ pos: 106.5,169.5
+ parent: 1
+- proto: PosterLegitDoNotQuestion
+ entities:
+ - uid: 33009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,161.5
+ parent: 1
+- proto: PosterLegitFoamForceAd
+ entities:
+ - uid: 19542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,102.5
+ parent: 1
+ - uid: 37577
+ components:
+ - type: Transform
+ pos: 126.5,106.5
+ parent: 1
+- proto: PosterLegitFruitBowl
+ entities:
+ - uid: 26817
+ components:
+ - type: Transform
+ pos: 119.5,95.5
+ parent: 1
+- proto: PosterLegitHelpOthers
+ entities:
+ - uid: 3529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,56.5
+ parent: 1
+ - uid: 18203
+ components:
+ - type: Transform
+ pos: 70.5,103.5
+ parent: 1
+- proto: PosterLegitHighClassMartini
+ entities:
+ - uid: 13676
+ components:
+ - type: Transform
+ pos: 45.5,63.5
+ parent: 1
+ - uid: 26804
+ components:
+ - type: Transform
+ pos: 113.5,61.5
+ parent: 1
+ - uid: 27219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,46.5
+ parent: 1
+ - uid: 29306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,73.5
+ parent: 1
+ - uid: 34094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,166.5
+ parent: 1
+- proto: PosterLegitJustAWeekAway
+ entities:
+ - uid: 20909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,109.5
+ parent: 1
+- proto: PosterLegitLoveIan
+ entities:
+ - uid: 13678
+ components:
+ - type: Transform
+ pos: 58.5,53.5
+ parent: 1
+- proto: PosterLegitMime
+ entities:
+ - uid: 26752
+ components:
+ - type: Transform
+ pos: 99.5,61.5
+ parent: 1
+- proto: PosterLegitNanomichiAd
+ entities:
+ - uid: 13677
+ components:
+ - type: Transform
+ pos: 51.5,52.5
+ parent: 1
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 13588
+ components:
+ - type: Transform
+ pos: 31.5,75.5
+ parent: 1
+- proto: PosterLegitNTTGC
+ entities:
+ - uid: 13589
+ components:
+ - type: Transform
+ pos: 38.5,69.5
+ parent: 1
+ - uid: 27097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,57.5
+ parent: 1
+- proto: PosterLegitObey
+ entities:
+ - uid: 23108
+ components:
+ - type: Transform
+ pos: 129.5,63.5
+ parent: 1
+- proto: PosterLegitPDAAd
+ entities:
+ - uid: 13680
+ components:
+ - type: Transform
+ pos: 62.5,62.5
+ parent: 1
+ - uid: 18862
+ components:
+ - type: Transform
+ pos: 81.5,54.5
+ parent: 1
+- proto: PosterLegitPeriodicTable
+ entities:
+ - uid: 19544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,105.5
+ parent: 1
+- proto: PosterLegitRenault
+ entities:
+ - uid: 13681
+ components:
+ - type: Transform
+ pos: 35.5,77.5
+ parent: 1
+- proto: PosterLegitReportCrimes
+ entities:
+ - uid: 23109
+ components:
+ - type: Transform
+ pos: 121.5,57.5
+ parent: 1
+ - uid: 35487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,170.5
+ parent: 1
+- proto: PosterLegitSafetyInternals
+ entities:
+ - uid: 35488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,174.5
+ parent: 1
+- proto: PosterLegitSafetyMothDelam
+ entities:
+ - uid: 19546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,126.5
+ parent: 1
+- proto: PosterLegitSafetyMothEpi
+ entities:
+ - uid: 24420
+ components:
+ - type: Transform
+ pos: 71.5,93.5
+ parent: 1
+- proto: PosterLegitSafetyMothHardhat
+ entities:
+ - uid: 19547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,151.5
+ parent: 1
+ - uid: 29040
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 1
+- proto: PosterLegitSafetyMothMeth
+ entities:
+ - uid: 18202
+ components:
+ - type: Transform
+ pos: 87.5,95.5
+ parent: 1
+- proto: PosterLegitSafetyMothPiping
+ entities:
+ - uid: 19548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,118.5
+ parent: 1
+- proto: PosterLegitSafetyMothSSD
+ entities:
+ - uid: 18205
+ components:
+ - type: Transform
+ pos: 78.5,93.5
+ parent: 1
+- proto: PosterLegitSafetyReport
+ entities:
+ - uid: 23123
+ components:
+ - type: Transform
+ pos: 146.5,61.5
+ parent: 1
+- proto: PosterLegitScience
+ entities:
+ - uid: 20463
+ components:
+ - type: Transform
+ pos: 48.5,85.5
+ parent: 1
+ - uid: 20787
+ components:
+ - type: Transform
+ pos: 37.5,114.5
+ parent: 1
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 23111
+ components:
+ - type: Transform
+ pos: 136.5,66.5
+ parent: 1
+ - uid: 27604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,51.5
+ parent: 1
+ - uid: 30196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,48.5
+ parent: 1
+- proto: PosterLegitSpaceCops
+ entities:
+ - uid: 23112
+ components:
+ - type: Transform
+ pos: 133.5,53.5
+ parent: 1
+ - uid: 30020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,38.5
+ parent: 1
+- proto: PosterLegitStateLaws
+ entities:
+ - uid: 20911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,95.5
+ parent: 1
+- proto: PosterLegitTheOwl
+ entities:
+ - uid: 23124
+ components:
+ - type: Transform
+ pos: 142.5,61.5
+ parent: 1
+- proto: PosterLegitThereIsNoGasGiant
+ entities:
+ - uid: 20912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,98.5
+ parent: 1
+- proto: PosterLegitVacation
+ entities:
+ - uid: 23126
+ components:
+ - type: Transform
+ pos: 148.5,47.5
+ parent: 1
+- proto: PosterLegitWorkForAFuture
+ entities:
+ - uid: 13682
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 1
+ - uid: 20913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,98.5
+ parent: 1
+ - uid: 23113
+ components:
+ - type: Transform
+ pos: 124.5,75.5
+ parent: 1
+ - uid: 32081
+ components:
+ - type: Transform
+ pos: 147.5,109.5
+ parent: 1
+- proto: PosterMapDelta
+ entities:
+ - uid: 37135
+ components:
+ - type: Transform
+ pos: 164.5,150.5
+ parent: 1
+- proto: PosterMapLighthouse
+ entities:
+ - uid: 15266
+ components:
+ - type: Transform
+ pos: 43.5,119.5
+ parent: 1
+- proto: PosterMapMoose
+ entities:
+ - uid: 37136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,149.5
+ parent: 1
+- proto: PosterMapSplit
+ entities:
+ - uid: 37137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,147.5
+ parent: 1
+- proto: PosterMapWaystation
+ entities:
+ - uid: 37134
+ components:
+ - type: Transform
+ pos: 162.5,150.5
+ parent: 1
+- proto: PottedPlant0
+ entities:
+ - uid: 11002
+ components:
+ - type: Transform
+ pos: 104.5,38.5
+ parent: 1
+ - uid: 13620
+ components:
+ - type: Transform
+ pos: 53.5,54.5
+ parent: 1
+ - uid: 25164
+ components:
+ - type: Transform
+ pos: 40.5,64.5
+ parent: 1
+ - uid: 29075
+ components:
+ - type: Transform
+ pos: 61.5,52.5
+ parent: 1
+- proto: PottedPlant1
+ entities:
+ - uid: 8183
+ components:
+ - type: Transform
+ pos: 149.5,149.5
+ parent: 1
+ - uid: 20871
+ components:
+ - type: Transform
+ pos: 132.5,69.5
+ parent: 1
+ - uid: 26652
+ components:
+ - type: Transform
+ pos: 101.5,94.5
+ parent: 1
+ - uid: 26799
+ components:
+ - type: Transform
+ pos: 103.5,66.5
+ parent: 1
+- proto: PottedPlant10
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 40.5,60.5
+ parent: 1
+ - uid: 3525
+ components:
+ - type: Transform
+ pos: 46.5,68.5
+ parent: 1
+ - uid: 4048
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 7109
+ components:
+ - type: Transform
+ pos: 46.5,56.5
+ parent: 1
+ - uid: 13613
+ components:
+ - type: Transform
+ pos: 37.5,76.5
+ parent: 1
+ - uid: 29076
+ components:
+ - type: Transform
+ pos: 58.5,54.5
+ parent: 1
+ - uid: 33712
+ components:
+ - type: Transform
+ pos: 99.5,45.5
+ parent: 1
+- proto: PottedPlant11
+ entities:
+ - uid: 23285
+ components:
+ - type: Transform
+ pos: 126.5,98.5
+ parent: 1
+- proto: PottedPlant12
+ entities:
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 80.5,60.5
+ parent: 1
+ - uid: 26654
+ components:
+ - type: Transform
+ pos: 104.5,102.5
+ parent: 1
+ - uid: 27226
+ components:
+ - type: Transform
+ pos: 82.5,60.5
+ parent: 1
+- proto: PottedPlant13
+ entities:
+ - uid: 13638
+ components:
+ - type: Transform
+ pos: 50.5,66.5
+ parent: 1
+ - uid: 13706
+ components:
+ - type: Transform
+ pos: 58.5,52.5
+ parent: 1
+ - uid: 18740
+ components:
+ - type: Transform
+ pos: 90.5,45.5
+ parent: 1
+ - uid: 26322
+ components:
+ - type: Transform
+ pos: 138.5,123.5
+ parent: 1
+ - uid: 33783
+ components:
+ - type: Transform
+ pos: 32.5,51.5
+ parent: 1
+- proto: PottedPlant14
+ entities:
+ - uid: 13495
+ components:
+ - type: Transform
+ pos: 40.5,52.5
+ parent: 1
+ - uid: 13497
+ components:
+ - type: Transform
+ pos: 46.5,60.5
+ parent: 1
+ - uid: 13615
+ components:
+ - type: Transform
+ pos: 32.5,72.5
+ parent: 1
+ - uid: 13618
+ components:
+ - type: Transform
+ pos: 44.5,76.5
+ parent: 1
+- proto: PottedPlant16
+ entities:
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 40.5,56.5
+ parent: 1
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 58.5,59.5
+ parent: 1
+ - uid: 3526
+ components:
+ - type: Transform
+ pos: 53.5,72.5
+ parent: 1
+- proto: PottedPlant17
+ entities:
+ - uid: 27227
+ components:
+ - type: Transform
+ pos: 74.5,54.5
+ parent: 1
+- proto: PottedPlant18
+ entities:
+ - uid: 26704
+ components:
+ - type: Transform
+ pos: 102.5,106.5
+ parent: 1
+ - uid: 27039
+ components:
+ - type: Transform
+ pos: 77.5,67.5
+ parent: 1
+ - uid: 27042
+ components:
+ - type: Transform
+ pos: 83.5,78.5
+ parent: 1
+- proto: PottedPlant19
+ entities:
+ - uid: 5025
+ components:
+ - type: Transform
+ pos: 46.5,62.5
+ parent: 1
+ - uid: 23073
+ components:
+ - type: Transform
+ pos: 40.5,48.5
+ parent: 1
+ - uid: 37497
+ components:
+ - type: Transform
+ pos: 103.5,48.5
+ parent: 1
+- proto: PottedPlant2
+ entities:
+ - uid: 26650
+ components:
+ - type: Transform
+ pos: 101.5,90.5
+ parent: 1
+ - uid: 26800
+ components:
+ - type: Transform
+ pos: 109.5,66.5
+ parent: 1
+- proto: PottedPlant21
+ entities:
+ - uid: 19335
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 26703
+ components:
+ - type: Transform
+ pos: 114.5,106.5
+ parent: 1
+ - uid: 27038
+ components:
+ - type: Transform
+ pos: 66.5,72.5
+ parent: 1
+ - uid: 27041
+ components:
+ - type: Transform
+ pos: 68.5,76.5
+ parent: 1
+ - uid: 27044
+ components:
+ - type: Transform
+ pos: 90.5,77.5
+ parent: 1
+- proto: PottedPlant22
+ entities:
+ - uid: 4259
+ components:
+ - type: Transform
+ pos: 90.5,39.5
+ parent: 1
+ - uid: 19336
+ components:
+ - type: Transform
+ pos: 145.5,102.5
+ parent: 1
+- proto: PottedPlant23
+ entities:
+ - uid: 26655
+ components:
+ - type: Transform
+ pos: 111.5,96.5
+ parent: 1
+- proto: PottedPlant24
+ entities:
+ - uid: 2633
+ components:
+ - type: Transform
+ pos: 70.5,56.5
+ parent: 1
+ - uid: 23498
+ components:
+ - type: Transform
+ pos: 80.5,55.5
+ parent: 1
+- proto: PottedPlant26
+ entities:
+ - uid: 8185
+ components:
+ - type: Transform
+ pos: 138.5,148.5
+ parent: 1
+ - uid: 26651
+ components:
+ - type: Transform
+ pos: 96.5,96.5
+ parent: 1
+- proto: PottedPlant27
+ entities:
+ - uid: 16099
+ components:
+ - type: Transform
+ pos: 136.5,136.5
+ parent: 1
+ - uid: 16114
+ components:
+ - type: Transform
+ pos: 101.5,125.5
+ parent: 1
+ - uid: 18095
+ components:
+ - type: Transform
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 27077
+ components:
+ - type: Transform
+ pos: 110.5,85.5
+ parent: 1
+ - uid: 28726
+ components:
+ - type: Transform
+ pos: 120.5,51.5
+ parent: 1
+- proto: PottedPlant28
+ entities:
+ - uid: 16102
+ components:
+ - type: Transform
+ pos: 134.5,131.5
+ parent: 1
+ - uid: 16104
+ components:
+ - type: Transform
+ pos: 125.5,142.5
+ parent: 1
+ - uid: 17709
+ components:
+ - type: Transform
+ pos: 65.5,97.5
+ parent: 1
+- proto: PottedPlant29
+ entities:
+ - uid: 13885
+ components:
+ - type: Transform
+ pos: 73.5,121.5
+ parent: 1
+ - uid: 18087
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+- proto: PottedPlant30
+ entities:
+ - uid: 15997
+ components:
+ - type: Transform
+ pos: 77.5,119.5
+ parent: 1
+ - uid: 16113
+ components:
+ - type: Transform
+ pos: 115.5,125.5
+ parent: 1
+ - uid: 18091
+ components:
+ - type: Transform
+ pos: 89.5,90.5
+ parent: 1
+ - uid: 18230
+ components:
+ - type: Transform
+ pos: 81.5,92.5
+ parent: 1
+ - uid: 27076
+ components:
+ - type: Transform
+ pos: 102.5,79.5
+ parent: 1
+ - uid: 27404
+ components:
+ - type: Transform
+ pos: 116.5,80.5
+ parent: 1
+ - uid: 28725
+ components:
+ - type: Transform
+ pos: 113.5,47.5
+ parent: 1
+ - uid: 37550
+ components:
+ - type: Transform
+ pos: 125.5,139.5
+ parent: 1
+- proto: PottedPlant4
+ entities:
+ - uid: 26653
+ components:
+ - type: Transform
+ pos: 101.5,104.5
+ parent: 1
+- proto: PottedPlant5
+ entities:
+ - uid: 30440
+ components:
+ - type: Transform
+ pos: 152.5,153.5
+ parent: 1
+- proto: PottedPlant6
+ entities:
+ - uid: 4540
+ components:
+ - type: Transform
+ pos: 99.5,39.5
+ parent: 1
+- proto: PottedPlantBioluminscent
+ entities:
+ - uid: 18055
+ components:
+ - type: Transform
+ pos: 86.5,106.5
+ parent: 1
+ - uid: 23148
+ components:
+ - type: Transform
+ pos: 145.5,64.5
+ parent: 1
+- proto: PottedPlantRandom
+ entities:
+ - uid: 24388
+ components:
+ - type: Transform
+ pos: 111.5,70.5
+ parent: 1
+ - uid: 24390
+ components:
+ - type: Transform
+ pos: 101.5,70.5
+ parent: 1
+ - uid: 26861
+ components:
+ - type: Transform
+ pos: 103.5,94.5
+ parent: 1
+ - uid: 26862
+ components:
+ - type: Transform
+ pos: 106.5,89.5
+ parent: 1
+ - uid: 26863
+ components:
+ - type: Transform
+ pos: 98.5,82.5
+ parent: 1
+ - uid: 26864
+ components:
+ - type: Transform
+ pos: 114.5,84.5
+ parent: 1
+- proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 18128
+ components:
+ - type: Transform
+ pos: 65.5,86.5
+ parent: 1
+ - uid: 18129
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - uid: 18130
+ components:
+ - type: Transform
+ pos: 77.5,88.5
+ parent: 1
+ - uid: 18131
+ components:
+ - type: Transform
+ pos: 84.5,86.5
+ parent: 1
+ - uid: 18132
+ components:
+ - type: Transform
+ pos: 73.5,92.5
+ parent: 1
+ - uid: 18133
+ components:
+ - type: Transform
+ pos: 69.5,106.5
+ parent: 1
+ - uid: 18134
+ components:
+ - type: Transform
+ pos: 80.5,106.5
+ parent: 1
+ - uid: 18153
+ components:
+ - type: Transform
+ pos: 59.5,106.5
+ parent: 1
+- proto: PottedPlantRD
+ entities:
+ - uid: 5696
+ components:
+ - type: Transform
+ pos: 38.5,108.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 13545
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13644
+ components:
+ - type: Transform
+ pos: 33.5,64.5
+ parent: 1
+ - uid: 16143
+ components:
+ - type: Transform
+ pos: 132.5,131.5
+ parent: 1
+ - uid: 16144
+ components:
+ - type: Transform
+ pos: 125.5,144.5
+ parent: 1
+ - uid: 16161
+ components:
+ - type: Transform
+ pos: 119.5,125.5
+ parent: 1
+ - uid: 18116
+ components:
+ - type: Transform
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 18117
+ components:
+ - type: Transform
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 19436
+ components:
+ - type: Transform
+ pos: 157.5,96.5
+ parent: 1
+ - uid: 19437
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19438
+ components:
+ - type: Transform
+ pos: 134.5,105.5
+ parent: 1
+ - uid: 20480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 20482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,112.5
+ parent: 1
+ - uid: 20485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 20487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,84.5
+ parent: 1
+ - uid: 20872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - uid: 20965
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 23677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,162.5
+ parent: 1
+ - uid: 27750
+ components:
+ - type: Transform
+ pos: 46.5,102.5
+ parent: 1
+ - uid: 29585
+ components:
+ - type: Transform
+ pos: 159.5,128.5
+ parent: 1
+ - uid: 32041
+ components:
+ - type: Transform
+ pos: 143.5,132.5
+ parent: 1
+- proto: PowerDrill
+ entities:
+ - uid: 20885
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.905277,106.66724
+ parent: 1
+- proto: PoweredDimSmallLight
+ entities:
+ - uid: 9788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,116.5
+ parent: 1
+ - uid: 10603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,112.5
+ parent: 1
+ - uid: 18580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,110.5
+ parent: 1
+ - uid: 22898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 22994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,43.5
+ parent: 1
+ - uid: 32123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,76.5
+ parent: 1
+ - uid: 34223
+ components:
+ - type: Transform
+ pos: 156.5,44.5
+ parent: 1
+ - uid: 34640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,64.5
+ parent: 1
+ - uid: 35173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,167.5
+ parent: 1
+ - uid: 35413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 35416
+ components:
+ - type: Transform
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,161.5
+ parent: 1
+ - uid: 35610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,162.5
+ parent: 1
+ - uid: 36055
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 36059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 36418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,123.5
+ parent: 1
+ - uid: 36522
+ components:
+ - type: Transform
+ pos: 23.5,76.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,92.5
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,141.5
+ parent: 1
+ - uid: 1093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - uid: 1139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,70.5
+ parent: 1
+ - uid: 2351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 2489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 2721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,137.5
+ parent: 1
+ - uid: 3197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,133.5
+ parent: 1
+ - uid: 3703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 3777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 3987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 4050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,50.5
+ parent: 1
+ - uid: 4139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,88.5
+ parent: 1
+ - uid: 4342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 4401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,72.5
+ parent: 1
+ - uid: 4748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,112.5
+ parent: 1
+ - uid: 5046
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 5171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,89.5
+ parent: 1
+ - uid: 5348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,95.5
+ parent: 1
+ - uid: 5610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 6135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,52.5
+ parent: 1
+ - uid: 6193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,50.5
+ parent: 1
+ - uid: 7739
+ components:
+ - type: Transform
+ pos: 123.5,119.5
+ parent: 1
+ - uid: 9122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,154.5
+ parent: 1
+ - uid: 9381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,135.5
+ parent: 1
+ - uid: 9407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 9408
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 9409
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 9410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 9411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 9412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,125.5
+ parent: 1
+ - uid: 9415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 9416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 9443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 9444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,137.5
+ parent: 1
+ - uid: 9445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 9447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 9652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 9653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,60.5
+ parent: 1
+ - uid: 9654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,60.5
+ parent: 1
+ - uid: 9655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 9657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,64.5
+ parent: 1
+ - uid: 11044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 11524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,57.5
+ parent: 1
+ - uid: 11525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,48.5
+ parent: 1
+ - uid: 11526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,52.5
+ parent: 1
+ - uid: 11527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,72.5
+ parent: 1
+ - uid: 11528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,56.5
+ parent: 1
+ - uid: 11529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,76.5
+ parent: 1
+ - uid: 11530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,68.5
+ parent: 1
+ - uid: 11531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,57.5
+ parent: 1
+ - uid: 11537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,64.5
+ parent: 1
+ - uid: 11538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,72.5
+ parent: 1
+ - uid: 11540
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 11541
+ components:
+ - type: Transform
+ pos: 36.5,76.5
+ parent: 1
+ - uid: 11868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,102.5
+ parent: 1
+ - uid: 12405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,91.5
+ parent: 1
+ - uid: 12691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,56.5
+ parent: 1
+ - uid: 12949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 12950
+ components:
+ - type: Transform
+ pos: 49.5,42.5
+ parent: 1
+ - uid: 12951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,37.5
+ parent: 1
+ - uid: 12952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,20.5
+ parent: 1
+ - uid: 12953
+ components:
+ - type: Transform
+ pos: 42.5,28.5
+ parent: 1
+ - uid: 12954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,17.5
+ parent: 1
+ - uid: 12955
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 12956
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,60.5
+ parent: 1
+ - uid: 13804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 13805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,75.5
+ parent: 1
+ - uid: 13807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,74.5
+ parent: 1
+ - uid: 13839
+ components:
+ - type: Transform
+ pos: 105.5,115.5
+ parent: 1
+ - uid: 14283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,129.5
+ parent: 1
+ - uid: 14298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,129.5
+ parent: 1
+ - uid: 14299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,135.5
+ parent: 1
+ - uid: 14300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,139.5
+ parent: 1
+ - uid: 14302
+ components:
+ - type: Transform
+ pos: 110.5,145.5
+ parent: 1
+ - uid: 14303
+ components:
+ - type: Transform
+ pos: 106.5,145.5
+ parent: 1
+ - uid: 14304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,139.5
+ parent: 1
+ - uid: 14305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,135.5
+ parent: 1
+ - uid: 14312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,154.5
+ parent: 1
+ - uid: 14359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,146.5
+ parent: 1
+ - uid: 14449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,146.5
+ parent: 1
+ - uid: 14848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,147.5
+ parent: 1
+ - uid: 14945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,129.5
+ parent: 1
+ - uid: 14946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,154.5
+ parent: 1
+ - uid: 14947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,129.5
+ parent: 1
+ - uid: 14948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,121.5
+ parent: 1
+ - uid: 14949
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 14950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,124.5
+ parent: 1
+ - uid: 14951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,124.5
+ parent: 1
+ - uid: 14952
+ components:
+ - type: Transform
+ pos: 100.5,125.5
+ parent: 1
+ - uid: 14953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,137.5
+ parent: 1
+ - uid: 14954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 14957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 14960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,160.5
+ parent: 1
+ - uid: 14961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,154.5
+ parent: 1
+ - uid: 14962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,160.5
+ parent: 1
+ - uid: 14963
+ components:
+ - type: Transform
+ pos: 118.5,156.5
+ parent: 1
+ - uid: 14964
+ components:
+ - type: Transform
+ pos: 98.5,156.5
+ parent: 1
+ - uid: 14965
+ components:
+ - type: Transform
+ pos: 116.5,152.5
+ parent: 1
+ - uid: 14966
+ components:
+ - type: Transform
+ pos: 106.5,125.5
+ parent: 1
+ - uid: 14968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,150.5
+ parent: 1
+ - uid: 14969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,150.5
+ parent: 1
+ - uid: 14970
+ components:
+ - type: Transform
+ pos: 110.5,125.5
+ parent: 1
+ - uid: 14974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,121.5
+ parent: 1
+ - uid: 14975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,133.5
+ parent: 1
+ - uid: 14978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 14979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,140.5
+ parent: 1
+ - uid: 14981
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+ - uid: 15931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,117.5
+ parent: 1
+ - uid: 15932
+ components:
+ - type: Transform
+ pos: 83.5,123.5
+ parent: 1
+ - uid: 15934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,116.5
+ parent: 1
+ - uid: 16103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,144.5
+ parent: 1
+ - uid: 16130
+ components:
+ - type: Transform
+ pos: 75.5,119.5
+ parent: 1
+ - uid: 16407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,99.5
+ parent: 1
+ - uid: 16827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,43.5
+ parent: 1
+ - uid: 17226
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 17616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,91.5
+ parent: 1
+ - uid: 17617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,94.5
+ parent: 1
+ - uid: 17618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,94.5
+ parent: 1
+ - uid: 17619
+ components:
+ - type: Transform
+ pos: 78.5,100.5
+ parent: 1
+ - uid: 17620
+ components:
+ - type: Transform
+ pos: 71.5,100.5
+ parent: 1
+ - uid: 17621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,91.5
+ parent: 1
+ - uid: 17622
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - uid: 17623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,88.5
+ parent: 1
+ - uid: 17624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,88.5
+ parent: 1
+ - uid: 17630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17631
+ components:
+ - type: Transform
+ pos: 61.5,97.5
+ parent: 1
+ - uid: 17635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 17636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,92.5
+ parent: 1
+ - uid: 17637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,97.5
+ parent: 1
+ - uid: 17639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,99.5
+ parent: 1
+ - uid: 17640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,96.5
+ parent: 1
+ - uid: 17642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,108.5
+ parent: 1
+ - uid: 17644
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - uid: 17645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,102.5
+ parent: 1
+ - uid: 17646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,102.5
+ parent: 1
+ - uid: 17680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,110.5
+ parent: 1
+ - uid: 17681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,110.5
+ parent: 1
+ - uid: 17682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,106.5
+ parent: 1
+ - uid: 17683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,109.5
+ parent: 1
+ - uid: 17684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,109.5
+ parent: 1
+ - uid: 17685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,106.5
+ parent: 1
+ - uid: 17789
+ components:
+ - type: Transform
+ pos: 77.5,88.5
+ parent: 1
+ - uid: 17790
+ components:
+ - type: Transform
+ pos: 65.5,104.5
+ parent: 1
+ - uid: 17961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,103.5
+ parent: 1
+ - uid: 17962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17969
+ components:
+ - type: Transform
+ pos: 88.5,104.5
+ parent: 1
+ - uid: 18424
+ components:
+ - type: Transform
+ pos: 147.5,100.5
+ parent: 1
+ - uid: 18425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 18430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,92.5
+ parent: 1
+ - uid: 18432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+ - uid: 18433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,89.5
+ parent: 1
+ - uid: 18434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 18435
+ components:
+ - type: Transform
+ pos: 135.5,107.5
+ parent: 1
+ - uid: 18436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,107.5
+ parent: 1
+ - uid: 18437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - uid: 18438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,98.5
+ parent: 1
+ - uid: 18441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,106.5
+ parent: 1
+ - uid: 18442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,102.5
+ parent: 1
+ - uid: 18443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,108.5
+ parent: 1
+ - uid: 18543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,121.5
+ parent: 1
+ - uid: 18582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 19264
+ components:
+ - type: Transform
+ pos: 23.5,82.5
+ parent: 1
+ - uid: 19328
+ components:
+ - type: Transform
+ pos: 111.5,115.5
+ parent: 1
+ - uid: 19331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,96.5
+ parent: 1
+ - uid: 19371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 19397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 19476
+ components:
+ - type: Transform
+ pos: 142.5,100.5
+ parent: 1
+ - uid: 19500
+ components:
+ - type: Transform
+ pos: 48.5,97.5
+ parent: 1
+ - uid: 19513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,147.5
+ parent: 1
+ - uid: 20441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 20752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 20763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,86.5
+ parent: 1
+ - uid: 20764
+ components:
+ - type: Transform
+ pos: 32.5,94.5
+ parent: 1
+ - uid: 20765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,90.5
+ parent: 1
+ - uid: 20766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,94.5
+ parent: 1
+ - uid: 20767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,86.5
+ parent: 1
+ - uid: 20769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20771
+ components:
+ - type: Transform
+ pos: 49.5,84.5
+ parent: 1
+ - uid: 20773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,89.5
+ parent: 1
+ - uid: 20774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,94.5
+ parent: 1
+ - uid: 20777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,98.5
+ parent: 1
+ - uid: 20778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,85.5
+ parent: 1
+ - uid: 20781
+ components:
+ - type: Transform
+ pos: 52.5,103.5
+ parent: 1
+ - uid: 20783
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 20784
+ components:
+ - type: Transform
+ pos: 46.5,114.5
+ parent: 1
+ - uid: 20785
+ components:
+ - type: Transform
+ pos: 40.5,114.5
+ parent: 1
+ - uid: 20786
+ components:
+ - type: Transform
+ pos: 43.5,117.5
+ parent: 1
+ - uid: 20788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,99.5
+ parent: 1
+ - uid: 20791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 20794
+ components:
+ - type: Transform
+ pos: 26.5,105.5
+ parent: 1
+ - uid: 20796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,110.5
+ parent: 1
+ - uid: 20802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,110.5
+ parent: 1
+ - uid: 22188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+ - uid: 22673
+ components:
+ - type: Transform
+ pos: 88.5,52.5
+ parent: 1
+ - uid: 22773
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - uid: 22880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,64.5
+ parent: 1
+ - uid: 22881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 22882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,68.5
+ parent: 1
+ - uid: 22883
+ components:
+ - type: Transform
+ pos: 130.5,60.5
+ parent: 1
+ - uid: 22884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,72.5
+ parent: 1
+ - uid: 22887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22888
+ components:
+ - type: Transform
+ pos: 143.5,58.5
+ parent: 1
+ - uid: 22889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,52.5
+ parent: 1
+ - uid: 22890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,47.5
+ parent: 1
+ - uid: 22891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,46.5
+ parent: 1
+ - uid: 22892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 22895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,49.5
+ parent: 1
+ - uid: 22897
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+ - uid: 22899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,66.5
+ parent: 1
+ - uid: 22900
+ components:
+ - type: Transform
+ pos: 152.5,74.5
+ parent: 1
+ - uid: 22902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,62.5
+ parent: 1
+ - uid: 22903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,67.5
+ parent: 1
+ - uid: 22905
+ components:
+ - type: Transform
+ pos: 140.5,71.5
+ parent: 1
+ - uid: 22906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,73.5
+ parent: 1
+ - uid: 22907
+ components:
+ - type: Transform
+ pos: 127.5,74.5
+ parent: 1
+ - uid: 22908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,63.5
+ parent: 1
+ - uid: 22909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22910
+ components:
+ - type: Transform
+ pos: 124.5,56.5
+ parent: 1
+ - uid: 22911
+ components:
+ - type: Transform
+ pos: 128.5,52.5
+ parent: 1
+ - uid: 22912
+ components:
+ - type: Transform
+ pos: 133.5,52.5
+ parent: 1
+ - uid: 22914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,47.5
+ parent: 1
+ - uid: 22915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,48.5
+ parent: 1
+ - uid: 22934
+ components:
+ - type: Transform
+ pos: 134.5,56.5
+ parent: 1
+ - uid: 22952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,69.5
+ parent: 1
+ - uid: 23143
+ components:
+ - type: Transform
+ pos: 138.5,145.5
+ parent: 1
+ - uid: 23343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 23430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 23624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,51.5
+ parent: 1
+ - uid: 23846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,57.5
+ parent: 1
+ - uid: 24721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,73.5
+ parent: 1
+ - uid: 24725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,41.5
+ parent: 1
+ - uid: 24726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 24728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 24779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,68.5
+ parent: 1
+ - uid: 25479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,106.5
+ parent: 1
+ - uid: 25480
+ components:
+ - type: Transform
+ pos: 123.5,114.5
+ parent: 1
+ - uid: 25482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,51.5
+ parent: 1
+ - uid: 25491
+ components:
+ - type: Transform
+ pos: 74.5,65.5
+ parent: 1
+ - uid: 26142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 26473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,102.5
+ parent: 1
+ - uid: 26476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,96.5
+ parent: 1
+ - uid: 26477
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 26482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,92.5
+ parent: 1
+ - uid: 26488
+ components:
+ - type: Transform
+ pos: 108.5,94.5
+ parent: 1
+ - uid: 26489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,92.5
+ parent: 1
+ - uid: 26496
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 26498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,79.5
+ parent: 1
+ - uid: 26499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,79.5
+ parent: 1
+ - uid: 26500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
+ parent: 1
+ - uid: 26501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,84.5
+ parent: 1
+ - uid: 26505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,62.5
+ parent: 1
+ - uid: 26506
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - uid: 26507
+ components:
+ - type: Transform
+ pos: 106.5,78.5
+ parent: 1
+ - uid: 26510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,62.5
+ parent: 1
+ - uid: 26723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,39.5
+ parent: 1
+ - uid: 26987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,67.5
+ parent: 1
+ - uid: 26989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,74.5
+ parent: 1
+ - uid: 26990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,73.5
+ parent: 1
+ - uid: 27053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,72.5
+ parent: 1
+ - uid: 27066
+ components:
+ - type: Transform
+ pos: 82.5,68.5
+ parent: 1
+ - uid: 27067
+ components:
+ - type: Transform
+ pos: 90.5,69.5
+ parent: 1
+ - uid: 27229
+ components:
+ - type: Transform
+ pos: 75.5,61.5
+ parent: 1
+ - uid: 27268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,56.5
+ parent: 1
+ - uid: 27389
+ components:
+ - type: Transform
+ pos: 116.5,86.5
+ parent: 1
+ - uid: 27391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,80.5
+ parent: 1
+ - uid: 27601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,46.5
+ parent: 1
+ - uid: 27752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,34.5
+ parent: 1
+ - uid: 27837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,27.5
+ parent: 1
+ - uid: 27838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,34.5
+ parent: 1
+ - uid: 27839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,27.5
+ parent: 1
+ - uid: 27841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,41.5
+ parent: 1
+ - uid: 27842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,41.5
+ parent: 1
+ - uid: 27843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,63.5
+ parent: 1
+ - uid: 27844
+ components:
+ - type: Transform
+ pos: 75.5,43.5
+ parent: 1
+ - uid: 27847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 27849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,81.5
+ parent: 1
+ - uid: 27850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,72.5
+ parent: 1
+ - uid: 27925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,86.5
+ parent: 1
+ - uid: 27927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,92.5
+ parent: 1
+ - uid: 27928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,98.5
+ parent: 1
+ - uid: 27930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,109.5
+ parent: 1
+ - uid: 28218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,112.5
+ parent: 1
+ - uid: 28219
+ components:
+ - type: Transform
+ pos: 78.5,114.5
+ parent: 1
+ - uid: 28220
+ components:
+ - type: Transform
+ pos: 71.5,114.5
+ parent: 1
+ - uid: 28221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,112.5
+ parent: 1
+ - uid: 28223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,117.5
+ parent: 1
+ - uid: 28256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,117.5
+ parent: 1
+ - uid: 28257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,117.5
+ parent: 1
+ - uid: 28258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,122.5
+ parent: 1
+ - uid: 28259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,122.5
+ parent: 1
+ - uid: 28570
+ components:
+ - type: Transform
+ pos: 140.5,78.5
+ parent: 1
+ - uid: 28571
+ components:
+ - type: Transform
+ pos: 132.5,83.5
+ parent: 1
+ - uid: 28572
+ components:
+ - type: Transform
+ pos: 137.5,83.5
+ parent: 1
+ - uid: 28573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,76.5
+ parent: 1
+ - uid: 28575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,83.5
+ parent: 1
+ - uid: 28576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,91.5
+ parent: 1
+ - uid: 28577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,99.5
+ parent: 1
+ - uid: 28578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,107.5
+ parent: 1
+ - uid: 28579
+ components:
+ - type: Transform
+ pos: 133.5,119.5
+ parent: 1
+ - uid: 28580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,117.5
+ parent: 1
+ - uid: 28581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 28582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,74.5
+ parent: 1
+ - uid: 28583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,76.5
+ parent: 1
+ - uid: 28584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,66.5
+ parent: 1
+ - uid: 28585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,56.5
+ parent: 1
+ - uid: 28586
+ components:
+ - type: Transform
+ pos: 112.5,55.5
+ parent: 1
+ - uid: 28587
+ components:
+ - type: Transform
+ pos: 105.5,52.5
+ parent: 1
+ - uid: 28591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - uid: 28786
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 28790
+ components:
+ - type: Transform
+ pos: 58.5,114.5
+ parent: 1
+ - uid: 28798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,107.5
+ parent: 1
+ - uid: 28933
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 29596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,117.5
+ parent: 1
+ - uid: 29597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,121.5
+ parent: 1
+ - uid: 29602
+ components:
+ - type: Transform
+ pos: 156.5,123.5
+ parent: 1
+ - uid: 30103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,149.5
+ parent: 1
+ - uid: 30131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,147.5
+ parent: 1
+ - uid: 30132
+ components:
+ - type: Transform
+ pos: 140.5,153.5
+ parent: 1
+ - uid: 30146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,129.5
+ parent: 1
+ - uid: 30147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,135.5
+ parent: 1
+ - uid: 30148
+ components:
+ - type: Transform
+ pos: 152.5,139.5
+ parent: 1
+ - uid: 30149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,137.5
+ parent: 1
+ - uid: 30150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,137.5
+ parent: 1
+ - uid: 30151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,144.5
+ parent: 1
+ - uid: 30162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,151.5
+ parent: 1
+ - uid: 30163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,156.5
+ parent: 1
+ - uid: 30164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,156.5
+ parent: 1
+ - uid: 30165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,142.5
+ parent: 1
+ - uid: 30332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,150.5
+ parent: 1
+ - uid: 30841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 31138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 31875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 32006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,125.5
+ parent: 1
+ - uid: 32230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,131.5
+ parent: 1
+ - uid: 32263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,43.5
+ parent: 1
+ - uid: 32357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,128.5
+ parent: 1
+ - uid: 33064
+ components:
+ - type: Transform
+ pos: 92.5,23.5
+ parent: 1
+ - uid: 33419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,30.5
+ parent: 1
+ - uid: 33423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,21.5
+ parent: 1
+ - uid: 33430
+ components:
+ - type: Transform
+ pos: 116.5,31.5
+ parent: 1
+ - uid: 33763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,16.5
+ parent: 1
+ - uid: 34235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,139.5
+ parent: 1
+ - uid: 34404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,143.5
+ parent: 1
+ - uid: 34412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,151.5
+ parent: 1
+ - uid: 34447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,161.5
+ parent: 1
+ - uid: 34538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,48.5
+ parent: 1
+ - uid: 34759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 34980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,135.5
+ parent: 1
+ - uid: 34981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,127.5
+ parent: 1
+ - uid: 35214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 35590
+ components:
+ - type: Transform
+ pos: 147.5,96.5
+ parent: 1
+ - uid: 35642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,92.5
+ parent: 1
+ - uid: 35645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,90.5
+ parent: 1
+ - uid: 35874
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 35875
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 36003
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 36745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,137.5
+ parent: 1
+ - uid: 36748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,145.5
+ parent: 1
+ - uid: 36761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,141.5
+ parent: 1
+ - uid: 37323
+ components:
+ - type: Transform
+ pos: 134.5,129.5
+ parent: 1
+ - uid: 37330
+ components:
+ - type: Transform
+ pos: 64.5,61.5
+ parent: 1
+ - uid: 37384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 37471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 37487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,56.5
+ parent: 1
+ - uid: 37488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,48.5
+ parent: 1
+ - uid: 37489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,57.5
+ parent: 1
+- proto: PoweredlightGreen
+ entities:
+ - uid: 18066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 166.5,137.5
+ parent: 1
+- proto: PoweredlightRed
+ entities:
+ - uid: 37188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 165.5,134.5
+ parent: 1
+- proto: PoweredlightSodium
+ entities:
+ - uid: 31827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,150.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 154.5,91.5
+ parent: 1
+ - uid: 1380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,108.5
+ parent: 1
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 100.5,37.5
+ parent: 1
+ - uid: 2095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,106.5
+ parent: 1
+ - uid: 2238
+ components:
+ - type: Transform
+ pos: 33.5,123.5
+ parent: 1
+ - uid: 4696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,103.5
+ parent: 1
+ - uid: 5374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,147.5
+ parent: 1
+ - uid: 5386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,82.5
+ parent: 1
+ - uid: 5387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,104.5
+ parent: 1
+ - uid: 5472
+ components:
+ - type: Transform
+ pos: 51.5,107.5
+ parent: 1
+ - uid: 10753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,58.5
+ parent: 1
+ - uid: 11533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 11534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 11535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,50.5
+ parent: 1
+ - uid: 13499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,45.5
+ parent: 1
+ - uid: 13503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 16584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,148.5
+ parent: 1
+ - uid: 16593
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 16910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,82.5
+ parent: 1
+ - uid: 16918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,167.5
+ parent: 1
+ - uid: 17647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,90.5
+ parent: 1
+ - uid: 17788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 17992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,81.5
+ parent: 1
+ - uid: 17993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,83.5
+ parent: 1
+ - uid: 18305
+ components:
+ - type: Transform
+ pos: 123.5,68.5
+ parent: 1
+ - uid: 18439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,111.5
+ parent: 1
+ - uid: 18447
+ components:
+ - type: Transform
+ pos: 123.5,71.5
+ parent: 1
+ - uid: 18900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,170.5
+ parent: 1
+ - uid: 19046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,92.5
+ parent: 1
+ - uid: 19326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,106.5
+ parent: 1
+ - uid: 19327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,102.5
+ parent: 1
+ - uid: 19555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,106.5
+ parent: 1
+ - uid: 19556
+ components:
+ - type: Transform
+ pos: 162.5,110.5
+ parent: 1
+ - uid: 20436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,99.5
+ parent: 1
+ - uid: 20792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,104.5
+ parent: 1
+ - uid: 20795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,117.5
+ parent: 1
+ - uid: 20927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,117.5
+ parent: 1
+ - uid: 20928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,96.5
+ parent: 1
+ - uid: 22595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,75.5
+ parent: 1
+ - uid: 22913
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 22921
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+ - uid: 22922
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+ - uid: 22923
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 22924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,45.5
+ parent: 1
+ - uid: 22925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,48.5
+ parent: 1
+ - uid: 22928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,73.5
+ parent: 1
+ - uid: 22935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 23081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,140.5
+ parent: 1
+ - uid: 23509
+ components:
+ - type: Transform
+ pos: 93.5,37.5
+ parent: 1
+ - uid: 23954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,44.5
+ parent: 1
+ - uid: 24293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,95.5
+ parent: 1
+ - uid: 24310
+ components:
+ - type: Transform
+ pos: 123.5,74.5
+ parent: 1
+ - uid: 24611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 25166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,109.5
+ parent: 1
+ - uid: 26411
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+ - uid: 26472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,102.5
+ parent: 1
+ - uid: 26484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,92.5
+ parent: 1
+ - uid: 26485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,92.5
+ parent: 1
+ - uid: 26511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 26698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,99.5
+ parent: 1
+ - uid: 26719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 26780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,56.5
+ parent: 1
+ - uid: 26781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,57.5
+ parent: 1
+ - uid: 27055
+ components:
+ - type: Transform
+ pos: 77.5,78.5
+ parent: 1
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 27069
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 27096
+ components:
+ - type: Transform
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 27165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,69.5
+ parent: 1
+ - uid: 27223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,121.5
+ parent: 1
+ - uid: 27267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,51.5
+ parent: 1
+ - uid: 27390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,86.5
+ parent: 1
+ - uid: 27931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,61.5
+ parent: 1
+ - uid: 28165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 28169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 28171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 28172
+ components:
+ - type: Transform
+ pos: 61.5,117.5
+ parent: 1
+ - uid: 28173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 28175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 28610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 28732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,54.5
+ parent: 1
+ - uid: 29593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,127.5
+ parent: 1
+ - uid: 29595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,125.5
+ parent: 1
+ - uid: 29598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 29599
+ components:
+ - type: Transform
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 30077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,151.5
+ parent: 1
+ - uid: 30153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,132.5
+ parent: 1
+ - uid: 30156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,136.5
+ parent: 1
+ - uid: 30331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,126.5
+ parent: 1
+ - uid: 30829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,86.5
+ parent: 1
+ - uid: 31139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 31140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 31141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 31142
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 31143
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 31144
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 32052
+ components:
+ - type: Transform
+ pos: 141.5,134.5
+ parent: 1
+ - uid: 32299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,41.5
+ parent: 1
+ - uid: 33493
+ components:
+ - type: Transform
+ pos: 118.5,23.5
+ parent: 1
+ - uid: 34331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,78.5
+ parent: 1
+ - uid: 34332
+ components:
+ - type: Transform
+ pos: 164.5,80.5
+ parent: 1
+ - uid: 34400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,80.5
+ parent: 1
+ - uid: 34579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,68.5
+ parent: 1
+ - uid: 34661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 34664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,39.5
+ parent: 1
+ - uid: 34695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 34696
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 35231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,171.5
+ parent: 1
+ - uid: 35232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,152.5
+ parent: 1
+ - uid: 35414
+ components:
+ - type: Transform
+ pos: 90.5,165.5
+ parent: 1
+ - uid: 35560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,155.5
+ parent: 1
+ - uid: 35625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,155.5
+ parent: 1
+ - uid: 35626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,158.5
+ parent: 1
+ - uid: 36060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,112.5
+ parent: 1
+ - uid: 36062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 36146
+ components:
+ - type: Transform
+ pos: 20.5,119.5
+ parent: 1
+ - uid: 36523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,79.5
+ parent: 1
+ - uid: 36524
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,87.5
+ parent: 1
+ - uid: 36527
+ components:
+ - type: Transform
+ pos: 21.5,102.5
+ parent: 1
+ - uid: 37375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,81.5
+ parent: 1
+ - uid: 37423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 37474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,40.5
+ parent: 1
+ - uid: 37519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,48.5
+ parent: 1
+ - uid: 37553
+ components:
+ - type: Transform
+ pos: 47.5,108.5
+ parent: 1
+- proto: PoweredStrobeLightEmpty
+ entities:
+ - uid: 23279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,66.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 23280
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - type: DamageOnInteract
+ isDamageActive: False
+ - uid: 23281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,66.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 23282
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - type: DamageOnInteract
+ isDamageActive: False
+- proto: Protolathe
+ entities:
+ - uid: 20464
+ components:
+ - type: Transform
+ pos: 46.5,92.5
+ parent: 1
+- proto: ProtolatheMachineCircuitboard
+ entities:
+ - uid: 32032
+ components:
+ - type: Transform
+ pos: 141.55725,133.72534
+ parent: 1
+- proto: ProximitySensor
+ entities:
+ - uid: 11419
+ components:
+ - type: Transform
+ pos: 63.742237,93.42646
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,173.5
+ parent: 1
+ - uid: 2751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,91.5
+ parent: 1
+ - uid: 2807
+ components:
+ - type: Transform
+ pos: 155.5,89.5
+ parent: 1
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+ - uid: 3989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,94.5
+ parent: 1
+ - uid: 5261
+ components:
+ - type: Transform
+ pos: 86.5,59.5
+ parent: 1
+ - uid: 5946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,102.5
+ parent: 1
+ - uid: 6332
+ components:
+ - type: Transform
+ pos: 146.5,75.5
+ parent: 1
+ - uid: 6534
+ components:
+ - type: Transform
+ pos: 163.5,78.5
+ parent: 1
+ - uid: 9259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,108.5
+ parent: 1
+ - uid: 10575
+ components:
+ - type: Transform
+ pos: 122.5,63.5
+ parent: 1
+ - uid: 11258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,130.5
+ parent: 1
+ - uid: 11933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,109.5
+ parent: 1
+ - uid: 12043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,114.5
+ parent: 1
+ - uid: 13309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,103.5
+ parent: 1
+ - uid: 13486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,66.5
+ parent: 1
+ - uid: 13546
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 14756
+ components:
+ - type: Transform
+ pos: 52.5,128.5
+ parent: 1
+ - uid: 15051
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,162.5
+ parent: 1
+ - uid: 15052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,161.5
+ parent: 1
+ - uid: 15930
+ components:
+ - type: Transform
+ pos: 98.5,125.5
+ parent: 1
+ - uid: 16010
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 16055
+ components:
+ - type: Transform
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 16056
+ components:
+ - type: Transform
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 16057
+ components:
+ - type: Transform
+ pos: 136.5,135.5
+ parent: 1
+ - uid: 16058
+ components:
+ - type: Transform
+ pos: 136.5,134.5
+ parent: 1
+ - uid: 16069
+ components:
+ - type: Transform
+ pos: 132.5,137.5
+ parent: 1
+ - uid: 16131
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16150
+ components:
+ - type: Transform
+ pos: 132.5,144.5
+ parent: 1
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: 121.5,121.5
+ parent: 1
+ - uid: 17033
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 18429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,47.5
+ parent: 1
+ - uid: 18709
+ components:
+ - type: Transform
+ pos: 24.5,97.5
+ parent: 1
+ - uid: 18843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,121.5
+ parent: 1
+ - uid: 19479
+ components:
+ - type: Transform
+ pos: 24.5,113.5
+ parent: 1
+ - uid: 19983
+ components:
+ - type: Transform
+ pos: 68.5,123.5
+ parent: 1
+ - uid: 20421
+ components:
+ - type: Transform
+ pos: 49.5,86.5
+ parent: 1
+ - uid: 20451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,84.5
+ parent: 1
+ - uid: 20453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,83.5
+ parent: 1
+ - uid: 20457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,84.5
+ parent: 1
+ - uid: 20508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,99.5
+ parent: 1
+ - uid: 22791
+ components:
+ - type: Transform
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 22794
+ components:
+ - type: Transform
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 23006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,45.5
+ parent: 1
+ - uid: 23055
+ components:
+ - type: Transform
+ pos: 135.5,48.5
+ parent: 1
+ - uid: 23144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,49.5
+ parent: 1
+ - uid: 23253
+ components:
+ - type: Transform
+ pos: 101.5,46.5
+ parent: 1
+ - uid: 23313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 23655
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+ - uid: 25196
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 25240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,106.5
+ parent: 1
+ - uid: 25732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,86.5
+ parent: 1
+ - uid: 25808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,61.5
+ parent: 1
+ - uid: 26587
+ components:
+ - type: Transform
+ pos: 104.5,104.5
+ parent: 1
+ - uid: 26634
+ components:
+ - type: Transform
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26766
+ components:
+ - type: Transform
+ pos: 108.5,61.5
+ parent: 1
+ - uid: 26839
+ components:
+ - type: Transform
+ pos: 106.5,78.5
+ parent: 1
+ - uid: 27082
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - uid: 27400
+ components:
+ - type: Transform
+ pos: 123.5,83.5
+ parent: 1
+ - uid: 28224
+ components:
+ - type: Transform
+ pos: 131.5,122.5
+ parent: 1
+ - uid: 29080
+ components:
+ - type: Transform
+ pos: 61.5,50.5
+ parent: 1
+ - uid: 29141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,29.5
+ parent: 1
+ - uid: 29145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,29.5
+ parent: 1
+ - uid: 30134
+ components:
+ - type: Transform
+ pos: 142.5,136.5
+ parent: 1
+ - uid: 30136
+ components:
+ - type: Transform
+ pos: 142.5,138.5
+ parent: 1
+ - uid: 30526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,155.5
+ parent: 1
+ - uid: 30599
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 30813
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 32034
+ components:
+ - type: Transform
+ pos: 146.5,134.5
+ parent: 1
+ - uid: 32035
+ components:
+ - type: Transform
+ pos: 146.5,133.5
+ parent: 1
+ - uid: 32038
+ components:
+ - type: Transform
+ pos: 141.5,133.5
+ parent: 1
+ - uid: 32051
+ components:
+ - type: Transform
+ pos: 146.5,132.5
+ parent: 1
+ - uid: 32077
+ components:
+ - type: Transform
+ pos: 55.5,148.5
+ parent: 1
+ - uid: 32124
+ components:
+ - type: Transform
+ pos: 27.5,73.5
+ parent: 1
+ - uid: 33259
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 33503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,28.5
+ parent: 1
+ - uid: 33560
+ components:
+ - type: Transform
+ pos: 122.5,36.5
+ parent: 1
+ - uid: 33565
+ components:
+ - type: Transform
+ pos: 122.5,37.5
+ parent: 1
+ - uid: 33566
+ components:
+ - type: Transform
+ pos: 122.5,38.5
+ parent: 1
+ - uid: 33579
+ components:
+ - type: Transform
+ pos: 124.5,25.5
+ parent: 1
+ - uid: 33580
+ components:
+ - type: Transform
+ pos: 124.5,26.5
+ parent: 1
+ - uid: 33581
+ components:
+ - type: Transform
+ pos: 124.5,27.5
+ parent: 1
+ - uid: 33582
+ components:
+ - type: Transform
+ pos: 124.5,28.5
+ parent: 1
+ - uid: 33587
+ components:
+ - type: Transform
+ pos: 114.5,35.5
+ parent: 1
+ - uid: 33588
+ components:
+ - type: Transform
+ pos: 113.5,35.5
+ parent: 1
+ - uid: 33595
+ components:
+ - type: Transform
+ pos: 115.5,35.5
+ parent: 1
+ - uid: 33596
+ components:
+ - type: Transform
+ pos: 116.5,35.5
+ parent: 1
+ - uid: 33622
+ components:
+ - type: Transform
+ pos: 126.5,35.5
+ parent: 1
+ - uid: 33624
+ components:
+ - type: Transform
+ pos: 120.5,25.5
+ parent: 1
+ - uid: 33753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,48.5
+ parent: 1
+ - uid: 33815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,162.5
+ parent: 1
+ - uid: 33886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,155.5
+ parent: 1
+ - uid: 33975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,17.5
+ parent: 1
+ - uid: 34086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,32.5
+ parent: 1
+ - uid: 34103
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 34339
+ components:
+ - type: Transform
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 34340
+ components:
+ - type: Transform
+ pos: 158.5,78.5
+ parent: 1
+ - uid: 34402
+ components:
+ - type: Transform
+ pos: 143.5,81.5
+ parent: 1
+ - uid: 34618
+ components:
+ - type: Transform
+ pos: 159.5,54.5
+ parent: 1
+ - uid: 34755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,107.5
+ parent: 1
+ - uid: 35018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 35148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,171.5
+ parent: 1
+ - uid: 35368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,173.5
+ parent: 1
+ - uid: 35374
+ components:
+ - type: Transform
+ pos: 88.5,161.5
+ parent: 1
+ - uid: 35375
+ components:
+ - type: Transform
+ pos: 89.5,161.5
+ parent: 1
+ - uid: 35376
+ components:
+ - type: Transform
+ pos: 90.5,161.5
+ parent: 1
+ - uid: 35437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,157.5
+ parent: 1
+ - uid: 35443
+ components:
+ - type: Transform
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35620
+ components:
+ - type: Transform
+ pos: 65.5,160.5
+ parent: 1
+ - uid: 35630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,154.5
+ parent: 1
+ - uid: 35866
+ components:
+ - type: Transform
+ pos: 52.5,135.5
+ parent: 1
+ - uid: 35867
+ components:
+ - type: Transform
+ pos: 52.5,136.5
+ parent: 1
+ - uid: 35868
+ components:
+ - type: Transform
+ pos: 57.5,128.5
+ parent: 1
+ - uid: 35869
+ components:
+ - type: Transform
+ pos: 57.5,129.5
+ parent: 1
+ - uid: 36469
+ components:
+ - type: Transform
+ pos: 30.5,83.5
+ parent: 1
+ - uid: 36778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 36779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 36780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 37038
+ components:
+ - type: Transform
+ pos: 122.5,171.5
+ parent: 1
+ - uid: 37144
+ components:
+ - type: Transform
+ pos: 164.5,149.5
+ parent: 1
+ - uid: 37197
+ components:
+ - type: Transform
+ pos: 167.5,132.5
+ parent: 1
+- proto: RadiationCollectorFullTank
+ entities:
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 118.5,136.5
+ parent: 1
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: 98.5,136.5
+ parent: 1
+ - uid: 3101
+ components:
+ - type: Transform
+ pos: 118.5,138.5
+ parent: 1
+ - uid: 4846
+ components:
+ - type: Transform
+ pos: 98.5,138.5
+ parent: 1
+ - uid: 5007
+ components:
+ - type: Transform
+ pos: 98.5,137.5
+ parent: 1
+ - uid: 13801
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 13802
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 13803
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 15131
+ components:
+ - type: Transform
+ pos: 118.5,137.5
+ parent: 1
+- proto: RadiationCollectorNoTank
+ entities:
+ - uid: 2521
+ components:
+ - type: Transform
+ pos: 100.5,147.5
+ parent: 1
+ - uid: 10229
+ components:
+ - type: Transform
+ pos: 100.5,148.5
+ parent: 1
+ - uid: 15404
+ components:
+ - type: Transform
+ pos: 99.5,147.5
+ parent: 1
+- proto: RadioHandheld
+ entities:
+ - uid: 5205
+ components:
+ - type: Transform
+ pos: 137.54604,121.78815
+ parent: 1
+ - uid: 16137
+ components:
+ - type: Transform
+ pos: 94.139305,121.78037
+ parent: 1
+ - uid: 16138
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 93.9707,121.487915
+ parent: 1
+- proto: Railing
+ entities:
+ - uid: 9683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,22.5
+ parent: 1
+ - uid: 9749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,20.5
+ parent: 1
+ - uid: 9753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,21.5
+ parent: 1
+ - uid: 9754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,19.5
+ parent: 1
+ - uid: 18933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,151.5
+ parent: 1
+ - uid: 18942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,150.5
+ parent: 1
+ - uid: 18947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,156.5
+ parent: 1
+ - uid: 18996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,151.5
+ parent: 1
+ - uid: 18998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,152.5
+ parent: 1
+ - uid: 26611
+ components:
+ - type: Transform
+ pos: 107.5,93.5
+ parent: 1
+ - uid: 26615
+ components:
+ - type: Transform
+ pos: 108.5,93.5
+ parent: 1
+ - uid: 26616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26617
+ components:
+ - type: Transform
+ pos: 112.5,92.5
+ parent: 1
+ - uid: 26619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,94.5
+ parent: 1
+ - uid: 26620
+ components:
+ - type: Transform
+ pos: 113.5,92.5
+ parent: 1
+ - uid: 26621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,93.5
+ parent: 1
+ - uid: 26622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,92.5
+ parent: 1
+ - uid: 26625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,92.5
+ parent: 1
+ - uid: 26626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,91.5
+ parent: 1
+ - uid: 32074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,152.5
+ parent: 1
+ - uid: 32310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,162.5
+ parent: 1
+ - uid: 32360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,156.5
+ parent: 1
+ - uid: 32374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,161.5
+ parent: 1
+ - uid: 33273
+ components:
+ - type: Transform
+ pos: 98.5,23.5
+ parent: 1
+ - uid: 33275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,21.5
+ parent: 1
+ - uid: 33276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,20.5
+ parent: 1
+ - uid: 33277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,19.5
+ parent: 1
+ - uid: 33278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,18.5
+ parent: 1
+ - uid: 33816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,162.5
+ parent: 1
+ - uid: 34444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,160.5
+ parent: 1
+ - uid: 34445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,160.5
+ parent: 1
+ - uid: 34446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,161.5
+ parent: 1
+ - uid: 35968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,150.5
+ parent: 1
+ - uid: 37033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,166.5
+ parent: 1
+- proto: RailingCornerSmall
+ entities:
+ - uid: 9748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,23.5
+ parent: 1
+ - uid: 34441
+ components:
+ - type: Transform
+ pos: 101.5,160.5
+ parent: 1
+ - uid: 34442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,160.5
+ parent: 1
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 7074
+ components:
+ - type: Transform
+ pos: 47.5,81.5
+ parent: 1
+ - uid: 20440
+ components:
+ - type: Transform
+ pos: 51.5,82.5
+ parent: 1
+- proto: RandomBoard
+ entities:
+ - uid: 32042
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 32044
+ components:
+ - type: Transform
+ pos: 146.5,133.5
+ parent: 1
+ - uid: 32050
+ components:
+ - type: Transform
+ pos: 146.5,134.5
+ parent: 1
+ - uid: 32053
+ components:
+ - type: Transform
+ pos: 146.5,132.5
+ parent: 1
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 16151
+ components:
+ - type: Transform
+ pos: 102.5,159.5
+ parent: 1
+ - uid: 16600
+ components:
+ - type: Transform
+ pos: 121.5,133.5
+ parent: 1
+ - uid: 16601
+ components:
+ - type: Transform
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 20844
+ components:
+ - type: Transform
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 21025
+ components:
+ - type: Transform
+ pos: 77.5,121.5
+ parent: 1
+ - uid: 26612
+ components:
+ - type: Transform
+ pos: 104.5,109.5
+ parent: 1
+ - uid: 26613
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 26614
+ components:
+ - type: Transform
+ pos: 112.5,108.5
+ parent: 1
+- proto: RandomDrinkSoda
+ entities:
+ - uid: 26686
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+- proto: RandomFoodMeal
+ entities:
+ - uid: 4150
+ components:
+ - type: Transform
+ pos: 46.5,51.5
+ parent: 1
+ - uid: 9631
+ components:
+ - type: Transform
+ pos: 124.5,98.5
+ parent: 1
+ - uid: 26586
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+- proto: RandomFoodSingle
+ entities:
+ - uid: 3710
+ components:
+ - type: Transform
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 16597
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - uid: 16598
+ components:
+ - type: Transform
+ pos: 129.5,137.5
+ parent: 1
+ - uid: 20842
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20938
+ components:
+ - type: Transform
+ pos: 42.5,86.5
+ parent: 1
+ - uid: 23038
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+- proto: RandomInstruments
+ entities:
+ - uid: 23053
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 26784
+ components:
+ - type: Transform
+ pos: 110.5,58.5
+ parent: 1
+- proto: RandomPosterAny
+ entities:
+ - uid: 26806
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 1
+ - uid: 35938
+ components:
+ - type: Transform
+ pos: 23.5,92.5
+ parent: 1
+ - uid: 36560
+ components:
+ - type: Transform
+ pos: 65.5,34.5
+ parent: 1
+ - uid: 36561
+ components:
+ - type: Transform
+ pos: 62.5,36.5
+ parent: 1
+ - uid: 36562
+ components:
+ - type: Transform
+ pos: 69.5,47.5
+ parent: 1
+ - uid: 36568
+ components:
+ - type: Transform
+ pos: 26.5,70.5
+ parent: 1
+ - uid: 36569
+ components:
+ - type: Transform
+ pos: 22.5,67.5
+ parent: 1
+ - uid: 36570
+ components:
+ - type: Transform
+ pos: 19.5,77.5
+ parent: 1
+ - uid: 36571
+ components:
+ - type: Transform
+ pos: 24.5,85.5
+ parent: 1
+ - uid: 36572
+ components:
+ - type: Transform
+ pos: 19.5,89.5
+ parent: 1
+ - uid: 36574
+ components:
+ - type: Transform
+ pos: 19.5,95.5
+ parent: 1
+ - uid: 36575
+ components:
+ - type: Transform
+ pos: 27.5,91.5
+ parent: 1
+ - uid: 36576
+ components:
+ - type: Transform
+ pos: 20.5,103.5
+ parent: 1
+ - uid: 36577
+ components:
+ - type: Transform
+ pos: 23.5,106.5
+ parent: 1
+ - uid: 36578
+ components:
+ - type: Transform
+ pos: 52.5,115.5
+ parent: 1
+ - uid: 36579
+ components:
+ - type: Transform
+ pos: 65.5,117.5
+ parent: 1
+ - uid: 36581
+ components:
+ - type: Transform
+ pos: 55.5,141.5
+ parent: 1
+ - uid: 36582
+ components:
+ - type: Transform
+ pos: 52.5,144.5
+ parent: 1
+ - uid: 36589
+ components:
+ - type: Transform
+ pos: 105.5,163.5
+ parent: 1
+ - uid: 36590
+ components:
+ - type: Transform
+ pos: 117.5,163.5
+ parent: 1
+ - uid: 36591
+ components:
+ - type: Transform
+ pos: 120.5,159.5
+ parent: 1
+ - uid: 36593
+ components:
+ - type: Transform
+ pos: 131.5,149.5
+ parent: 1
+- proto: RandomPosterContraband
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 92.5,55.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 62.5,162.5
+ parent: 1
+ - uid: 3293
+ components:
+ - type: Transform
+ pos: 68.5,159.5
+ parent: 1
+ - uid: 19471
+ components:
+ - type: Transform
+ pos: 40.5,127.5
+ parent: 1
+ - uid: 22749
+ components:
+ - type: Transform
+ pos: 129.5,155.5
+ parent: 1
+ - uid: 23330
+ components:
+ - type: Transform
+ pos: 126.5,160.5
+ parent: 1
+ - uid: 24416
+ components:
+ - type: Transform
+ pos: 100.5,54.5
+ parent: 1
+ - uid: 28765
+ components:
+ - type: Transform
+ pos: 115.5,71.5
+ parent: 1
+ - uid: 30301
+ components:
+ - type: Transform
+ pos: 138.5,87.5
+ parent: 1
+ - uid: 30352
+ components:
+ - type: Transform
+ pos: 64.5,155.5
+ parent: 1
+ - uid: 32236
+ components:
+ - type: Transform
+ pos: 59.5,123.5
+ parent: 1
+ - uid: 32988
+ components:
+ - type: Transform
+ pos: 55.5,134.5
+ parent: 1
+ - uid: 34185
+ components:
+ - type: Transform
+ pos: 57.5,131.5
+ parent: 1
+ - uid: 34658
+ components:
+ - type: Transform
+ pos: 73.5,15.5
+ parent: 1
+ - uid: 34665
+ components:
+ - type: Transform
+ pos: 145.5,81.5
+ parent: 1
+ - uid: 34666
+ components:
+ - type: Transform
+ pos: 157.5,69.5
+ parent: 1
+ - uid: 34667
+ components:
+ - type: Transform
+ pos: 159.5,65.5
+ parent: 1
+ - uid: 34668
+ components:
+ - type: Transform
+ pos: 159.5,52.5
+ parent: 1
+ - uid: 34669
+ components:
+ - type: Transform
+ pos: 155.5,45.5
+ parent: 1
+ - uid: 34672
+ components:
+ - type: Transform
+ pos: 146.5,42.5
+ parent: 1
+ - uid: 34673
+ components:
+ - type: Transform
+ pos: 163.5,43.5
+ parent: 1
+ - uid: 34674
+ components:
+ - type: Transform
+ pos: 159.5,48.5
+ parent: 1
+ - uid: 34675
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 34676
+ components:
+ - type: Transform
+ pos: 114.5,28.5
+ parent: 1
+ - uid: 34677
+ components:
+ - type: Transform
+ pos: 103.5,22.5
+ parent: 1
+ - uid: 34678
+ components:
+ - type: Transform
+ pos: 98.5,24.5
+ parent: 1
+ - uid: 34679
+ components:
+ - type: Transform
+ pos: 87.5,26.5
+ parent: 1
+ - uid: 34680
+ components:
+ - type: Transform
+ pos: 92.5,33.5
+ parent: 1
+ - uid: 34681
+ components:
+ - type: Transform
+ pos: 97.5,33.5
+ parent: 1
+ - uid: 34682
+ components:
+ - type: Transform
+ pos: 112.5,36.5
+ parent: 1
+ - uid: 34683
+ components:
+ - type: Transform
+ pos: 114.5,43.5
+ parent: 1
+ - uid: 34684
+ components:
+ - type: Transform
+ pos: 110.5,30.5
+ parent: 1
+ - uid: 34685
+ components:
+ - type: Transform
+ pos: 104.5,17.5
+ parent: 1
+ - uid: 34686
+ components:
+ - type: Transform
+ pos: 62.5,23.5
+ parent: 1
+ - uid: 34688
+ components:
+ - type: Transform
+ pos: 60.5,35.5
+ parent: 1
+ - uid: 34689
+ components:
+ - type: Transform
+ pos: 58.5,46.5
+ parent: 1
+ - uid: 34690
+ components:
+ - type: Transform
+ pos: 62.5,40.5
+ parent: 1
+ - uid: 34705
+ components:
+ - type: Transform
+ pos: 61.5,33.5
+ parent: 1
+ - uid: 35067
+ components:
+ - type: Transform
+ pos: 65.5,123.5
+ parent: 1
+ - uid: 35490
+ components:
+ - type: Transform
+ pos: 140.5,132.5
+ parent: 1
+ - uid: 35491
+ components:
+ - type: Transform
+ pos: 142.5,127.5
+ parent: 1
+ - uid: 35492
+ components:
+ - type: Transform
+ pos: 126.5,154.5
+ parent: 1
+ - uid: 35495
+ components:
+ - type: Transform
+ pos: 117.5,166.5
+ parent: 1
+ - uid: 35497
+ components:
+ - type: Transform
+ pos: 93.5,169.5
+ parent: 1
+ - uid: 35498
+ components:
+ - type: Transform
+ pos: 92.5,162.5
+ parent: 1
+ - uid: 35499
+ components:
+ - type: Transform
+ pos: 82.5,157.5
+ parent: 1
+ - uid: 35500
+ components:
+ - type: Transform
+ pos: 73.5,158.5
+ parent: 1
+ - uid: 35501
+ components:
+ - type: Transform
+ pos: 113.5,166.5
+ parent: 1
+ - uid: 35503
+ components:
+ - type: Transform
+ pos: 63.5,158.5
+ parent: 1
+ - uid: 35504
+ components:
+ - type: Transform
+ pos: 66.5,163.5
+ parent: 1
+ - uid: 35505
+ components:
+ - type: Transform
+ pos: 62.5,152.5
+ parent: 1
+ - uid: 35506
+ components:
+ - type: Transform
+ pos: 60.5,145.5
+ parent: 1
+ - uid: 35507
+ components:
+ - type: Transform
+ pos: 59.5,140.5
+ parent: 1
+ - uid: 35508
+ components:
+ - type: Transform
+ pos: 59.5,138.5
+ parent: 1
+ - uid: 35509
+ components:
+ - type: Transform
+ pos: 60.5,133.5
+ parent: 1
+ - uid: 35510
+ components:
+ - type: Transform
+ pos: 61.5,129.5
+ parent: 1
+ - uid: 35511
+ components:
+ - type: Transform
+ pos: 62.5,124.5
+ parent: 1
+ - uid: 35515
+ components:
+ - type: Transform
+ pos: 56.5,122.5
+ parent: 1
+ - uid: 35696
+ components:
+ - type: Transform
+ pos: 17.5,116.5
+ parent: 1
+ - uid: 35741
+ components:
+ - type: Transform
+ pos: 41.5,121.5
+ parent: 1
+ - uid: 36018
+ components:
+ - type: Transform
+ pos: 49.5,121.5
+ parent: 1
+ - uid: 36019
+ components:
+ - type: Transform
+ pos: 51.5,124.5
+ parent: 1
+ - uid: 36021
+ components:
+ - type: Transform
+ pos: 53.5,127.5
+ parent: 1
+ - uid: 36022
+ components:
+ - type: Transform
+ pos: 44.5,124.5
+ parent: 1
+ - uid: 36027
+ components:
+ - type: Transform
+ pos: 33.5,124.5
+ parent: 1
+ - uid: 36028
+ components:
+ - type: Transform
+ pos: 29.5,120.5
+ parent: 1
+ - uid: 36032
+ components:
+ - type: Transform
+ pos: 22.5,117.5
+ parent: 1
+ - uid: 36033
+ components:
+ - type: Transform
+ pos: 22.5,114.5
+ parent: 1
+ - uid: 36035
+ components:
+ - type: Transform
+ pos: 22.5,109.5
+ parent: 1
+ - uid: 36036
+ components:
+ - type: Transform
+ pos: 20.5,106.5
+ parent: 1
+ - uid: 36037
+ components:
+ - type: Transform
+ pos: 16.5,109.5
+ parent: 1
+ - uid: 36160
+ components:
+ - type: Transform
+ pos: 25.5,108.5
+ parent: 1
+ - uid: 36565
+ components:
+ - type: Transform
+ pos: 34.5,78.5
+ parent: 1
+ - uid: 36566
+ components:
+ - type: Transform
+ pos: 30.5,76.5
+ parent: 1
+ - uid: 36567
+ components:
+ - type: Transform
+ pos: 30.5,70.5
+ parent: 1
+ - uid: 36583
+ components:
+ - type: Transform
+ pos: 51.5,150.5
+ parent: 1
+ - uid: 36584
+ components:
+ - type: Transform
+ pos: 56.5,151.5
+ parent: 1
+ - uid: 36585
+ components:
+ - type: Transform
+ pos: 80.5,157.5
+ parent: 1
+ - uid: 36596
+ components:
+ - type: Transform
+ pos: 154.5,129.5
+ parent: 1
+ - uid: 36604
+ components:
+ - type: Transform
+ pos: 141.5,84.5
+ parent: 1
+ - uid: 36605
+ components:
+ - type: Transform
+ pos: 150.5,84.5
+ parent: 1
+ - uid: 36606
+ components:
+ - type: Transform
+ pos: 153.5,78.5
+ parent: 1
+ - uid: 36607
+ components:
+ - type: Transform
+ pos: 154.5,82.5
+ parent: 1
+- proto: RandomPosterLegit
+ entities:
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 90.5,53.5
+ parent: 1
+ - uid: 2954
+ components:
+ - type: Transform
+ pos: 104.5,37.5
+ parent: 1
+ - uid: 3381
+ components:
+ - type: Transform
+ pos: 117.5,60.5
+ parent: 1
+ - uid: 4186
+ components:
+ - type: Transform
+ pos: 89.5,120.5
+ parent: 1
+ - uid: 4875
+ components:
+ - type: Transform
+ pos: 104.5,43.5
+ parent: 1
+ - uid: 5039
+ components:
+ - type: Transform
+ pos: 109.5,40.5
+ parent: 1
+ - uid: 5904
+ components:
+ - type: Transform
+ pos: 37.5,103.5
+ parent: 1
+ - uid: 10323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,145.5
+ parent: 1
+ - uid: 13685
+ components:
+ - type: Transform
+ pos: 52.5,67.5
+ parent: 1
+ - uid: 13687
+ components:
+ - type: Transform
+ pos: 53.5,62.5
+ parent: 1
+ - uid: 15668
+ components:
+ - type: Transform
+ pos: 92.5,133.5
+ parent: 1
+ - uid: 16646
+ components:
+ - type: Transform
+ pos: 124.5,124.5
+ parent: 1
+ - uid: 16647
+ components:
+ - type: Transform
+ pos: 119.5,147.5
+ parent: 1
+ - uid: 16648
+ components:
+ - type: Transform
+ pos: 124.5,156.5
+ parent: 1
+ - uid: 16649
+ components:
+ - type: Transform
+ pos: 113.5,157.5
+ parent: 1
+ - uid: 16650
+ components:
+ - type: Transform
+ pos: 96.5,157.5
+ parent: 1
+ - uid: 16651
+ components:
+ - type: Transform
+ pos: 92.5,150.5
+ parent: 1
+ - uid: 16653
+ components:
+ - type: Transform
+ pos: 99.5,126.5
+ parent: 1
+ - uid: 16654
+ components:
+ - type: Transform
+ pos: 91.5,124.5
+ parent: 1
+ - uid: 16656
+ components:
+ - type: Transform
+ pos: 71.5,120.5
+ parent: 1
+ - uid: 16657
+ components:
+ - type: Transform
+ pos: 67.5,123.5
+ parent: 1
+ - uid: 16658
+ components:
+ - type: Transform
+ pos: 113.5,148.5
+ parent: 1
+ - uid: 18206
+ components:
+ - type: Transform
+ pos: 64.5,91.5
+ parent: 1
+ - uid: 18209
+ components:
+ - type: Transform
+ pos: 75.5,84.5
+ parent: 1
+ - uid: 18210
+ components:
+ - type: Transform
+ pos: 64.5,82.5
+ parent: 1
+ - uid: 18211
+ components:
+ - type: Transform
+ pos: 58.5,85.5
+ parent: 1
+ - uid: 19550
+ components:
+ - type: Transform
+ pos: 136.5,98.5
+ parent: 1
+ - uid: 19551
+ components:
+ - type: Transform
+ pos: 133.5,111.5
+ parent: 1
+ - uid: 19553
+ components:
+ - type: Transform
+ pos: 159.5,102.5
+ parent: 1
+ - uid: 20915
+ components:
+ - type: Transform
+ pos: 32.5,95.5
+ parent: 1
+ - uid: 20916
+ components:
+ - type: Transform
+ pos: 45.5,93.5
+ parent: 1
+ - uid: 20917
+ components:
+ - type: Transform
+ pos: 52.5,104.5
+ parent: 1
+ - uid: 20918
+ components:
+ - type: Transform
+ pos: 45.5,109.5
+ parent: 1
+ - uid: 20919
+ components:
+ - type: Transform
+ pos: 39.5,109.5
+ parent: 1
+ - uid: 20920
+ components:
+ - type: Transform
+ pos: 27.5,106.5
+ parent: 1
+ - uid: 20922
+ components:
+ - type: Transform
+ pos: 31.5,118.5
+ parent: 1
+ - uid: 20923
+ components:
+ - type: Transform
+ pos: 49.5,113.5
+ parent: 1
+ - uid: 20924
+ components:
+ - type: Transform
+ pos: 51.5,85.5
+ parent: 1
+ - uid: 20925
+ components:
+ - type: Transform
+ pos: 37.5,81.5
+ parent: 1
+ - uid: 22442
+ components:
+ - type: Transform
+ pos: 131.5,113.5
+ parent: 1
+ - uid: 23114
+ components:
+ - type: Transform
+ pos: 123.5,61.5
+ parent: 1
+ - uid: 23115
+ components:
+ - type: Transform
+ pos: 137.5,46.5
+ parent: 1
+ - uid: 23116
+ components:
+ - type: Transform
+ pos: 143.5,49.5
+ parent: 1
+ - uid: 23118
+ components:
+ - type: Transform
+ pos: 156.5,50.5
+ parent: 1
+ - uid: 23119
+ components:
+ - type: Transform
+ pos: 153.5,59.5
+ parent: 1
+ - uid: 23121
+ components:
+ - type: Transform
+ pos: 155.5,68.5
+ parent: 1
+ - uid: 23122
+ components:
+ - type: Transform
+ pos: 150.5,74.5
+ parent: 1
+ - uid: 23147
+ components:
+ - type: Transform
+ pos: 150.5,58.5
+ parent: 1
+ - uid: 23271
+ components:
+ - type: Transform
+ pos: 70.5,62.5
+ parent: 1
+ - uid: 24613
+ components:
+ - type: Transform
+ pos: 98.5,69.5
+ parent: 1
+ - uid: 25426
+ components:
+ - type: Transform
+ pos: 100.5,41.5
+ parent: 1
+ - uid: 26809
+ components:
+ - type: Transform
+ pos: 97.5,81.5
+ parent: 1
+ - uid: 26810
+ components:
+ - type: Transform
+ pos: 115.5,86.5
+ parent: 1
+ - uid: 26811
+ components:
+ - type: Transform
+ pos: 99.5,89.5
+ parent: 1
+ - uid: 26818
+ components:
+ - type: Transform
+ pos: 92.5,103.5
+ parent: 1
+ - uid: 26820
+ components:
+ - type: Transform
+ pos: 109.5,95.5
+ parent: 1
+ - uid: 26821
+ components:
+ - type: Transform
+ pos: 93.5,111.5
+ parent: 1
+ - uid: 27104
+ components:
+ - type: Transform
+ pos: 61.5,111.5
+ parent: 1
+ - uid: 27409
+ components:
+ - type: Transform
+ pos: 125.5,87.5
+ parent: 1
+ - uid: 27598
+ components:
+ - type: Transform
+ pos: 64.5,50.5
+ parent: 1
+ - uid: 27652
+ components:
+ - type: Transform
+ pos: 79.5,44.5
+ parent: 1
+ - uid: 27754
+ components:
+ - type: Transform
+ pos: 54.5,109.5
+ parent: 1
+ - uid: 28834
+ components:
+ - type: Transform
+ pos: 114.5,72.5
+ parent: 1
+ - uid: 29054
+ components:
+ - type: Transform
+ pos: 58.5,101.5
+ parent: 1
+ - uid: 29584
+ components:
+ - type: Transform
+ pos: 65.5,43.5
+ parent: 1
+ - uid: 30021
+ components:
+ - type: Transform
+ pos: 98.5,38.5
+ parent: 1
+ - uid: 30238
+ components:
+ - type: Transform
+ pos: 65.5,38.5
+ parent: 1
+ - uid: 30249
+ components:
+ - type: Transform
+ pos: 154.5,116.5
+ parent: 1
+ - uid: 30250
+ components:
+ - type: Transform
+ pos: 146.5,116.5
+ parent: 1
+ - uid: 30251
+ components:
+ - type: Transform
+ pos: 151.5,122.5
+ parent: 1
+ - uid: 30253
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+ - uid: 30254
+ components:
+ - type: Transform
+ pos: 151.5,136.5
+ parent: 1
+ - uid: 30255
+ components:
+ - type: Transform
+ pos: 142.5,139.5
+ parent: 1
+ - uid: 30258
+ components:
+ - type: Transform
+ pos: 137.5,150.5
+ parent: 1
+ - uid: 30259
+ components:
+ - type: Transform
+ pos: 139.5,154.5
+ parent: 1
+ - uid: 30261
+ components:
+ - type: Transform
+ pos: 149.5,146.5
+ parent: 1
+ - uid: 30263
+ components:
+ - type: Transform
+ pos: 154.5,142.5
+ parent: 1
+ - uid: 30264
+ components:
+ - type: Transform
+ pos: 157.5,133.5
+ parent: 1
+ - uid: 30265
+ components:
+ - type: Transform
+ pos: 138.5,116.5
+ parent: 1
+ - uid: 30266
+ components:
+ - type: Transform
+ pos: 132.5,116.5
+ parent: 1
+ - uid: 30268
+ components:
+ - type: Transform
+ pos: 119.5,115.5
+ parent: 1
+ - uid: 30270
+ components:
+ - type: Transform
+ pos: 130.5,88.5
+ parent: 1
+ - uid: 30271
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - uid: 30272
+ components:
+ - type: Transform
+ pos: 145.5,75.5
+ parent: 1
+ - uid: 30274
+ components:
+ - type: Transform
+ pos: 121.5,55.5
+ parent: 1
+ - uid: 30275
+ components:
+ - type: Transform
+ pos: 115.5,56.5
+ parent: 1
+ - uid: 30276
+ components:
+ - type: Transform
+ pos: 112.5,50.5
+ parent: 1
+ - uid: 30277
+ components:
+ - type: Transform
+ pos: 104.5,53.5
+ parent: 1
+ - uid: 30281
+ components:
+ - type: Transform
+ pos: 72.5,66.5
+ parent: 1
+ - uid: 30282
+ components:
+ - type: Transform
+ pos: 95.5,67.5
+ parent: 1
+ - uid: 30283
+ components:
+ - type: Transform
+ pos: 95.5,71.5
+ parent: 1
+ - uid: 30287
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 1
+ - uid: 30288
+ components:
+ - type: Transform
+ pos: 69.5,25.5
+ parent: 1
+ - uid: 30289
+ components:
+ - type: Transform
+ pos: 85.5,25.5
+ parent: 1
+ - uid: 30290
+ components:
+ - type: Transform
+ pos: 82.5,33.5
+ parent: 1
+ - uid: 30291
+ components:
+ - type: Transform
+ pos: 85.5,40.5
+ parent: 1
+ - uid: 30294
+ components:
+ - type: Transform
+ pos: 62.5,66.5
+ parent: 1
+ - uid: 30295
+ components:
+ - type: Transform
+ pos: 58.5,71.5
+ parent: 1
+ - uid: 30296
+ components:
+ - type: Transform
+ pos: 54.5,83.5
+ parent: 1
+ - uid: 30298
+ components:
+ - type: Transform
+ pos: 64.5,110.5
+ parent: 1
+ - uid: 30299
+ components:
+ - type: Transform
+ pos: 83.5,115.5
+ parent: 1
+ - uid: 30300
+ components:
+ - type: Transform
+ pos: 123.5,120.5
+ parent: 1
+ - uid: 30666
+ components:
+ - type: Transform
+ pos: 147.5,125.5
+ parent: 1
+ - uid: 31830
+ components:
+ - type: Transform
+ pos: 126.5,80.5
+ parent: 1
+ - uid: 33289
+ components:
+ - type: Transform
+ pos: 117.5,67.5
+ parent: 1
+ - uid: 36537
+ components:
+ - type: Transform
+ pos: 85.5,31.5
+ parent: 1
+ - uid: 36564
+ components:
+ - type: Transform
+ pos: 49.5,79.5
+ parent: 1
+ - uid: 36580
+ components:
+ - type: Transform
+ pos: 53.5,137.5
+ parent: 1
+ - uid: 36594
+ components:
+ - type: Transform
+ pos: 133.5,145.5
+ parent: 1
+ - uid: 36595
+ components:
+ - type: Transform
+ pos: 151.5,144.5
+ parent: 1
+ - uid: 36597
+ components:
+ - type: Transform
+ pos: 151.5,128.5
+ parent: 1
+ - uid: 36598
+ components:
+ - type: Transform
+ pos: 126.5,102.5
+ parent: 1
+ - uid: 36599
+ components:
+ - type: Transform
+ pos: 126.5,89.5
+ parent: 1
+ - uid: 36600
+ components:
+ - type: Transform
+ pos: 142.5,79.5
+ parent: 1
+ - uid: 36601
+ components:
+ - type: Transform
+ pos: 121.5,66.5
+ parent: 1
+ - uid: 37376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,47.5
+ parent: 1
+ - uid: 37510
+ components:
+ - type: Transform
+ pos: 54.5,79.5
+ parent: 1
+- proto: RandomSoap
+ entities:
+ - uid: 28196
+ components:
+ - type: Transform
+ pos: 54.5,119.5
+ parent: 1
+ - uid: 29578
+ components:
+ - type: Transform
+ pos: 159.5,127.5
+ parent: 1
+ - uid: 34401
+ components:
+ - type: Transform
+ pos: 143.5,81.5
+ parent: 1
+- proto: RandomSpawner
+ entities:
+ - uid: 33628
+ components:
+ - type: Transform
+ pos: 108.5,18.5
+ parent: 1
+ - uid: 33629
+ components:
+ - type: Transform
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33630
+ components:
+ - type: Transform
+ pos: 108.5,20.5
+ parent: 1
+ - uid: 33631
+ components:
+ - type: Transform
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33632
+ components:
+ - type: Transform
+ pos: 104.5,23.5
+ parent: 1
+ - uid: 33633
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33634
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33635
+ components:
+ - type: Transform
+ pos: 106.5,30.5
+ parent: 1
+ - uid: 33636
+ components:
+ - type: Transform
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33637
+ components:
+ - type: Transform
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33638
+ components:
+ - type: Transform
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33639
+ components:
+ - type: Transform
+ pos: 97.5,30.5
+ parent: 1
+ - uid: 33640
+ components:
+ - type: Transform
+ pos: 97.5,32.5
+ parent: 1
+ - uid: 33641
+ components:
+ - type: Transform
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33642
+ components:
+ - type: Transform
+ pos: 96.5,26.5
+ parent: 1
+ - uid: 33643
+ components:
+ - type: Transform
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33644
+ components:
+ - type: Transform
+ pos: 96.5,22.5
+ parent: 1
+ - uid: 33645
+ components:
+ - type: Transform
+ pos: 98.5,22.5
+ parent: 1
+ - uid: 33646
+ components:
+ - type: Transform
+ pos: 99.5,19.5
+ parent: 1
+ - uid: 33647
+ components:
+ - type: Transform
+ pos: 98.5,18.5
+ parent: 1
+ - uid: 33648
+ components:
+ - type: Transform
+ pos: 92.5,20.5
+ parent: 1
+ - uid: 33649
+ components:
+ - type: Transform
+ pos: 91.5,22.5
+ parent: 1
+ - uid: 33650
+ components:
+ - type: Transform
+ pos: 90.5,21.5
+ parent: 1
+ - uid: 33651
+ components:
+ - type: Transform
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 33652
+ components:
+ - type: Transform
+ pos: 91.5,18.5
+ parent: 1
+ - uid: 33653
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33654
+ components:
+ - type: Transform
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33655
+ components:
+ - type: Transform
+ pos: 91.5,26.5
+ parent: 1
+ - uid: 33656
+ components:
+ - type: Transform
+ pos: 92.5,25.5
+ parent: 1
+ - uid: 33657
+ components:
+ - type: Transform
+ pos: 102.5,25.5
+ parent: 1
+ - uid: 33658
+ components:
+ - type: Transform
+ pos: 99.5,26.5
+ parent: 1
+ - uid: 33659
+ components:
+ - type: Transform
+ pos: 100.5,28.5
+ parent: 1
+ - uid: 33660
+ components:
+ - type: Transform
+ pos: 102.5,22.5
+ parent: 1
+ - uid: 33661
+ components:
+ - type: Transform
+ pos: 101.5,20.5
+ parent: 1
+ - uid: 33662
+ components:
+ - type: Transform
+ pos: 102.5,20.5
+ parent: 1
+ - uid: 33663
+ components:
+ - type: Transform
+ pos: 105.5,18.5
+ parent: 1
+ - uid: 33664
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33665
+ components:
+ - type: Transform
+ pos: 110.5,23.5
+ parent: 1
+ - uid: 33666
+ components:
+ - type: Transform
+ pos: 112.5,22.5
+ parent: 1
+ - uid: 33667
+ components:
+ - type: Transform
+ pos: 113.5,26.5
+ parent: 1
+ - uid: 33668
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+ - uid: 33669
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33670
+ components:
+ - type: Transform
+ pos: 114.5,31.5
+ parent: 1
+ - uid: 33671
+ components:
+ - type: Transform
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33672
+ components:
+ - type: Transform
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33673
+ components:
+ - type: Transform
+ pos: 120.5,32.5
+ parent: 1
+ - uid: 33674
+ components:
+ - type: Transform
+ pos: 122.5,26.5
+ parent: 1
+ - uid: 33675
+ components:
+ - type: Transform
+ pos: 123.5,29.5
+ parent: 1
+ - uid: 33676
+ components:
+ - type: Transform
+ pos: 124.5,30.5
+ parent: 1
+ - uid: 33677
+ components:
+ - type: Transform
+ pos: 122.5,31.5
+ parent: 1
+ - uid: 33678
+ components:
+ - type: Transform
+ pos: 123.5,33.5
+ parent: 1
+ - uid: 33679
+ components:
+ - type: Transform
+ pos: 118.5,25.5
+ parent: 1
+ - uid: 33680
+ components:
+ - type: Transform
+ pos: 116.5,26.5
+ parent: 1
+ - uid: 33681
+ components:
+ - type: Transform
+ pos: 115.5,27.5
+ parent: 1
+ - uid: 33682
+ components:
+ - type: Transform
+ pos: 119.5,22.5
+ parent: 1
+ - uid: 33683
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33684
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33685
+ components:
+ - type: Transform
+ pos: 116.5,22.5
+ parent: 1
+ - uid: 33686
+ components:
+ - type: Transform
+ pos: 118.5,19.5
+ parent: 1
+ - uid: 33687
+ components:
+ - type: Transform
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33688
+ components:
+ - type: Transform
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33689
+ components:
+ - type: Transform
+ pos: 118.5,36.5
+ parent: 1
+ - uid: 33690
+ components:
+ - type: Transform
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33691
+ components:
+ - type: Transform
+ pos: 120.5,39.5
+ parent: 1
+ - uid: 33692
+ components:
+ - type: Transform
+ pos: 120.5,42.5
+ parent: 1
+ - uid: 33693
+ components:
+ - type: Transform
+ pos: 118.5,40.5
+ parent: 1
+ - uid: 33695
+ components:
+ - type: Transform
+ pos: 114.5,41.5
+ parent: 1
+ - uid: 33696
+ components:
+ - type: Transform
+ pos: 114.5,42.5
+ parent: 1
+ - uid: 33697
+ components:
+ - type: Transform
+ pos: 113.5,40.5
+ parent: 1
+ - uid: 33698
+ components:
+ - type: Transform
+ pos: 113.5,39.5
+ parent: 1
+ - uid: 33699
+ components:
+ - type: Transform
+ pos: 114.5,37.5
+ parent: 1
+ - uid: 33700
+ components:
+ - type: Transform
+ pos: 116.5,36.5
+ parent: 1
+ - uid: 33701
+ components:
+ - type: Transform
+ pos: 124.5,35.5
+ parent: 1
+ - uid: 33702
+ components:
+ - type: Transform
+ pos: 125.5,37.5
+ parent: 1
+ - uid: 33703
+ components:
+ - type: Transform
+ pos: 124.5,38.5
+ parent: 1
+ - uid: 33704
+ components:
+ - type: Transform
+ pos: 123.5,37.5
+ parent: 1
+ - uid: 33705
+ components:
+ - type: Transform
+ pos: 125.5,39.5
+ parent: 1
+ - uid: 33706
+ components:
+ - type: Transform
+ pos: 122.5,39.5
+ parent: 1
+ - uid: 34333
+ components:
+ - type: Transform
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34335
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+- proto: RandomVending
+ entities:
+ - uid: 30247
+ components:
+ - type: Transform
+ pos: 89.5,112.5
+ parent: 1
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 5656
+ components:
+ - type: Transform
+ pos: 37.5,102.5
+ parent: 1
+ - uid: 7597
+ components:
+ - type: Transform
+ pos: 95.5,53.5
+ parent: 1
+ - uid: 30234
+ components:
+ - type: Transform
+ pos: 90.5,65.5
+ parent: 1
+ - uid: 30242
+ components:
+ - type: Transform
+ pos: 54.5,106.5
+ parent: 1
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 30235
+ components:
+ - type: Transform
+ pos: 91.5,65.5
+ parent: 1
+ - uid: 30241
+ components:
+ - type: Transform
+ pos: 54.5,105.5
+ parent: 1
+- proto: RCD
+ entities:
+ - uid: 16145
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 132.5451,144.67853
+ parent: 1
+- proto: RCDAmmo
+ entities:
+ - uid: 16149
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 132.32983,144.34518
+ parent: 1
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 26570
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 115.59723,96.55743
+ parent: 1
+- proto: Recycler
+ entities:
+ - uid: 20335
+ components:
+ - type: Transform
+ pos: 148.5,94.5
+ parent: 1
+ - uid: 34320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,83.5
+ parent: 1
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 65.5,140.5
+ parent: 1
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 65.5,138.5
+ parent: 1
+ - uid: 2142
+ components:
+ - type: Transform
+ pos: 66.5,144.5
+ parent: 1
+ - uid: 2144
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 2146
+ components:
+ - type: Transform
+ pos: 66.5,142.5
+ parent: 1
+ - uid: 2150
+ components:
+ - type: Transform
+ pos: 66.5,136.5
+ parent: 1
+ - uid: 2152
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 2154
+ components:
+ - type: Transform
+ pos: 66.5,134.5
+ parent: 1
+ - uid: 2188
+ components:
+ - type: Transform
+ pos: 67.5,148.5
+ parent: 1
+ - uid: 2190
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 2192
+ components:
+ - type: Transform
+ pos: 67.5,146.5
+ parent: 1
+ - uid: 2196
+ components:
+ - type: Transform
+ pos: 67.5,132.5
+ parent: 1
+ - uid: 2198
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 2200
+ components:
+ - type: Transform
+ pos: 67.5,130.5
+ parent: 1
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: 68.5,152.5
+ parent: 1
+ - uid: 2244
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: 68.5,150.5
+ parent: 1
+ - uid: 2266
+ components:
+ - type: Transform
+ pos: 68.5,128.5
+ parent: 1
+ - uid: 2268
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 2270
+ components:
+ - type: Transform
+ pos: 68.5,126.5
+ parent: 1
+ - uid: 3200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 3354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 3357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 3492
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 3494
+ components:
+ - type: Transform
+ pos: 90.5,143.5
+ parent: 1
+ - uid: 3500
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 3506
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 3507
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 3508
+ components:
+ - type: Transform
+ pos: 90.5,135.5
+ parent: 1
+ - uid: 3510
+ components:
+ - type: Transform
+ pos: 90.5,134.5
+ parent: 1
+ - uid: 3638
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 3921
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 4294
+ components:
+ - type: Transform
+ pos: 103.5,128.5
+ parent: 1
+ - uid: 4296
+ components:
+ - type: Transform
+ pos: 103.5,126.5
+ parent: 1
+ - uid: 4349
+ components:
+ - type: Transform
+ pos: 104.5,128.5
+ parent: 1
+ - uid: 4351
+ components:
+ - type: Transform
+ pos: 104.5,126.5
+ parent: 1
+ - uid: 4396
+ components:
+ - type: Transform
+ pos: 105.5,128.5
+ parent: 1
+ - uid: 4398
+ components:
+ - type: Transform
+ pos: 105.5,126.5
+ parent: 1
+ - uid: 4501
+ components:
+ - type: Transform
+ pos: 107.5,128.5
+ parent: 1
+ - uid: 4503
+ components:
+ - type: Transform
+ pos: 107.5,126.5
+ parent: 1
+ - uid: 4553
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 4555
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 4598
+ components:
+ - type: Transform
+ pos: 109.5,128.5
+ parent: 1
+ - uid: 4600
+ components:
+ - type: Transform
+ pos: 109.5,126.5
+ parent: 1
+ - uid: 4709
+ components:
+ - type: Transform
+ pos: 111.5,128.5
+ parent: 1
+ - uid: 4711
+ components:
+ - type: Transform
+ pos: 111.5,126.5
+ parent: 1
+ - uid: 4741
+ components:
+ - type: Transform
+ pos: 112.5,128.5
+ parent: 1
+ - uid: 4743
+ components:
+ - type: Transform
+ pos: 112.5,126.5
+ parent: 1
+ - uid: 4814
+ components:
+ - type: Transform
+ pos: 113.5,128.5
+ parent: 1
+ - uid: 4816
+ components:
+ - type: Transform
+ pos: 113.5,126.5
+ parent: 1
+ - uid: 8671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 9366
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 9369
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 9370
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 9388
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 9391
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 9435
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15476
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 15683
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15684
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 15686
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 15701
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 15705
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 16018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 19561
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 19563
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 19689
+ components:
+ - type: Transform
+ pos: 34.5,86.5
+ parent: 1
+ - uid: 19690
+ components:
+ - type: Transform
+ pos: 34.5,88.5
+ parent: 1
+ - uid: 19691
+ components:
+ - type: Transform
+ pos: 34.5,89.5
+ parent: 1
+ - uid: 19692
+ components:
+ - type: Transform
+ pos: 34.5,91.5
+ parent: 1
+ - uid: 19693
+ components:
+ - type: Transform
+ pos: 34.5,92.5
+ parent: 1
+ - uid: 19694
+ components:
+ - type: Transform
+ pos: 34.5,94.5
+ parent: 1
+ - uid: 23308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 23513
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 23514
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 27503
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 30216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 30334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 32350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 32359
+ components:
+ - type: Transform
+ pos: 53.5,155.5
+ parent: 1
+ - uid: 33889
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 36762
+ components:
+ - type: Transform
+ pos: 90.5,144.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 17.5,113.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 17.5,112.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 17.5,111.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 17.5,110.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 17.5,102.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 17.5,101.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 17.5,100.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 17.5,99.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 18.5,84.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 18.5,83.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 18.5,82.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 19.5,75.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 19.5,74.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 19.5,73.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 19.5,71.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 19.5,70.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 19.5,69.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 22.5,125.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 24.5,125.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 26.5,125.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 27.5,114.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 27.5,110.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 27.5,68.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 28.5,125.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 99.5,140.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 28.5,114.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 28.5,110.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 63.5,162.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 29.5,117.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 29.5,115.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 29.5,114.5
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 29.5,113.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 29.5,111.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 29.5,110.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 29.5,109.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 29.5,107.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 27.5,93.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 29.5,68.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 87.5,53.5
+ parent: 1
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 84.5,163.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 49.5,142.5
+ parent: 1
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 49.5,140.5
+ parent: 1
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 50.5,142.5
+ parent: 1
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 50.5,140.5
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 51.5,153.5
+ parent: 1
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 51.5,152.5
+ parent: 1
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 51.5,151.5
+ parent: 1
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 51.5,149.5
+ parent: 1
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 51.5,148.5
+ parent: 1
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 51.5,147.5
+ parent: 1
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 51.5,142.5
+ parent: 1
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 51.5,140.5
+ parent: 1
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 1740
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 2163
+ components:
+ - type: Transform
+ pos: 161.5,105.5
+ parent: 1
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: 68.5,165.5
+ parent: 1
+ - uid: 2239
+ components:
+ - type: Transform
+ pos: 127.5,37.5
+ parent: 1
+ - uid: 2249
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 2251
+ components:
+ - type: Transform
+ pos: 68.5,142.5
+ parent: 1
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: 68.5,140.5
+ parent: 1
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 2258
+ components:
+ - type: Transform
+ pos: 68.5,138.5
+ parent: 1
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: 68.5,136.5
+ parent: 1
+ - uid: 2263
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 2294
+ components:
+ - type: Transform
+ pos: 69.5,165.5
+ parent: 1
+ - uid: 2300
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 2302
+ components:
+ - type: Transform
+ pos: 69.5,146.5
+ parent: 1
+ - uid: 2305
+ components:
+ - type: Transform
+ pos: 69.5,144.5
+ parent: 1
+ - uid: 2307
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 2309
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: 69.5,134.5
+ parent: 1
+ - uid: 2314
+ components:
+ - type: Transform
+ pos: 69.5,132.5
+ parent: 1
+ - uid: 2316
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 2329
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 2365
+ components:
+ - type: Transform
+ pos: 69.5,38.5
+ parent: 1
+ - uid: 2367
+ components:
+ - type: Transform
+ pos: 69.5,37.5
+ parent: 1
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: 69.5,36.5
+ parent: 1
+ - uid: 2373
+ components:
+ - type: Transform
+ pos: 69.5,32.5
+ parent: 1
+ - uid: 2375
+ components:
+ - type: Transform
+ pos: 69.5,31.5
+ parent: 1
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: 69.5,30.5
+ parent: 1
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 1
+ - uid: 2390
+ components:
+ - type: Transform
+ pos: 69.5,15.5
+ parent: 1
+ - uid: 2392
+ components:
+ - type: Transform
+ pos: 70.5,165.5
+ parent: 1
+ - uid: 2396
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 2398
+ components:
+ - type: Transform
+ pos: 70.5,152.5
+ parent: 1
+ - uid: 2400
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 2402
+ components:
+ - type: Transform
+ pos: 70.5,150.5
+ parent: 1
+ - uid: 2405
+ components:
+ - type: Transform
+ pos: 70.5,148.5
+ parent: 1
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 2409
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 2411
+ components:
+ - type: Transform
+ pos: 70.5,130.5
+ parent: 1
+ - uid: 2414
+ components:
+ - type: Transform
+ pos: 70.5,128.5
+ parent: 1
+ - uid: 2416
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 2418
+ components:
+ - type: Transform
+ pos: 70.5,126.5
+ parent: 1
+ - uid: 2421
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 2453
+ components:
+ - type: Transform
+ pos: 70.5,15.5
+ parent: 1
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 71.5,15.5
+ parent: 1
+ - uid: 2541
+ components:
+ - type: Transform
+ pos: 72.5,40.5
+ parent: 1
+ - uid: 2578
+ components:
+ - type: Transform
+ pos: 73.5,40.5
+ parent: 1
+ - uid: 2582
+ components:
+ - type: Transform
+ pos: 74.5,163.5
+ parent: 1
+ - uid: 2588
+ components:
+ - type: Transform
+ pos: 96.5,150.5
+ parent: 1
+ - uid: 2615
+ components:
+ - type: Transform
+ pos: 74.5,40.5
+ parent: 1
+ - uid: 2618
+ components:
+ - type: Transform
+ pos: 74.5,15.5
+ parent: 1
+ - uid: 2620
+ components:
+ - type: Transform
+ pos: 75.5,163.5
+ parent: 1
+ - uid: 2626
+ components:
+ - type: Transform
+ pos: 75.5,124.5
+ parent: 1
+ - uid: 2654
+ components:
+ - type: Transform
+ pos: 75.5,40.5
+ parent: 1
+ - uid: 2657
+ components:
+ - type: Transform
+ pos: 75.5,15.5
+ parent: 1
+ - uid: 2663
+ components:
+ - type: Transform
+ pos: 76.5,124.5
+ parent: 1
+ - uid: 2690
+ components:
+ - type: Transform
+ pos: 76.5,76.5
+ parent: 1
+ - uid: 2692
+ components:
+ - type: Transform
+ pos: 76.5,75.5
+ parent: 1
+ - uid: 2694
+ components:
+ - type: Transform
+ pos: 76.5,74.5
+ parent: 1
+ - uid: 2696
+ components:
+ - type: Transform
+ pos: 76.5,73.5
+ parent: 1
+ - uid: 2698
+ components:
+ - type: Transform
+ pos: 76.5,72.5
+ parent: 1
+ - uid: 2700
+ components:
+ - type: Transform
+ pos: 76.5,71.5
+ parent: 1
+ - uid: 2709
+ components:
+ - type: Transform
+ pos: 76.5,40.5
+ parent: 1
+ - uid: 2712
+ components:
+ - type: Transform
+ pos: 76.5,15.5
+ parent: 1
+ - uid: 2714
+ components:
+ - type: Transform
+ pos: 77.5,163.5
+ parent: 1
+ - uid: 2736
+ components:
+ - type: Transform
+ pos: 77.5,124.5
+ parent: 1
+ - uid: 2752
+ components:
+ - type: Transform
+ pos: 77.5,71.5
+ parent: 1
+ - uid: 2761
+ components:
+ - type: Transform
+ pos: 77.5,40.5
+ parent: 1
+ - uid: 2766
+ components:
+ - type: Transform
+ pos: 78.5,163.5
+ parent: 1
+ - uid: 2821
+ components:
+ - type: Transform
+ pos: 78.5,40.5
+ parent: 1
+ - uid: 2869
+ components:
+ - type: Transform
+ pos: 79.5,77.5
+ parent: 1
+ - uid: 2871
+ components:
+ - type: Transform
+ pos: 79.5,71.5
+ parent: 1
+ - uid: 2888
+ components:
+ - type: Transform
+ pos: 79.5,40.5
+ parent: 1
+ - uid: 2891
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 1
+ - uid: 2893
+ components:
+ - type: Transform
+ pos: 80.5,163.5
+ parent: 1
+ - uid: 2916
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 2932
+ components:
+ - type: Transform
+ pos: 80.5,77.5
+ parent: 1
+ - uid: 2934
+ components:
+ - type: Transform
+ pos: 80.5,76.5
+ parent: 1
+ - uid: 2936
+ components:
+ - type: Transform
+ pos: 80.5,75.5
+ parent: 1
+ - uid: 2938
+ components:
+ - type: Transform
+ pos: 80.5,74.5
+ parent: 1
+ - uid: 2940
+ components:
+ - type: Transform
+ pos: 80.5,73.5
+ parent: 1
+ - uid: 2942
+ components:
+ - type: Transform
+ pos: 80.5,72.5
+ parent: 1
+ - uid: 2944
+ components:
+ - type: Transform
+ pos: 80.5,71.5
+ parent: 1
+ - uid: 2970
+ components:
+ - type: Transform
+ pos: 80.5,15.5
+ parent: 1
+ - uid: 2972
+ components:
+ - type: Transform
+ pos: 81.5,163.5
+ parent: 1
+ - uid: 3007
+ components:
+ - type: Transform
+ pos: 81.5,38.5
+ parent: 1
+ - uid: 3009
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 1
+ - uid: 3011
+ components:
+ - type: Transform
+ pos: 81.5,36.5
+ parent: 1
+ - uid: 3015
+ components:
+ - type: Transform
+ pos: 81.5,32.5
+ parent: 1
+ - uid: 3017
+ components:
+ - type: Transform
+ pos: 81.5,31.5
+ parent: 1
+ - uid: 3019
+ components:
+ - type: Transform
+ pos: 81.5,30.5
+ parent: 1
+ - uid: 3021
+ components:
+ - type: Transform
+ pos: 81.5,29.5
+ parent: 1
+ - uid: 3032
+ components:
+ - type: Transform
+ pos: 81.5,15.5
+ parent: 1
+ - uid: 3051
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 3074
+ components:
+ - type: Transform
+ pos: 83.5,163.5
+ parent: 1
+ - uid: 3207
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 3230
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 3234
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: 85.5,53.5
+ parent: 1
+ - uid: 3298
+ components:
+ - type: Transform
+ pos: 86.5,123.5
+ parent: 1
+ - uid: 3308
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 3379
+ components:
+ - type: Transform
+ pos: 87.5,17.5
+ parent: 1
+ - uid: 3387
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 3409
+ components:
+ - type: Transform
+ pos: 88.5,17.5
+ parent: 1
+ - uid: 3413
+ components:
+ - type: Transform
+ pos: 89.5,172.5
+ parent: 1
+ - uid: 3415
+ components:
+ - type: Transform
+ pos: 89.5,171.5
+ parent: 1
+ - uid: 3419
+ components:
+ - type: Transform
+ pos: 89.5,169.5
+ parent: 1
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: 89.5,168.5
+ parent: 1
+ - uid: 3475
+ components:
+ - type: Transform
+ pos: 89.5,17.5
+ parent: 1
+ - uid: 3522
+ components:
+ - type: Transform
+ pos: 90.5,123.5
+ parent: 1
+ - uid: 3569
+ components:
+ - type: Transform
+ pos: 90.5,17.5
+ parent: 1
+ - uid: 3571
+ components:
+ - type: Transform
+ pos: 91.5,174.5
+ parent: 1
+ - uid: 3615
+ components:
+ - type: Transform
+ pos: 91.5,17.5
+ parent: 1
+ - uid: 3617
+ components:
+ - type: Transform
+ pos: 92.5,174.5
+ parent: 1
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: 92.5,144.5
+ parent: 1
+ - uid: 3636
+ components:
+ - type: Transform
+ pos: 92.5,143.5
+ parent: 1
+ - uid: 3650
+ components:
+ - type: Transform
+ pos: 92.5,135.5
+ parent: 1
+ - uid: 3652
+ components:
+ - type: Transform
+ pos: 92.5,134.5
+ parent: 1
+ - uid: 3715
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 1
+ - uid: 3775
+ components:
+ - type: Transform
+ pos: 94.5,120.5
+ parent: 1
+ - uid: 3804
+ components:
+ - type: Transform
+ pos: 94.5,17.5
+ parent: 1
+ - uid: 3806
+ components:
+ - type: Transform
+ pos: 94.5,14.5
+ parent: 1
+ - uid: 3825
+ components:
+ - type: Transform
+ pos: 95.5,120.5
+ parent: 1
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 3887
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 3889
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 3896
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 3898
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 3900
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 3904
+ components:
+ - type: Transform
+ pos: 96.5,120.5
+ parent: 1
+ - uid: 3944
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 3967
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: 78.5,15.5
+ parent: 1
+ - uid: 4091
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 4177
+ components:
+ - type: Transform
+ pos: 125.5,32.5
+ parent: 1
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 4306
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 4429
+ components:
+ - type: Transform
+ pos: 105.5,17.5
+ parent: 1
+ - uid: 4488
+ components:
+ - type: Transform
+ pos: 74.5,19.5
+ parent: 1
+ - uid: 4490
+ components:
+ - type: Transform
+ pos: 106.5,17.5
+ parent: 1
+ - uid: 4497
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: 107.5,17.5
+ parent: 1
+ - uid: 4549
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 4587
+ components:
+ - type: Transform
+ pos: 108.5,17.5
+ parent: 1
+ - uid: 4594
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 4641
+ components:
+ - type: Transform
+ pos: 85.5,55.5
+ parent: 1
+ - uid: 4648
+ components:
+ - type: Transform
+ pos: 109.5,17.5
+ parent: 1
+ - uid: 4656
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 4702
+ components:
+ - type: Transform
+ pos: 114.5,172.5
+ parent: 1
+ - uid: 4792
+ components:
+ - type: Transform
+ pos: 71.5,19.5
+ parent: 1
+ - uid: 4848
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 4909
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 4999
+ components:
+ - type: Transform
+ pos: 113.5,172.5
+ parent: 1
+ - uid: 5070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,56.5
+ parent: 1
+ - uid: 5073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 5075
+ components:
+ - type: Transform
+ pos: 125.5,27.5
+ parent: 1
+ - uid: 5076
+ components:
+ - type: Transform
+ pos: 125.5,26.5
+ parent: 1
+ - uid: 5080
+ components:
+ - type: Transform
+ pos: 117.5,18.5
+ parent: 1
+ - uid: 5104
+ components:
+ - type: Transform
+ pos: 125.5,28.5
+ parent: 1
+ - uid: 5105
+ components:
+ - type: Transform
+ pos: 125.5,30.5
+ parent: 1
+ - uid: 5106
+ components:
+ - type: Transform
+ pos: 125.5,31.5
+ parent: 1
+ - uid: 5112
+ components:
+ - type: Transform
+ pos: 118.5,18.5
+ parent: 1
+ - uid: 5122
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 5161
+ components:
+ - type: Transform
+ pos: 119.5,18.5
+ parent: 1
+ - uid: 5164
+ components:
+ - type: Transform
+ pos: 108.5,172.5
+ parent: 1
+ - uid: 5179
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 5181
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 5183
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 5190
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 5192
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 5194
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 120.5,120.5
+ parent: 1
+ - uid: 5249
+ components:
+ - type: Transform
+ pos: 121.5,120.5
+ parent: 1
+ - uid: 5266
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 5268
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 5271
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 5273
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 5276
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 5278
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 5281
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 5283
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 5289
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 5292
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 5294
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 5300
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 5302
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 5312
+ components:
+ - type: Transform
+ pos: 121.5,21.5
+ parent: 1
+ - uid: 5314
+ components:
+ - type: Transform
+ pos: 121.5,20.5
+ parent: 1
+ - uid: 5329
+ components:
+ - type: Transform
+ pos: 122.5,120.5
+ parent: 1
+ - uid: 5352
+ components:
+ - type: Transform
+ pos: 72.5,19.5
+ parent: 1
+ - uid: 5474
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 5489
+ components:
+ - type: Transform
+ pos: 163.5,122.5
+ parent: 1
+ - uid: 5490
+ components:
+ - type: Transform
+ pos: 163.5,123.5
+ parent: 1
+ - uid: 5494
+ components:
+ - type: Transform
+ pos: 125.5,141.5
+ parent: 1
+ - uid: 5508
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 5510
+ components:
+ - type: Transform
+ pos: 99.5,141.5
+ parent: 1
+ - uid: 5511
+ components:
+ - type: Transform
+ pos: 99.5,142.5
+ parent: 1
+ - uid: 5512
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 5514
+ components:
+ - type: Transform
+ pos: 117.5,142.5
+ parent: 1
+ - uid: 5515
+ components:
+ - type: Transform
+ pos: 99.5,136.5
+ parent: 1
+ - uid: 5516
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 5518
+ components:
+ - type: Transform
+ pos: 99.5,138.5
+ parent: 1
+ - uid: 5519
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 5520
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 5522
+ components:
+ - type: Transform
+ pos: 99.5,132.5
+ parent: 1
+ - uid: 5523
+ components:
+ - type: Transform
+ pos: 99.5,133.5
+ parent: 1
+ - uid: 5524
+ components:
+ - type: Transform
+ pos: 99.5,134.5
+ parent: 1
+ - uid: 5525
+ components:
+ - type: Transform
+ pos: 117.5,141.5
+ parent: 1
+ - uid: 5526
+ components:
+ - type: Transform
+ pos: 117.5,140.5
+ parent: 1
+ - uid: 5527
+ components:
+ - type: Transform
+ pos: 112.5,146.5
+ parent: 1
+ - uid: 5528
+ components:
+ - type: Transform
+ pos: 111.5,146.5
+ parent: 1
+ - uid: 5529
+ components:
+ - type: Transform
+ pos: 109.5,146.5
+ parent: 1
+ - uid: 5530
+ components:
+ - type: Transform
+ pos: 108.5,146.5
+ parent: 1
+ - uid: 5531
+ components:
+ - type: Transform
+ pos: 107.5,146.5
+ parent: 1
+ - uid: 5532
+ components:
+ - type: Transform
+ pos: 105.5,146.5
+ parent: 1
+ - uid: 5533
+ components:
+ - type: Transform
+ pos: 104.5,146.5
+ parent: 1
+ - uid: 5534
+ components:
+ - type: Transform
+ pos: 117.5,138.5
+ parent: 1
+ - uid: 5535
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 5570
+ components:
+ - type: Transform
+ pos: 126.5,141.5
+ parent: 1
+ - uid: 5572
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 5614
+ components:
+ - type: Transform
+ pos: 117.5,136.5
+ parent: 1
+ - uid: 5615
+ components:
+ - type: Transform
+ pos: 117.5,132.5
+ parent: 1
+ - uid: 5618
+ components:
+ - type: Transform
+ pos: 117.5,133.5
+ parent: 1
+ - uid: 5632
+ components:
+ - type: Transform
+ pos: 117.5,134.5
+ parent: 1
+ - uid: 5634
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 5641
+ components:
+ - type: Transform
+ pos: 127.5,36.5
+ parent: 1
+ - uid: 5653
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 5683
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 5685
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 5688
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 5690
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 5692
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 5766
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 5768
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 5786
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 5791
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 5793
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 5804
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 5828
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 5830
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 5864
+ components:
+ - type: Transform
+ pos: 134.5,154.5
+ parent: 1
+ - uid: 5886
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 5906
+ components:
+ - type: Transform
+ pos: 135.5,154.5
+ parent: 1
+ - uid: 5938
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 5979
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 5981
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 5983
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 6088
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 6090
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 6155
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 6157
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 6159
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 6185
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 6187
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 6189
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 6203
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 6260
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 6308
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 6326
+ components:
+ - type: Transform
+ pos: 27.5,92.5
+ parent: 1
+ - uid: 6330
+ components:
+ - type: Transform
+ pos: 27.5,88.5
+ parent: 1
+ - uid: 6331
+ components:
+ - type: Transform
+ pos: 27.5,87.5
+ parent: 1
+ - uid: 6357
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 6364
+ components:
+ - type: Transform
+ pos: 149.5,42.5
+ parent: 1
+ - uid: 6366
+ components:
+ - type: Transform
+ pos: 145.5,155.5
+ parent: 1
+ - uid: 6407
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 6417
+ components:
+ - type: Transform
+ pos: 146.5,155.5
+ parent: 1
+ - uid: 6436
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 6438
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 6440
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 6449
+ components:
+ - type: Transform
+ pos: 146.5,54.5
+ parent: 1
+ - uid: 6457
+ components:
+ - type: Transform
+ pos: 147.5,155.5
+ parent: 1
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: 147.5,54.5
+ parent: 1
+ - uid: 6536
+ components:
+ - type: Transform
+ pos: 148.5,54.5
+ parent: 1
+ - uid: 6539
+ components:
+ - type: Transform
+ pos: 152.5,42.5
+ parent: 1
+ - uid: 6555
+ components:
+ - type: Transform
+ pos: 151.5,42.5
+ parent: 1
+ - uid: 6566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 6584
+ components:
+ - type: Transform
+ pos: 150.5,72.5
+ parent: 1
+ - uid: 6586
+ components:
+ - type: Transform
+ pos: 150.5,71.5
+ parent: 1
+ - uid: 6588
+ components:
+ - type: Transform
+ pos: 150.5,70.5
+ parent: 1
+ - uid: 6596
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 6598
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 6644
+ components:
+ - type: Transform
+ pos: 141.5,50.5
+ parent: 1
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: 156.5,41.5
+ parent: 1
+ - uid: 6954
+ components:
+ - type: Transform
+ pos: 159.5,108.5
+ parent: 1
+ - uid: 6958
+ components:
+ - type: Transform
+ pos: 159.5,103.5
+ parent: 1
+ - uid: 6966
+ components:
+ - type: Transform
+ pos: 159.5,99.5
+ parent: 1
+ - uid: 6968
+ components:
+ - type: Transform
+ pos: 159.5,98.5
+ parent: 1
+ - uid: 6973
+ components:
+ - type: Transform
+ pos: 85.5,54.5
+ parent: 1
+ - uid: 7019
+ components:
+ - type: Transform
+ pos: 160.5,108.5
+ parent: 1
+ - uid: 7054
+ components:
+ - type: Transform
+ pos: 161.5,108.5
+ parent: 1
+ - uid: 7076
+ components:
+ - type: Transform
+ pos: 86.5,53.5
+ parent: 1
+ - uid: 7080
+ components:
+ - type: Transform
+ pos: 162.5,108.5
+ parent: 1
+ - uid: 7090
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 7092
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 7160
+ components:
+ - type: Transform
+ pos: 164.5,58.5
+ parent: 1
+ - uid: 7163
+ components:
+ - type: Transform
+ pos: 164.5,56.5
+ parent: 1
+ - uid: 7178
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 7179
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7191
+ components:
+ - type: Transform
+ pos: 165.5,58.5
+ parent: 1
+ - uid: 7193
+ components:
+ - type: Transform
+ pos: 165.5,56.5
+ parent: 1
+ - uid: 7212
+ components:
+ - type: Transform
+ pos: 166.5,58.5
+ parent: 1
+ - uid: 7215
+ components:
+ - type: Transform
+ pos: 166.5,56.5
+ parent: 1
+ - uid: 7990
+ components:
+ - type: Transform
+ pos: 112.5,172.5
+ parent: 1
+ - uid: 8560
+ components:
+ - type: Transform
+ pos: 78.5,19.5
+ parent: 1
+ - uid: 8604
+ components:
+ - type: Transform
+ pos: 75.5,19.5
+ parent: 1
+ - uid: 9364
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 9595
+ components:
+ - type: Transform
+ pos: 71.5,40.5
+ parent: 1
+ - uid: 9687
+ components:
+ - type: Transform
+ pos: 79.5,19.5
+ parent: 1
+ - uid: 9742
+ components:
+ - type: Transform
+ pos: 76.5,19.5
+ parent: 1
+ - uid: 10465
+ components:
+ - type: Transform
+ pos: 126.5,163.5
+ parent: 1
+ - uid: 10534
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 10535
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 10605
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 10606
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 10754
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+ - uid: 10911
+ components:
+ - type: Transform
+ pos: 165.5,130.5
+ parent: 1
+ - uid: 11351
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 11353
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 11358
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 11915
+ components:
+ - type: Transform
+ pos: 54.5,73.5
+ parent: 1
+ - uid: 12948
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 13129
+ components:
+ - type: Transform
+ pos: 45.5,36.5
+ parent: 1
+ - uid: 13130
+ components:
+ - type: Transform
+ pos: 45.5,37.5
+ parent: 1
+ - uid: 13131
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1
+ - uid: 13132
+ components:
+ - type: Transform
+ pos: 45.5,40.5
+ parent: 1
+ - uid: 13502
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13586
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 13777
+ components:
+ - type: Transform
+ pos: 108.5,157.5
+ parent: 1
+ - uid: 13778
+ components:
+ - type: Transform
+ pos: 109.5,157.5
+ parent: 1
+ - uid: 13779
+ components:
+ - type: Transform
+ pos: 110.5,157.5
+ parent: 1
+ - uid: 13780
+ components:
+ - type: Transform
+ pos: 111.5,157.5
+ parent: 1
+ - uid: 13781
+ components:
+ - type: Transform
+ pos: 112.5,157.5
+ parent: 1
+ - uid: 14280
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 14477
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 14976
+ components:
+ - type: Transform
+ pos: 126.5,159.5
+ parent: 1
+ - uid: 14983
+ components:
+ - type: Transform
+ pos: 123.5,172.5
+ parent: 1
+ - uid: 15014
+ components:
+ - type: Transform
+ pos: 97.5,157.5
+ parent: 1
+ - uid: 15016
+ components:
+ - type: Transform
+ pos: 101.5,157.5
+ parent: 1
+ - uid: 16022
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 16133
+ components:
+ - type: Transform
+ pos: 29.5,104.5
+ parent: 1
+ - uid: 16406
+ components:
+ - type: Transform
+ pos: 100.5,122.5
+ parent: 1
+ - uid: 16587
+ components:
+ - type: Transform
+ pos: 99.5,121.5
+ parent: 1
+ - uid: 16836
+ components:
+ - type: Transform
+ pos: 126.5,170.5
+ parent: 1
+ - uid: 17764
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 17942
+ components:
+ - type: Transform
+ pos: 165.5,148.5
+ parent: 1
+ - uid: 18068
+ components:
+ - type: Transform
+ pos: 167.5,138.5
+ parent: 1
+ - uid: 18070
+ components:
+ - type: Transform
+ pos: 168.5,138.5
+ parent: 1
+ - uid: 18072
+ components:
+ - type: Transform
+ pos: 170.5,135.5
+ parent: 1
+ - uid: 18074
+ components:
+ - type: Transform
+ pos: 169.5,137.5
+ parent: 1
+ - uid: 18075
+ components:
+ - type: Transform
+ pos: 168.5,137.5
+ parent: 1
+ - uid: 18083
+ components:
+ - type: Transform
+ pos: 169.5,132.5
+ parent: 1
+ - uid: 18084
+ components:
+ - type: Transform
+ pos: 167.5,131.5
+ parent: 1
+ - uid: 18276
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 18277
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 18278
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 18939
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 19357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,74.5
+ parent: 1
+ - uid: 19362
+ components:
+ - type: Transform
+ pos: 164.5,47.5
+ parent: 1
+ - uid: 19431
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 19527
+ components:
+ - type: Transform
+ pos: 39.5,127.5
+ parent: 1
+ - uid: 19584
+ components:
+ - type: Transform
+ pos: 148.5,42.5
+ parent: 1
+ - uid: 19857
+ components:
+ - type: Transform
+ pos: 164.5,45.5
+ parent: 1
+ - uid: 20760
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+ - uid: 20921
+ components:
+ - type: Transform
+ pos: 37.5,85.5
+ parent: 1
+ - uid: 20930
+ components:
+ - type: Transform
+ pos: 41.5,87.5
+ parent: 1
+ - uid: 20931
+ components:
+ - type: Transform
+ pos: 41.5,88.5
+ parent: 1
+ - uid: 20932
+ components:
+ - type: Transform
+ pos: 41.5,89.5
+ parent: 1
+ - uid: 20987
+ components:
+ - type: Transform
+ pos: 41.5,91.5
+ parent: 1
+ - uid: 20994
+ components:
+ - type: Transform
+ pos: 41.5,92.5
+ parent: 1
+ - uid: 21005
+ components:
+ - type: Transform
+ pos: 41.5,93.5
+ parent: 1
+ - uid: 21068
+ components:
+ - type: Transform
+ pos: 41.5,84.5
+ parent: 1
+ - uid: 23062
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 23695
+ components:
+ - type: Transform
+ pos: 126.5,161.5
+ parent: 1
+ - uid: 23786
+ components:
+ - type: Transform
+ pos: 156.5,86.5
+ parent: 1
+ - uid: 25261
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 25262
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 25263
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 25874
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 26147
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 26354
+ components:
+ - type: Transform
+ pos: 111.5,172.5
+ parent: 1
+ - uid: 26410
+ components:
+ - type: Transform
+ pos: 109.5,172.5
+ parent: 1
+ - uid: 26928
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+ - uid: 27264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,35.5
+ parent: 1
+ - uid: 27673
+ components:
+ - type: Transform
+ pos: 163.5,118.5
+ parent: 1
+ - uid: 27961
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - uid: 28641
+ components:
+ - type: Transform
+ pos: 151.5,52.5
+ parent: 1
+ - uid: 29146
+ components:
+ - type: Transform
+ pos: 127.5,38.5
+ parent: 1
+ - uid: 29725
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 29736
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 29813
+ components:
+ - type: Transform
+ pos: 145.5,135.5
+ parent: 1
+ - uid: 29814
+ components:
+ - type: Transform
+ pos: 144.5,135.5
+ parent: 1
+ - uid: 29837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 29851
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 29934
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 29985
+ components:
+ - type: Transform
+ pos: 150.5,155.5
+ parent: 1
+ - uid: 29991
+ components:
+ - type: Transform
+ pos: 142.5,156.5
+ parent: 1
+ - uid: 30045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 30099
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 30100
+ components:
+ - type: Transform
+ pos: 150.5,156.5
+ parent: 1
+ - uid: 30101
+ components:
+ - type: Transform
+ pos: 142.5,155.5
+ parent: 1
+ - uid: 30206
+ components:
+ - type: Transform
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 30207
+ components:
+ - type: Transform
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 30214
+ components:
+ - type: Transform
+ pos: 163.5,150.5
+ parent: 1
+ - uid: 30735
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 31826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,173.5
+ parent: 1
+ - uid: 32171
+ components:
+ - type: Transform
+ pos: 27.5,125.5
+ parent: 1
+ - uid: 32182
+ components:
+ - type: Transform
+ pos: 23.5,125.5
+ parent: 1
+ - uid: 32223
+ components:
+ - type: Transform
+ pos: 126.5,169.5
+ parent: 1
+ - uid: 32239
+ components:
+ - type: Transform
+ pos: 41.5,127.5
+ parent: 1
+ - uid: 32587
+ components:
+ - type: Transform
+ pos: 137.5,152.5
+ parent: 1
+ - uid: 33974
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 33976
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 34498
+ components:
+ - type: Transform
+ pos: 164.5,51.5
+ parent: 1
+ - uid: 34499
+ components:
+ - type: Transform
+ pos: 164.5,49.5
+ parent: 1
+ - uid: 34503
+ components:
+ - type: Transform
+ pos: 160.5,41.5
+ parent: 1
+ - uid: 34776
+ components:
+ - type: Transform
+ pos: 124.5,172.5
+ parent: 1
+ - uid: 34953
+ components:
+ - type: Transform
+ pos: 163.5,120.5
+ parent: 1
+ - uid: 34954
+ components:
+ - type: Transform
+ pos: 163.5,119.5
+ parent: 1
+ - uid: 34955
+ components:
+ - type: Transform
+ pos: 163.5,117.5
+ parent: 1
+ - uid: 34956
+ components:
+ - type: Transform
+ pos: 163.5,116.5
+ parent: 1
+ - uid: 34957
+ components:
+ - type: Transform
+ pos: 163.5,114.5
+ parent: 1
+ - uid: 34958
+ components:
+ - type: Transform
+ pos: 163.5,113.5
+ parent: 1
+ - uid: 34973
+ components:
+ - type: Transform
+ pos: 54.5,74.5
+ parent: 1
+ - uid: 35197
+ components:
+ - type: Transform
+ pos: 50.5,131.5
+ parent: 1
+ - uid: 35513
+ components:
+ - type: Transform
+ pos: 126.5,171.5
+ parent: 1
+ - uid: 35546
+ components:
+ - type: Transform
+ pos: 125.5,172.5
+ parent: 1
+ - uid: 35755
+ components:
+ - type: Transform
+ pos: 50.5,133.5
+ parent: 1
+ - uid: 35756
+ components:
+ - type: Transform
+ pos: 50.5,129.5
+ parent: 1
+ - uid: 35831
+ components:
+ - type: Transform
+ pos: 125.5,171.5
+ parent: 1
+ - uid: 36024
+ components:
+ - type: Transform
+ pos: 37.5,127.5
+ parent: 1
+ - uid: 36038
+ components:
+ - type: Transform
+ pos: 91.5,44.5
+ parent: 1
+ - uid: 36039
+ components:
+ - type: Transform
+ pos: 92.5,44.5
+ parent: 1
+ - uid: 36050
+ components:
+ - type: Transform
+ pos: 90.5,44.5
+ parent: 1
+ - uid: 36126
+ components:
+ - type: Transform
+ pos: 32.5,124.5
+ parent: 1
+ - uid: 36132
+ components:
+ - type: Transform
+ pos: 92.5,42.5
+ parent: 1
+ - uid: 36452
+ components:
+ - type: Transform
+ pos: 97.5,44.5
+ parent: 1
+ - uid: 36476
+ components:
+ - type: Transform
+ pos: 17.5,93.5
+ parent: 1
+ - uid: 36477
+ components:
+ - type: Transform
+ pos: 17.5,91.5
+ parent: 1
+ - uid: 36495
+ components:
+ - type: Transform
+ pos: 128.5,155.5
+ parent: 1
+ - uid: 36552
+ components:
+ - type: Transform
+ pos: 97.5,42.5
+ parent: 1
+ - uid: 36592
+ components:
+ - type: Transform
+ pos: 126.5,157.5
+ parent: 1
+ - uid: 36612
+ components:
+ - type: Transform
+ pos: 130.5,155.5
+ parent: 1
+ - uid: 36749
+ components:
+ - type: Transform
+ pos: 98.5,44.5
+ parent: 1
+ - uid: 36856
+ components:
+ - type: Transform
+ pos: 99.5,44.5
+ parent: 1
+ - uid: 37130
+ components:
+ - type: Transform
+ pos: 166.5,144.5
+ parent: 1
+ - uid: 37177
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 37198
+ components:
+ - type: Transform
+ pos: 168.5,132.5
+ parent: 1
+ - uid: 37199
+ components:
+ - type: Transform
+ pos: 168.5,131.5
+ parent: 1
+ - uid: 37264
+ components:
+ - type: Transform
+ pos: 97.5,43.5
+ parent: 1
+ - uid: 37265
+ components:
+ - type: Transform
+ pos: 96.5,43.5
+ parent: 1
+ - uid: 37266
+ components:
+ - type: Transform
+ pos: 95.5,43.5
+ parent: 1
+ - uid: 37268
+ components:
+ - type: Transform
+ pos: 92.5,43.5
+ parent: 1
+ - uid: 37318
+ components:
+ - type: Transform
+ pos: 130.5,128.5
+ parent: 1
+ - uid: 37319
+ components:
+ - type: Transform
+ pos: 132.5,130.5
+ parent: 1
+ - uid: 37322
+ components:
+ - type: Transform
+ pos: 94.5,43.5
+ parent: 1
+ - uid: 37331
+ components:
+ - type: Transform
+ pos: 93.5,43.5
+ parent: 1
+ - uid: 37333
+ components:
+ - type: Transform
+ pos: 158.5,84.5
+ parent: 1
+ - uid: 37374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,65.5
+ parent: 1
+ - uid: 37377
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 37380
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 37570
+ components:
+ - type: Transform
+ pos: 158.5,95.5
+ parent: 1
+ - uid: 37571
+ components:
+ - type: Transform
+ pos: 159.5,95.5
+ parent: 1
+ - uid: 37572
+ components:
+ - type: Transform
+ pos: 159.5,96.5
+ parent: 1
+ - uid: 37574
+ components:
+ - type: Transform
+ pos: 99.5,122.5
+ parent: 1
+ - uid: 37578
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+- proto: RemoteSignaller
+ entities:
+ - uid: 20979
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.227585,115.26648
+ parent: 1
+ - uid: 20980
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 49.335274,86.63468
+ parent: 1
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 20949
+ components:
+ - type: Transform
+ pos: 50.5,107.5
+ parent: 1
+- proto: RevolverCapGun
+ entities:
+ - uid: 26768
+ components:
+ - type: Transform
+ pos: 108.50114,61.676697
+ parent: 1
+ - uid: 36053
+ components:
+ - type: Transform
+ pos: 124.4815,171.57695
+ parent: 1
+- proto: RiotBulletShield
+ entities:
+ - uid: 5657
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.44302,65.745636
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 5660
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 5660
+- proto: RiotLaserShield
+ entities:
+ - uid: 22746
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.17395,65.74098
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22747
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22747
+- proto: RiotShield
+ entities:
+ - uid: 22655
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.69579,65.47656
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22656
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22656
+ - uid: 22766
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.68764,65.794556
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22767
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22767
+- proto: RobocopCircuitBoard
+ entities:
+ - uid: 13267
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,37.918766
+ parent: 1
+- proto: RubberStampTrader
+ entities:
+ - uid: 19384
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 140.54768,104.26616
+ parent: 1
+- proto: SalvageMagnet
+ entities:
+ - uid: 21036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,89.5
+ parent: 1
+- proto: SandBattlemap
+ entities:
+ - uid: 9665
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.36829,55.351227
+ parent: 1
+- proto: Scalpel
+ entities:
+ - uid: 20423
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.38437,83.43034
+ parent: 1
+ - uid: 26983
+ components:
+ - type: Transform
+ pos: 61.53977,74.23573
+ parent: 1
+- proto: ScalpelShiv
+ entities:
+ - uid: 23056
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 136.48273,46.35854
+ parent: 1
+ - uid: 33557
+ components:
+ - type: Transform
+ pos: 108.9065,20.249084
+ parent: 1
+- proto: Screen
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 54.5,98.5
+ parent: 1
+ - uid: 2680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,102.5
+ parent: 1
+ - uid: 4241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,102.5
+ parent: 1
+ - uid: 24081
+ components:
+ - type: Transform
+ pos: 156.5,101.5
+ parent: 1
+ - uid: 24347
+ components:
+ - type: Transform
+ pos: 98.5,72.5
+ parent: 1
+ - uid: 25418
+ components:
+ - type: Transform
+ pos: 114.5,74.5
+ parent: 1
+ - uid: 27319
+ components:
+ - type: Transform
+ pos: 97.5,83.5
+ parent: 1
+ - uid: 27325
+ components:
+ - type: Transform
+ pos: 91.5,77.5
+ parent: 1
+ - uid: 27326
+ components:
+ - type: Transform
+ pos: 82.5,69.5
+ parent: 1
+ - uid: 27329
+ components:
+ - type: Transform
+ pos: 102.5,93.5
+ parent: 1
+ - uid: 27332
+ components:
+ - type: Transform
+ pos: 97.5,114.5
+ parent: 1
+ - uid: 27333
+ components:
+ - type: Transform
+ pos: 119.5,114.5
+ parent: 1
+ - uid: 27334
+ components:
+ - type: Transform
+ pos: 137.5,52.5
+ parent: 1
+ - uid: 27335
+ components:
+ - type: Transform
+ pos: 144.5,59.5
+ parent: 1
+ - uid: 27336
+ components:
+ - type: Transform
+ pos: 150.5,69.5
+ parent: 1
+ - uid: 27337
+ components:
+ - type: Transform
+ pos: 128.5,75.5
+ parent: 1
+ - uid: 27339
+ components:
+ - type: Transform
+ pos: 132.5,95.5
+ parent: 1
+ - uid: 27340
+ components:
+ - type: Transform
+ pos: 146.5,106.5
+ parent: 1
+ - uid: 27341
+ components:
+ - type: Transform
+ pos: 124.5,123.5
+ parent: 1
+ - uid: 27342
+ components:
+ - type: Transform
+ pos: 120.5,143.5
+ parent: 1
+ - uid: 27343
+ components:
+ - type: Transform
+ pos: 112.5,153.5
+ parent: 1
+ - uid: 27344
+ components:
+ - type: Transform
+ pos: 92.5,154.5
+ parent: 1
+ - uid: 27345
+ components:
+ - type: Transform
+ pos: 92.5,137.5
+ parent: 1
+ - uid: 27346
+ components:
+ - type: Transform
+ pos: 92.5,124.5
+ parent: 1
+ - uid: 27347
+ components:
+ - type: Transform
+ pos: 72.5,120.5
+ parent: 1
+ - uid: 27348
+ components:
+ - type: Transform
+ pos: 76.5,154.5
+ parent: 1
+ - uid: 27349
+ components:
+ - type: Transform
+ pos: 90.5,131.5
+ parent: 1
+ - uid: 27350
+ components:
+ - type: Transform
+ pos: 69.5,92.5
+ parent: 1
+ - uid: 27351
+ components:
+ - type: Transform
+ pos: 85.5,95.5
+ parent: 1
+ - uid: 27352
+ components:
+ - type: Transform
+ pos: 73.5,84.5
+ parent: 1
+ - uid: 27353
+ components:
+ - type: Transform
+ pos: 58.5,82.5
+ parent: 1
+ - uid: 27354
+ components:
+ - type: Transform
+ pos: 58.5,104.5
+ parent: 1
+ - uid: 27356
+ components:
+ - type: Transform
+ pos: 40.5,103.5
+ parent: 1
+ - uid: 27357
+ components:
+ - type: Transform
+ pos: 36.5,85.5
+ parent: 1
+ - uid: 27358
+ components:
+ - type: Transform
+ pos: 37.5,113.5
+ parent: 1
+ - uid: 27359
+ components:
+ - type: Transform
+ pos: 45.5,52.5
+ parent: 1
+ - uid: 27360
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 1
+ - uid: 27371
+ components:
+ - type: Transform
+ pos: 100.5,49.5
+ parent: 1
+ - uid: 27372
+ components:
+ - type: Transform
+ pos: 125.5,48.5
+ parent: 1
+ - uid: 28740
+ components:
+ - type: Transform
+ pos: 81.5,61.5
+ parent: 1
+ - uid: 28929
+ components:
+ - type: Transform
+ pos: 74.5,66.5
+ parent: 1
+ - uid: 31832
+ components:
+ - type: Transform
+ pos: 115.5,83.5
+ parent: 1
+ - uid: 32928
+ components:
+ - type: Transform
+ pos: 153.5,96.5
+ parent: 1
+- proto: SecurityTechFab
+ entities:
+ - uid: 22760
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+- proto: SeedExtractor
+ entities:
+ - uid: 23009
+ components:
+ - type: Transform
+ pos: 133.5,44.5
+ parent: 1
+ - uid: 26648
+ components:
+ - type: Transform
+ pos: 101.5,101.5
+ parent: 1
+- proto: ShardGlass
+ entities:
+ - uid: 33694
+ components:
+ - type: Transform
+ pos: 104.43751,26.424263
+ parent: 1
+ - uid: 33708
+ components:
+ - type: Transform
+ pos: 105.23959,27.424263
+ parent: 1
+ - uid: 33709
+ components:
+ - type: Transform
+ pos: 121.61714,31.45747
+ parent: 1
+- proto: SheetGlass
+ entities:
+ - uid: 16061
+ components:
+ - type: Transform
+ pos: 136.5,134.5
+ parent: 1
+ - uid: 20439
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 53.57274,83.61635
+ parent: 1
+ - uid: 25844
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 86.49521,59.611404
+ parent: 1
+- proto: SheetPlasma
+ entities:
+ - uid: 3486
+ components:
+ - type: Transform
+ pos: 132.47455,137.56143
+ parent: 1
+ - uid: 21001
+ components:
+ - type: Transform
+ pos: 39.420033,114.54269
+ parent: 1
+- proto: SheetPlasteel
+ entities:
+ - uid: 16054
+ components:
+ - type: Transform
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 19392
+ components:
+ - type: Transform
+ pos: 158.46231,102.69049
+ parent: 1
+ - uid: 32025
+ components:
+ - type: Transform
+ pos: 145.90868,130.53246
+ parent: 1
+ - uid: 36161
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+- proto: SheetPlastic
+ entities:
+ - uid: 19394
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 158.51047,97.57992
+ parent: 1
+ - uid: 20442
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 47.52754,84.483
+ parent: 1
+- proto: SheetRGlass
+ entities:
+ - uid: 32037
+ components:
+ - type: Transform
+ pos: 144.90576,130.54062
+ parent: 1
+ - uid: 35945
+ components:
+ - type: Transform
+ pos: 48.5,71.5
+ parent: 1
+- proto: SheetSteel
+ entities:
+ - uid: 16059
+ components:
+ - type: Transform
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 19393
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 134.50449,103.5474
+ parent: 1
+ - uid: 20438
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 46.506706,84.53162
+ parent: 1
+ - uid: 22774
+ components:
+ - type: Transform
+ pos: 132.4718,70.60919
+ parent: 1
+ - uid: 26880
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 90.43028,61.4401
+ parent: 1
+ - uid: 27362
+ components:
+ - type: Transform
+ pos: 74.44719,153.50386
+ parent: 1
+ - uid: 30248
+ components:
+ - type: Transform
+ pos: 74.462814,125.431885
+ parent: 1
+ - uid: 32022
+ components:
+ - type: Transform
+ pos: 145.42761,130.56506
+ parent: 1
+- proto: SheetSteel10
+ entities:
+ - uid: 36777
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 36782
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+- proto: SheetUranium1
+ entities:
+ - uid: 3624
+ components:
+ - type: Transform
+ pos: 129.49147,136.44685
+ parent: 1
+ - type: Stack
+ count: 5
+- proto: ShelfBar
+ entities:
+ - uid: 26531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,105.5
+ parent: 1
+ - uid: 35143
+ components:
+ - type: Transform
+ pos: 107.5,172.5
+ parent: 1
+- proto: ShelfChemistryChemistrySecure
+ entities:
+ - uid: 26532
+ components:
+ - type: Transform
+ pos: 88.5,98.5
+ parent: 1
+- proto: ShelfKitchen
+ entities:
+ - uid: 26533
+ components:
+ - type: Transform
+ pos: 119.5,105.5
+ parent: 1
+- proto: ShipBattlemap
+ entities:
+ - uid: 8531
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.57621,54.59293
+ parent: 1
+- proto: Shovel
+ entities:
+ - uid: 19490
+ components:
+ - type: Transform
+ pos: 146.47488,88.712135
+ parent: 1
+- proto: ShuttersFrame
+ entities:
+ - uid: 33063
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+- proto: ShuttersNormal
+ entities:
+ - uid: 19530
+ components:
+ - type: Transform
+ pos: 135.5,109.5
+ parent: 1
+ - uid: 19531
+ components:
+ - type: Transform
+ pos: 135.5,110.5
+ parent: 1
+ - uid: 20901
+ components:
+ - type: Transform
+ pos: 58.5,89.5
+ parent: 1
+ - uid: 20902
+ components:
+ - type: Transform
+ pos: 58.5,90.5
+ parent: 1
+ - uid: 20903
+ components:
+ - type: Transform
+ pos: 58.5,91.5
+ parent: 1
+ - uid: 25486
+ components:
+ - type: Transform
+ pos: 54.5,101.5
+ parent: 1
+ - uid: 27753
+ components:
+ - type: Transform
+ pos: 54.5,102.5
+ parent: 1
+ - uid: 29601
+ components:
+ - type: Transform
+ pos: 157.5,120.5
+ parent: 1
+ - uid: 29603
+ components:
+ - type: Transform
+ pos: 158.5,120.5
+ parent: 1
+ - uid: 33060
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33061
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 35988
+ components:
+ - type: Transform
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 35992
+ components:
+ - type: Transform
+ pos: 125.5,99.5
+ parent: 1
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 2496
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 3205
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 4274
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 4548
+ components:
+ - type: Transform
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 8674
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 9428
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 13770
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 17671
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 19622
+ components:
+ - type: Transform
+ pos: 102.5,97.5
+ parent: 1
+ - uid: 22701
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 22702
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 25194
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 27415
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 29081
+ components:
+ - type: Transform
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 29082
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 29083
+ components:
+ - type: Transform
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 29313
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 30721
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 37297
+ components:
+ - type: Transform
+ pos: 79.5,125.5
+ parent: 1
+ - uid: 37298
+ components:
+ - type: Transform
+ pos: 79.5,126.5
+ parent: 1
+ - uid: 37299
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 37300
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 37301
+ components:
+ - type: Transform
+ pos: 79.5,152.5
+ parent: 1
+ - uid: 37302
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 37324
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 37325
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 37326
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 37327
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 37328
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 37394
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 37395
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 37396
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 37397
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 37398
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 37399
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 37400
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 37401
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 37402
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 37403
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 37404
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 37405
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 37406
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 37407
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 37408
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 37413
+ components:
+ - type: Transform
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 37414
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 37415
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 37416
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 37417
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 37418
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 37419
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 37420
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 37421
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 37560
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 37561
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 37562
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 37576
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+- proto: ShuttersRadiationOpen
+ entities:
+ - uid: 14055
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 14087
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 14088
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 14089
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 14090
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 14091
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 14093
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 14094
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 14095
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 14096
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 14097
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 14098
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 14099
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 14100
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 14101
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 14102
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 34039
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 34040
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 35198
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 37310
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+- proto: SignAi
+ entities:
+ - uid: 4100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,47.5
+ parent: 1
+ - uid: 12934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,35.5
+ parent: 1
+- proto: SignAiUpload
+ entities:
+ - uid: 6254
+ components:
+ - type: Transform
+ pos: 46.5,43.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 15034
+ components:
+ - type: MetaData
+ name: containment storage signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15032:
+ - Pressed: Toggle
+ 15031:
+ - Pressed: Toggle
+ 15030:
+ - Pressed: Toggle
+ 15029:
+ - Pressed: Toggle
+ - uid: 15981
+ components:
+ - type: MetaData
+ name: canister storage blast door signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,120.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4387:
+ - Pressed: Toggle
+ 15979:
+ - Pressed: Toggle
+ 15978:
+ - Pressed: Toggle
+ 15967:
+ - Pressed: Toggle
+ 15969:
+ - Pressed: Toggle
+ - uid: 19536
+ components:
+ - type: MetaData
+ name: blast doors signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19532:
+ - Pressed: Toggle
+ 19533:
+ - Pressed: Toggle
+ 19529:
+ - Pressed: Toggle
+ 19534:
+ - Pressed: Toggle
+ - uid: 36775
+ components:
+ - type: MetaData
+ name: blast doors signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,134.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3878:
+ - Pressed: Toggle
+ 3642:
+ - Pressed: Toggle
+ 15764:
+ - Pressed: Toggle
+ 1820:
+ - Pressed: Toggle
+ 3358:
+ - Pressed: Toggle
+ 30218:
+ - Pressed: Toggle
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 2684
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,96.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19622:
+ - Pressed: Toggle
+ 37576:
+ - Pressed: Toggle
+ - uid: 2955
+ components:
+ - type: MetaData
+ name: north security entrance door signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 4805
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,96.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4548:
+ - Pressed: Toggle
+ 8674:
+ - Pressed: Toggle
+ - uid: 8668
+ components:
+ - type: MetaData
+ name: armory blast door signal button
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1418:
+ - Pressed: Toggle
+ 1509:
+ - Pressed: Toggle
+ 1510:
+ - Pressed: Toggle
+ - uid: 13829
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2496:
+ - Pressed: Toggle
+ 37324:
+ - Pressed: Toggle
+ 37328:
+ - Pressed: Toggle
+ 37327:
+ - Pressed: Toggle
+ 37326:
+ - Pressed: Toggle
+ 37325:
+ - Pressed: Toggle
+ - uid: 14998
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,139.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14092:
+ - Pressed: Toggle
+ 14093:
+ - Pressed: Toggle
+ 14094:
+ - Pressed: Toggle
+ 14097:
+ - Pressed: Toggle
+ 14096:
+ - Pressed: Toggle
+ 14095:
+ - Pressed: Toggle
+ - uid: 15035
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,139.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14055:
+ - Pressed: Toggle
+ 14087:
+ - Pressed: Toggle
+ 14088:
+ - Pressed: Toggle
+ 14089:
+ - Pressed: Toggle
+ 14090:
+ - Pressed: Toggle
+ 14091:
+ - Pressed: Toggle
+ - uid: 15037
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14100:
+ - Pressed: Toggle
+ 14099:
+ - Pressed: Toggle
+ 14098:
+ - Pressed: Toggle
+ - uid: 15038
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14101:
+ - Pressed: Toggle
+ 14102:
+ - Pressed: Toggle
+ 37310:
+ - Pressed: Toggle
+ - uid: 16002
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,144.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9428:
+ - Pressed: Toggle
+ 17671:
+ - Pressed: Toggle
+ 3205:
+ - Pressed: Toggle
+ 846:
+ - Pressed: Toggle
+ - uid: 19535
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19530:
+ - Pressed: Toggle
+ 19531:
+ - Pressed: Toggle
+ - uid: 19676
+ components:
+ - type: MetaData
+ name: north blast doors signal button
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19670:
+ - Pressed: Toggle
+ 19673:
+ - Pressed: Toggle
+ 19671:
+ - Pressed: Toggle
+ 19672:
+ - Pressed: Toggle
+ - uid: 19677
+ components:
+ - type: MetaData
+ name: south blast doors signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,85.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19666:
+ - Pressed: Toggle
+ 19667:
+ - Pressed: Toggle
+ 19668:
+ - Pressed: Toggle
+ 19669:
+ - Pressed: Toggle
+ - uid: 19902
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37413:
+ - Pressed: Toggle
+ 37414:
+ - Pressed: Toggle
+ 37415:
+ - Pressed: Toggle
+ 37416:
+ - Pressed: Toggle
+ 37417:
+ - Pressed: Toggle
+ - uid: 20904
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,88.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20901:
+ - Pressed: Toggle
+ 20902:
+ - Pressed: Toggle
+ 20903:
+ - Pressed: Toggle
+ - uid: 22948
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22702:
+ - Pressed: Toggle
+ 22701:
+ - Pressed: Toggle
+ - uid: 23230
+ components:
+ - type: MetaData
+ name: side counter signal button
+ - type: Transform
+ pos: 123.5,102.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35988:
+ - Pressed: Toggle
+ 35992:
+ - Pressed: Toggle
+ - uid: 24763
+ components:
+ - type: MetaData
+ name: stage lights toggle signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2351:
+ - Pressed: Toggle
+ 24728:
+ - Pressed: Toggle
+ 24726:
+ - Pressed: Toggle
+ - uid: 24764
+ components:
+ - type: MetaData
+ desc: It's a button for activating party mode.
+ name: strobe lights toggle signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23281:
+ - Pressed: Toggle
+ 23279:
+ - Pressed: Toggle
+ - uid: 27275
+ components:
+ - type: MetaData
+ name: emergency blast door signal button
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23097:
+ - Pressed: Toggle
+ - uid: 29060
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13770:
+ - Pressed: Toggle
+ 4274:
+ - Pressed: Toggle
+ - uid: 29091
+ components:
+ - type: MetaData
+ name: chemistry shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29081:
+ - Pressed: Toggle
+ 29082:
+ - Pressed: Toggle
+ 27415:
+ - Pressed: Toggle
+ 29083:
+ - Pressed: Toggle
+ - uid: 29591
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,125.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29601:
+ - Pressed: Toggle
+ 29603:
+ - Pressed: Toggle
+ - uid: 29752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29743:
+ - Pressed: Toggle
+ - uid: 29753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29744:
+ - Pressed: Toggle
+ - uid: 29754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29745:
+ - Pressed: Toggle
+ - uid: 29755
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29740:
+ - Pressed: Toggle
+ - uid: 29756
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29741:
+ - Pressed: Toggle
+ - uid: 29757
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29742:
+ - Pressed: Toggle
+ - uid: 31970
+ components:
+ - type: MetaData
+ name: exit signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,102.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17696:
+ - Pressed: Toggle
+ 17697:
+ - Pressed: Toggle
+ - uid: 33808
+ components:
+ - type: MetaData
+ name: blast door signal button
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1420:
+ - Pressed: Toggle
+ - uid: 33909
+ components:
+ - type: MetaData
+ name: canister shutter doors signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,100.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25486:
+ - Pressed: Toggle
+ 27753:
+ - Pressed: Toggle
+ - uid: 34637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,62.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34635:
+ - Pressed: DoorBolt
+ - uid: 34937
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28156:
+ - Pressed: DoorBolt
+ - uid: 34939
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28155:
+ - Pressed: DoorBolt
+ - uid: 34992
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28154:
+ - Pressed: DoorBolt
+ - uid: 34993
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28151:
+ - Pressed: DoorBolt
+ - uid: 35585
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30721:
+ - Pressed: Toggle
+ 29313:
+ - Pressed: Toggle
+ 25194:
+ - Pressed: Toggle
+ 546:
+ - Pressed: Toggle
+ - uid: 36167
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,141.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34039:
+ - Pressed: Toggle
+ 34040:
+ - Pressed: Toggle
+ 35198:
+ - Pressed: Toggle
+ - uid: 36815
+ components:
+ - type: MetaData
+ name: janitorial service light signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,122.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36824:
+ - Pressed: Toggle
+ - uid: 36825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,101.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36813:
+ - Pressed: Toggle
+ 36826:
+ - Pressed: Toggle
+ - uid: 36835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36834:
+ - Pressed: Toggle
+ - uid: 36838
+ components:
+ - type: MetaData
+ name: janitorial light signal button
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36837:
+ - Pressed: Toggle
+ - uid: 36841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,62.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36839:
+ - Pressed: Toggle
+ - uid: 36843
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36845:
+ - Pressed: Toggle
+ 36844:
+ - Pressed: Toggle
+ - uid: 36848
+ components:
+ - type: MetaData
+ name: janitorial light signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36846:
+ - Pressed: Toggle
+ 36847:
+ - Pressed: Toggle
+ - uid: 37303
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37302:
+ - Pressed: Toggle
+ 37301:
+ - Pressed: Toggle
+ 37300:
+ - Pressed: Toggle
+ - uid: 37304
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,124.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37299:
+ - Pressed: Toggle
+ 37298:
+ - Pressed: Toggle
+ 37297:
+ - Pressed: Toggle
+ - uid: 37367
+ components:
+ - type: MetaData
+ name: table signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37366:
+ - Pressed: Toggle
+ - uid: 37370
+ components:
+ - type: MetaData
+ name: west security entrance door signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,67.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28645:
+ - Pressed: Open
+ 28644:
+ - Pressed: Open
+ 22854:
+ - Pressed: Open
+ 22853:
+ - Pressed: Open
+ - uid: 37410
+ components:
+ - type: MetaData
+ name: stage shutters signal button
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37408:
+ - Pressed: Toggle
+ 37407:
+ - Pressed: Toggle
+ 37406:
+ - Pressed: Toggle
+ 37405:
+ - Pressed: Toggle
+ 37404:
+ - Pressed: Toggle
+ 37403:
+ - Pressed: Toggle
+ 37402:
+ - Pressed: Toggle
+ 37401:
+ - Pressed: Toggle
+ 37400:
+ - Pressed: Toggle
+ 37399:
+ - Pressed: Toggle
+ 37398:
+ - Pressed: Toggle
+ 37397:
+ - Pressed: Toggle
+ 37396:
+ - Pressed: Toggle
+ 37395:
+ - Pressed: Toggle
+ 37394:
+ - Pressed: Toggle
+ - uid: 37425
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37418:
+ - Pressed: Toggle
+ 37419:
+ - Pressed: Toggle
+ 37420:
+ - Pressed: Toggle
+ 37421:
+ - Pressed: Toggle
+ - uid: 37565
+ components:
+ - type: MetaData
+ name: privacy shutters signal button
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37560:
+ - Pressed: Toggle
+ 37561:
+ - Pressed: Toggle
+ 37562:
+ - Pressed: Toggle
+- proto: SignAnomaly
+ entities:
+ - uid: 5304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,85.5
+ parent: 1
+ - uid: 13772
+ components:
+ - type: Transform
+ pos: 41.5,82.5
+ parent: 1
+- proto: SignAnomaly2
+ entities:
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 43.5,110.5
+ parent: 1
+- proto: SignArcade
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 122.5,105.5
+ parent: 1
+ - uid: 23820
+ components:
+ - type: Transform
+ pos: 119.5,109.5
+ parent: 1
+ - uid: 23821
+ components:
+ - type: Transform
+ pos: 126.5,111.5
+ parent: 1
+- proto: SignArmory
+ entities:
+ - uid: 13728
+ components:
+ - type: Transform
+ pos: 136.5,60.5
+ parent: 1
+ - uid: 22799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,67.5
+ parent: 1
+- proto: SignAtmos
+ entities:
+ - uid: 13730
+ components:
+ - type: Transform
+ pos: 71.5,115.5
+ parent: 1
+ - uid: 15951
+ components:
+ - type: Transform
+ pos: 87.5,124.5
+ parent: 1
+ - uid: 15953
+ components:
+ - type: Transform
+ pos: 73.5,124.5
+ parent: 1
+ - uid: 37307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,141.5
+ parent: 1
+- proto: SignBar
+ entities:
+ - uid: 13731
+ components:
+ - type: Transform
+ pos: 105.5,116.5
+ parent: 1
+ - uid: 13749
+ components:
+ - type: Transform
+ pos: 111.5,116.5
+ parent: 1
+ - uid: 13795
+ components:
+ - type: Transform
+ pos: 107.5,100.5
+ parent: 1
+- proto: SignBarbershop
+ entities:
+ - uid: 33455
+ components:
+ - type: Transform
+ pos: 90.5,24.5
+ parent: 1
+- proto: SignBath
+ entities:
+ - uid: 34891
+ components:
+ - type: Transform
+ pos: 57.5,117.5
+ parent: 1
+- proto: SignBridge
+ entities:
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: 41.5,60.5
+ parent: 1
+ - uid: 11339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,48.5
+ parent: 1
+ - uid: 11340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,52.5
+ parent: 1
+ - uid: 11342
+ components:
+ - type: Transform
+ pos: 51.5,63.5
+ parent: 1
+ - uid: 11343
+ components:
+ - type: Transform
+ pos: 51.5,66.5
+ parent: 1
+ - uid: 15949
+ components:
+ - type: Transform
+ pos: 41.5,64.5
+ parent: 1
+- proto: SignCans
+ entities:
+ - uid: 15939
+ components:
+ - type: Transform
+ pos: 78.5,120.5
+ parent: 1
+- proto: SignCansScience
+ entities:
+ - uid: 13797
+ components:
+ - type: Transform
+ pos: 45.5,102.5
+ parent: 1
+ - uid: 24423
+ components:
+ - type: Transform
+ pos: 54.5,103.5
+ parent: 1
+- proto: SignCargo
+ entities:
+ - uid: 13787
+ components:
+ - type: Transform
+ pos: 130.5,99.5
+ parent: 1
+ - uid: 13788
+ components:
+ - type: Transform
+ pos: 130.5,107.5
+ parent: 1
+ - uid: 19342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,101.5
+ parent: 1
+- proto: SignCargoDock
+ entities:
+ - uid: 13790
+ components:
+ - type: Transform
+ pos: 158.5,108.5
+ parent: 1
+ - uid: 13791
+ components:
+ - type: Transform
+ pos: 163.5,108.5
+ parent: 1
+- proto: SignChapel
+ entities:
+ - uid: 13789
+ components:
+ - type: Transform
+ pos: 87.5,69.5
+ parent: 1
+ - uid: 37390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,76.5
+ parent: 1
+- proto: SignChem
+ entities:
+ - uid: 13785
+ components:
+ - type: Transform
+ pos: 84.5,106.5
+ parent: 1
+ - uid: 13786
+ components:
+ - type: Transform
+ pos: 84.5,101.5
+ parent: 1
+- proto: SignCloning
+ entities:
+ - uid: 35343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,86.5
+ parent: 1
+- proto: SignConference
+ entities:
+ - uid: 34095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,153.5
+ parent: 1
+ - uid: 35082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,90.5
+ parent: 1
+- proto: SignCryo
+ entities:
+ - uid: 13742
+ components:
+ - type: Transform
+ pos: 151.5,140.5
+ parent: 1
+- proto: SignCryogenicsMed
+ entities:
+ - uid: 5346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,89.5
+ parent: 1
+- proto: SignDirectionalBar
+ entities:
+ - uid: 27686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.4993,66.705826
+ parent: 1
+ - uid: 27687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,80.5
+ parent: 1
+ - uid: 27702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5073,120.30603
+ parent: 1
+ - uid: 27713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.502766,115.69511
+ parent: 1
+ - uid: 37590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,53.5
+ parent: 1
+- proto: SignDirectionalBridge
+ entities:
+ - uid: 27583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,66.5
+ parent: 1
+ - uid: 27688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,79.5
+ parent: 1
+ - uid: 27701
+ components:
+ - type: Transform
+ pos: 130.50261,120.30734
+ parent: 1
+ - uid: 27709
+ components:
+ - type: Transform
+ pos: 56.501022,115.29705
+ parent: 1
+ - uid: 37581
+ components:
+ - type: Transform
+ pos: 44.5,81.5
+ parent: 1
+ - uid: 37584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,53.5
+ parent: 1
+- proto: SignDirectionalBrig
+ entities:
+ - uid: 22559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,57.5
+ parent: 1
+- proto: SignDirectionalChapel
+ entities:
+ - uid: 37585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.49747,53.301975
+ parent: 1
+- proto: SignDirectionalChemistry
+ entities:
+ - uid: 16176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,99.5
+ parent: 1
+- proto: SignDirectionalCryo
+ entities:
+ - uid: 27685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.50407,66.69861
+ parent: 1
+ - uid: 27693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50085,81.69817
+ parent: 1
+ - uid: 27700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.50723,120.67566
+ parent: 1
+ - uid: 27710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.499157,115.6893
+ parent: 1
+ - uid: 37589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.50067,53.297707
+ parent: 1
+ - uid: 37592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.49669,53.69808
+ parent: 1
+- proto: SignDirectionalEng
+ entities:
+ - uid: 27680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,66.5
+ parent: 1
+ - uid: 27691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50316,80.68872
+ parent: 1
+ - uid: 27698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,120.5
+ parent: 1
+ - uid: 27705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,115.5
+ parent: 1
+- proto: SignDirectionalEvac
+ entities:
+ - uid: 27679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,66.5
+ parent: 1
+ - uid: 27689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,81.5
+ parent: 1
+ - uid: 27696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,120.5
+ parent: 1
+ - uid: 27706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,115.5
+ parent: 1
+ - uid: 37591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.50107,53.307587
+ parent: 1
+- proto: SignDirectionalHop
+ entities:
+ - uid: 27694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.49364,79.69277
+ parent: 1
+- proto: SignDirectionalHydro
+ entities:
+ - uid: 37583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,99.5
+ parent: 1
+- proto: SignDirectionalMed
+ entities:
+ - uid: 27681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.50147,66.30743
+ parent: 1
+ - uid: 27692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50006,80.298355
+ parent: 1
+ - uid: 27697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.50096,120.308945
+ parent: 1
+ - uid: 27711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.504097,115.30144
+ parent: 1
+- proto: SignDirectionalSci
+ entities:
+ - uid: 27682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.50271,66.301254
+ parent: 1
+ - uid: 27690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.50397,79.30357
+ parent: 1
+ - uid: 27703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5073,120.68284
+ parent: 1
+ - uid: 27707
+ components:
+ - type: Transform
+ pos: 56.5,115.5
+ parent: 1
+ - uid: 37580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,77.5
+ parent: 1
+ - uid: 37587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.49068,53.702797
+ parent: 1
+- proto: SignDirectionalSec
+ entities:
+ - uid: 27683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.498085,66.30746
+ parent: 1
+ - uid: 27704
+ components:
+ - type: Transform
+ pos: 130.49495,120.69519
+ parent: 1
+ - uid: 27708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.499157,115.69547
+ parent: 1
+ - uid: 37586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,53.5
+ parent: 1
+- proto: SignDirectionalSolar
+ entities:
+ - uid: 34662
+ components:
+ - type: Transform
+ pos: 157.5,67.5
+ parent: 1
+ - uid: 34663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,78.5
+ parent: 1
+- proto: SignDirectionalSupply
+ entities:
+ - uid: 27684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.50426,66.69697
+ parent: 1
+ - uid: 27695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50452,81.90488
+ parent: 1
+ - uid: 27699
+ components:
+ - type: Transform
+ pos: 130.5,120.5
+ parent: 1
+ - uid: 27712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.50455,115.29977
+ parent: 1
+ - uid: 37588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.49604,53.70048
+ parent: 1
+- proto: SignDisposalSpace
+ entities:
+ - uid: 34140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,82.5
+ parent: 1
+- proto: SignElectricalMed
+ entities:
+ - uid: 13549
+ components:
+ - type: Transform
+ pos: 58.5,32.5
+ parent: 1
+ - uid: 13550
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 1
+ - uid: 13551
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1
+ - uid: 13552
+ components:
+ - type: Transform
+ pos: 58.5,16.5
+ parent: 1
+ - uid: 14028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,144.5
+ parent: 1
+ - uid: 35007
+ components:
+ - type: Transform
+ pos: 134.5,42.5
+ parent: 1
+- proto: SignEngine
+ entities:
+ - uid: 13775
+ components:
+ - type: Transform
+ pos: 116.5,153.5
+ parent: 1
+ - uid: 13776
+ components:
+ - type: Transform
+ pos: 106.5,157.5
+ parent: 1
+- proto: SignEngineering
+ entities:
+ - uid: 13740
+ components:
+ - type: Transform
+ pos: 102.5,122.5
+ parent: 1
+ - uid: 13741
+ components:
+ - type: Transform
+ pos: 114.5,122.5
+ parent: 1
+ - uid: 15023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,137.5
+ parent: 1
+- proto: SignEscapePods
+ entities:
+ - uid: 7502
+ components:
+ - type: Transform
+ pos: 102.5,170.5
+ parent: 1
+ - uid: 11335
+ components:
+ - type: Transform
+ pos: 111.5,20.5
+ parent: 1
+ - uid: 29182
+ components:
+ - type: Transform
+ pos: 17.5,108.5
+ parent: 1
+- proto: SignEVA
+ entities:
+ - uid: 31868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,50.5
+ parent: 1
+ - uid: 34227
+ components:
+ - type: Transform
+ pos: 54.5,72.5
+ parent: 1
+ - uid: 37573
+ components:
+ - type: Transform
+ pos: 45.5,68.5
+ parent: 1
+- proto: SignExamroom
+ entities:
+ - uid: 13745
+ components:
+ - type: Transform
+ pos: 73.5,101.5
+ parent: 1
+- proto: SignFire
+ entities:
+ - uid: 9846
+ components:
+ - type: Transform
+ pos: 86.5,117.5
+ parent: 1
+ - uid: 20753
+ components:
+ - type: Transform
+ pos: 51.5,104.5
+ parent: 1
+- proto: SignFlammableMed
+ entities:
+ - uid: 16033
+ components:
+ - type: Transform
+ pos: 78.5,116.5
+ parent: 1
+- proto: SignGravity
+ entities:
+ - uid: 13739
+ components:
+ - type: Transform
+ pos: 100.5,157.5
+ parent: 1
+- proto: SignHead
+ entities:
+ - uid: 5432
+ components:
+ - type: Transform
+ pos: 54.5,59.5
+ parent: 1
+ - uid: 5433
+ components:
+ - type: Transform
+ pos: 41.5,74.5
+ parent: 1
+ - uid: 13736
+ components:
+ - type: Transform
+ pos: 144.5,101.5
+ parent: 1
+ - uid: 13737
+ components:
+ - type: Transform
+ pos: 140.5,63.5
+ parent: 1
+ - uid: 13738
+ components:
+ - type: Transform
+ pos: 129.5,141.5
+ parent: 1
+ - uid: 13746
+ components:
+ - type: Transform
+ pos: 85.5,93.5
+ parent: 1
+ - uid: 13798
+ components:
+ - type: Transform
+ pos: 41.5,108.5
+ parent: 1
+- proto: SignHydro1
+ entities:
+ - uid: 13748
+ components:
+ - type: Transform
+ pos: 101.5,116.5
+ parent: 1
+ - uid: 19372
+ components:
+ - type: Transform
+ pos: 102.5,105.5
+ parent: 1
+ - uid: 27855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,99.5
+ parent: 1
+- proto: SignInterrogation
+ entities:
+ - uid: 31867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,60.5
+ parent: 1
+- proto: SignJanitor
+ entities:
+ - uid: 13782
+ components:
+ - type: Transform
+ pos: 156.5,120.5
+ parent: 1
+- proto: SignKitchen
+ entities:
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 115.5,116.5
+ parent: 1
+ - uid: 3674
+ components:
+ - type: Transform
+ pos: 114.5,105.5
+ parent: 1
+ - uid: 18873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,99.5
+ parent: 1
+ - uid: 28269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,98.5
+ parent: 1
+- proto: SignLaser
+ entities:
+ - uid: 17345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,155.5
+ parent: 1
+ - uid: 30528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,145.5
+ parent: 1
+- proto: SignLaserMed
+ entities:
+ - uid: 14045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,137.5
+ parent: 1
+ - uid: 14049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,137.5
+ parent: 1
+- proto: SignLawyer
+ entities:
+ - uid: 18882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,46.5
+ parent: 1
+ - uid: 19714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,49.5
+ parent: 1
+ - uid: 28754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,49.5
+ parent: 1
+ - uid: 35212
+ components:
+ - type: Transform
+ pos: 105.5,49.5
+ parent: 1
+ - uid: 37494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,41.5
+ parent: 1
+- proto: SignLibrary
+ entities:
+ - uid: 24663
+ components:
+ - type: Transform
+ pos: 75.5,62.5
+ parent: 1
+- proto: SignMail
+ entities:
+ - uid: 23349
+ components:
+ - type: Transform
+ pos: 151.5,112.5
+ parent: 1
+- proto: SignMaterials
+ entities:
+ - uid: 32028
+ components:
+ - type: Transform
+ pos: 147.5,132.5
+ parent: 1
+- proto: SignMedical
+ entities:
+ - uid: 13783
+ components:
+ - type: Transform
+ pos: 68.5,111.5
+ parent: 1
+ - uid: 13784
+ components:
+ - type: Transform
+ pos: 80.5,111.5
+ parent: 1
+ - uid: 17779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,105.5
+ parent: 1
+ - uid: 28699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,52.5
+ parent: 1
+- proto: SignMorgue
+ entities:
+ - uid: 13752
+ components:
+ - type: Transform
+ pos: 64.5,86.5
+ parent: 1
+ - uid: 37389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,79.5
+ parent: 1
+- proto: SignNews
+ entities:
+ - uid: 25113
+ components:
+ - type: Transform
+ pos: 143.5,120.5
+ parent: 1
+- proto: SignPrison
+ entities:
+ - uid: 13754
+ components:
+ - type: Transform
+ pos: 125.5,61.5
+ parent: 1
+ - uid: 22708
+ components:
+ - type: Transform
+ pos: 128.5,54.5
+ parent: 1
+- proto: SignRadiationMed
+ entities:
+ - uid: 15983
+ components:
+ - type: Transform
+ pos: 110.5,128.5
+ parent: 1
+ - uid: 16034
+ components:
+ - type: Transform
+ pos: 116.5,149.5
+ parent: 1
+ - uid: 16035
+ components:
+ - type: Transform
+ pos: 99.5,135.5
+ parent: 1
+ - uid: 16036
+ components:
+ - type: Transform
+ pos: 106.5,146.5
+ parent: 1
+ - uid: 16037
+ components:
+ - type: Transform
+ pos: 117.5,139.5
+ parent: 1
+- proto: SignReception
+ entities:
+ - uid: 13755
+ components:
+ - type: Transform
+ pos: 78.5,105.5
+ parent: 1
+- proto: SignRedFive
+ entities:
+ - uid: 32020
+ components:
+ - type: Transform
+ pos: 158.49059,140.41048
+ parent: 1
+- proto: SignRedFour
+ entities:
+ - uid: 22846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,63.5
+ parent: 1
+ - uid: 32019
+ components:
+ - type: Transform
+ pos: 156.50348,136.56439
+ parent: 1
+- proto: SignRedOne
+ entities:
+ - uid: 22843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,72.5
+ parent: 1
+ - uid: 32016
+ components:
+ - type: Transform
+ pos: 152.4849,140.40256
+ parent: 1
+- proto: SignRedSix
+ entities:
+ - uid: 32021
+ components:
+ - type: Transform
+ pos: 159.49802,136.56282
+ parent: 1
+- proto: SignRedThree
+ entities:
+ - uid: 22845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,66.5
+ parent: 1
+ - uid: 32018
+ components:
+ - type: Transform
+ pos: 155.49359,140.40607
+ parent: 1
+- proto: SignRedTwo
+ entities:
+ - uid: 22844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,69.5
+ parent: 1
+ - uid: 32017
+ components:
+ - type: Transform
+ pos: 153.48871,136.56726
+ parent: 1
+- proto: SignRestroom
+ entities:
+ - uid: 13756
+ components:
+ - type: Transform
+ pos: 62.5,115.5
+ parent: 1
+- proto: SignRND
+ entities:
+ - uid: 13774
+ components:
+ - type: Transform
+ pos: 45.5,91.5
+ parent: 1
+- proto: SignRobo
+ entities:
+ - uid: 13757
+ components:
+ - type: Transform
+ pos: 58.5,92.5
+ parent: 1
+- proto: SignSalvage
+ entities:
+ - uid: 23409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,97.5
+ parent: 1
+ - uid: 34735
+ components:
+ - type: Transform
+ pos: 156.5,89.5
+ parent: 1
+- proto: SignScience
+ entities:
+ - uid: 13758
+ components:
+ - type: Transform
+ pos: 54.5,94.5
+ parent: 1
+ - uid: 13759
+ components:
+ - type: Transform
+ pos: 54.5,89.5
+ parent: 1
+ - uid: 20981
+ components:
+ - type: Transform
+ pos: 45.5,95.5
+ parent: 1
+- proto: SignSecureMed
+ entities:
+ - uid: 17736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,103.5
+ parent: 1
+ - uid: 20982
+ components:
+ - type: Transform
+ pos: 45.5,108.5
+ parent: 1
+- proto: SignSecureMedRed
+ entities:
+ - uid: 4072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,67.5
+ parent: 1
+ - uid: 19552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,75.5
+ parent: 1
+ - uid: 22654
+ components:
+ - type: Transform
+ pos: 136.5,58.5
+ parent: 1
+ - uid: 23370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,73.5
+ parent: 1
+- proto: SignSecurity
+ entities:
+ - uid: 5661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,75.5
+ parent: 1
+ - uid: 8205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,149.5
+ parent: 1
+ - uid: 13761
+ components:
+ - type: Transform
+ pos: 121.5,61.5
+ parent: 1
+ - uid: 13762
+ components:
+ - type: Transform
+ pos: 136.5,75.5
+ parent: 1
+- proto: SignServer
+ entities:
+ - uid: 5650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,105.5
+ parent: 1
+- proto: SignShipDock
+ entities:
+ - uid: 13732
+ components:
+ - type: Transform
+ pos: 147.5,140.5
+ parent: 1
+ - uid: 13743
+ components:
+ - type: Transform
+ pos: 140.5,157.5
+ parent: 1
+ - uid: 13744
+ components:
+ - type: Transform
+ pos: 152.5,157.5
+ parent: 1
+- proto: SignSomethingOld
+ entities:
+ - uid: 9789
+ components:
+ - type: Transform
+ pos: 37.5,111.5
+ parent: 1
+ - uid: 33547
+ components:
+ - type: Transform
+ pos: 117.5,35.5
+ parent: 1
+ - uid: 33548
+ components:
+ - type: Transform
+ pos: 116.5,24.5
+ parent: 1
+- proto: SignSomethingOld2
+ entities:
+ - uid: 13696
+ components:
+ - type: Transform
+ pos: 34.5,118.5
+ parent: 1
+ - uid: 33546
+ components:
+ - type: Transform
+ pos: 101.5,29.5
+ parent: 1
+ - uid: 33549
+ components:
+ - type: Transform
+ pos: 87.5,22.5
+ parent: 1
+- proto: SignSpace
+ entities:
+ - uid: 25933
+ components:
+ - type: Transform
+ pos: 68.5,124.5
+ parent: 1
+ - uid: 31869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,43.5
+ parent: 1
+ - uid: 35472
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers sign
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,156.5
+ parent: 1
+ - uid: 36058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,153.5
+ parent: 1
+ - uid: 37290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,129.5
+ parent: 1
+- proto: SignSurgery
+ entities:
+ - uid: 13764
+ components:
+ - type: Transform
+ pos: 64.5,100.5
+ parent: 1
+ - uid: 13765
+ components:
+ - type: MetaData
+ name: surgery theater sign
+ - type: Transform
+ pos: 64.5,107.5
+ parent: 1
+- proto: SignTelecomms
+ entities:
+ - uid: 13763
+ components:
+ - type: Transform
+ pos: 130.5,127.5
+ parent: 1
+ - uid: 13766
+ components:
+ - type: Transform
+ pos: 139.5,120.5
+ parent: 1
+- proto: SignTheater
+ entities:
+ - uid: 13767
+ components:
+ - type: Transform
+ pos: 95.5,75.5
+ parent: 1
+ - uid: 13768
+ components:
+ - type: Transform
+ pos: 117.5,75.5
+ parent: 1
+ - uid: 27591
+ components:
+ - type: Transform
+ pos: 100.5,67.5
+ parent: 1
+ - uid: 33949
+ components:
+ - type: Transform
+ pos: 112.5,67.5
+ parent: 1
+- proto: SignToolStorage
+ entities:
+ - uid: 36623
+ components:
+ - type: Transform
+ pos: 90.5,62.5
+ parent: 1
+- proto: SignVault
+ entities:
+ - uid: 19100
+ components:
+ - type: Transform
+ pos: 45.5,75.5
+ parent: 1
+- proto: SignXenobio
+ entities:
+ - uid: 7250
+ components:
+ - type: Transform
+ pos: 32.5,102.5
+ parent: 1
+- proto: SingularityGenerator
+ entities:
+ - uid: 29055
+ components:
+ - type: Transform
+ pos: 97.5,151.5
+ parent: 1
+- proto: Sink
+ entities:
+ - uid: 34543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,43.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 13481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,68.5
+ parent: 1
+ - uid: 13511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,50.5
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 87.5,97.5
+ parent: 1
+ - uid: 17963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,101.5
+ parent: 1
+ - uid: 19491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,91.5
+ parent: 1
+ - uid: 22723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,49.5
+ parent: 1
+ - uid: 22982
+ components:
+ - type: Transform
+ pos: 149.5,53.5
+ parent: 1
+ - uid: 23024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,45.5
+ parent: 1
+ - uid: 25610
+ components:
+ - type: Transform
+ pos: 120.5,104.5
+ parent: 1
+ - uid: 26542
+ components:
+ - type: Transform
+ pos: 109.5,99.5
+ parent: 1
+ - uid: 26551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,106.5
+ parent: 1
+ - uid: 26599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,92.5
+ parent: 1
+ - uid: 26633
+ components:
+ - type: Transform
+ pos: 111.5,94.5
+ parent: 1
+ - uid: 27068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,96.5
+ parent: 1
+ - uid: 28157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,116.5
+ parent: 1
+ - uid: 28158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,116.5
+ parent: 1
+ - uid: 29575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,124.5
+ parent: 1
+ - uid: 34385
+ components:
+ - type: Transform
+ pos: 142.5,81.5
+ parent: 1
+- proto: SmartFridge
+ entities:
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 20893
+ components:
+ - type: Transform
+ pos: 59.5,99.5
+ parent: 1
+- proto: SMESAdvanced
+ entities:
+ - uid: 19994
+ components:
+ - type: Transform
+ pos: 127.5,128.5
+ parent: 1
+ - uid: 20360
+ components:
+ - type: Transform
+ pos: 127.5,124.5
+ parent: 1
+ - uid: 20402
+ components:
+ - type: Transform
+ pos: 127.5,122.5
+ parent: 1
+ - uid: 20404
+ components:
+ - type: Transform
+ pos: 127.5,123.5
+ parent: 1
+ - uid: 20873
+ components:
+ - type: Transform
+ pos: 127.5,127.5
+ parent: 1
+ - uid: 20898
+ components:
+ - type: Transform
+ pos: 127.5,126.5
+ parent: 1
+ - uid: 23004
+ components:
+ - type: MetaData
+ name: containment advanced SMES
+ - type: Transform
+ pos: 97.5,144.5
+ parent: 1
+- proto: SMESBasic
+ entities:
+ - uid: 9035
+ components:
+ - type: MetaData
+ name: telecommunications SMES
+ - type: Transform
+ pos: 131.5,123.5
+ parent: 1
+ - uid: 11548
+ components:
+ - type: MetaData
+ name: southwest solars SMES
+ - type: Transform
+ pos: 29.5,70.5
+ parent: 1
+ - uid: 11716
+ components:
+ - type: MetaData
+ name: northwest solars SMES
+ - type: Transform
+ pos: 53.5,143.5
+ parent: 1
+ - uid: 12342
+ components:
+ - type: MetaData
+ name: southeast solars SMES
+ - type: Transform
+ pos: 162.5,59.5
+ parent: 1
+ - uid: 12917
+ components:
+ - type: MetaData
+ name: AI core SMES
+ - type: Transform
+ pos: 57.5,26.5
+ parent: 1
+- proto: SnowBattlemap
+ entities:
+ - uid: 3251
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.34383,54.82531
+ parent: 1
+- proto: SoapNT
+ entities:
+ - uid: 13489
+ components:
+ - type: Transform
+ pos: 35.572254,66.77442
+ parent: 1
+ - uid: 26777
+ components:
+ - type: Transform
+ pos: 98.474884,59.16723
+ parent: 1
+ - uid: 29577
+ components:
+ - type: Transform
+ pos: 159.37878,127.20219
+ parent: 1
+- proto: SodaDispenser
+ entities:
+ - uid: 26545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 32101
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+- proto: SodaDispenserEmpty
+ entities:
+ - uid: 6637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,167.5
+ parent: 1
+- proto: SolarPanel
+ entities:
+ - uid: 30888
+ components:
+ - type: Transform
+ pos: 47.5,144.5
+ parent: 1
+ - uid: 30890
+ components:
+ - type: Transform
+ pos: 47.5,145.5
+ parent: 1
+ - uid: 30891
+ components:
+ - type: Transform
+ pos: 47.5,146.5
+ parent: 1
+ - uid: 30892
+ components:
+ - type: Transform
+ pos: 47.5,147.5
+ parent: 1
+ - uid: 30893
+ components:
+ - type: Transform
+ pos: 47.5,148.5
+ parent: 1
+ - uid: 30894
+ components:
+ - type: Transform
+ pos: 47.5,149.5
+ parent: 1
+ - uid: 30895
+ components:
+ - type: Transform
+ pos: 47.5,150.5
+ parent: 1
+ - uid: 30896
+ components:
+ - type: Transform
+ pos: 47.5,151.5
+ parent: 1
+ - uid: 30897
+ components:
+ - type: Transform
+ pos: 47.5,152.5
+ parent: 1
+ - uid: 30898
+ components:
+ - type: Transform
+ pos: 47.5,153.5
+ parent: 1
+ - uid: 30899
+ components:
+ - type: Transform
+ pos: 45.5,153.5
+ parent: 1
+ - uid: 30900
+ components:
+ - type: Transform
+ pos: 45.5,152.5
+ parent: 1
+ - uid: 30901
+ components:
+ - type: Transform
+ pos: 45.5,151.5
+ parent: 1
+ - uid: 30902
+ components:
+ - type: Transform
+ pos: 45.5,150.5
+ parent: 1
+ - uid: 30903
+ components:
+ - type: Transform
+ pos: 45.5,149.5
+ parent: 1
+ - uid: 30904
+ components:
+ - type: Transform
+ pos: 45.5,148.5
+ parent: 1
+ - uid: 30905
+ components:
+ - type: Transform
+ pos: 45.5,147.5
+ parent: 1
+ - uid: 30906
+ components:
+ - type: Transform
+ pos: 45.5,145.5
+ parent: 1
+ - uid: 30907
+ components:
+ - type: Transform
+ pos: 45.5,146.5
+ parent: 1
+ - uid: 30908
+ components:
+ - type: Transform
+ pos: 45.5,144.5
+ parent: 1
+ - uid: 30909
+ components:
+ - type: Transform
+ pos: 43.5,144.5
+ parent: 1
+ - uid: 30910
+ components:
+ - type: Transform
+ pos: 43.5,145.5
+ parent: 1
+ - uid: 30911
+ components:
+ - type: Transform
+ pos: 43.5,146.5
+ parent: 1
+ - uid: 30912
+ components:
+ - type: Transform
+ pos: 43.5,147.5
+ parent: 1
+ - uid: 30913
+ components:
+ - type: Transform
+ pos: 43.5,148.5
+ parent: 1
+ - uid: 30914
+ components:
+ - type: Transform
+ pos: 43.5,149.5
+ parent: 1
+ - uid: 30915
+ components:
+ - type: Transform
+ pos: 43.5,150.5
+ parent: 1
+ - uid: 30916
+ components:
+ - type: Transform
+ pos: 43.5,151.5
+ parent: 1
+ - uid: 30917
+ components:
+ - type: Transform
+ pos: 43.5,152.5
+ parent: 1
+ - uid: 30918
+ components:
+ - type: Transform
+ pos: 43.5,153.5
+ parent: 1
+ - uid: 30919
+ components:
+ - type: Transform
+ pos: 41.5,153.5
+ parent: 1
+ - uid: 30920
+ components:
+ - type: Transform
+ pos: 41.5,152.5
+ parent: 1
+ - uid: 30921
+ components:
+ - type: Transform
+ pos: 41.5,151.5
+ parent: 1
+ - uid: 30922
+ components:
+ - type: Transform
+ pos: 41.5,150.5
+ parent: 1
+ - uid: 30923
+ components:
+ - type: Transform
+ pos: 41.5,148.5
+ parent: 1
+ - uid: 30924
+ components:
+ - type: Transform
+ pos: 41.5,147.5
+ parent: 1
+ - uid: 30925
+ components:
+ - type: Transform
+ pos: 41.5,146.5
+ parent: 1
+ - uid: 30926
+ components:
+ - type: Transform
+ pos: 41.5,145.5
+ parent: 1
+ - uid: 30927
+ components:
+ - type: Transform
+ pos: 41.5,144.5
+ parent: 1
+ - uid: 30928
+ components:
+ - type: Transform
+ pos: 41.5,149.5
+ parent: 1
+ - uid: 30929
+ components:
+ - type: Transform
+ pos: 39.5,144.5
+ parent: 1
+ - uid: 30930
+ components:
+ - type: Transform
+ pos: 39.5,145.5
+ parent: 1
+ - uid: 30931
+ components:
+ - type: Transform
+ pos: 39.5,146.5
+ parent: 1
+ - uid: 30932
+ components:
+ - type: Transform
+ pos: 39.5,147.5
+ parent: 1
+ - uid: 30933
+ components:
+ - type: Transform
+ pos: 39.5,148.5
+ parent: 1
+ - uid: 30934
+ components:
+ - type: Transform
+ pos: 39.5,150.5
+ parent: 1
+ - uid: 30935
+ components:
+ - type: Transform
+ pos: 39.5,151.5
+ parent: 1
+ - uid: 30936
+ components:
+ - type: Transform
+ pos: 39.5,152.5
+ parent: 1
+ - uid: 30937
+ components:
+ - type: Transform
+ pos: 39.5,153.5
+ parent: 1
+ - uid: 30938
+ components:
+ - type: Transform
+ pos: 39.5,149.5
+ parent: 1
+ - uid: 30940
+ components:
+ - type: Transform
+ pos: 37.5,153.5
+ parent: 1
+ - uid: 30941
+ components:
+ - type: Transform
+ pos: 37.5,152.5
+ parent: 1
+ - uid: 30942
+ components:
+ - type: Transform
+ pos: 37.5,150.5
+ parent: 1
+ - uid: 30943
+ components:
+ - type: Transform
+ pos: 37.5,149.5
+ parent: 1
+ - uid: 30944
+ components:
+ - type: Transform
+ pos: 37.5,148.5
+ parent: 1
+ - uid: 30945
+ components:
+ - type: Transform
+ pos: 37.5,147.5
+ parent: 1
+ - uid: 30946
+ components:
+ - type: Transform
+ pos: 37.5,146.5
+ parent: 1
+ - uid: 30947
+ components:
+ - type: Transform
+ pos: 37.5,145.5
+ parent: 1
+ - uid: 30948
+ components:
+ - type: Transform
+ pos: 37.5,144.5
+ parent: 1
+ - uid: 30949
+ components:
+ - type: Transform
+ pos: 37.5,151.5
+ parent: 1
+ - uid: 30950
+ components:
+ - type: Transform
+ pos: 41.5,138.5
+ parent: 1
+ - uid: 30951
+ components:
+ - type: Transform
+ pos: 41.5,137.5
+ parent: 1
+ - uid: 30952
+ components:
+ - type: Transform
+ pos: 41.5,136.5
+ parent: 1
+ - uid: 30953
+ components:
+ - type: Transform
+ pos: 41.5,135.5
+ parent: 1
+ - uid: 30954
+ components:
+ - type: Transform
+ pos: 41.5,134.5
+ parent: 1
+ - uid: 30955
+ components:
+ - type: Transform
+ pos: 41.5,133.5
+ parent: 1
+ - uid: 30956
+ components:
+ - type: Transform
+ pos: 41.5,132.5
+ parent: 1
+ - uid: 30957
+ components:
+ - type: Transform
+ pos: 41.5,130.5
+ parent: 1
+ - uid: 30958
+ components:
+ - type: Transform
+ pos: 41.5,129.5
+ parent: 1
+ - uid: 30959
+ components:
+ - type: Transform
+ pos: 41.5,131.5
+ parent: 1
+ - uid: 30970
+ components:
+ - type: Transform
+ pos: 43.5,138.5
+ parent: 1
+ - uid: 30971
+ components:
+ - type: Transform
+ pos: 43.5,137.5
+ parent: 1
+ - uid: 30972
+ components:
+ - type: Transform
+ pos: 43.5,136.5
+ parent: 1
+ - uid: 30973
+ components:
+ - type: Transform
+ pos: 43.5,135.5
+ parent: 1
+ - uid: 30974
+ components:
+ - type: Transform
+ pos: 43.5,134.5
+ parent: 1
+ - uid: 30975
+ components:
+ - type: Transform
+ pos: 43.5,132.5
+ parent: 1
+ - uid: 30976
+ components:
+ - type: Transform
+ pos: 43.5,131.5
+ parent: 1
+ - uid: 30977
+ components:
+ - type: Transform
+ pos: 43.5,130.5
+ parent: 1
+ - uid: 30978
+ components:
+ - type: Transform
+ pos: 43.5,133.5
+ parent: 1
+ - uid: 30979
+ components:
+ - type: Transform
+ pos: 43.5,129.5
+ parent: 1
+ - uid: 30980
+ components:
+ - type: Transform
+ pos: 45.5,129.5
+ parent: 1
+ - uid: 30981
+ components:
+ - type: Transform
+ pos: 45.5,130.5
+ parent: 1
+ - uid: 30982
+ components:
+ - type: Transform
+ pos: 45.5,131.5
+ parent: 1
+ - uid: 30983
+ components:
+ - type: Transform
+ pos: 45.5,132.5
+ parent: 1
+ - uid: 30984
+ components:
+ - type: Transform
+ pos: 45.5,133.5
+ parent: 1
+ - uid: 30985
+ components:
+ - type: Transform
+ pos: 45.5,134.5
+ parent: 1
+ - uid: 30986
+ components:
+ - type: Transform
+ pos: 45.5,135.5
+ parent: 1
+ - uid: 30987
+ components:
+ - type: Transform
+ pos: 45.5,136.5
+ parent: 1
+ - uid: 30988
+ components:
+ - type: Transform
+ pos: 45.5,137.5
+ parent: 1
+ - uid: 30990
+ components:
+ - type: Transform
+ pos: 45.5,138.5
+ parent: 1
+ - uid: 31000
+ components:
+ - type: Transform
+ pos: 47.5,129.5
+ parent: 1
+ - uid: 31001
+ components:
+ - type: Transform
+ pos: 47.5,130.5
+ parent: 1
+ - uid: 31002
+ components:
+ - type: Transform
+ pos: 47.5,131.5
+ parent: 1
+ - uid: 31003
+ components:
+ - type: Transform
+ pos: 47.5,132.5
+ parent: 1
+ - uid: 31004
+ components:
+ - type: Transform
+ pos: 47.5,133.5
+ parent: 1
+ - uid: 31005
+ components:
+ - type: Transform
+ pos: 47.5,137.5
+ parent: 1
+ - uid: 31006
+ components:
+ - type: Transform
+ pos: 47.5,134.5
+ parent: 1
+ - uid: 31007
+ components:
+ - type: Transform
+ pos: 47.5,136.5
+ parent: 1
+ - uid: 31008
+ components:
+ - type: Transform
+ pos: 47.5,138.5
+ parent: 1
+ - uid: 31009
+ components:
+ - type: Transform
+ pos: 47.5,135.5
+ parent: 1
+ - uid: 31010
+ components:
+ - type: Transform
+ pos: 37.5,129.5
+ parent: 1
+ - uid: 31011
+ components:
+ - type: Transform
+ pos: 37.5,130.5
+ parent: 1
+ - uid: 31012
+ components:
+ - type: Transform
+ pos: 37.5,132.5
+ parent: 1
+ - uid: 31013
+ components:
+ - type: Transform
+ pos: 37.5,133.5
+ parent: 1
+ - uid: 31014
+ components:
+ - type: Transform
+ pos: 37.5,134.5
+ parent: 1
+ - uid: 31015
+ components:
+ - type: Transform
+ pos: 37.5,135.5
+ parent: 1
+ - uid: 31016
+ components:
+ - type: Transform
+ pos: 37.5,136.5
+ parent: 1
+ - uid: 31017
+ components:
+ - type: Transform
+ pos: 37.5,137.5
+ parent: 1
+ - uid: 31018
+ components:
+ - type: Transform
+ pos: 37.5,138.5
+ parent: 1
+ - uid: 31022
+ components:
+ - type: Transform
+ pos: 37.5,131.5
+ parent: 1
+ - uid: 31030
+ components:
+ - type: Transform
+ pos: 39.5,129.5
+ parent: 1
+ - uid: 31031
+ components:
+ - type: Transform
+ pos: 39.5,130.5
+ parent: 1
+ - uid: 31032
+ components:
+ - type: Transform
+ pos: 39.5,131.5
+ parent: 1
+ - uid: 31033
+ components:
+ - type: Transform
+ pos: 39.5,132.5
+ parent: 1
+ - uid: 31034
+ components:
+ - type: Transform
+ pos: 39.5,133.5
+ parent: 1
+ - uid: 31035
+ components:
+ - type: Transform
+ pos: 39.5,134.5
+ parent: 1
+ - uid: 31036
+ components:
+ - type: Transform
+ pos: 39.5,135.5
+ parent: 1
+ - uid: 31037
+ components:
+ - type: Transform
+ pos: 39.5,136.5
+ parent: 1
+ - uid: 31038
+ components:
+ - type: Transform
+ pos: 39.5,137.5
+ parent: 1
+ - uid: 31039
+ components:
+ - type: Transform
+ pos: 39.5,138.5
+ parent: 1
+ - uid: 31280
+ components:
+ - type: Transform
+ pos: 23.5,56.5
+ parent: 1
+ - uid: 31290
+ components:
+ - type: Transform
+ pos: 23.5,58.5
+ parent: 1
+ - uid: 31291
+ components:
+ - type: Transform
+ pos: 23.5,59.5
+ parent: 1
+ - uid: 31292
+ components:
+ - type: Transform
+ pos: 23.5,60.5
+ parent: 1
+ - uid: 31293
+ components:
+ - type: Transform
+ pos: 23.5,61.5
+ parent: 1
+ - uid: 31294
+ components:
+ - type: Transform
+ pos: 23.5,62.5
+ parent: 1
+ - uid: 31295
+ components:
+ - type: Transform
+ pos: 23.5,63.5
+ parent: 1
+ - uid: 31296
+ components:
+ - type: Transform
+ pos: 23.5,57.5
+ parent: 1
+ - uid: 31297
+ components:
+ - type: Transform
+ pos: 23.5,65.5
+ parent: 1
+ - uid: 31298
+ components:
+ - type: Transform
+ pos: 23.5,64.5
+ parent: 1
+ - uid: 31299
+ components:
+ - type: Transform
+ pos: 23.5,50.5
+ parent: 1
+ - uid: 31300
+ components:
+ - type: Transform
+ pos: 25.5,65.5
+ parent: 1
+ - uid: 31301
+ components:
+ - type: Transform
+ pos: 25.5,64.5
+ parent: 1
+ - uid: 31302
+ components:
+ - type: Transform
+ pos: 25.5,63.5
+ parent: 1
+ - uid: 31303
+ components:
+ - type: Transform
+ pos: 25.5,62.5
+ parent: 1
+ - uid: 31304
+ components:
+ - type: Transform
+ pos: 25.5,61.5
+ parent: 1
+ - uid: 31305
+ components:
+ - type: Transform
+ pos: 25.5,60.5
+ parent: 1
+ - uid: 31306
+ components:
+ - type: Transform
+ pos: 25.5,59.5
+ parent: 1
+ - uid: 31307
+ components:
+ - type: Transform
+ pos: 25.5,58.5
+ parent: 1
+ - uid: 31308
+ components:
+ - type: Transform
+ pos: 25.5,57.5
+ parent: 1
+ - uid: 31309
+ components:
+ - type: Transform
+ pos: 25.5,56.5
+ parent: 1
+ - uid: 31310
+ components:
+ - type: Transform
+ pos: 23.5,49.5
+ parent: 1
+ - uid: 31311
+ components:
+ - type: Transform
+ pos: 23.5,48.5
+ parent: 1
+ - uid: 31312
+ components:
+ - type: Transform
+ pos: 23.5,47.5
+ parent: 1
+ - uid: 31313
+ components:
+ - type: Transform
+ pos: 23.5,46.5
+ parent: 1
+ - uid: 31314
+ components:
+ - type: Transform
+ pos: 23.5,45.5
+ parent: 1
+ - uid: 31315
+ components:
+ - type: Transform
+ pos: 23.5,43.5
+ parent: 1
+ - uid: 31316
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 31317
+ components:
+ - type: Transform
+ pos: 23.5,41.5
+ parent: 1
+ - uid: 31318
+ components:
+ - type: Transform
+ pos: 23.5,44.5
+ parent: 1
+ - uid: 31319
+ components:
+ - type: Transform
+ pos: 25.5,41.5
+ parent: 1
+ - uid: 31320
+ components:
+ - type: Transform
+ pos: 25.5,42.5
+ parent: 1
+ - uid: 31321
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 1
+ - uid: 31322
+ components:
+ - type: Transform
+ pos: 25.5,44.5
+ parent: 1
+ - uid: 31323
+ components:
+ - type: Transform
+ pos: 25.5,46.5
+ parent: 1
+ - uid: 31324
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 1
+ - uid: 31325
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 1
+ - uid: 31326
+ components:
+ - type: Transform
+ pos: 25.5,49.5
+ parent: 1
+ - uid: 31327
+ components:
+ - type: Transform
+ pos: 25.5,50.5
+ parent: 1
+ - uid: 31328
+ components:
+ - type: Transform
+ pos: 25.5,45.5
+ parent: 1
+ - uid: 31329
+ components:
+ - type: Transform
+ pos: 23.5,35.5
+ parent: 1
+ - uid: 31330
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 1
+ - uid: 31331
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 31332
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 31333
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1
+ - uid: 31334
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 1
+ - uid: 31335
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 1
+ - uid: 31336
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 1
+ - uid: 31337
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 1
+ - uid: 31338
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 1
+ - uid: 31339
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1
+ - uid: 31340
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 31341
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1
+ - uid: 31342
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 1
+ - uid: 31343
+ components:
+ - type: Transform
+ pos: 25.5,30.5
+ parent: 1
+ - uid: 31344
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1
+ - uid: 31345
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1
+ - uid: 31346
+ components:
+ - type: Transform
+ pos: 25.5,33.5
+ parent: 1
+ - uid: 31347
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 31348
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1
+ - uid: 31350
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1
+ - uid: 31351
+ components:
+ - type: Transform
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 31352
+ components:
+ - type: Transform
+ pos: 27.5,32.5
+ parent: 1
+ - uid: 31353
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 1
+ - uid: 31354
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 1
+ - uid: 31355
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 1
+ - uid: 31356
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 1
+ - uid: 31357
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 1
+ - uid: 31358
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 1
+ - uid: 31359
+ components:
+ - type: Transform
+ pos: 27.5,33.5
+ parent: 1
+ - uid: 31360
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 31361
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1
+ - uid: 31362
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1
+ - uid: 31363
+ components:
+ - type: Transform
+ pos: 29.5,29.5
+ parent: 1
+ - uid: 31364
+ components:
+ - type: Transform
+ pos: 29.5,30.5
+ parent: 1
+ - uid: 31365
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1
+ - uid: 31366
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1
+ - uid: 31367
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1
+ - uid: 31368
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1
+ - uid: 31369
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 1
+ - uid: 31370
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1
+ - uid: 31371
+ components:
+ - type: Transform
+ pos: 31.5,33.5
+ parent: 1
+ - uid: 31372
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1
+ - uid: 31373
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1
+ - uid: 31374
+ components:
+ - type: Transform
+ pos: 31.5,30.5
+ parent: 1
+ - uid: 31375
+ components:
+ - type: Transform
+ pos: 31.5,29.5
+ parent: 1
+ - uid: 31376
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+ - uid: 31377
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 1
+ - uid: 31378
+ components:
+ - type: Transform
+ pos: 31.5,34.5
+ parent: 1
+ - uid: 31379
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 31380
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 31381
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+ - uid: 31382
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 1
+ - uid: 31383
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1
+ - uid: 31384
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1
+ - uid: 31385
+ components:
+ - type: Transform
+ pos: 33.5,32.5
+ parent: 1
+ - uid: 31386
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 1
+ - uid: 31387
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 1
+ - uid: 31388
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1
+ - uid: 31389
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 31390
+ components:
+ - type: Transform
+ pos: 37.5,35.5
+ parent: 1
+ - uid: 31391
+ components:
+ - type: Transform
+ pos: 37.5,34.5
+ parent: 1
+ - uid: 31392
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 1
+ - uid: 31393
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1
+ - uid: 31394
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1
+ - uid: 31395
+ components:
+ - type: Transform
+ pos: 37.5,30.5
+ parent: 1
+ - uid: 31396
+ components:
+ - type: Transform
+ pos: 37.5,29.5
+ parent: 1
+ - uid: 31397
+ components:
+ - type: Transform
+ pos: 37.5,28.5
+ parent: 1
+ - uid: 31398
+ components:
+ - type: Transform
+ pos: 37.5,27.5
+ parent: 1
+ - uid: 31399
+ components:
+ - type: Transform
+ pos: 37.5,26.5
+ parent: 1
+ - uid: 31400
+ components:
+ - type: Transform
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 31401
+ components:
+ - type: Transform
+ pos: 35.5,27.5
+ parent: 1
+ - uid: 31402
+ components:
+ - type: Transform
+ pos: 35.5,28.5
+ parent: 1
+ - uid: 31403
+ components:
+ - type: Transform
+ pos: 35.5,29.5
+ parent: 1
+ - uid: 31404
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1
+ - uid: 31405
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1
+ - uid: 31406
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 1
+ - uid: 31407
+ components:
+ - type: Transform
+ pos: 35.5,34.5
+ parent: 1
+ - uid: 31408
+ components:
+ - type: Transform
+ pos: 35.5,35.5
+ parent: 1
+ - uid: 31409
+ components:
+ - type: Transform
+ pos: 35.5,33.5
+ parent: 1
+ - uid: 31548
+ components:
+ - type: Transform
+ pos: 170.5,60.5
+ parent: 1
+ - uid: 31549
+ components:
+ - type: Transform
+ pos: 168.5,45.5
+ parent: 1
+ - uid: 31550
+ components:
+ - type: Transform
+ pos: 168.5,46.5
+ parent: 1
+ - uid: 31551
+ components:
+ - type: Transform
+ pos: 168.5,47.5
+ parent: 1
+ - uid: 31552
+ components:
+ - type: Transform
+ pos: 168.5,48.5
+ parent: 1
+ - uid: 31553
+ components:
+ - type: Transform
+ pos: 168.5,49.5
+ parent: 1
+ - uid: 31554
+ components:
+ - type: Transform
+ pos: 168.5,50.5
+ parent: 1
+ - uid: 31555
+ components:
+ - type: Transform
+ pos: 168.5,51.5
+ parent: 1
+ - uid: 31556
+ components:
+ - type: Transform
+ pos: 168.5,53.5
+ parent: 1
+ - uid: 31557
+ components:
+ - type: Transform
+ pos: 168.5,54.5
+ parent: 1
+ - uid: 31558
+ components:
+ - type: Transform
+ pos: 168.5,52.5
+ parent: 1
+ - uid: 31559
+ components:
+ - type: Transform
+ pos: 170.5,54.5
+ parent: 1
+ - uid: 31560
+ components:
+ - type: Transform
+ pos: 170.5,53.5
+ parent: 1
+ - uid: 31561
+ components:
+ - type: Transform
+ pos: 170.5,52.5
+ parent: 1
+ - uid: 31562
+ components:
+ - type: Transform
+ pos: 170.5,51.5
+ parent: 1
+ - uid: 31563
+ components:
+ - type: Transform
+ pos: 170.5,50.5
+ parent: 1
+ - uid: 31564
+ components:
+ - type: Transform
+ pos: 170.5,49.5
+ parent: 1
+ - uid: 31565
+ components:
+ - type: Transform
+ pos: 170.5,48.5
+ parent: 1
+ - uid: 31566
+ components:
+ - type: Transform
+ pos: 170.5,47.5
+ parent: 1
+ - uid: 31567
+ components:
+ - type: Transform
+ pos: 170.5,45.5
+ parent: 1
+ - uid: 31568
+ components:
+ - type: Transform
+ pos: 170.5,46.5
+ parent: 1
+ - uid: 31569
+ components:
+ - type: Transform
+ pos: 174.5,54.5
+ parent: 1
+ - uid: 31570
+ components:
+ - type: Transform
+ pos: 174.5,53.5
+ parent: 1
+ - uid: 31571
+ components:
+ - type: Transform
+ pos: 174.5,52.5
+ parent: 1
+ - uid: 31572
+ components:
+ - type: Transform
+ pos: 174.5,51.5
+ parent: 1
+ - uid: 31573
+ components:
+ - type: Transform
+ pos: 174.5,50.5
+ parent: 1
+ - uid: 31574
+ components:
+ - type: Transform
+ pos: 174.5,49.5
+ parent: 1
+ - uid: 31575
+ components:
+ - type: Transform
+ pos: 174.5,48.5
+ parent: 1
+ - uid: 31576
+ components:
+ - type: Transform
+ pos: 174.5,47.5
+ parent: 1
+ - uid: 31577
+ components:
+ - type: Transform
+ pos: 174.5,46.5
+ parent: 1
+ - uid: 31578
+ components:
+ - type: Transform
+ pos: 174.5,45.5
+ parent: 1
+ - uid: 31589
+ components:
+ - type: Transform
+ pos: 172.5,53.5
+ parent: 1
+ - uid: 31590
+ components:
+ - type: Transform
+ pos: 172.5,54.5
+ parent: 1
+ - uid: 31591
+ components:
+ - type: Transform
+ pos: 172.5,51.5
+ parent: 1
+ - uid: 31592
+ components:
+ - type: Transform
+ pos: 172.5,50.5
+ parent: 1
+ - uid: 31593
+ components:
+ - type: Transform
+ pos: 172.5,52.5
+ parent: 1
+ - uid: 31594
+ components:
+ - type: Transform
+ pos: 172.5,49.5
+ parent: 1
+ - uid: 31595
+ components:
+ - type: Transform
+ pos: 172.5,48.5
+ parent: 1
+ - uid: 31596
+ components:
+ - type: Transform
+ pos: 172.5,47.5
+ parent: 1
+ - uid: 31597
+ components:
+ - type: Transform
+ pos: 172.5,46.5
+ parent: 1
+ - uid: 31598
+ components:
+ - type: Transform
+ pos: 172.5,45.5
+ parent: 1
+ - uid: 31599
+ components:
+ - type: Transform
+ pos: 176.5,45.5
+ parent: 1
+ - uid: 31600
+ components:
+ - type: Transform
+ pos: 176.5,46.5
+ parent: 1
+ - uid: 31601
+ components:
+ - type: Transform
+ pos: 176.5,47.5
+ parent: 1
+ - uid: 31602
+ components:
+ - type: Transform
+ pos: 176.5,48.5
+ parent: 1
+ - uid: 31603
+ components:
+ - type: Transform
+ pos: 176.5,49.5
+ parent: 1
+ - uid: 31604
+ components:
+ - type: Transform
+ pos: 176.5,50.5
+ parent: 1
+ - uid: 31605
+ components:
+ - type: Transform
+ pos: 176.5,51.5
+ parent: 1
+ - uid: 31606
+ components:
+ - type: Transform
+ pos: 176.5,52.5
+ parent: 1
+ - uid: 31607
+ components:
+ - type: Transform
+ pos: 176.5,53.5
+ parent: 1
+ - uid: 31608
+ components:
+ - type: Transform
+ pos: 176.5,54.5
+ parent: 1
+ - uid: 31619
+ components:
+ - type: Transform
+ pos: 178.5,47.5
+ parent: 1
+ - uid: 31620
+ components:
+ - type: Transform
+ pos: 178.5,46.5
+ parent: 1
+ - uid: 31621
+ components:
+ - type: Transform
+ pos: 178.5,50.5
+ parent: 1
+ - uid: 31622
+ components:
+ - type: Transform
+ pos: 178.5,45.5
+ parent: 1
+ - uid: 31623
+ components:
+ - type: Transform
+ pos: 178.5,48.5
+ parent: 1
+ - uid: 31624
+ components:
+ - type: Transform
+ pos: 178.5,49.5
+ parent: 1
+ - uid: 31625
+ components:
+ - type: Transform
+ pos: 178.5,52.5
+ parent: 1
+ - uid: 31626
+ components:
+ - type: Transform
+ pos: 178.5,51.5
+ parent: 1
+ - uid: 31627
+ components:
+ - type: Transform
+ pos: 178.5,53.5
+ parent: 1
+ - uid: 31628
+ components:
+ - type: Transform
+ pos: 178.5,54.5
+ parent: 1
+ - uid: 31629
+ components:
+ - type: Transform
+ pos: 178.5,60.5
+ parent: 1
+ - uid: 31630
+ components:
+ - type: Transform
+ pos: 178.5,61.5
+ parent: 1
+ - uid: 31631
+ components:
+ - type: Transform
+ pos: 178.5,62.5
+ parent: 1
+ - uid: 31632
+ components:
+ - type: Transform
+ pos: 178.5,63.5
+ parent: 1
+ - uid: 31633
+ components:
+ - type: Transform
+ pos: 178.5,64.5
+ parent: 1
+ - uid: 31634
+ components:
+ - type: Transform
+ pos: 178.5,66.5
+ parent: 1
+ - uid: 31635
+ components:
+ - type: Transform
+ pos: 178.5,67.5
+ parent: 1
+ - uid: 31636
+ components:
+ - type: Transform
+ pos: 178.5,68.5
+ parent: 1
+ - uid: 31637
+ components:
+ - type: Transform
+ pos: 178.5,69.5
+ parent: 1
+ - uid: 31642
+ components:
+ - type: Transform
+ pos: 178.5,65.5
+ parent: 1
+ - uid: 31648
+ components:
+ - type: Transform
+ pos: 176.5,60.5
+ parent: 1
+ - uid: 31650
+ components:
+ - type: Transform
+ pos: 176.5,62.5
+ parent: 1
+ - uid: 31651
+ components:
+ - type: Transform
+ pos: 176.5,63.5
+ parent: 1
+ - uid: 31652
+ components:
+ - type: Transform
+ pos: 176.5,64.5
+ parent: 1
+ - uid: 31653
+ components:
+ - type: Transform
+ pos: 176.5,65.5
+ parent: 1
+ - uid: 31654
+ components:
+ - type: Transform
+ pos: 176.5,66.5
+ parent: 1
+ - uid: 31655
+ components:
+ - type: Transform
+ pos: 176.5,61.5
+ parent: 1
+ - uid: 31656
+ components:
+ - type: Transform
+ pos: 176.5,68.5
+ parent: 1
+ - uid: 31657
+ components:
+ - type: Transform
+ pos: 176.5,67.5
+ parent: 1
+ - uid: 31658
+ components:
+ - type: Transform
+ pos: 176.5,69.5
+ parent: 1
+ - uid: 31659
+ components:
+ - type: Transform
+ pos: 174.5,69.5
+ parent: 1
+ - uid: 31660
+ components:
+ - type: Transform
+ pos: 174.5,68.5
+ parent: 1
+ - uid: 31661
+ components:
+ - type: Transform
+ pos: 174.5,67.5
+ parent: 1
+ - uid: 31662
+ components:
+ - type: Transform
+ pos: 174.5,66.5
+ parent: 1
+ - uid: 31663
+ components:
+ - type: Transform
+ pos: 174.5,65.5
+ parent: 1
+ - uid: 31664
+ components:
+ - type: Transform
+ pos: 174.5,64.5
+ parent: 1
+ - uid: 31665
+ components:
+ - type: Transform
+ pos: 174.5,63.5
+ parent: 1
+ - uid: 31666
+ components:
+ - type: Transform
+ pos: 174.5,62.5
+ parent: 1
+ - uid: 31667
+ components:
+ - type: Transform
+ pos: 174.5,61.5
+ parent: 1
+ - uid: 31668
+ components:
+ - type: Transform
+ pos: 174.5,60.5
+ parent: 1
+ - uid: 31679
+ components:
+ - type: Transform
+ pos: 172.5,69.5
+ parent: 1
+ - uid: 31680
+ components:
+ - type: Transform
+ pos: 172.5,67.5
+ parent: 1
+ - uid: 31681
+ components:
+ - type: Transform
+ pos: 172.5,66.5
+ parent: 1
+ - uid: 31682
+ components:
+ - type: Transform
+ pos: 172.5,65.5
+ parent: 1
+ - uid: 31683
+ components:
+ - type: Transform
+ pos: 172.5,68.5
+ parent: 1
+ - uid: 31684
+ components:
+ - type: Transform
+ pos: 172.5,64.5
+ parent: 1
+ - uid: 31685
+ components:
+ - type: Transform
+ pos: 172.5,63.5
+ parent: 1
+ - uid: 31686
+ components:
+ - type: Transform
+ pos: 172.5,62.5
+ parent: 1
+ - uid: 31687
+ components:
+ - type: Transform
+ pos: 172.5,61.5
+ parent: 1
+ - uid: 31688
+ components:
+ - type: Transform
+ pos: 172.5,60.5
+ parent: 1
+ - uid: 31689
+ components:
+ - type: Transform
+ pos: 170.5,61.5
+ parent: 1
+ - uid: 31690
+ components:
+ - type: Transform
+ pos: 170.5,62.5
+ parent: 1
+ - uid: 31691
+ components:
+ - type: Transform
+ pos: 170.5,63.5
+ parent: 1
+ - uid: 31692
+ components:
+ - type: Transform
+ pos: 170.5,64.5
+ parent: 1
+ - uid: 31693
+ components:
+ - type: Transform
+ pos: 170.5,65.5
+ parent: 1
+ - uid: 31694
+ components:
+ - type: Transform
+ pos: 170.5,66.5
+ parent: 1
+ - uid: 31695
+ components:
+ - type: Transform
+ pos: 170.5,67.5
+ parent: 1
+ - uid: 31696
+ components:
+ - type: Transform
+ pos: 170.5,68.5
+ parent: 1
+ - uid: 31697
+ components:
+ - type: Transform
+ pos: 170.5,69.5
+ parent: 1
+ - uid: 31707
+ components:
+ - type: Transform
+ pos: 168.5,60.5
+ parent: 1
+ - uid: 31708
+ components:
+ - type: Transform
+ pos: 168.5,61.5
+ parent: 1
+ - uid: 31709
+ components:
+ - type: Transform
+ pos: 168.5,62.5
+ parent: 1
+ - uid: 31711
+ components:
+ - type: Transform
+ pos: 168.5,63.5
+ parent: 1
+ - uid: 31712
+ components:
+ - type: Transform
+ pos: 168.5,64.5
+ parent: 1
+ - uid: 31713
+ components:
+ - type: Transform
+ pos: 168.5,66.5
+ parent: 1
+ - uid: 31714
+ components:
+ - type: Transform
+ pos: 168.5,67.5
+ parent: 1
+ - uid: 31715
+ components:
+ - type: Transform
+ pos: 168.5,68.5
+ parent: 1
+ - uid: 31716
+ components:
+ - type: Transform
+ pos: 168.5,65.5
+ parent: 1
+ - uid: 31717
+ components:
+ - type: Transform
+ pos: 168.5,69.5
+ parent: 1
+- proto: SolarTracker
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 20.5,53.5
+ parent: 1
+ - uid: 30939
+ components:
+ - type: Transform
+ pos: 34.5,141.5
+ parent: 1
+ - uid: 31710
+ components:
+ - type: Transform
+ pos: 181.5,57.5
+ parent: 1
+- proto: SpaceCash
+ entities:
+ - uid: 35779
+ components:
+ - type: Transform
+ pos: 55.463646,122.382355
+ parent: 1
+ - uid: 35780
+ components:
+ - type: Transform
+ pos: 54.514187,122.817215
+ parent: 1
+ - uid: 35781
+ components:
+ - type: Transform
+ pos: 54.398224,123.31731
+ parent: 1
+ - uid: 35782
+ components:
+ - type: Transform
+ pos: 55.30057,123.65796
+ parent: 1
+ - uid: 35783
+ components:
+ - type: Transform
+ pos: 55.521626,123.070885
+ parent: 1
+ - uid: 35784
+ components:
+ - type: Transform
+ pos: 54.354736,122.55267
+ parent: 1
+ - uid: 35786
+ components:
+ - type: Transform
+ pos: 54.622906,123.53112
+ parent: 1
+ - uid: 35787
+ components:
+ - type: Transform
+ pos: 54.249645,123.83915
+ parent: 1
+ - uid: 35788
+ components:
+ - type: Transform
+ pos: 55.717316,123.360794
+ parent: 1
+ - uid: 35789
+ components:
+ - type: Transform
+ pos: 55.800667,122.63965
+ parent: 1
+- proto: SpaceCash10
+ entities:
+ - uid: 35785
+ components:
+ - type: Transform
+ pos: 55.137497,122.73749
+ parent: 1
+- proto: SpacemenFigureSpawner
+ entities:
+ - uid: 27286
+ components:
+ - type: Transform
+ pos: 80.5,48.5
+ parent: 1
+- proto: SpaceVillainArcadeFilled
+ entities:
+ - uid: 4179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 4180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,113.5
+ parent: 1
+ - uid: 4271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,111.5
+ parent: 1
+ - uid: 4272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,113.5
+ parent: 1
+ - uid: 4381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,114.5
+ parent: 1
+ - uid: 4382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,113.5
+ parent: 1
+ - uid: 23032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,51.5
+ parent: 1
+ - uid: 26524
+ components:
+ - type: Transform
+ anchored: False
+ rot: 1.5707963267948966 rad
+ pos: 124.5,104.5
+ parent: 1
+ - type: Physics
+ bodyType: Dynamic
+- proto: SpawnMechRipley
+ entities:
+ - uid: 20831
+ components:
+ - type: Transform
+ pos: 154.5,107.5
+ parent: 1
+- proto: SpawnMobAlexander
+ entities:
+ - uid: 26876
+ components:
+ - type: Transform
+ pos: 119.5,99.5
+ parent: 1
+- proto: SpawnMobBandito
+ entities:
+ - uid: 20991
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+- proto: SpawnMobBoxingKangaroo
+ entities:
+ - uid: 26826
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+- proto: SpawnMobButterfly
+ entities:
+ - uid: 26630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,99.5
+ parent: 1
+ - uid: 26631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,100.5
+ parent: 1
+ - uid: 26632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,101.5
+ parent: 1
+ - uid: 32579
+ components:
+ - type: Transform
+ pos: 136.5,83.5
+ parent: 1
+ - uid: 34025
+ components:
+ - type: Transform
+ pos: 132.5,80.5
+ parent: 1
+ - uid: 34026
+ components:
+ - type: Transform
+ pos: 137.5,81.5
+ parent: 1
+- proto: SpawnMobCat
+ entities:
+ - uid: 23682
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+- proto: SpawnMobCleanBot
+ entities:
+ - uid: 29574
+ components:
+ - type: Transform
+ pos: 157.5,123.5
+ parent: 1
+- proto: SpawnMobCorgi
+ entities:
+ - uid: 13533
+ components:
+ - type: Transform
+ pos: 55.5,56.5
+ parent: 1
+- proto: SpawnMobCrabAtmos
+ entities:
+ - uid: 36773
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+- proto: SpawnMobFoxRenault
+ entities:
+ - uid: 13578
+ components:
+ - type: Transform
+ pos: 37.5,70.5
+ parent: 1
+- proto: SpawnMobMcGriff
+ entities:
+ - uid: 22967
+ components:
+ - type: Transform
+ pos: 131.5,69.5
+ parent: 1
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 17745
+ components:
+ - type: Transform
+ pos: 75.5,95.5
+ parent: 1
+ - uid: 17746
+ components:
+ - type: Transform
+ pos: 73.5,104.5
+ parent: 1
+- proto: SpawnMobMonkey
+ entities:
+ - uid: 10604
+ components:
+ - type: Transform
+ pos: 27.5,112.5
+ parent: 1
+- proto: SpawnMobMonkeyPunpun
+ entities:
+ - uid: 26709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,109.5
+ parent: 1
+- proto: SpawnMobMouse
+ entities:
+ - uid: 5196
+ components:
+ - type: Transform
+ pos: 159.5,114.5
+ parent: 1
+ - uid: 8699
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 12541
+ components:
+ - type: Transform
+ pos: 148.5,76.5
+ parent: 1
+ - uid: 16953
+ components:
+ - type: Transform
+ pos: 70.5,157.5
+ parent: 1
+ - uid: 18730
+ components:
+ - type: Transform
+ pos: 27.5,80.5
+ parent: 1
+ - uid: 34650
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 35017
+ components:
+ - type: Transform
+ pos: 52.5,118.5
+ parent: 1
+ - uid: 35020
+ components:
+ - type: Transform
+ pos: 23.5,107.5
+ parent: 1
+ - uid: 36648
+ components:
+ - type: Transform
+ pos: 34.5,121.5
+ parent: 1
+ - uid: 36849
+ components:
+ - type: Transform
+ pos: 69.5,18.5
+ parent: 1
+ - uid: 36867
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 36869
+ components:
+ - type: Transform
+ pos: 105.5,169.5
+ parent: 1
+ - uid: 36873
+ components:
+ - type: Transform
+ pos: 123.5,42.5
+ parent: 1
+ - uid: 36875
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+- proto: SpawnMobParrot
+ entities:
+ - uid: 16153
+ components:
+ - type: Transform
+ pos: 128.5,146.5
+ parent: 1
+- proto: SpawnMobPossumMorty
+ entities:
+ - uid: 27969
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+- proto: SpawnMobRaccoonMorticia
+ entities:
+ - uid: 19440
+ components:
+ - type: Transform
+ pos: 144.5,102.5
+ parent: 1
+- proto: SpawnMobShiva
+ entities:
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: 141.5,65.5
+ parent: 1
+- proto: SpawnMobSlothPaperwork
+ entities:
+ - uid: 27099
+ components:
+ - type: Transform
+ pos: 75.5,56.5
+ parent: 1
+- proto: SpawnMobSmile
+ entities:
+ - uid: 20467
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+- proto: SpawnPointAtmos
+ entities:
+ - uid: 15994
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15995
+ components:
+ - type: Transform
+ pos: 74.5,118.5
+ parent: 1
+ - uid: 15996
+ components:
+ - type: Transform
+ pos: 75.5,118.5
+ parent: 1
+- proto: SpawnPointBartender
+ entities:
+ - uid: 26537
+ components:
+ - type: Transform
+ pos: 107.5,103.5
+ parent: 1
+ - uid: 26538
+ components:
+ - type: Transform
+ pos: 107.5,104.5
+ parent: 1
+- proto: SpawnPointBorg
+ entities:
+ - uid: 19363
+ components:
+ - type: Transform
+ pos: 61.5,92.5
+ parent: 1
+ - uid: 19364
+ components:
+ - type: Transform
+ pos: 61.5,94.5
+ parent: 1
+ - uid: 19365
+ components:
+ - type: Transform
+ pos: 61.5,93.5
+ parent: 1
+ - uid: 20959
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 20960
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 20961
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 20962
+ components:
+ - type: Transform
+ pos: 62.5,92.5
+ parent: 1
+ - uid: 20963
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+ - uid: 20964
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+- proto: SpawnPointBotanist
+ entities:
+ - uid: 26457
+ components:
+ - type: Transform
+ pos: 100.5,91.5
+ parent: 1
+ - uid: 26464
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 26465
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+- proto: SpawnPointBoxer
+ entities:
+ - uid: 27093
+ components:
+ - type: Transform
+ pos: 101.5,82.5
+ parent: 1
+ - uid: 27094
+ components:
+ - type: Transform
+ pos: 111.5,83.5
+ parent: 1
+- proto: SpawnPointCaptain
+ entities:
+ - uid: 11542
+ components:
+ - type: Transform
+ pos: 33.5,75.5
+ parent: 1
+- proto: SpawnPointCargoTechnician
+ entities:
+ - uid: 19564
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 19567
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 19738
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 20433
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+- proto: SpawnPointChaplain
+ entities:
+ - uid: 32084
+ components:
+ - type: Transform
+ pos: 69.5,69.5
+ parent: 1
+- proto: SpawnPointChef
+ entities:
+ - uid: 20910
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - uid: 36558
+ components:
+ - type: Transform
+ pos: 116.5,101.5
+ parent: 1
+- proto: SpawnPointChemist
+ entities:
+ - uid: 5681
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - uid: 5682
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 5694
+ components:
+ - type: Transform
+ pos: 87.5,103.5
+ parent: 1
+- proto: SpawnPointChiefEngineer
+ entities:
+ - uid: 16098
+ components:
+ - type: Transform
+ pos: 131.5,145.5
+ parent: 1
+- proto: SpawnPointChiefMedicalOfficer
+ entities:
+ - uid: 17729
+ components:
+ - type: Transform
+ pos: 92.5,91.5
+ parent: 1
+- proto: SpawnPointClown
+ entities:
+ - uid: 26748
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+- proto: SpawnPointDetective
+ entities:
+ - uid: 37458
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+- proto: SpawnPointHeadOfPersonnel
+ entities:
+ - uid: 11544
+ components:
+ - type: Transform
+ pos: 56.5,51.5
+ parent: 1
+- proto: SpawnPointHeadOfSecurity
+ entities:
+ - uid: 23149
+ components:
+ - type: Transform
+ pos: 144.5,61.5
+ parent: 1
+- proto: SpawnPointJanitor
+ entities:
+ - uid: 29560
+ components:
+ - type: Transform
+ pos: 154.5,126.5
+ parent: 1
+ - uid: 29561
+ components:
+ - type: Transform
+ pos: 155.5,126.5
+ parent: 1
+ - uid: 29562
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+- proto: SpawnPointLawyer
+ entities:
+ - uid: 11867
+ components:
+ - type: Transform
+ pos: 107.5,41.5
+ parent: 1
+ - uid: 26552
+ components:
+ - type: Transform
+ pos: 105.5,41.5
+ parent: 1
+- proto: SpawnPointLibrarian
+ entities:
+ - uid: 2874
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+- proto: SpawnPointMedicalDoctor
+ entities:
+ - uid: 17713
+ components:
+ - type: Transform
+ pos: 69.5,83.5
+ parent: 1
+ - uid: 17980
+ components:
+ - type: Transform
+ pos: 69.5,82.5
+ parent: 1
+ - uid: 17981
+ components:
+ - type: Transform
+ pos: 73.5,98.5
+ parent: 1
+ - uid: 17982
+ components:
+ - type: Transform
+ pos: 74.5,98.5
+ parent: 1
+ - uid: 17983
+ components:
+ - type: Transform
+ pos: 75.5,98.5
+ parent: 1
+ - uid: 17984
+ components:
+ - type: Transform
+ pos: 76.5,98.5
+ parent: 1
+ - uid: 17985
+ components:
+ - type: Transform
+ pos: 76.5,96.5
+ parent: 1
+ - uid: 17986
+ components:
+ - type: Transform
+ pos: 75.5,96.5
+ parent: 1
+ - uid: 17987
+ components:
+ - type: Transform
+ pos: 74.5,96.5
+ parent: 1
+ - uid: 17988
+ components:
+ - type: Transform
+ pos: 73.5,96.5
+ parent: 1
+ - uid: 17989
+ components:
+ - type: Transform
+ pos: 66.5,81.5
+ parent: 1
+ - uid: 17990
+ components:
+ - type: Transform
+ pos: 66.5,82.5
+ parent: 1
+ - uid: 17991
+ components:
+ - type: Transform
+ pos: 66.5,83.5
+ parent: 1
+- proto: SpawnPointMedicalIntern
+ entities:
+ - uid: 17627
+ components:
+ - type: Transform
+ pos: 71.5,96.5
+ parent: 1
+ - uid: 17994
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17995
+ components:
+ - type: Transform
+ pos: 71.5,98.5
+ parent: 1
+ - uid: 17996
+ components:
+ - type: Transform
+ pos: 78.5,98.5
+ parent: 1
+ - uid: 17997
+ components:
+ - type: Transform
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17998
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+- proto: SpawnPointMime
+ entities:
+ - uid: 26741
+ components:
+ - type: Transform
+ pos: 100.5,59.5
+ parent: 1
+- proto: SpawnPointMusician
+ entities:
+ - uid: 27092
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+- proto: SpawnPointParamedic
+ entities:
+ - uid: 17719
+ components:
+ - type: Transform
+ pos: 77.5,103.5
+ parent: 1
+- proto: SpawnPointPassenger
+ entities:
+ - uid: 26894
+ components:
+ - type: Transform
+ pos: 104.5,74.5
+ parent: 1
+ - uid: 26895
+ components:
+ - type: Transform
+ pos: 103.5,74.5
+ parent: 1
+ - uid: 26904
+ components:
+ - type: Transform
+ pos: 105.5,74.5
+ parent: 1
+ - uid: 27031
+ components:
+ - type: Transform
+ pos: 102.5,74.5
+ parent: 1
+ - uid: 27086
+ components:
+ - type: Transform
+ pos: 109.5,74.5
+ parent: 1
+ - uid: 27089
+ components:
+ - type: Transform
+ pos: 108.5,74.5
+ parent: 1
+ - uid: 27091
+ components:
+ - type: Transform
+ pos: 110.5,74.5
+ parent: 1
+ - uid: 27169
+ components:
+ - type: Transform
+ pos: 107.5,74.5
+ parent: 1
+ - uid: 27170
+ components:
+ - type: Transform
+ pos: 106.5,74.5
+ parent: 1
+ - uid: 31834
+ components:
+ - type: Transform
+ pos: 102.5,75.5
+ parent: 1
+ - uid: 31837
+ components:
+ - type: Transform
+ pos: 103.5,75.5
+ parent: 1
+ - uid: 31840
+ components:
+ - type: Transform
+ pos: 104.5,75.5
+ parent: 1
+ - uid: 31843
+ components:
+ - type: Transform
+ pos: 105.5,75.5
+ parent: 1
+ - uid: 31846
+ components:
+ - type: Transform
+ pos: 106.5,75.5
+ parent: 1
+ - uid: 31849
+ components:
+ - type: Transform
+ pos: 107.5,75.5
+ parent: 1
+ - uid: 31852
+ components:
+ - type: Transform
+ pos: 108.5,75.5
+ parent: 1
+ - uid: 31854
+ components:
+ - type: Transform
+ pos: 109.5,75.5
+ parent: 1
+ - uid: 31858
+ components:
+ - type: Transform
+ pos: 110.5,75.5
+ parent: 1
+- proto: SpawnPointQuartermaster
+ entities:
+ - uid: 19376
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+- proto: SpawnPointReporter
+ entities:
+ - uid: 29654
+ components:
+ - type: Transform
+ pos: 145.5,127.5
+ parent: 1
+ - uid: 29655
+ components:
+ - type: Transform
+ pos: 144.5,127.5
+ parent: 1
+- proto: SpawnPointResearchAssistant
+ entities:
+ - uid: 20833
+ components:
+ - type: Transform
+ pos: 28.5,101.5
+ parent: 1
+ - uid: 20834
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20835
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20836
+ components:
+ - type: Transform
+ pos: 28.5,103.5
+ parent: 1
+- proto: SpawnPointResearchDirector
+ entities:
+ - uid: 20409
+ components:
+ - type: Transform
+ pos: 34.5,104.5
+ parent: 1
+- proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 12479
+ components:
+ - type: Transform
+ pos: 143.5,88.5
+ parent: 1
+ - uid: 19457
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 19468
+ components:
+ - type: Transform
+ pos: 143.5,87.5
+ parent: 1
+- proto: SpawnPointScientist
+ entities:
+ - uid: 20444
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+ - uid: 20454
+ components:
+ - type: Transform
+ pos: 61.5,96.5
+ parent: 1
+ - uid: 20822
+ components:
+ - type: Transform
+ pos: 27.5,104.5
+ parent: 1
+ - uid: 20823
+ components:
+ - type: Transform
+ pos: 28.5,104.5
+ parent: 1
+ - uid: 20824
+ components:
+ - type: Transform
+ pos: 25.5,104.5
+ parent: 1
+ - uid: 20825
+ components:
+ - type: Transform
+ pos: 24.5,104.5
+ parent: 1
+ - uid: 20827
+ components:
+ - type: Transform
+ pos: 62.5,96.5
+ parent: 1
+ - uid: 20837
+ components:
+ - type: Transform
+ pos: 48.5,91.5
+ parent: 1
+ - uid: 20838
+ components:
+ - type: Transform
+ pos: 48.5,88.5
+ parent: 1
+ - uid: 20839
+ components:
+ - type: Transform
+ pos: 48.5,90.5
+ parent: 1
+- proto: SpawnPointSecurityCadet
+ entities:
+ - uid: 23152
+ components:
+ - type: Transform
+ pos: 154.5,52.5
+ parent: 1
+ - uid: 23153
+ components:
+ - type: Transform
+ pos: 154.5,51.5
+ parent: 1
+ - uid: 23154
+ components:
+ - type: Transform
+ pos: 154.5,50.5
+ parent: 1
+ - uid: 23155
+ components:
+ - type: Transform
+ pos: 153.5,52.5
+ parent: 1
+ - uid: 23156
+ components:
+ - type: Transform
+ pos: 153.5,51.5
+ parent: 1
+ - uid: 23157
+ components:
+ - type: Transform
+ pos: 153.5,50.5
+ parent: 1
+- proto: SpawnPointSecurityOfficer
+ entities:
+ - uid: 23158
+ components:
+ - type: Transform
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 23159
+ components:
+ - type: Transform
+ pos: 146.5,51.5
+ parent: 1
+ - uid: 23160
+ components:
+ - type: Transform
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 23161
+ components:
+ - type: Transform
+ pos: 148.5,51.5
+ parent: 1
+ - uid: 23162
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 23164
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 23167
+ components:
+ - type: Transform
+ pos: 149.5,48.5
+ parent: 1
+ - uid: 23168
+ components:
+ - type: Transform
+ pos: 144.5,49.5
+ parent: 1
+ - uid: 23169
+ components:
+ - type: Transform
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 23653
+ components:
+ - type: Transform
+ pos: 152.5,56.5
+ parent: 1
+ - uid: 24285
+ components:
+ - type: Transform
+ pos: 153.5,56.5
+ parent: 1
+ - uid: 24409
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 26228
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+- proto: SpawnPointServiceWorker
+ entities:
+ - uid: 26520
+ components:
+ - type: Transform
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 26521
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 26522
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 27376
+ components:
+ - type: Transform
+ pos: 107.5,97.5
+ parent: 1
+ - uid: 27377
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 27378
+ components:
+ - type: Transform
+ pos: 109.5,97.5
+ parent: 1
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 16071
+ components:
+ - type: Transform
+ pos: 132.5,135.5
+ parent: 1
+ - uid: 16074
+ components:
+ - type: Transform
+ pos: 132.5,134.5
+ parent: 1
+ - uid: 16075
+ components:
+ - type: Transform
+ pos: 132.5,133.5
+ parent: 1
+ - uid: 16105
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 16106
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 16107
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 18005
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 18006
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 18007
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 18008
+ components:
+ - type: Transform
+ pos: 130.5,136.5
+ parent: 1
+ - uid: 18009
+ components:
+ - type: Transform
+ pos: 130.5,135.5
+ parent: 1
+ - uid: 18010
+ components:
+ - type: Transform
+ pos: 130.5,134.5
+ parent: 1
+ - uid: 18011
+ components:
+ - type: Transform
+ pos: 130.5,137.5
+ parent: 1
+- proto: SpawnPointTechnicalAssistant
+ entities:
+ - uid: 17999
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 18000
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 18001
+ components:
+ - type: Transform
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 18002
+ components:
+ - type: Transform
+ pos: 127.5,134.5
+ parent: 1
+ - uid: 18003
+ components:
+ - type: Transform
+ pos: 127.5,133.5
+ parent: 1
+ - uid: 18004
+ components:
+ - type: Transform
+ pos: 127.5,132.5
+ parent: 1
+- proto: SpawnPointWarden
+ entities:
+ - uid: 23172
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+- proto: Spear
+ entities:
+ - uid: 9712
+ components:
+ - type: Transform
+ pos: 96.52463,30.493198
+ parent: 1
+- proto: Spoon
+ entities:
+ - uid: 26595
+ components:
+ - type: Transform
+ pos: 104.76255,104.474
+ parent: 1
+ - uid: 27382
+ components:
+ - type: Transform
+ pos: 104.601875,104.56187
+ parent: 1
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 29586
+ components:
+ - type: Transform
+ pos: 158.16003,128.44864
+ parent: 1
+ - uid: 29587
+ components:
+ - type: Transform
+ pos: 158.25378,128.64656
+ parent: 1
+ - uid: 29588
+ components:
+ - type: Transform
+ pos: 158.43088,128.39656
+ parent: 1
+- proto: SprayBottleWater
+ entities:
+ - uid: 20817
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.241318,109.897194
+ parent: 1
+ - uid: 26636
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 119.29367,93.61881
+ parent: 1
+- proto: StairDark
+ entities:
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,87.5
+ parent: 1
+ - uid: 2491
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 2882
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 3118
+ components:
+ - type: Transform
+ pos: 84.5,47.5
+ parent: 1
+ - uid: 4162
+ components:
+ - type: Transform
+ pos: 66.5,47.5
+ parent: 1
+ - uid: 4380
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 4715
+ components:
+ - type: Transform
+ pos: 82.5,47.5
+ parent: 1
+ - uid: 13585
+ components:
+ - type: Transform
+ pos: 33.5,73.5
+ parent: 1
+ - uid: 24511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 24520
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 27318
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 27408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 27929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 28146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 28197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,93.5
+ parent: 1
+- proto: StairStageWood
+ entities:
+ - uid: 1952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,66.5
+ parent: 1
+ - uid: 24514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,66.5
+ parent: 1
+- proto: StairWhite
+ entities:
+ - uid: 32282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,41.5
+ parent: 1
+- proto: StairWood
+ entities:
+ - uid: 14069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 23696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,62.5
+ parent: 1
+ - uid: 24507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,64.5
+ parent: 1
+ - uid: 24519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 25881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,62.5
+ parent: 1
+ - uid: 33900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,64.5
+ parent: 1
+- proto: StasisBed
+ entities:
+ - uid: 17660
+ components:
+ - type: Transform
+ pos: 70.5,94.5
+ parent: 1
+ - uid: 17662
+ components:
+ - type: Transform
+ pos: 79.5,100.5
+ parent: 1
+- proto: StationAiUploadComputer
+ entities:
+ - uid: 12992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,41.5
+ parent: 1
+ - uid: 13119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,37.5
+ parent: 1
+- proto: StationAnchor
+ entities:
+ - uid: 15043
+ components:
+ - type: Transform
+ pos: 117.5,160.5
+ parent: 1
+- proto: StationEfficiencyCircuitBoard
+ entities:
+ - uid: 13268
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.621597,37.741558
+ parent: 1
+- proto: StationMap
+ entities:
+ - uid: 13629
+ components:
+ - type: Transform
+ pos: 130.5,83.5
+ parent: 1
+ - uid: 13724
+ components:
+ - type: Transform
+ pos: 41.5,56.5
+ parent: 1
+ - uid: 13725
+ components:
+ - type: Transform
+ pos: 41.5,72.5
+ parent: 1
+ - uid: 13726
+ components:
+ - type: Transform
+ pos: 54.5,61.5
+ parent: 1
+ - uid: 15940
+ components:
+ - type: Transform
+ pos: 92.5,128.5
+ parent: 1
+ - uid: 15941
+ components:
+ - type: Transform
+ pos: 92.5,152.5
+ parent: 1
+ - uid: 15942
+ components:
+ - type: Transform
+ pos: 124.5,152.5
+ parent: 1
+ - uid: 15943
+ components:
+ - type: Transform
+ pos: 124.5,130.5
+ parent: 1
+ - uid: 19594
+ components:
+ - type: Transform
+ pos: 145.5,96.5
+ parent: 1
+ - uid: 19595
+ components:
+ - type: Transform
+ pos: 136.5,97.5
+ parent: 1
+ - uid: 19596
+ components:
+ - type: Transform
+ pos: 107.5,157.5
+ parent: 1
+ - uid: 19597
+ components:
+ - type: Transform
+ pos: 84.5,99.5
+ parent: 1
+ - uid: 19598
+ components:
+ - type: Transform
+ pos: 64.5,97.5
+ parent: 1
+ - uid: 20465
+ components:
+ - type: Transform
+ pos: 41.5,86.5
+ parent: 1
+ - uid: 24615
+ components:
+ - type: Transform
+ pos: 98.5,75.5
+ parent: 1
+ - uid: 27032
+ components:
+ - type: Transform
+ pos: 102.5,91.5
+ parent: 1
+ - uid: 27034
+ components:
+ - type: Transform
+ pos: 97.5,108.5
+ parent: 1
+ - uid: 27373
+ components:
+ - type: Transform
+ pos: 91.5,70.5
+ parent: 1
+ - uid: 27374
+ components:
+ - type: Transform
+ pos: 71.5,62.5
+ parent: 1
+ - uid: 27375
+ components:
+ - type: Transform
+ pos: 69.5,66.5
+ parent: 1
+ - uid: 27715
+ components:
+ - type: Transform
+ pos: 132.5,120.5
+ parent: 1
+ - uid: 29604
+ components:
+ - type: Transform
+ pos: 154.5,122.5
+ parent: 1
+ - uid: 29605
+ components:
+ - type: Transform
+ pos: 149.5,116.5
+ parent: 1
+ - uid: 31833
+ components:
+ - type: Transform
+ pos: 114.5,69.5
+ parent: 1
+ - uid: 33310
+ components:
+ - type: Transform
+ pos: 37.5,98.5
+ parent: 1
+ - uid: 36602
+ components:
+ - type: Transform
+ pos: 59.5,115.5
+ parent: 1
+ - uid: 36647
+ components:
+ - type: Transform
+ pos: 75.5,120.5
+ parent: 1
+ - uid: 37593
+ components:
+ - type: Transform
+ pos: 106.5,53.5
+ parent: 1
+- proto: StationMapBroken
+ entities:
+ - uid: 18232
+ components:
+ - type: Transform
+ pos: 161.5,148.5
+ parent: 1
+- proto: StationMapCircuitboard
+ entities:
+ - uid: 37141
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 164.52304,149.58105
+ parent: 1
+- proto: SteelBench
+ entities:
+ - uid: 6562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,153.5
+ parent: 1
+ - uid: 6662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,152.5
+ parent: 1
+ - uid: 10320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,151.5
+ parent: 1
+- proto: Stool
+ entities:
+ - uid: 224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,75.5
+ parent: 1
+ - uid: 6146
+ components:
+ - type: Transform
+ pos: 105.5,148.5
+ parent: 1
+ - uid: 9261
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 23012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,150.5
+ parent: 1
+ - uid: 26589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,103.5
+ parent: 1
+ - uid: 27043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,70.5
+ parent: 1
+ - uid: 36530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,75.5
+ parent: 1
+- proto: StoolBar
+ entities:
+ - uid: 5398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,171.5
+ parent: 1
+ - uid: 8097
+ components:
+ - type: Transform
+ pos: 104.5,110.5
+ parent: 1
+ - uid: 8178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,145.5
+ parent: 1
+ - uid: 8207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,145.5
+ parent: 1
+ - uid: 8226
+ components:
+ - type: Transform
+ pos: 112.5,110.5
+ parent: 1
+ - uid: 10787
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 11045
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 16841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 18125
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 18898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,171.5
+ parent: 1
+ - uid: 19449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,169.5
+ parent: 1
+ - uid: 20799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,109.5
+ parent: 1
+ - uid: 20800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,109.5
+ parent: 1
+ - uid: 20801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 20808
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 20809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,108.5
+ parent: 1
+ - uid: 20814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,108.5
+ parent: 1
+ - uid: 20968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,114.5
+ parent: 1
+ - uid: 23441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,169.5
+ parent: 1
+ - uid: 29984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,145.5
+ parent: 1
+ - uid: 30401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,100.5
+ parent: 1
+ - uid: 33825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,99.5
+ parent: 1
+ - uid: 35021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,169.5
+ parent: 1
+ - uid: 35022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,168.5
+ parent: 1
+- proto: StorageCanister
+ entities:
+ - uid: 20501
+ components:
+ - type: Transform
+ pos: 49.5,102.5
+ parent: 1
+ - uid: 21605
+ components:
+ - type: Transform
+ pos: 81.5,116.5
+ parent: 1
+ - uid: 21611
+ components:
+ - type: Transform
+ pos: 81.5,118.5
+ parent: 1
+ - uid: 22272
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 35904
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 35908
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+- proto: Stunbaton
+ entities:
+ - uid: 22692
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 154.63448,58.597927
+ parent: 1
+ - uid: 22951
+ components:
+ - type: Transform
+ pos: 153.41847,69.56642
+ parent: 1
+ - uid: 23130
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 142.45264,53.33612
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 6909
+ components:
+ - type: MetaData
+ name: evac substation
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 10101
+ components:
+ - type: MetaData
+ name: medical substation
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 11714
+ components:
+ - type: MetaData
+ name: bridge substation
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 11717
+ components:
+ - type: MetaData
+ name: atmos substation
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 11934
+ components:
+ - type: MetaData
+ name: science substation
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 12149
+ components:
+ - type: MetaData
+ name: north service substation
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 12348
+ components:
+ - type: MetaData
+ name: security substation
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 12646
+ components:
+ - type: MetaData
+ name: cargo substation
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 12908
+ components:
+ - type: MetaData
+ name: AI substation
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 13919
+ components:
+ - type: MetaData
+ name: telecommunications substation
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 13960
+ components:
+ - type: MetaData
+ name: containment substation
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 15129
+ components:
+ - type: MetaData
+ name: engineering substation
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 19001
+ components:
+ - type: MetaData
+ name: south service substation
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+- proto: SuitStorageAtmos
+ entities:
+ - uid: 15952
+ components:
+ - type: Transform
+ pos: 68.5,118.5
+ parent: 1
+ - uid: 15999
+ components:
+ - type: Transform
+ pos: 68.5,119.5
+ parent: 1
+ - uid: 16000
+ components:
+ - type: Transform
+ pos: 68.5,117.5
+ parent: 1
+- proto: SuitStorageCaptain
+ entities:
+ - uid: 13603
+ components:
+ - type: Transform
+ pos: 35.5,70.5
+ parent: 1
+- proto: SuitStorageCE
+ entities:
+ - uid: 15398
+ components:
+ - type: Transform
+ pos: 125.5,146.5
+ parent: 1
+- proto: SuitStorageCMO
+ entities:
+ - uid: 17732
+ components:
+ - type: Transform
+ pos: 86.5,90.5
+ parent: 1
+- proto: SuitStorageEngi
+ entities:
+ - uid: 13963
+ components:
+ - type: Transform
+ pos: 131.5,140.5
+ parent: 1
+ - uid: 13967
+ components:
+ - type: Transform
+ pos: 132.5,140.5
+ parent: 1
+ - uid: 15103
+ components:
+ - type: Transform
+ pos: 119.5,149.5
+ parent: 1
+ - uid: 15362
+ components:
+ - type: Transform
+ pos: 130.5,140.5
+ parent: 1
+ - uid: 22273
+ components:
+ - type: Transform
+ pos: 117.5,149.5
+ parent: 1
+- proto: SuitStorageEVA
+ entities:
+ - uid: 2969
+ components:
+ - type: Transform
+ pos: 52.5,68.5
+ parent: 1
+ - uid: 23635
+ components:
+ - type: Transform
+ pos: 49.5,68.5
+ parent: 1
+ - uid: 30810
+ components:
+ - type: Transform
+ pos: 48.5,68.5
+ parent: 1
+ - uid: 34031
+ components:
+ - type: Transform
+ pos: 51.5,75.5
+ parent: 1
+ - uid: 34036
+ components:
+ - type: Transform
+ pos: 51.5,74.5
+ parent: 1
+ - uid: 34038
+ components:
+ - type: Transform
+ pos: 51.5,73.5
+ parent: 1
+ - uid: 34226
+ components:
+ - type: Transform
+ pos: 51.5,68.5
+ parent: 1
+ - uid: 34229
+ components:
+ - type: Transform
+ pos: 47.5,68.5
+ parent: 1
+ - uid: 34971
+ components:
+ - type: Transform
+ pos: 53.5,68.5
+ parent: 1
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 23046
+ components:
+ - type: Transform
+ pos: 124.5,47.5
+ parent: 1
+ - uid: 23047
+ components:
+ - type: Transform
+ pos: 124.5,48.5
+ parent: 1
+ - uid: 23048
+ components:
+ - type: Transform
+ pos: 124.5,49.5
+ parent: 1
+- proto: SuitStorageHOS
+ entities:
+ - uid: 4208
+ components:
+ - type: Transform
+ pos: 145.5,65.5
+ parent: 1
+- proto: SuitStorageRD
+ entities:
+ - uid: 5478
+ components:
+ - type: Transform
+ pos: 37.5,108.5
+ parent: 1
+- proto: SuitStorageSec
+ entities:
+ - uid: 5251
+ components:
+ - type: Transform
+ pos: 134.5,58.5
+ parent: 1
+ - uid: 8664
+ components:
+ - type: Transform
+ pos: 135.5,58.5
+ parent: 1
+ - uid: 22649
+ components:
+ - type: Transform
+ pos: 138.5,45.5
+ parent: 1
+ - uid: 22660
+ components:
+ - type: Transform
+ pos: 142.5,44.5
+ parent: 1
+ - uid: 22661
+ components:
+ - type: Transform
+ pos: 142.5,45.5
+ parent: 1
+ - uid: 22662
+ components:
+ - type: Transform
+ pos: 138.5,44.5
+ parent: 1
+ - uid: 23298
+ components:
+ - type: Transform
+ pos: 133.5,58.5
+ parent: 1
+- proto: SuitStorageWarden
+ entities:
+ - uid: 22962
+ components:
+ - type: Transform
+ pos: 130.5,69.5
+ parent: 1
+- proto: SurveillanceCameraCommand
+ entities:
+ - uid: 3521
+ components:
+ - type: Transform
+ pos: 48.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Vault
+ - uid: 4876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: HOP's office
+ - uid: 14166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,24.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core east
+ - uid: 14167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,24.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core west
+ - uid: 14169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI law board storage
+ - uid: 14170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,45.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI entrance
+ - uid: 14171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,65.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge entrance
+ - uid: 14172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge east
+ - uid: 14173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge west
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge north
+ - uid: 14175
+ components:
+ - type: Transform
+ pos: 36.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge south
+ - uid: 14177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge North B
+ - uid: 14179
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge captain's bedroom
+ - uid: 14180
+ components:
+ - type: Transform
+ pos: 58.5,54.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge head of personnel's office
+ - uid: 14181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge head of personnel's room
+ - uid: 23386
+ components:
+ - type: Transform
+ pos: 52.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: EVA
+ - uid: 32033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,134.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Secure tech vault
+ - uid: 32973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,91.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Conference room
+ - uid: 37378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,13.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core exterior 1
+ - uid: 37379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,20.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core exterior 2
+- proto: SurveillanceCameraEngineering
+ entities:
+ - uid: 2775
+ components:
+ - type: Transform
+ pos: 87.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG south
+ - uid: 2786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG north
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos south
+ - uid: 3202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,141.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG central
+ - uid: 16011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos north
+ - uid: 22863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,144.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: CE's office
+ - uid: 27045
+ components:
+ - type: Transform
+ pos: 100.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment storage
+ - uid: 31862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,152.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: PA
+ - uid: 31971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics front desk
+ - uid: 31972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,122.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics hallway west
+ - uid: 31973
+ components:
+ - type: Transform
+ pos: 82.5,116.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Canister storage
+ - uid: 31974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics hallway east
+ - uid: 31980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Emitters east
+ - uid: 31981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Emitters west
+ - uid: 31983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,149.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chambers north
+ - uid: 31984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,139.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chambers central
+ - uid: 31985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,133.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chamber south
+ - uid: 31986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment north
+ - uid: 31987
+ components:
+ - type: Transform
+ pos: 110.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment south
+ - uid: 31989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway west
+ - uid: 31990
+ components:
+ - type: Transform
+ pos: 97.5,121.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway southwest
+ - uid: 31991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,154.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway northwest
+ - uid: 31992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,156.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway north
+ - uid: 31994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway east
+ - uid: 31995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering front desk
+ - uid: 31996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment substation
+ - uid: 31997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,151.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering containment entrance
+ - uid: 31998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment airlock
+ - uid: 31999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,160.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Station anchor
+ - uid: 32000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,162.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
+ - uid: 32001
+ components:
+ - type: Transform
+ pos: 98.5,158.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gravity entrance
+ - uid: 32003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,124.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: SMES array
+ - uid: 32004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,122.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Telecommunications entrance
+ - uid: 32005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Telecommunications
+ - uid: 32007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,136.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering locker room
+ - uid: 32009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: CE's bedroom
+ - uid: 32027
+ components:
+ - type: Transform
+ pos: 144.5,130.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Tech vault
+ - uid: 32199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering front
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 6420
+ components:
+ - type: Transform
+ pos: 141.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac 1
+ - uid: 6728
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Combo cafe
+ - uid: 6855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,155.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac arm east
+ - uid: 16215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Janitor closet exterior
+ - uid: 24424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,52.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 10
+ - uid: 29706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 11
+ - uid: 30032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac 2
+ - uid: 30094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,155.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac arm west
+ - uid: 32010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,149.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac west
+ - uid: 32014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,142.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Cryosleep
+ - uid: 32015
+ components:
+ - type: Transform
+ pos: 154.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Dorms
+ - uid: 32121
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Tools
+ - uid: 32180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,140.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 01
+ - uid: 32181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 02
+ - uid: 32183
+ components:
+ - type: Transform
+ pos: 139.5,117.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 04
+ - uid: 32184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 05
+ - uid: 32185
+ components:
+ - type: Transform
+ pos: 128.5,76.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 07
+ - uid: 32186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,91.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 06
+ - uid: 32187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 08
+ - uid: 32188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,55.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 09
+ - uid: 32191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,65.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 13
+ - uid: 32192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 14
+ - uid: 32193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 12
+ - uid: 32194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,79.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 15
+ - uid: 32195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,108.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 16
+ - uid: 32196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 17
+ - uid: 32197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,114.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 18
+ - uid: 32198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,118.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 19
+ - uid: 32200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,51.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 20
+ - uid: 32201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,43.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: North arrivals
+ - uid: 32203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,33.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Arrivals east
+- proto: SurveillanceCameraMedical
+ entities:
+ - uid: 26544
+ components:
+ - type: Transform
+ pos: 76.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Central treatment
+ - uid: 27486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Cryogenics
+ - uid: 28537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Cloning lab
+ - uid: 29053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,101.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway east
+ - uid: 31940
+ components:
+ - type: Transform
+ pos: 87.5,90.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: CMO's office
+ - uid: 31941
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,101.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway west
+ - uid: 31942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,84.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: locker room
+ - uid: 31943
+ components:
+ - type: Transform
+ pos: 68.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway southwest
+ - uid: 31944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway southeast
+ - uid: 31945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Morgue
+ - uid: 31946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Surgery
+ - uid: 31947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,103.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry central
+ - uid: 31948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,108.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Surgery theater
+ - uid: 31949
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry south
+ - uid: 31950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry north
+ - uid: 31953
+ components:
+ - type: Transform
+ pos: 73.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical front desk
+ - uid: 31954
+ components:
+ - type: Transform
+ pos: 68.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical entrance west
+ - uid: 31956
+ components:
+ - type: Transform
+ pos: 80.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical entrance east
+- proto: SurveillanceCameraRouterCommand
+ entities:
+ - uid: 13651
+ components:
+ - type: Transform
+ pos: 38.5,68.5
+ parent: 1
+- proto: SurveillanceCameraRouterConstructed
+ entities:
+ - uid: 26415
+ components:
+ - type: Transform
+ pos: 50.5,26.5
+ parent: 1
+- proto: SurveillanceCameraRouterEngineering
+ entities:
+ - uid: 16097
+ components:
+ - type: Transform
+ pos: 130.5,144.5
+ parent: 1
+- proto: SurveillanceCameraRouterGeneral
+ entities:
+ - uid: 26416
+ components:
+ - type: Transform
+ pos: 50.5,22.5
+ parent: 1
+- proto: SurveillanceCameraRouterMedical
+ entities:
+ - uid: 17727
+ components:
+ - type: Transform
+ pos: 91.5,90.5
+ parent: 1
+- proto: SurveillanceCameraRouterScience
+ entities:
+ - uid: 20428
+ components:
+ - type: Transform
+ pos: 35.5,105.5
+ parent: 1
+- proto: SurveillanceCameraRouterSecurity
+ entities:
+ - uid: 22938
+ components:
+ - type: Transform
+ pos: 145.5,62.5
+ parent: 1
+- proto: SurveillanceCameraRouterService
+ entities:
+ - uid: 18592
+ components:
+ - type: Transform
+ pos: 55.5,49.5
+ parent: 1
+- proto: SurveillanceCameraRouterSupply
+ entities:
+ - uid: 19517
+ components:
+ - type: Transform
+ pos: 144.5,108.5
+ parent: 1
+- proto: SurveillanceCameraScience
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,107.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Server room
+ - uid: 6228
+ components:
+ - type: Transform
+ pos: 49.5,80.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Storage
+ - uid: 31926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: R&D
+ - uid: 31927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: science lobby
+ - uid: 31928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Science hallway north
+ - uid: 31929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: science hallway south
+ - uid: 31930
+ components:
+ - type: Transform
+ pos: 36.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: xenoarchaeology lab south
+ - uid: 31931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: xenoarchaeology lab north
+ - uid: 31932
+ components:
+ - type: Transform
+ pos: 32.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Science hallway west
+ - uid: 31934
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Canister storage
+ - uid: 31935
+ components:
+ - type: Transform
+ pos: 34.5,103.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: RD's bedroom
+ - uid: 31937
+ components:
+ - type: Transform
+ pos: 43.5,111.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Anomaly lab
+ - uid: 31938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: RD's office
+ - uid: 31952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Robotics
+- proto: SurveillanceCameraSecurity
+ entities:
+ - uid: 215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Entrance north
+ - uid: 18792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Lawyer's office
+ - uid: 18825
+ components:
+ - type: Transform
+ pos: 94.5,39.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court south
+ - uid: 18864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,41.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court hallway
+ - uid: 23322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Detective's office
+ - uid: 23542
+ components:
+ - type: Transform
+ pos: 156.5,151.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evac holding cell
+ - uid: 25393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,53.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Locker room
+ - uid: 27784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court north
+ - uid: 30793
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evac checkpoint
+ - uid: 31864
+ components:
+ - type: Transform
+ pos: 142.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Head of Security's office
+ - uid: 31865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,70.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Shooting range
+ - uid: 31872
+ components:
+ - type: Transform
+ pos: 134.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory entrance
+ - uid: 31873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory
+ - uid: 31874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's office
+ - uid: 31876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig north
+ - uid: 31877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,60.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Entrance south
+ - uid: 31878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig south
+ - uid: 31879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma transfer
+ - uid: 31880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma EVA
+ - uid: 31881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,53.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway central
+ - uid: 31882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma north
+ - uid: 31883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,47.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma south
+ - uid: 31885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway west
+ - uid: 31886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,63.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway east
+ - uid: 31889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,61.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: HOS bedroom
+ - uid: 37493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,40.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Lawyer's back office
+- proto: SurveillanceCameraService
+ entities:
+ - uid: 1850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater west
+ - uid: 3148
+ components:
+ - type: Transform
+ pos: 100.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Mime's room
+ - uid: 5893
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Musician's room
+ - uid: 24610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater east
+ - uid: 26868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,74.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Crematorium
+ - uid: 27328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater backstage
+ - uid: 29063
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater
+ - uid: 32054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,128.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Reporter's room
+ - uid: 32055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: News office
+ - uid: 32056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,128.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Janitor closet
+ - uid: 32057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Janitor garage
+ - uid: 32082
+ components:
+ - type: Transform
+ pos: 76.5,51.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Library south
+ - uid: 32083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,49.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Librarian's room
+ - uid: 32085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,69.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chaplain's bedroom
+ - uid: 32087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,76.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chaplain's office
+ - uid: 32088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,77.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chapel
+ - uid: 32089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chapel entrance
+ - uid: 32093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Clown's room
+ - uid: 32098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,83.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Boxing ring east
+ - uid: 32099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Ranch
+ - uid: 32106
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Service hall
+ - uid: 32107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Bartender's room
+ - uid: 32108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydroponics
+ - uid: 32110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Kitchen
+ - uid: 32111
+ components:
+ - type: Transform
+ pos: 116.5,90.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Freezer
+ - uid: 32112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Arcade
+ - uid: 32113
+ components:
+ - type: Transform
+ pos: 106.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Bar
+ - uid: 32114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Canteen east
+ - uid: 32117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,115.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Canteen north
+ - uid: 32118
+ components:
+ - type: Transform
+ pos: 122.5,80.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Pool
+ - uid: 36008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,61.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Library
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 5897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: QM's bedroom
+ - uid: 23363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Access hallway
+ - uid: 32059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: QM's office
+ - uid: 32060
+ components:
+ - type: Transform
+ pos: 138.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Storage room
+ - uid: 32061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo front desk
+ - uid: 32063
+ components:
+ - type: Transform
+ pos: 151.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo bay south
+ - uid: 32064
+ components:
+ - type: Transform
+ pos: 160.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo dock
+ - uid: 32066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage bay
+ - uid: 32067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Break room
+ - uid: 32068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,89.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage locker room
+ - uid: 32070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,104.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo waiting room
+ - uid: 34737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage arm
+ - uid: 35647
+ components:
+ - type: Transform
+ pos: 156.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Control room
+- proto: SurveillanceCameraWirelessRouterEntertainment
+ entities:
+ - uid: 29656
+ components:
+ - type: Transform
+ pos: 143.5,127.5
+ parent: 1
+- proto: SurveillanceWirelessCameraAnchoredEntertainment
+ entities:
+ - uid: 4389
+ components:
+ - type: Transform
+ pos: 94.5,46.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Court on camera
+ - uid: 6431
+ components:
+ - type: Transform
+ pos: 61.5,107.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Surgery TV
+ - uid: 25897
+ components:
+ - type: Transform
+ pos: 106.5,71.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Theater channel
+ - uid: 26845
+ components:
+ - type: Transform
+ pos: 106.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Boxing ring
+- proto: SurveillanceWirelessCameraMovableEntertainment
+ entities:
+ - uid: 26706
+ components:
+ - type: Transform
+ pos: 108.5,111.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Canteen cam 24/7
+ - uid: 29657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,125.5
+ parent: 1
+ - uid: 29658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,123.5
+ parent: 1
+ - uid: 29659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,124.5
+ parent: 1
+- proto: Syringe
+ entities:
+ - uid: 13649
+ components:
+ - type: Transform
+ pos: 32.573555,52.62903
+ parent: 1
+ - uid: 17686
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.53141,91.64268
+ parent: 1
+ - uid: 18056
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 86.57209,104.581154
+ parent: 1
+ - uid: 28665
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 120.49912,48.166035
+ parent: 1
+- proto: Table
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,160.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 63.5,92.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 33.5,115.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 33.5,114.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 34.5,115.5
+ parent: 1
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 34.5,113.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 34.5,112.5
+ parent: 1
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 35.5,109.5
+ parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 35.5,91.5
+ parent: 1
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 35.5,90.5
+ parent: 1
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 35.5,89.5
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,113.5
+ parent: 1
+ - uid: 560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,114.5
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 36.5,90.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,114.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,110.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 38.5,114.5
+ parent: 1
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 40.5,92.5
+ parent: 1
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 40.5,91.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 40.5,89.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 40.5,88.5
+ parent: 1
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 48.5,114.5
+ parent: 1
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 46.5,103.5
+ parent: 1
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: 62.5,61.5
+ parent: 1
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,43.5
+ parent: 1
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 2166
+ components:
+ - type: Transform
+ pos: 66.5,80.5
+ parent: 1
+ - uid: 2434
+ components:
+ - type: Transform
+ pos: 70.5,92.5
+ parent: 1
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: 70.5,91.5
+ parent: 1
+ - uid: 2603
+ components:
+ - type: Transform
+ pos: 74.5,67.5
+ parent: 1
+ - uid: 2643
+ components:
+ - type: Transform
+ pos: 75.5,67.5
+ parent: 1
+ - uid: 2702
+ components:
+ - type: Transform
+ pos: 76.5,67.5
+ parent: 1
+ - uid: 2862
+ components:
+ - type: Transform
+ pos: 79.5,92.5
+ parent: 1
+ - uid: 2863
+ components:
+ - type: Transform
+ pos: 79.5,91.5
+ parent: 1
+ - uid: 2928
+ components:
+ - type: Transform
+ pos: 80.5,84.5
+ parent: 1
+ - uid: 3218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,106.5
+ parent: 1
+ - uid: 3220
+ components:
+ - type: Transform
+ pos: 85.5,104.5
+ parent: 1
+ - uid: 3221
+ components:
+ - type: Transform
+ pos: 85.5,101.5
+ parent: 1
+ - uid: 3222
+ components:
+ - type: Transform
+ pos: 85.5,100.5
+ parent: 1
+ - uid: 3223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,106.5
+ parent: 1
+ - uid: 3249
+ components:
+ - type: Transform
+ pos: 94.5,61.5
+ parent: 1
+ - uid: 3311
+ components:
+ - type: Transform
+ pos: 86.5,104.5
+ parent: 1
+ - uid: 3433
+ components:
+ - type: Transform
+ pos: 89.5,107.5
+ parent: 1
+ - uid: 3460
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 3823
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - uid: 3867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,153.5
+ parent: 1
+ - uid: 4030
+ components:
+ - type: Transform
+ pos: 98.5,60.5
+ parent: 1
+ - uid: 4031
+ components:
+ - type: Transform
+ pos: 98.5,59.5
+ parent: 1
+ - uid: 4032
+ components:
+ - type: Transform
+ pos: 98.5,58.5
+ parent: 1
+ - uid: 4108
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 4223
+ components:
+ - type: Transform
+ pos: 102.5,159.5
+ parent: 1
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: 102.5,158.5
+ parent: 1
+ - uid: 4250
+ components:
+ - type: Transform
+ pos: 102.5,83.5
+ parent: 1
+ - uid: 4251
+ components:
+ - type: Transform
+ pos: 102.5,82.5
+ parent: 1
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: 102.5,81.5
+ parent: 1
+ - uid: 4262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 4374
+ components:
+ - type: Transform
+ pos: 86.5,33.5
+ parent: 1
+ - uid: 4674
+ components:
+ - type: Transform
+ pos: 110.5,83.5
+ parent: 1
+ - uid: 4675
+ components:
+ - type: Transform
+ pos: 110.5,82.5
+ parent: 1
+ - uid: 4676
+ components:
+ - type: Transform
+ pos: 110.5,81.5
+ parent: 1
+ - uid: 4697
+ components:
+ - type: Transform
+ pos: 53.5,44.5
+ parent: 1
+ - uid: 4698
+ components:
+ - type: Transform
+ pos: 53.5,45.5
+ parent: 1
+ - uid: 5138
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+ - uid: 5139
+ components:
+ - type: Transform
+ pos: 119.5,93.5
+ parent: 1
+ - uid: 5224
+ components:
+ - type: Transform
+ pos: 120.5,48.5
+ parent: 1
+ - uid: 5225
+ components:
+ - type: Transform
+ pos: 120.5,47.5
+ parent: 1
+ - uid: 5247
+ components:
+ - type: Transform
+ pos: 121.5,133.5
+ parent: 1
+ - uid: 5506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,102.5
+ parent: 1
+ - uid: 5674
+ components:
+ - type: Transform
+ pos: 129.5,137.5
+ parent: 1
+ - uid: 5675
+ components:
+ - type: Transform
+ pos: 129.5,136.5
+ parent: 1
+ - uid: 5676
+ components:
+ - type: Transform
+ pos: 129.5,135.5
+ parent: 1
+ - uid: 5677
+ components:
+ - type: Transform
+ pos: 129.5,134.5
+ parent: 1
+ - uid: 5876
+ components:
+ - type: Transform
+ pos: 134.5,105.5
+ parent: 1
+ - uid: 5877
+ components:
+ - type: Transform
+ pos: 134.5,104.5
+ parent: 1
+ - uid: 5878
+ components:
+ - type: Transform
+ pos: 134.5,103.5
+ parent: 1
+ - uid: 5879
+ components:
+ - type: Transform
+ pos: 134.5,102.5
+ parent: 1
+ - uid: 6038
+ components:
+ - type: Transform
+ pos: 137.5,97.5
+ parent: 1
+ - uid: 6432
+ components:
+ - type: Transform
+ pos: 75.5,112.5
+ parent: 1
+ - uid: 6443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,112.5
+ parent: 1
+ - uid: 6714
+ components:
+ - type: Transform
+ pos: 153.5,63.5
+ parent: 1
+ - uid: 6715
+ components:
+ - type: Transform
+ pos: 153.5,62.5
+ parent: 1
+ - uid: 6769
+ components:
+ - type: Transform
+ pos: 154.5,63.5
+ parent: 1
+ - uid: 6770
+ components:
+ - type: Transform
+ pos: 154.5,62.5
+ parent: 1
+ - uid: 6872
+ components:
+ - type: Transform
+ pos: 157.5,96.5
+ parent: 1
+ - uid: 6926
+ components:
+ - type: Transform
+ pos: 158.5,103.5
+ parent: 1
+ - uid: 6927
+ components:
+ - type: Transform
+ pos: 158.5,102.5
+ parent: 1
+ - uid: 6930
+ components:
+ - type: Transform
+ pos: 158.5,97.5
+ parent: 1
+ - uid: 6931
+ components:
+ - type: Transform
+ pos: 158.5,96.5
+ parent: 1
+ - uid: 7124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - uid: 8118
+ components:
+ - type: Transform
+ pos: 87.5,41.5
+ parent: 1
+ - uid: 8139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,150.5
+ parent: 1
+ - uid: 8157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 9405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,98.5
+ parent: 1
+ - uid: 9690
+ components:
+ - type: Transform
+ pos: 144.5,93.5
+ parent: 1
+ - uid: 11105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 15049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,161.5
+ parent: 1
+ - uid: 15050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,162.5
+ parent: 1
+ - uid: 16042
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - uid: 16043
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 16064
+ components:
+ - type: Transform
+ pos: 132.5,131.5
+ parent: 1
+ - uid: 16134
+ components:
+ - type: Transform
+ pos: 94.5,121.5
+ parent: 1
+ - uid: 16135
+ components:
+ - type: Transform
+ pos: 93.5,121.5
+ parent: 1
+ - uid: 16159
+ components:
+ - type: Transform
+ pos: 119.5,125.5
+ parent: 1
+ - uid: 16160
+ components:
+ - type: Transform
+ pos: 118.5,125.5
+ parent: 1
+ - uid: 16199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,154.5
+ parent: 1
+ - uid: 16208
+ components:
+ - type: Transform
+ pos: 77.5,121.5
+ parent: 1
+ - uid: 17726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,102.5
+ parent: 1
+ - uid: 17792
+ components:
+ - type: Transform
+ pos: 84.5,91.5
+ parent: 1
+ - uid: 17793
+ components:
+ - type: Transform
+ pos: 84.5,92.5
+ parent: 1
+ - uid: 18040
+ components:
+ - type: Transform
+ pos: 85.5,110.5
+ parent: 1
+ - uid: 18041
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+ - uid: 18042
+ components:
+ - type: Transform
+ pos: 87.5,110.5
+ parent: 1
+ - uid: 18141
+ components:
+ - type: Transform
+ pos: 60.5,110.5
+ parent: 1
+ - uid: 18142
+ components:
+ - type: Transform
+ pos: 61.5,110.5
+ parent: 1
+ - uid: 18143
+ components:
+ - type: Transform
+ pos: 62.5,110.5
+ parent: 1
+ - uid: 18144
+ components:
+ - type: Transform
+ pos: 63.5,110.5
+ parent: 1
+ - uid: 18899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,171.5
+ parent: 1
+ - uid: 18901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,171.5
+ parent: 1
+ - uid: 19705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 19737
+ components:
+ - type: Transform
+ pos: 52.5,107.5
+ parent: 1
+ - uid: 20408
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,88.5
+ parent: 1
+ - uid: 20435
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20446
+ components:
+ - type: Transform
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 20461
+ components:
+ - type: Transform
+ pos: 25.5,99.5
+ parent: 1
+ - uid: 20462
+ components:
+ - type: Transform
+ pos: 26.5,99.5
+ parent: 1
+ - uid: 20469
+ components:
+ - type: Transform
+ pos: 35.5,108.5
+ parent: 1
+ - uid: 20471
+ components:
+ - type: Transform
+ pos: 33.5,107.5
+ parent: 1
+ - uid: 20483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,110.5
+ parent: 1
+ - uid: 20486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,88.5
+ parent: 1
+ - uid: 20488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,84.5
+ parent: 1
+ - uid: 20489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,84.5
+ parent: 1
+ - uid: 20899
+ components:
+ - type: Transform
+ pos: 63.5,93.5
+ parent: 1
+ - uid: 20937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,86.5
+ parent: 1
+ - uid: 20950
+ components:
+ - type: Transform
+ pos: 51.5,107.5
+ parent: 1
+ - uid: 20966
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 21024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 21032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 22677
+ components:
+ - type: Transform
+ pos: 147.5,52.5
+ parent: 1
+ - uid: 22678
+ components:
+ - type: Transform
+ pos: 147.5,51.5
+ parent: 1
+ - uid: 22679
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22680
+ components:
+ - type: Transform
+ pos: 148.5,48.5
+ parent: 1
+ - uid: 22713
+ components:
+ - type: Transform
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 22714
+ components:
+ - type: Transform
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 22715
+ components:
+ - type: Transform
+ pos: 124.5,70.5
+ parent: 1
+ - uid: 22716
+ components:
+ - type: Transform
+ pos: 124.5,73.5
+ parent: 1
+ - uid: 22727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,56.5
+ parent: 1
+ - uid: 22729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,56.5
+ parent: 1
+ - uid: 22730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,51.5
+ parent: 1
+ - uid: 22731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,52.5
+ parent: 1
+ - uid: 22732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,53.5
+ parent: 1
+ - uid: 22849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,53.5
+ parent: 1
+ - uid: 22850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,52.5
+ parent: 1
+ - uid: 23014
+ components:
+ - type: Transform
+ pos: 128.5,50.5
+ parent: 1
+ - uid: 23015
+ components:
+ - type: Transform
+ pos: 128.5,49.5
+ parent: 1
+ - uid: 23016
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 23017
+ components:
+ - type: Transform
+ pos: 129.5,50.5
+ parent: 1
+ - uid: 23018
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 23044
+ components:
+ - type: Transform
+ pos: 130.5,52.5
+ parent: 1
+ - uid: 23045
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 23049
+ components:
+ - type: Transform
+ pos: 124.5,50.5
+ parent: 1
+ - uid: 23050
+ components:
+ - type: Transform
+ pos: 124.5,51.5
+ parent: 1
+ - uid: 23273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,96.5
+ parent: 1
+ - uid: 23284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,96.5
+ parent: 1
+ - uid: 23468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,161.5
+ parent: 1
+ - uid: 23592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,97.5
+ parent: 1
+ - uid: 23678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,162.5
+ parent: 1
+ - uid: 24417
+ components:
+ - type: Transform
+ pos: 46.5,102.5
+ parent: 1
+ - uid: 25234
+ components:
+ - type: Transform
+ pos: 121.5,108.5
+ parent: 1
+ - uid: 25235
+ components:
+ - type: Transform
+ pos: 122.5,108.5
+ parent: 1
+ - uid: 25810
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 25818
+ components:
+ - type: Transform
+ pos: 89.5,61.5
+ parent: 1
+ - uid: 25927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,45.5
+ parent: 1
+ - uid: 26235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,93.5
+ parent: 1
+ - uid: 26237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,91.5
+ parent: 1
+ - uid: 26238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,92.5
+ parent: 1
+ - uid: 26526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,108.5
+ parent: 1
+ - uid: 26575
+ components:
+ - type: Transform
+ pos: 113.5,96.5
+ parent: 1
+ - uid: 26576
+ components:
+ - type: Transform
+ pos: 112.5,96.5
+ parent: 1
+ - uid: 26590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,104.5
+ parent: 1
+ - uid: 26639
+ components:
+ - type: Transform
+ pos: 111.5,99.5
+ parent: 1
+ - uid: 26640
+ components:
+ - type: Transform
+ pos: 110.5,99.5
+ parent: 1
+ - uid: 26641
+ components:
+ - type: Transform
+ pos: 107.5,99.5
+ parent: 1
+ - uid: 26683
+ components:
+ - type: Transform
+ pos: 120.5,112.5
+ parent: 1
+ - uid: 26685
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+ - uid: 26727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,44.5
+ parent: 1
+ - uid: 26856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,84.5
+ parent: 1
+ - uid: 26857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,82.5
+ parent: 1
+ - uid: 26892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,82.5
+ parent: 1
+ - uid: 26905
+ components:
+ - type: Transform
+ pos: 144.5,94.5
+ parent: 1
+ - uid: 27924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,83.5
+ parent: 1
+ - uid: 27951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,82.5
+ parent: 1
+ - uid: 28284
+ components:
+ - type: Transform
+ pos: 105.5,121.5
+ parent: 1
+ - uid: 28286
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - uid: 28625
+ components:
+ - type: Transform
+ pos: 124.5,115.5
+ parent: 1
+ - uid: 28655
+ components:
+ - type: Transform
+ pos: 115.5,47.5
+ parent: 1
+ - uid: 28657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,50.5
+ parent: 1
+ - uid: 28787
+ components:
+ - type: Transform
+ pos: 93.5,48.5
+ parent: 1
+ - uid: 28837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 28959
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 29142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,41.5
+ parent: 1
+ - uid: 29143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,41.5
+ parent: 1
+ - uid: 29144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,41.5
+ parent: 1
+ - uid: 29557
+ components:
+ - type: Transform
+ pos: 157.5,128.5
+ parent: 1
+ - uid: 29566
+ components:
+ - type: Transform
+ pos: 158.5,128.5
+ parent: 1
+ - uid: 29567
+ components:
+ - type: Transform
+ pos: 159.5,128.5
+ parent: 1
+ - uid: 29568
+ components:
+ - type: Transform
+ pos: 159.5,127.5
+ parent: 1
+ - uid: 29569
+ components:
+ - type: Transform
+ pos: 159.5,126.5
+ parent: 1
+ - uid: 29844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,152.5
+ parent: 1
+ - uid: 30426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,170.5
+ parent: 1
+ - uid: 30694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,170.5
+ parent: 1
+ - uid: 30751
+ components:
+ - type: Transform
+ pos: 101.5,45.5
+ parent: 1
+ - uid: 30789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 32026
+ components:
+ - type: Transform
+ pos: 144.5,130.5
+ parent: 1
+ - uid: 32029
+ components:
+ - type: Transform
+ pos: 145.5,130.5
+ parent: 1
+ - uid: 32030
+ components:
+ - type: Transform
+ pos: 143.5,132.5
+ parent: 1
+ - uid: 32031
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 32257
+ components:
+ - type: Transform
+ pos: 65.5,82.5
+ parent: 1
+ - uid: 33282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,23.5
+ parent: 1
+ - uid: 33420
+ components:
+ - type: Transform
+ pos: 101.5,18.5
+ parent: 1
+ - uid: 33421
+ components:
+ - type: Transform
+ pos: 102.5,18.5
+ parent: 1
+ - uid: 33456
+ components:
+ - type: Transform
+ pos: 89.5,28.5
+ parent: 1
+ - uid: 33457
+ components:
+ - type: Transform
+ pos: 90.5,28.5
+ parent: 1
+ - uid: 33499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,27.5
+ parent: 1
+ - uid: 33500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,27.5
+ parent: 1
+ - uid: 33501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,27.5
+ parent: 1
+ - uid: 33613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,31.5
+ parent: 1
+ - uid: 33616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,38.5
+ parent: 1
+ - uid: 33617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,40.5
+ parent: 1
+ - uid: 33618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,39.5
+ parent: 1
+ - uid: 33619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,38.5
+ parent: 1
+ - uid: 33620
+ components:
+ - type: Transform
+ pos: 126.5,38.5
+ parent: 1
+ - uid: 33621
+ components:
+ - type: Transform
+ pos: 126.5,36.5
+ parent: 1
+ - uid: 33626
+ components:
+ - type: Transform
+ pos: 126.5,37.5
+ parent: 1
+ - uid: 33829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 33844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,34.5
+ parent: 1
+ - uid: 33965
+ components:
+ - type: Transform
+ pos: 94.5,60.5
+ parent: 1
+ - uid: 34497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,45.5
+ parent: 1
+ - uid: 34501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,45.5
+ parent: 1
+ - uid: 34502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,47.5
+ parent: 1
+ - uid: 34513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,48.5
+ parent: 1
+ - uid: 34514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,50.5
+ parent: 1
+ - uid: 34515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,51.5
+ parent: 1
+ - uid: 34525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,42.5
+ parent: 1
+ - uid: 34526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,42.5
+ parent: 1
+ - uid: 34527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,42.5
+ parent: 1
+ - uid: 35254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,160.5
+ parent: 1
+ - uid: 35255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,161.5
+ parent: 1
+ - uid: 35257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,160.5
+ parent: 1
+ - uid: 35260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,161.5
+ parent: 1
+ - uid: 35274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 35365
+ components:
+ - type: Transform
+ pos: 91.5,169.5
+ parent: 1
+ - uid: 35366
+ components:
+ - type: Transform
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 35606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,160.5
+ parent: 1
+ - uid: 35607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,159.5
+ parent: 1
+ - uid: 35808
+ components:
+ - type: Transform
+ pos: 54.5,128.5
+ parent: 1
+ - uid: 35820
+ components:
+ - type: Transform
+ pos: 54.5,129.5
+ parent: 1
+ - uid: 35840
+ components:
+ - type: Transform
+ pos: 52.5,132.5
+ parent: 1
+ - uid: 35852
+ components:
+ - type: Transform
+ pos: 51.5,132.5
+ parent: 1
+ - uid: 36088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,75.5
+ parent: 1
+ - uid: 36099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,83.5
+ parent: 1
+ - uid: 37356
+ components:
+ - type: Transform
+ pos: 142.5,95.5
+ parent: 1
+ - uid: 37579
+ components:
+ - type: Transform
+ pos: 146.5,154.5
+ parent: 1
+- proto: TableCarpet
+ entities:
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 77.5,58.5
+ parent: 1
+ - uid: 2876
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 10778
+ components:
+ - type: Transform
+ pos: 108.5,115.5
+ parent: 1
+ - uid: 10793
+ components:
+ - type: Transform
+ pos: 107.5,115.5
+ parent: 1
+ - uid: 13591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,74.5
+ parent: 1
+ - uid: 23844
+ components:
+ - type: Transform
+ pos: 109.5,115.5
+ parent: 1
+ - uid: 24393
+ components:
+ - type: Transform
+ pos: 106.5,72.5
+ parent: 1
+ - uid: 24395
+ components:
+ - type: Transform
+ pos: 107.5,72.5
+ parent: 1
+ - uid: 24397
+ components:
+ - type: Transform
+ pos: 105.5,72.5
+ parent: 1
+ - uid: 24758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 26733
+ components:
+ - type: Transform
+ pos: 107.5,66.5
+ parent: 1
+ - uid: 26734
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 26735
+ components:
+ - type: Transform
+ pos: 105.5,66.5
+ parent: 1
+ - uid: 26736
+ components:
+ - type: Transform
+ pos: 108.5,66.5
+ parent: 1
+ - uid: 26737
+ components:
+ - type: Transform
+ pos: 104.5,66.5
+ parent: 1
+ - uid: 27196
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+ - uid: 27197
+ components:
+ - type: Transform
+ pos: 76.5,59.5
+ parent: 1
+ - uid: 27198
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27199
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - uid: 27200
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27201
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 35764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,122.5
+ parent: 1
+ - uid: 35765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 35766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,122.5
+ parent: 1
+ - uid: 35767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,123.5
+ parent: 1
+- proto: TableCounterWood
+ entities:
+ - uid: 6470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,108.5
+ parent: 1
+ - uid: 6476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,107.5
+ parent: 1
+ - uid: 12136
+ components:
+ - type: Transform
+ pos: 111.5,109.5
+ parent: 1
+ - uid: 13173
+ components:
+ - type: Transform
+ pos: 112.5,107.5
+ parent: 1
+ - uid: 13201
+ components:
+ - type: Transform
+ pos: 112.5,108.5
+ parent: 1
+ - uid: 13542
+ components:
+ - type: Transform
+ pos: 111.5,110.5
+ parent: 1
+ - uid: 13547
+ components:
+ - type: Transform
+ pos: 110.5,110.5
+ parent: 1
+ - uid: 13564
+ components:
+ - type: Transform
+ pos: 104.5,109.5
+ parent: 1
+ - uid: 13693
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 13694
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 13695
+ components:
+ - type: Transform
+ pos: 105.5,109.5
+ parent: 1
+ - uid: 13701
+ components:
+ - type: Transform
+ pos: 107.5,110.5
+ parent: 1
+ - uid: 13841
+ components:
+ - type: Transform
+ pos: 106.5,110.5
+ parent: 1
+ - uid: 16359
+ components:
+ - type: Transform
+ pos: 105.5,110.5
+ parent: 1
+ - uid: 25652
+ components:
+ - type: Transform
+ pos: 112.5,109.5
+ parent: 1
+- proto: TableFancyPurple
+ entities:
+ - uid: 36283
+ components:
+ - type: Transform
+ pos: 59.5,132.5
+ parent: 1
+ - uid: 36284
+ components:
+ - type: Transform
+ pos: 59.5,133.5
+ parent: 1
+ - uid: 36285
+ components:
+ - type: Transform
+ pos: 59.5,134.5
+ parent: 1
+ - uid: 36306
+ components:
+ - type: Transform
+ pos: 56.5,132.5
+ parent: 1
+ - uid: 36307
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 36308
+ components:
+ - type: Transform
+ pos: 56.5,134.5
+ parent: 1
+ - uid: 36309
+ components:
+ - type: Transform
+ pos: 56.5,133.5
+ parent: 1
+- proto: TableFancyWhite
+ entities:
+ - uid: 7997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,43.5
+ parent: 1
+ - uid: 25391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,43.5
+ parent: 1
+- proto: TableGlass
+ entities:
+ - uid: 2682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,103.5
+ parent: 1
+ - uid: 2685
+ components:
+ - type: Transform
+ pos: 61.5,104.5
+ parent: 1
+ - uid: 13513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,61.5
+ parent: 1
+ - uid: 13514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,61.5
+ parent: 1
+ - uid: 17957
+ components:
+ - type: Transform
+ pos: 60.5,104.5
+ parent: 1
+ - uid: 17958
+ components:
+ - type: Transform
+ pos: 62.5,104.5
+ parent: 1
+ - uid: 22645
+ components:
+ - type: Transform
+ pos: 155.5,57.5
+ parent: 1
+ - uid: 22646
+ components:
+ - type: Transform
+ pos: 155.5,58.5
+ parent: 1
+ - uid: 22647
+ components:
+ - type: Transform
+ pos: 154.5,58.5
+ parent: 1
+ - uid: 24425
+ components:
+ - type: Transform
+ pos: 153.5,58.5
+ parent: 1
+ - uid: 26825
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,92.5
+ parent: 1
+ - uid: 492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,92.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,46.5
+ parent: 1
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 40.5,59.5
+ parent: 1
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 1796
+ components:
+ - type: Transform
+ pos: 32.5,53.5
+ parent: 1
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 2014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 2791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,97.5
+ parent: 1
+ - uid: 2792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 2865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,94.5
+ parent: 1
+ - uid: 2926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,94.5
+ parent: 1
+ - uid: 2930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,100.5
+ parent: 1
+ - uid: 2964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 2967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,104.5
+ parent: 1
+ - uid: 2990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 3160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 3161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,100.5
+ parent: 1
+ - uid: 3162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,102.5
+ parent: 1
+ - uid: 3163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,97.5
+ parent: 1
+ - uid: 3164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 3872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,91.5
+ parent: 1
+ - uid: 3884
+ components:
+ - type: Transform
+ pos: 33.5,64.5
+ parent: 1
+ - uid: 3951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,92.5
+ parent: 1
+ - uid: 5310
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 5311
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - uid: 5317
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - uid: 5318
+ components:
+ - type: Transform
+ pos: 117.5,52.5
+ parent: 1
+ - uid: 5333
+ components:
+ - type: Transform
+ pos: 36.5,48.5
+ parent: 1
+ - uid: 5334
+ components:
+ - type: Transform
+ pos: 32.5,52.5
+ parent: 1
+ - uid: 5697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 5698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 5699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,71.5
+ parent: 1
+ - uid: 5700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,72.5
+ parent: 1
+ - uid: 5701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,73.5
+ parent: 1
+ - uid: 5702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,74.5
+ parent: 1
+ - uid: 5763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 5788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 5790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 5827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,69.5
+ parent: 1
+ - uid: 5839
+ components:
+ - type: Transform
+ pos: 40.5,55.5
+ parent: 1
+ - uid: 5858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,66.5
+ parent: 1
+ - uid: 5859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,69.5
+ parent: 1
+ - uid: 5860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,66.5
+ parent: 1
+ - uid: 5861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,69.5
+ parent: 1
+ - uid: 6141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,75.5
+ parent: 1
+ - uid: 6253
+ components:
+ - type: Transform
+ pos: 40.5,57.5
+ parent: 1
+ - uid: 6271
+ components:
+ - type: Transform
+ pos: 137.5,102.5
+ parent: 1
+ - uid: 6297
+ components:
+ - type: Transform
+ pos: 137.5,103.5
+ parent: 1
+ - uid: 8306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,115.5
+ parent: 1
+ - uid: 8311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 8556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,73.5
+ parent: 1
+ - uid: 9640
+ components:
+ - type: Transform
+ pos: 40.5,58.5
+ parent: 1
+ - uid: 9656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,51.5
+ parent: 1
+ - uid: 9737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,73.5
+ parent: 1
+ - uid: 10224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,74.5
+ parent: 1
+ - uid: 10230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,76.5
+ parent: 1
+ - uid: 13156
+ components:
+ - type: Transform
+ pos: 47.5,35.5
+ parent: 1
+ - uid: 13158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,37.5
+ parent: 1
+ - uid: 13159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - uid: 13160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,39.5
+ parent: 1
+ - uid: 13205
+ components:
+ - type: Transform
+ pos: 50.5,27.5
+ parent: 1
+ - uid: 13208
+ components:
+ - type: Transform
+ pos: 50.5,21.5
+ parent: 1
+ - uid: 13209
+ components:
+ - type: Transform
+ pos: 54.5,23.5
+ parent: 1
+ - uid: 13210
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13213
+ components:
+ - type: Transform
+ pos: 54.5,26.5
+ parent: 1
+ - uid: 13214
+ components:
+ - type: Transform
+ pos: 54.5,25.5
+ parent: 1
+ - uid: 13271
+ components:
+ - type: Transform
+ pos: 40.5,54.5
+ parent: 1
+ - uid: 13272
+ components:
+ - type: Transform
+ pos: 40.5,53.5
+ parent: 1
+ - uid: 13464
+ components:
+ - type: Transform
+ pos: 61.5,60.5
+ parent: 1
+ - uid: 14510
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 15399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,144.5
+ parent: 1
+ - uid: 15400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 15401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 16978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 17701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,92.5
+ parent: 1
+ - uid: 17702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,93.5
+ parent: 1
+ - uid: 17704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,95.5
+ parent: 1
+ - uid: 17705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,96.5
+ parent: 1
+ - uid: 19173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,88.5
+ parent: 1
+ - uid: 19309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,103.5
+ parent: 1
+ - uid: 19310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19360
+ components:
+ - type: Transform
+ pos: 46.5,93.5
+ parent: 1
+ - uid: 20948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 20978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,97.5
+ parent: 1
+ - uid: 22659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,48.5
+ parent: 1
+ - uid: 22763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,63.5
+ parent: 1
+ - uid: 22764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,66.5
+ parent: 1
+ - uid: 22779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,62.5
+ parent: 1
+ - uid: 22783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,65.5
+ parent: 1
+ - uid: 22807
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 22808
+ components:
+ - type: Transform
+ pos: 132.5,70.5
+ parent: 1
+ - uid: 22809
+ components:
+ - type: Transform
+ pos: 132.5,72.5
+ parent: 1
+ - uid: 22964
+ components:
+ - type: Transform
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 22986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,50.5
+ parent: 1
+ - uid: 22987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,49.5
+ parent: 1
+ - uid: 22988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,48.5
+ parent: 1
+ - uid: 22991
+ components:
+ - type: Transform
+ pos: 49.5,48.5
+ parent: 1
+ - uid: 23120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,66.5
+ parent: 1
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: 115.5,100.5
+ parent: 1
+ - uid: 23221
+ components:
+ - type: Transform
+ pos: 118.5,104.5
+ parent: 1
+ - uid: 23260
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 23325
+ components:
+ - type: Transform
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 23332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,89.5
+ parent: 1
+ - uid: 23358
+ components:
+ - type: Transform
+ pos: 122.5,103.5
+ parent: 1
+ - uid: 23374
+ components:
+ - type: Transform
+ pos: 53.5,73.5
+ parent: 1
+ - uid: 23636
+ components:
+ - type: Transform
+ pos: 53.5,74.5
+ parent: 1
+ - uid: 23652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 23754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 23782
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 23785
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 23787
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 25173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,50.5
+ parent: 1
+ - uid: 25174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 25260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 25514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 26455
+ components:
+ - type: Transform
+ pos: 122.5,104.5
+ parent: 1
+ - uid: 26843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,71.5
+ parent: 1
+ - uid: 26844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,71.5
+ parent: 1
+ - uid: 26847
+ components:
+ - type: Transform
+ pos: 53.5,75.5
+ parent: 1
+ - uid: 26871
+ components:
+ - type: Transform
+ pos: 46.5,65.5
+ parent: 1
+ - uid: 26885
+ components:
+ - type: Transform
+ pos: 46.5,66.5
+ parent: 1
+ - uid: 26886
+ components:
+ - type: Transform
+ pos: 47.5,66.5
+ parent: 1
+ - uid: 26887
+ components:
+ - type: Transform
+ pos: 46.5,64.5
+ parent: 1
+ - uid: 27317
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+ - uid: 27504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,112.5
+ parent: 1
+ - uid: 27505
+ components:
+ - type: Transform
+ pos: 95.5,112.5
+ parent: 1
+ - uid: 29149
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 29863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,90.5
+ parent: 1
+ - uid: 30220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,98.5
+ parent: 1
+ - uid: 30316
+ components:
+ - type: Transform
+ pos: 120.5,98.5
+ parent: 1
+ - uid: 30444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,113.5
+ parent: 1
+ - uid: 30524
+ components:
+ - type: Transform
+ pos: 120.5,99.5
+ parent: 1
+ - uid: 30633
+ components:
+ - type: Transform
+ pos: 121.5,98.5
+ parent: 1
+ - uid: 32410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,90.5
+ parent: 1
+ - uid: 32930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,90.5
+ parent: 1
+ - uid: 32971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,93.5
+ parent: 1
+ - uid: 33710
+ components:
+ - type: Transform
+ pos: 117.5,102.5
+ parent: 1
+ - uid: 33818
+ components:
+ - type: Transform
+ pos: 118.5,102.5
+ parent: 1
+ - uid: 33819
+ components:
+ - type: Transform
+ pos: 117.5,101.5
+ parent: 1
+ - uid: 33820
+ components:
+ - type: Transform
+ pos: 119.5,104.5
+ parent: 1
+ - uid: 33823
+ components:
+ - type: Transform
+ pos: 121.5,99.5
+ parent: 1
+ - uid: 33824
+ components:
+ - type: Transform
+ pos: 118.5,101.5
+ parent: 1
+ - uid: 33882
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 33970
+ components:
+ - type: Transform
+ pos: 46.5,73.5
+ parent: 1
+ - uid: 34012
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,107.5
+ parent: 1
+ - uid: 34013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,108.5
+ parent: 1
+ - uid: 34014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - uid: 34128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,97.5
+ parent: 1
+ - uid: 34581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,92.5
+ parent: 1
+ - uid: 35209
+ components:
+ - type: Transform
+ pos: 47.5,73.5
+ parent: 1
+ - uid: 35548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,99.5
+ parent: 1
+ - uid: 35569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 36025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,98.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,161.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,41.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 57.5,49.5
+ parent: 1
+ - uid: 767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,42.5
+ parent: 1
+ - uid: 951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,42.5
+ parent: 1
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 70.5,57.5
+ parent: 1
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: 70.5,54.5
+ parent: 1
+ - uid: 1738
+ components:
+ - type: Transform
+ pos: 70.5,55.5
+ parent: 1
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: 70.5,53.5
+ parent: 1
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,59.5
+ parent: 1
+ - uid: 1907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,59.5
+ parent: 1
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,59.5
+ parent: 1
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 70.5,59.5
+ parent: 1
+ - uid: 2490
+ components:
+ - type: Transform
+ pos: 70.5,58.5
+ parent: 1
+ - uid: 2756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,54.5
+ parent: 1
+ - uid: 3173
+ components:
+ - type: Transform
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 3225
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+ - uid: 3596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 3835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 4098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 4221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,41.5
+ parent: 1
+ - uid: 4801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,169.5
+ parent: 1
+ - uid: 4874
+ components:
+ - type: Transform
+ pos: 104.5,41.5
+ parent: 1
+ - uid: 5347
+ components:
+ - type: Transform
+ pos: 40.5,106.5
+ parent: 1
+ - uid: 5358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,153.5
+ parent: 1
+ - uid: 5359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,153.5
+ parent: 1
+ - uid: 5394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,153.5
+ parent: 1
+ - uid: 5395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,153.5
+ parent: 1
+ - uid: 5764
+ components:
+ - type: Transform
+ pos: 142.5,67.5
+ parent: 1
+ - uid: 5789
+ components:
+ - type: Transform
+ pos: 141.5,67.5
+ parent: 1
+ - uid: 5817
+ components:
+ - type: Transform
+ pos: 144.5,67.5
+ parent: 1
+ - uid: 5818
+ components:
+ - type: Transform
+ pos: 145.5,67.5
+ parent: 1
+ - uid: 6340
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 6568
+ components:
+ - type: Transform
+ pos: 137.5,145.5
+ parent: 1
+ - uid: 6569
+ components:
+ - type: Transform
+ pos: 142.5,145.5
+ parent: 1
+ - uid: 7574
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - uid: 7575
+ components:
+ - type: Transform
+ pos: 80.5,58.5
+ parent: 1
+ - uid: 8227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,73.5
+ parent: 1
+ - uid: 8229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,73.5
+ parent: 1
+ - uid: 8230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 8231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,75.5
+ parent: 1
+ - uid: 8232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 8326
+ components:
+ - type: Transform
+ pos: 78.5,54.5
+ parent: 1
+ - uid: 8369
+ components:
+ - type: Transform
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 8475
+ components:
+ - type: Transform
+ pos: 76.5,54.5
+ parent: 1
+ - uid: 8908
+ components:
+ - type: Transform
+ pos: 79.5,47.5
+ parent: 1
+ - uid: 8920
+ components:
+ - type: Transform
+ pos: 80.5,47.5
+ parent: 1
+ - uid: 8924
+ components:
+ - type: Transform
+ pos: 80.5,48.5
+ parent: 1
+ - uid: 8928
+ components:
+ - type: Transform
+ pos: 80.5,49.5
+ parent: 1
+ - uid: 9581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,72.5
+ parent: 1
+ - uid: 9636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,76.5
+ parent: 1
+ - uid: 9957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,72.5
+ parent: 1
+ - uid: 9958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,73.5
+ parent: 1
+ - uid: 9959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,75.5
+ parent: 1
+ - uid: 10770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,76.5
+ parent: 1
+ - uid: 11207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,115.5
+ parent: 1
+ - uid: 12126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,114.5
+ parent: 1
+ - uid: 12128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 12129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,112.5
+ parent: 1
+ - uid: 12131
+ components:
+ - type: Transform
+ pos: 110.5,106.5
+ parent: 1
+ - uid: 12132
+ components:
+ - type: Transform
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 12133
+ components:
+ - type: Transform
+ pos: 106.5,106.5
+ parent: 1
+ - uid: 12134
+ components:
+ - type: Transform
+ pos: 108.5,64.5
+ parent: 1
+ - uid: 12137
+ components:
+ - type: Transform
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 12144
+ components:
+ - type: Transform
+ pos: 105.5,64.5
+ parent: 1
+ - uid: 13172
+ components:
+ - type: Transform
+ pos: 105.5,56.5
+ parent: 1
+ - uid: 13179
+ components:
+ - type: Transform
+ pos: 106.5,56.5
+ parent: 1
+ - uid: 13223
+ components:
+ - type: Transform
+ pos: 107.5,64.5
+ parent: 1
+ - uid: 13253
+ components:
+ - type: Transform
+ pos: 107.5,56.5
+ parent: 1
+ - uid: 13487
+ components:
+ - type: Transform
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 13540
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 13612
+ components:
+ - type: Transform
+ pos: 34.5,70.5
+ parent: 1
+ - uid: 13652
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+ - uid: 13670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,56.5
+ parent: 1
+ - uid: 13671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,57.5
+ parent: 1
+ - uid: 13672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,57.5
+ parent: 1
+ - uid: 13673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,57.5
+ parent: 1
+ - uid: 13704
+ components:
+ - type: Transform
+ pos: 55.5,52.5
+ parent: 1
+ - uid: 13705
+ components:
+ - type: Transform
+ pos: 56.5,52.5
+ parent: 1
+ - uid: 15075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,170.5
+ parent: 1
+ - uid: 16865
+ components:
+ - type: Transform
+ pos: 110.5,57.5
+ parent: 1
+ - uid: 16868
+ components:
+ - type: Transform
+ pos: 110.5,59.5
+ parent: 1
+ - uid: 16871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,114.5
+ parent: 1
+ - uid: 16872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,115.5
+ parent: 1
+ - uid: 17731
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,112.5
+ parent: 1
+ - uid: 18097
+ components:
+ - type: Transform
+ pos: 93.5,91.5
+ parent: 1
+ - uid: 18686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,124.5
+ parent: 1
+ - uid: 19171
+ components:
+ - type: Transform
+ pos: 114.5,167.5
+ parent: 1
+ - uid: 19380
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19381
+ components:
+ - type: Transform
+ pos: 142.5,104.5
+ parent: 1
+ - uid: 19382
+ components:
+ - type: Transform
+ pos: 143.5,110.5
+ parent: 1
+ - uid: 20627
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 20880
+ components:
+ - type: Transform
+ pos: 33.5,104.5
+ parent: 1
+ - uid: 21071
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 22937
+ components:
+ - type: Transform
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 23784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,43.5
+ parent: 1
+ - uid: 24187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,73.5
+ parent: 1
+ - uid: 24290
+ components:
+ - type: Transform
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 25490
+ components:
+ - type: Transform
+ pos: 98.5,54.5
+ parent: 1
+ - uid: 25511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,43.5
+ parent: 1
+ - uid: 25547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,42.5
+ parent: 1
+ - uid: 26240
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 26241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,104.5
+ parent: 1
+ - uid: 26243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,103.5
+ parent: 1
+ - uid: 26480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,104.5
+ parent: 1
+ - uid: 26549
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 26550
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+ - uid: 26691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,96.5
+ parent: 1
+ - uid: 26696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,96.5
+ parent: 1
+ - uid: 26708
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+ - uid: 26760
+ components:
+ - type: Transform
+ pos: 110.5,58.5
+ parent: 1
+ - uid: 26763
+ components:
+ - type: Transform
+ pos: 111.5,57.5
+ parent: 1
+ - uid: 26803
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 26935
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 1
+ - uid: 26985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,74.5
+ parent: 1
+ - uid: 26986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,75.5
+ parent: 1
+ - uid: 27175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,49.5
+ parent: 1
+ - uid: 27224
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 27595
+ components:
+ - type: Transform
+ pos: 71.5,61.5
+ parent: 1
+ - uid: 29800
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29801
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 29803
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 29804
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29805
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 30038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,142.5
+ parent: 1
+ - uid: 30123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,142.5
+ parent: 1
+ - uid: 30439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,125.5
+ parent: 1
+ - uid: 34171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,124.5
+ parent: 1
+ - uid: 34559
+ components:
+ - type: Transform
+ pos: 158.5,75.5
+ parent: 1
+ - uid: 34560
+ components:
+ - type: Transform
+ pos: 161.5,74.5
+ parent: 1
+ - uid: 34561
+ components:
+ - type: Transform
+ pos: 158.5,68.5
+ parent: 1
+ - uid: 34570
+ components:
+ - type: Transform
+ pos: 159.5,76.5
+ parent: 1
+ - uid: 34722
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+ - uid: 34724
+ components:
+ - type: Transform
+ pos: 110.5,168.5
+ parent: 1
+ - uid: 35141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,169.5
+ parent: 1
+ - uid: 35142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,170.5
+ parent: 1
+ - uid: 35159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,123.5
+ parent: 1
+ - uid: 35162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,171.5
+ parent: 1
+ - uid: 35190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,170.5
+ parent: 1
+ - uid: 35216
+ components:
+ - type: Transform
+ pos: 80.5,53.5
+ parent: 1
+ - uid: 35415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,42.5
+ parent: 1
+ - uid: 35418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,42.5
+ parent: 1
+ - uid: 35583
+ components:
+ - type: Transform
+ pos: 80.5,52.5
+ parent: 1
+ - uid: 35592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,163.5
+ parent: 1
+ - uid: 35595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,162.5
+ parent: 1
+ - uid: 35597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,161.5
+ parent: 1
+ - uid: 35600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,160.5
+ parent: 1
+ - uid: 35602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,163.5
+ parent: 1
+ - uid: 35603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,164.5
+ parent: 1
+ - uid: 35623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,163.5
+ parent: 1
+ - uid: 36020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,42.5
+ parent: 1
+ - uid: 36559
+ components:
+ - type: Transform
+ pos: 113.5,167.5
+ parent: 1
+ - uid: 37154
+ components:
+ - type: Transform
+ pos: 167.5,134.5
+ parent: 1
+ - uid: 37155
+ components:
+ - type: Transform
+ pos: 168.5,135.5
+ parent: 1
+ - uid: 37156
+ components:
+ - type: Transform
+ pos: 167.5,135.5
+ parent: 1
+ - uid: 37449
+ components:
+ - type: Transform
+ pos: 86.5,55.5
+ parent: 1
+ - uid: 37450
+ components:
+ - type: Transform
+ pos: 86.5,54.5
+ parent: 1
+ - uid: 37453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,57.5
+ parent: 1
+ - uid: 37454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,57.5
+ parent: 1
+ - uid: 37491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,47.5
+ parent: 1
+ - uid: 37492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,48.5
+ parent: 1
+ - uid: 37495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,44.5
+ parent: 1
+ - uid: 37496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,44.5
+ parent: 1
+- proto: TargetClown
+ entities:
+ - uid: 22696
+ components:
+ - type: Transform
+ pos: 152.5,73.5
+ parent: 1
+ - uid: 26750
+ components:
+ - type: Transform
+ pos: 104.5,59.5
+ parent: 1
+- proto: TargetSyndicate
+ entities:
+ - uid: 7476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,74.5
+ parent: 1
+- proto: TegCenter
+ entities:
+ - uid: 36737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,139.5
+ parent: 1
+- proto: TegCirculator
+ entities:
+ - uid: 12139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,139.5
+ parent: 1
+ - type: PointLight
+ color: '#FF3300FF'
+ - uid: 16630
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - type: PointLight
+ color: '#FF3300FF'
+- proto: TelecomServerCircuitboard
+ entities:
+ - uid: 16304
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 131.52982,122.57115
+ parent: 1
+- proto: TelecomServerFilledCargo
+ entities:
+ - uid: 36393
+ components:
+ - type: Transform
+ pos: 136.5,128.5
+ parent: 1
+- proto: TelecomServerFilledCommand
+ entities:
+ - uid: 2552
+ components:
+ - type: Transform
+ pos: 135.5,121.5
+ parent: 1
+- proto: TelecomServerFilledCommon
+ entities:
+ - uid: 36362
+ components:
+ - type: Transform
+ pos: 132.5,128.5
+ parent: 1
+- proto: TelecomServerFilledEngineering
+ entities:
+ - uid: 36392
+ components:
+ - type: Transform
+ pos: 136.5,126.5
+ parent: 1
+- proto: TelecomServerFilledMedical
+ entities:
+ - uid: 36344
+ components:
+ - type: Transform
+ pos: 132.5,126.5
+ parent: 1
+- proto: TelecomServerFilledScience
+ entities:
+ - uid: 36363
+ components:
+ - type: Transform
+ pos: 134.5,128.5
+ parent: 1
+- proto: TelecomServerFilledSecurity
+ entities:
+ - uid: 15361
+ components:
+ - type: Transform
+ pos: 135.5,123.5
+ parent: 1
+- proto: TelecomServerFilledService
+ entities:
+ - uid: 36364
+ components:
+ - type: Transform
+ pos: 134.5,126.5
+ parent: 1
+- proto: TeslaCoil
+ entities:
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: 106.5,144.5
+ parent: 1
+ - uid: 3099
+ components:
+ - type: Transform
+ pos: 110.5,144.5
+ parent: 1
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: 101.5,139.5
+ parent: 1
+ - uid: 14267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,150.5
+ parent: 1
+ - uid: 15368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,149.5
+ parent: 1
+ - uid: 23877
+ components:
+ - type: Transform
+ pos: 115.5,135.5
+ parent: 1
+ - uid: 25245
+ components:
+ - type: Transform
+ pos: 115.5,139.5
+ parent: 1
+ - uid: 25246
+ components:
+ - type: Transform
+ pos: 106.5,130.5
+ parent: 1
+ - uid: 25247
+ components:
+ - type: Transform
+ pos: 110.5,130.5
+ parent: 1
+ - uid: 26729
+ components:
+ - type: Transform
+ pos: 97.5,150.5
+ parent: 1
+ - uid: 34032
+ components:
+ - type: Transform
+ pos: 101.5,135.5
+ parent: 1
+- proto: TeslaGenerator
+ entities:
+ - uid: 24345
+ components:
+ - type: Transform
+ pos: 97.5,152.5
+ parent: 1
+- proto: TeslaGroundingRod
+ entities:
+ - uid: 2518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,147.5
+ parent: 1
+ - uid: 14268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,147.5
+ parent: 1
+ - uid: 15360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,148.5
+ parent: 1
+ - uid: 23852
+ components:
+ - type: Transform
+ pos: 104.5,130.5
+ parent: 1
+ - uid: 25248
+ components:
+ - type: Transform
+ pos: 104.5,144.5
+ parent: 1
+ - uid: 25249
+ components:
+ - type: Transform
+ pos: 112.5,144.5
+ parent: 1
+ - uid: 25250
+ components:
+ - type: Transform
+ pos: 112.5,130.5
+ parent: 1
+- proto: TimpaniInstrument
+ entities:
+ - uid: 26782
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+- proto: TintedWindow
+ entities:
+ - uid: 4826
+ components:
+ - type: Transform
+ pos: 76.5,78.5
+ parent: 1
+ - uid: 25919
+ components:
+ - type: Transform
+ pos: 105.5,65.5
+ parent: 1
+ - uid: 25923
+ components:
+ - type: Transform
+ pos: 109.5,65.5
+ parent: 1
+ - uid: 26554
+ components:
+ - type: Transform
+ pos: 111.5,102.5
+ parent: 1
+ - uid: 26597
+ components:
+ - type: Transform
+ pos: 105.5,103.5
+ parent: 1
+ - uid: 26982
+ components:
+ - type: Transform
+ pos: 69.5,71.5
+ parent: 1
+ - uid: 27427
+ components:
+ - type: Transform
+ pos: 103.5,65.5
+ parent: 1
+ - uid: 29066
+ components:
+ - type: Transform
+ pos: 107.5,65.5
+ parent: 1
+ - uid: 36311
+ components:
+ - type: Transform
+ pos: 55.5,133.5
+ parent: 1
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 5810
+ components:
+ - type: Transform
+ pos: 60.5,52.5
+ parent: 1
+ - uid: 23025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,45.5
+ parent: 1
+ - type: DisposalUnit
+ nextFlush: 0
+ - type: ContainerContainer
+ containers:
+ stash: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ disposals: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 23026
+ - uid: 33757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,62.5
+ parent: 1
+ - uid: 34376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,83.5
+ parent: 1
+ - uid: 34381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,83.5
+ parent: 1
+- proto: ToiletGoldenDirtyWater
+ entities:
+ - uid: 13490
+ components:
+ - type: Transform
+ pos: 33.5,68.5
+ parent: 1
+- proto: ToolboxElectricalFilled
+ entities:
+ - uid: 5925
+ components:
+ - type: Transform
+ pos: 49.360928,84.7343
+ parent: 1
+ - uid: 13548
+ components:
+ - type: Transform
+ rot: -138.2300767579507 rad
+ pos: 57.542404,23.536194
+ parent: 1
+ - uid: 16183
+ components:
+ - type: Transform
+ pos: 132.51622,138.5406
+ parent: 1
+ - uid: 16186
+ components:
+ - type: Transform
+ pos: 121.5,121.5
+ parent: 1
+ - uid: 16202
+ components:
+ - type: Transform
+ pos: 113.5,161.5
+ parent: 1
+ - uid: 16580
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 20876
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 47.475277,108.46719
+ parent: 1
+ - uid: 28147
+ components:
+ - type: Transform
+ pos: 57.5,122.5
+ parent: 1
+ - uid: 29035
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 88.558754,61.620102
+ parent: 1
+ - uid: 35863
+ components:
+ - type: Transform
+ pos: 57.478073,129.42131
+ parent: 1
+ - uid: 36783
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 5479
+ components:
+ - type: Transform
+ pos: 40.540432,102.51495
+ parent: 1
+ - uid: 6281
+ components:
+ - type: Transform
+ pos: 138.47827,149.58768
+ parent: 1
+ - uid: 16185
+ components:
+ - type: Transform
+ pos: 118.5,125.5
+ parent: 1
+ - uid: 19403
+ components:
+ - type: Transform
+ pos: 158.47359,96.992805
+ parent: 1
+ - uid: 21002
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 31.226097,113.549446
+ parent: 1
+ - uid: 22995
+ components:
+ - type: Transform
+ rot: -175.9291886010281 rad
+ pos: 135.5269,43.56628
+ parent: 1
+ - uid: 34092
+ components:
+ - type: Transform
+ pos: 74.813095,41.59432
+ parent: 1
+- proto: ToolboxGoldFilled
+ entities:
+ - uid: 12019
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 46.59746,73.633194
+ parent: 1
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 13541
+ components:
+ - type: Transform
+ pos: 40.48529,55.469147
+ parent: 1
+ - uid: 13553
+ components:
+ - type: Transform
+ pos: 50.5,27.5
+ parent: 1
+ - uid: 15685
+ components:
+ - type: Transform
+ pos: 134.5,104.5
+ parent: 1
+ - uid: 16184
+ components:
+ - type: Transform
+ pos: 98.5,125.5
+ parent: 1
+ - uid: 16203
+ components:
+ - type: Transform
+ pos: 104.5,161.5
+ parent: 1
+ - uid: 20875
+ components:
+ - type: Transform
+ pos: 46.44312,99.56493
+ parent: 1
+ - uid: 20970
+ components:
+ - type: Transform
+ pos: 49.53801,84.44263
+ parent: 1
+ - uid: 29036
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.48584,61.588867
+ parent: 1
+ - uid: 30139
+ components:
+ - type: Transform
+ pos: 142.51541,136.54149
+ parent: 1
+ - uid: 34399
+ components:
+ - type: Transform
+ pos: 141.5,81.5
+ parent: 1
+ - uid: 35864
+ components:
+ - type: Transform
+ pos: 52.584366,136.52715
+ parent: 1
+ - uid: 36420
+ components:
+ - type: Transform
+ pos: 49.04445,71.69144
+ parent: 1
+ - uid: 36784
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+- proto: TowelColorMime
+ entities:
+ - uid: 26755
+ components:
+ - type: Transform
+ pos: 98.515274,58.649986
+ parent: 1
+- proto: TowelColorNT
+ entities:
+ - uid: 13488
+ components:
+ - type: Transform
+ pos: 35.582672,66.389
+ parent: 1
+- proto: TowelColorPurple
+ entities:
+ - uid: 36338
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 56.731422,134.04846
+ parent: 1
+- proto: TowelColorWhite
+ entities:
+ - uid: 13507
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 61.55819,50.572445
+ parent: 1
+ - uid: 27392
+ components:
+ - type: Transform
+ pos: 124.378716,86.41438
+ parent: 1
+ - uid: 27393
+ components:
+ - type: Transform
+ pos: 124.73205,86.430695
+ parent: 1
+ - uid: 28162
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 55.525246,116.449936
+ parent: 1
+- proto: ToyFigurineCaptain
+ entities:
+ - uid: 13468
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 35.389343,76.639366
+ parent: 1
+- proto: ToyFigurineGreytider
+ entities:
+ - uid: 23269
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.7719,53.834633
+ parent: 1
+- proto: ToyFigurineSecurity
+ entities:
+ - uid: 23054
+ components:
+ - type: Transform
+ pos: 127.420235,45.723164
+ parent: 1
+- proto: ToyFigurineSlime
+ entities:
+ - uid: 2443
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.44167,53.492176
+ parent: 1
+- proto: ToyFigurineSpaceDragon
+ entities:
+ - uid: 6812
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 77.512825,58.6809
+ parent: 1
+- proto: ToyFigurineWizardFake
+ entities:
+ - uid: 2353
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.4906,54.067013
+ parent: 1
+- proto: ToyMouse
+ entities:
+ - uid: 18086
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 88.460915,94.33134
+ parent: 1
+- proto: ToyRipley
+ entities:
+ - uid: 2539
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.480095,59.532406
+ parent: 1
+- proto: ToyRubberDuck
+ entities:
+ - uid: 13587
+ components:
+ - type: Transform
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 28164
+ components:
+ - type: Transform
+ rot: -81.68140899333461 rad
+ pos: 56.521606,119.6725
+ parent: 1
+- proto: ToySpawner
+ entities:
+ - uid: 26678
+ components:
+ - type: Transform
+ pos: 121.5,106.5
+ parent: 1
+ - uid: 26679
+ components:
+ - type: Transform
+ pos: 120.5,106.5
+ parent: 1
+ - uid: 26680
+ components:
+ - type: Transform
+ pos: 122.5,108.5
+ parent: 1
+ - uid: 29802
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29807
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 29808
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 29809
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 29810
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29811
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+- proto: ToySword
+ entities:
+ - uid: 26765
+ components:
+ - type: Transform
+ rot: -150.79644737230984 rad
+ pos: 108.716415,61.510033
+ parent: 1
+- proto: TrashBag
+ entities:
+ - uid: 29579
+ components:
+ - type: Transform
+ pos: 157.29546,128.61374
+ parent: 1
+ - uid: 29580
+ components:
+ - type: Transform
+ pos: 157.5142,128.55124
+ parent: 1
+ - uid: 29581
+ components:
+ - type: Transform
+ pos: 157.73296,128.60333
+ parent: 1
+- proto: TubaInstrument
+ entities:
+ - uid: 26508
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+- proto: TwoWayLever
+ entities:
+ - uid: 19298
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19283:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19277:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19278:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19282:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19279:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19280:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19281:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19299
+ components:
+ - type: Transform
+ pos: 157.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19290:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19289:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19288:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19287:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19286:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19285:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19284:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19300
+ components:
+ - type: Transform
+ pos: 140.5,113.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19297:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19296:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19295:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19294:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19293:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19292:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19291:
+ - Left: Forward
+ - Right: Off
+ - Middle: Off
+ 36554:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36553:
+ - Left: Forward
+ - Middle: Off
+ - Right: Off
+ 36555:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36556:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36557:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 32974:
+ - Left: Off
+ - Right: Reverse
+ - Middle: Off
+ 32972:
+ - Right: Reverse
+ - Middle: Off
+ - Left: Off
+ - uid: 19320
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19319:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19315:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19317:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19426
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1438:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 20335:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22735:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 23947:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 26175:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 29397:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 21674
+ components:
+ - type: Transform
+ pos: 151.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16220:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16219:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16221:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16227:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16222:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 25722
+ components:
+ - type: Transform
+ pos: 152.5,68.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22742:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 5888:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 5034:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 4529:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22792:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22793:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22802:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22804:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 34318
+ components:
+ - type: Transform
+ pos: 161.5,81.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34312:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34309:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34310:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34323:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34324:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34325:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34326:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ 34327:
+ - Left: Open
+ - Right: Close
+ - Middle: Close
+ 34329:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 34319
+ components:
+ - type: Transform
+ pos: 158.5,81.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34320:
+ - Left: Reverse
+ - Right: Forward
+ - Middle: Off
+ 34311:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34313:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34314:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34315:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34330:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34316:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: UnfinishedMachineFrame
+ entities:
+ - uid: 5580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,90.5
+ parent: 1
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: 32.5,109.5
+ parent: 1
+ - uid: 20437
+ components:
+ - type: Transform
+ pos: 53.5,82.5
+ parent: 1
+ - uid: 23486
+ components:
+ - type: Transform
+ pos: 90.5,87.5
+ parent: 1
+- proto: UniformPrinter
+ entities:
+ - uid: 3876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,55.5
+ parent: 1
+- proto: UniformShortsRed
+ entities:
+ - uid: 26830
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 110.67229,82.1123
+ parent: 1
+ - uid: 26831
+ components:
+ - type: Transform
+ pos: 102.29729,81.45952
+ parent: 1
+- proto: UniformShortsRedWithTop
+ entities:
+ - uid: 26829
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 110.40146,81.702576
+ parent: 1
+ - uid: 26832
+ components:
+ - type: Transform
+ pos: 102.65146,81.99425
+ parent: 1
+- proto: Vape
+ entities:
+ - uid: 37196
+ components:
+ - type: Transform
+ pos: 167.52222,132.58536
+ parent: 1
+- proto: VariantCubeBox
+ entities:
+ - uid: 20815
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 34.425907,115.56279
+ parent: 1
+ - uid: 26555
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 119.75844,93.41497
+ parent: 1
+- proto: VendingBarDrobe
+ entities:
+ - uid: 26487
+ components:
+ - type: Transform
+ pos: 106.5,102.5
+ parent: 1
+- proto: VendingMachineAtmosDrobe
+ entities:
+ - uid: 15944
+ components:
+ - type: Transform
+ pos: 72.5,119.5
+ parent: 1
+- proto: VendingMachineBooze
+ entities:
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 33.5,70.5
+ parent: 1
+ - uid: 26543
+ components:
+ - type: Transform
+ pos: 109.5,106.5
+ parent: 1
+ - uid: 34093
+ components:
+ - type: Transform
+ pos: 107.5,167.5
+ parent: 1
+- proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 19625
+ components:
+ - type: Transform
+ pos: 154.5,96.5
+ parent: 1
+- proto: VendingMachineCart
+ entities:
+ - uid: 29037
+ components:
+ - type: Transform
+ pos: 61.5,54.5
+ parent: 1
+- proto: VendingMachineChapel
+ entities:
+ - uid: 26929
+ components:
+ - type: Transform
+ pos: 71.5,67.5
+ parent: 1
+- proto: VendingMachineChefDrobe
+ entities:
+ - uid: 23437
+ components:
+ - type: Transform
+ pos: 115.5,94.5
+ parent: 1
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 19214
+ components:
+ - type: Transform
+ pos: 123.5,96.5
+ parent: 1
+- proto: VendingMachineChemDrobe
+ entities:
+ - uid: 17706
+ components:
+ - type: Transform
+ pos: 89.5,96.5
+ parent: 1
+- proto: VendingMachineChemicals
+ entities:
+ - uid: 3170
+ components:
+ - type: Transform
+ pos: 85.5,99.5
+ parent: 1
+- proto: VendingMachineCigs
+ entities:
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 64.5,56.5
+ parent: 1
+ - uid: 4020
+ components:
+ - type: Transform
+ pos: 46.5,48.5
+ parent: 1
+ - uid: 9663
+ components:
+ - type: Transform
+ pos: 79.5,82.5
+ parent: 1
+ - uid: 23142
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 23791
+ components:
+ - type: Transform
+ pos: 106.5,115.5
+ parent: 1
+- proto: VendingMachineClothing
+ entities:
+ - uid: 26787
+ components:
+ - type: Transform
+ pos: 109.5,64.5
+ parent: 1
+- proto: VendingMachineCoffee
+ entities:
+ - uid: 26867
+ components:
+ - type: Transform
+ pos: 98.5,81.5
+ parent: 1
+ - uid: 30078
+ components:
+ - type: Transform
+ pos: 142.5,137.5
+ parent: 1
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 26707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,107.5
+ parent: 1
+- proto: VendingMachineCuraDrobe
+ entities:
+ - uid: 27285
+ components:
+ - type: Transform
+ pos: 74.5,47.5
+ parent: 1
+- proto: VendingMachineDetDrobe
+ entities:
+ - uid: 5145
+ components:
+ - type: Transform
+ pos: 87.5,57.5
+ parent: 1
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 33821
+ components:
+ - type: Transform
+ pos: 119.5,96.5
+ parent: 1
+- proto: VendingMachineDiscount
+ entities:
+ - uid: 17970
+ components:
+ - type: Transform
+ pos: 69.5,103.5
+ parent: 1
+ - uid: 27263
+ components:
+ - type: Transform
+ pos: 114.5,85.5
+ parent: 1
+ - uid: 37036
+ components:
+ - type: Transform
+ pos: 125.5,167.5
+ parent: 1
+- proto: VendingMachineDonut
+ entities:
+ - uid: 22847
+ components:
+ - type: Transform
+ pos: 138.5,53.5
+ parent: 1
+ - uid: 26872
+ components:
+ - type: Transform
+ pos: 105.5,94.5
+ parent: 1
+- proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 16072
+ components:
+ - type: Transform
+ pos: 136.5,132.5
+ parent: 1
+- proto: VendingMachineEngivend
+ entities:
+ - uid: 16073
+ components:
+ - type: Transform
+ pos: 125.5,132.5
+ parent: 1
+- proto: VendingMachineGames
+ entities:
+ - uid: 23023
+ components:
+ - type: Transform
+ pos: 128.5,52.5
+ parent: 1
+ - uid: 26503
+ components:
+ - type: Transform
+ pos: 80.5,56.5
+ parent: 1
+- proto: VendingMachineGeneDrobe
+ entities:
+ - uid: 30297
+ components:
+ - type: Transform
+ pos: 86.5,84.5
+ parent: 1
+- proto: VendingMachineHappyHonk
+ entities:
+ - uid: 19903
+ components:
+ - type: Transform
+ pos: 118.5,96.5
+ parent: 1
+- proto: VendingMachineHydrobe
+ entities:
+ - uid: 26466
+ components:
+ - type: Transform
+ pos: 97.5,94.5
+ parent: 1
+- proto: VendingMachineJaniDrobe
+ entities:
+ - uid: 29571
+ components:
+ - type: Transform
+ pos: 155.5,125.5
+ parent: 1
+- proto: VendingMachineLawDrobe
+ entities:
+ - uid: 27121
+ components:
+ - type: Transform
+ pos: 108.5,42.5
+ parent: 1
+- proto: VendingMachineMedical
+ entities:
+ - uid: 5306
+ components:
+ - type: Transform
+ pos: 80.5,102.5
+ parent: 1
+ - uid: 17672
+ components:
+ - type: Transform
+ pos: 72.5,97.5
+ parent: 1
+ - uid: 17703
+ components:
+ - type: Transform
+ pos: 65.5,94.5
+ parent: 1
+ - uid: 28663
+ components:
+ - type: Transform
+ pos: 114.5,47.5
+ parent: 1
+- proto: VendingMachineMediDrobe
+ entities:
+ - uid: 23649
+ components:
+ - type: Transform
+ pos: 70.5,84.5
+ parent: 1
+- proto: VendingMachineNutri
+ entities:
+ - uid: 26647
+ components:
+ - type: Transform
+ pos: 93.5,96.5
+ parent: 1
+- proto: VendingMachineRobotics
+ entities:
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+- proto: VendingMachineSalvage
+ entities:
+ - uid: 19455
+ components:
+ - type: Transform
+ pos: 144.5,87.5
+ parent: 1
+- proto: VendingMachineSciDrobe
+ entities:
+ - uid: 19313
+ components:
+ - type: Transform
+ pos: 28.5,105.5
+ parent: 1
+- proto: VendingMachineSec
+ entities:
+ - uid: 22641
+ components:
+ - type: Transform
+ pos: 155.5,55.5
+ parent: 1
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 22651
+ components:
+ - type: Transform
+ pos: 152.5,49.5
+ parent: 1
+- proto: VendingMachineSeeds
+ entities:
+ - uid: 26458
+ components:
+ - type: Transform
+ pos: 93.5,97.5
+ parent: 1
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 23005
+ components:
+ - type: Transform
+ pos: 129.5,44.5
+ parent: 1
+- proto: VendingMachineSnackTeal
+ entities:
+ - uid: 17634
+ components:
+ - type: Transform
+ pos: 69.5,102.5
+ parent: 1
+- proto: VendingMachineSovietSoda
+ entities:
+ - uid: 12416
+ components:
+ - type: Transform
+ pos: 59.5,44.5
+ parent: 1
+ - uid: 37029
+ components:
+ - type: Transform
+ pos: 100.5,165.5
+ parent: 1
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 23022
+ components:
+ - type: Transform
+ pos: 129.5,52.5
+ parent: 1
+- proto: VendingMachineTankDispenserEngineering
+ entities:
+ - uid: 16063
+ components:
+ - type: Transform
+ pos: 133.5,131.5
+ parent: 1
+ - uid: 16096
+ components:
+ - type: Transform
+ pos: 77.5,117.5
+ parent: 1
+ - uid: 20775
+ components:
+ - type: Transform
+ pos: 118.5,149.5
+ parent: 1
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 22784
+ components:
+ - type: Transform
+ pos: 138.5,46.5
+ parent: 1
+ - uid: 33841
+ components:
+ - type: Transform
+ pos: 153.5,88.5
+ parent: 1
+ - uid: 34988
+ components:
+ - type: Transform
+ pos: 47.5,71.5
+ parent: 1
+- proto: VendingMachineTheater
+ entities:
+ - uid: 26786
+ components:
+ - type: Transform
+ pos: 103.5,64.5
+ parent: 1
+- proto: VendingMachineVendomat
+ entities:
+ - uid: 20450
+ components:
+ - type: Transform
+ pos: 47.5,80.5
+ parent: 1
+ - uid: 33894
+ components:
+ - type: Transform
+ pos: 93.5,58.5
+ parent: 1
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 16049
+ components:
+ - type: Transform
+ pos: 125.5,131.5
+ parent: 1
+ - uid: 16050
+ components:
+ - type: Transform
+ pos: 123.5,121.5
+ parent: 1
+ - uid: 30231
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+- proto: ViolinInstrument
+ entities:
+ - uid: 26783
+ components:
+ - type: Transform
+ pos: 111.353714,57.567657
+ parent: 1
+- proto: WallmountTelevision
+ entities:
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 118.5,87.5
+ parent: 1
+ - uid: 7470
+ components:
+ - type: Transform
+ pos: 155.5,112.5
+ parent: 1
+ - uid: 7471
+ components:
+ - type: Transform
+ pos: 71.5,101.5
+ parent: 1
+ - uid: 7472
+ components:
+ - type: Transform
+ pos: 119.5,157.5
+ parent: 1
+ - uid: 13579
+ components:
+ - type: Transform
+ pos: 33.5,77.5
+ parent: 1
+ - uid: 14831
+ components:
+ - type: Transform
+ pos: 81.5,115.5
+ parent: 1
+ - uid: 19515
+ components:
+ - type: Transform
+ pos: 72.5,77.5
+ parent: 1
+ - uid: 25417
+ components:
+ - type: Transform
+ pos: 36.5,65.5
+ parent: 1
+ - uid: 27407
+ components:
+ - type: Transform
+ pos: 97.5,53.5
+ parent: 1
+ - uid: 28928
+ components:
+ - type: Transform
+ pos: 76.5,66.5
+ parent: 1
+ - uid: 33290
+ components:
+ - type: Transform
+ pos: 34.5,102.5
+ parent: 1
+ - uid: 36603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,84.5
+ parent: 1
+- proto: WallmountTelevisionFrame
+ entities:
+ - uid: 33065
+ components:
+ - type: Transform
+ pos: 109.5,25.5
+ parent: 1
+- proto: WallReinforced
+ entities:
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,109.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 50.5,73.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 27.5,90.5
+ parent: 1
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 30.5,77.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,111.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 30.5,75.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 30.5,72.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 30.5,71.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 30.5,70.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 30.5,67.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 31.5,78.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 31.5,77.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 31.5,76.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 31.5,75.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 31.5,74.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 31.5,73.5
+ parent: 1
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 31.5,72.5
+ parent: 1
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 31.5,71.5
+ parent: 1
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 31.5,70.5
+ parent: 1
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 31.5,69.5
+ parent: 1
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 31.5,68.5
+ parent: 1
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 31.5,67.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 31.5,66.5
+ parent: 1
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 31.5,65.5
+ parent: 1
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 31.5,64.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 1
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 31.5,52.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 31.5,51.5
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 31.5,50.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 32.5,77.5
+ parent: 1
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 32.5,65.5
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 40.5,103.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 33.5,77.5
+ parent: 1
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 33.5,65.5
+ parent: 1
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 34.5,77.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 34.5,48.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 34.5,47.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 35.5,78.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 35.5,77.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 35.5,65.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 35.5,47.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 36.5,78.5
+ parent: 1
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 36.5,77.5
+ parent: 1
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,149.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 36.5,65.5
+ parent: 1
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 36.5,47.5
+ parent: 1
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 37.5,77.5
+ parent: 1
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 37.5,65.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 38.5,78.5
+ parent: 1
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 38.5,77.5
+ parent: 1
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 38.5,65.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 38.5,29.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 38.5,28.5
+ parent: 1
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 38.5,27.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 38.5,26.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 38.5,25.5
+ parent: 1
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 38.5,24.5
+ parent: 1
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 38.5,23.5
+ parent: 1
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 38.5,22.5
+ parent: 1
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 38.5,21.5
+ parent: 1
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 38.5,20.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 38.5,19.5
+ parent: 1
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 39.5,77.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 39.5,65.5
+ parent: 1
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 39.5,30.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 39.5,29.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 39.5,19.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 39.5,18.5
+ parent: 1
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 40.5,78.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 40.5,77.5
+ parent: 1
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 40.5,65.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 40.5,47.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 40.5,41.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 40.5,40.5
+ parent: 1
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 40.5,39.5
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 40.5,38.5
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 40.5,37.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 40.5,36.5
+ parent: 1
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 40.5,35.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 40.5,31.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 40.5,30.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 40.5,27.5
+ parent: 1
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 40.5,26.5
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 40.5,25.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 40.5,23.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 40.5,22.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 40.5,21.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 1
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 40.5,17.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 25.5,118.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 41.5,77.5
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 41.5,76.5
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 41.5,74.5
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 41.5,72.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 41.5,70.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 41.5,69.5
+ parent: 1
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 41.5,68.5
+ parent: 1
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 41.5,67.5
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 41.5,66.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 41.5,65.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 41.5,64.5
+ parent: 1
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 25.5,116.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 25.5,115.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 25.5,113.5
+ parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 25.5,112.5
+ parent: 1
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 41.5,60.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 41.5,56.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 41.5,52.5
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 41.5,48.5
+ parent: 1
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 41.5,47.5
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 41.5,42.5
+ parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 41.5,41.5
+ parent: 1
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,174.5
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,174.5
+ parent: 1
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 25.5,110.5
+ parent: 1
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 68.5,155.5
+ parent: 1
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 25.5,108.5
+ parent: 1
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 25.5,107.5
+ parent: 1
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 25.5,106.5
+ parent: 1
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 26.5,118.5
+ parent: 1
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 41.5,35.5
+ parent: 1
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 41.5,34.5
+ parent: 1
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 41.5,32.5
+ parent: 1
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 41.5,29.5
+ parent: 1
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 41.5,28.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 41.5,27.5
+ parent: 1
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 41.5,21.5
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 41.5,20.5
+ parent: 1
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 41.5,19.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 41.5,16.5
+ parent: 1
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 42.5,77.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 42.5,43.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 42.5,40.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 42.5,38.5
+ parent: 1
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 42.5,37.5
+ parent: 1
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 42.5,36.5
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 1
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 42.5,33.5
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 1
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 1
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 42.5,29.5
+ parent: 1
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 42.5,25.5
+ parent: 1
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 26.5,114.5
+ parent: 1
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 26.5,110.5
+ parent: 1
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 26.5,106.5
+ parent: 1
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 42.5,23.5
+ parent: 1
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 42.5,19.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 43.5,43.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 43.5,41.5
+ parent: 1
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 43.5,36.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 43.5,35.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 43.5,33.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 43.5,31.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 43.5,25.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 43.5,23.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 43.5,18.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 43.5,17.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 44.5,77.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 44.5,47.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 44.5,43.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 44.5,41.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 44.5,35.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 44.5,33.5
+ parent: 1
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 44.5,31.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 44.5,17.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 45.5,77.5
+ parent: 1
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 45.5,61.5
+ parent: 1
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 45.5,60.5
+ parent: 1
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 45.5,56.5
+ parent: 1
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 45.5,52.5
+ parent: 1
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 45.5,48.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 45.5,47.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 45.5,43.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 45.5,34.5
+ parent: 1
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 45.5,32.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 45.5,31.5
+ parent: 1
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 45.5,17.5
+ parent: 1
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 1
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 46.5,61.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 46.5,47.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 46.5,43.5
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 46.5,34.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 46.5,32.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 47.5,34.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 47.5,32.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 47.5,16.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 47.5,14.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 48.5,47.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 27.5,118.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 27.5,106.5
+ parent: 1
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 48.5,43.5
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 48.5,34.5
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ pos: 48.5,32.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 48.5,16.5
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 48.5,14.5
+ parent: 1
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 49.5,61.5
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 49.5,47.5
+ parent: 1
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 49.5,43.5
+ parent: 1
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 49.5,35.5
+ parent: 1
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 49.5,34.5
+ parent: 1
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 49.5,33.5
+ parent: 1
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 49.5,32.5
+ parent: 1
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 49.5,16.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 49.5,14.5
+ parent: 1
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 50.5,62.5
+ parent: 1
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 50.5,61.5
+ parent: 1
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 50.5,47.5
+ parent: 1
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 50.5,43.5
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 50.5,16.5
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 50.5,14.5
+ parent: 1
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 51.5,67.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 51.5,66.5
+ parent: 1
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 51.5,63.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 28.5,106.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 28.5,95.5
+ parent: 1
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 29.5,118.5
+ parent: 1
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 51.5,62.5
+ parent: 1
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 51.5,53.5
+ parent: 1
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 51.5,52.5
+ parent: 1
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 51.5,51.5
+ parent: 1
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 51.5,50.5
+ parent: 1
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 51.5,49.5
+ parent: 1
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 51.5,48.5
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 51.5,47.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 29.5,106.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 29.5,95.5
+ parent: 1
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 29.5,85.5
+ parent: 1
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 30.5,95.5
+ parent: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 51.5,16.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 51.5,14.5
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 52.5,67.5
+ parent: 1
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 52.5,62.5
+ parent: 1
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 30.5,90.5
+ parent: 1
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 30.5,85.5
+ parent: 1
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 31.5,95.5
+ parent: 1
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 31.5,90.5
+ parent: 1
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 31.5,85.5
+ parent: 1
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 32.5,106.5
+ parent: 1
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 52.5,43.5
+ parent: 1
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 52.5,35.5
+ parent: 1
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 52.5,34.5
+ parent: 1
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 52.5,33.5
+ parent: 1
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 52.5,32.5
+ parent: 1
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 52.5,16.5
+ parent: 1
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 52.5,14.5
+ parent: 1
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 150.5,153.5
+ parent: 1
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 26.5,94.5
+ parent: 1
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 32.5,105.5
+ parent: 1
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 32.5,104.5
+ parent: 1
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 32.5,103.5
+ parent: 1
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 32.5,102.5
+ parent: 1
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 32.5,95.5
+ parent: 1
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 53.5,67.5
+ parent: 1
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 53.5,62.5
+ parent: 1
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 53.5,53.5
+ parent: 1
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 53.5,52.5
+ parent: 1
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 53.5,50.5
+ parent: 1
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 53.5,49.5
+ parent: 1
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 53.5,48.5
+ parent: 1
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: 53.5,43.5
+ parent: 1
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 27.5,94.5
+ parent: 1
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 32.5,90.5
+ parent: 1
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 32.5,85.5
+ parent: 1
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 27.5,91.5
+ parent: 1
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 33.5,106.5
+ parent: 1
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: 33.5,102.5
+ parent: 1
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: 33.5,95.5
+ parent: 1
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 33.5,90.5
+ parent: 1
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 33.5,85.5
+ parent: 1
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 34.5,106.5
+ parent: 1
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 34.5,102.5
+ parent: 1
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 53.5,32.5
+ parent: 1
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 53.5,31.5
+ parent: 1
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 53.5,17.5
+ parent: 1
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 53.5,16.5
+ parent: 1
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 53.5,14.5
+ parent: 1
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 54.5,76.5
+ parent: 1
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 54.5,68.5
+ parent: 1
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 54.5,67.5
+ parent: 1
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 24.5,94.5
+ parent: 1
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 34.5,95.5
+ parent: 1
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 54.5,62.5
+ parent: 1
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 54.5,61.5
+ parent: 1
+ - uid: 1268
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 54.5,59.5
+ parent: 1
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 54.5,57.5
+ parent: 1
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 54.5,54.5
+ parent: 1
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 54.5,53.5
+ parent: 1
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 54.5,42.5
+ parent: 1
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 54.5,41.5
+ parent: 1
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 54.5,40.5
+ parent: 1
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 27.5,86.5
+ parent: 1
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 34.5,90.5
+ parent: 1
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 34.5,85.5
+ parent: 1
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: 54.5,39.5
+ parent: 1
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: 54.5,38.5
+ parent: 1
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 54.5,37.5
+ parent: 1
+ - uid: 1319
+ components:
+ - type: Transform
+ pos: 54.5,36.5
+ parent: 1
+ - uid: 1320
+ components:
+ - type: Transform
+ pos: 54.5,35.5
+ parent: 1
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: 54.5,34.5
+ parent: 1
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: 54.5,33.5
+ parent: 1
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: 54.5,31.5
+ parent: 1
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 54.5,17.5
+ parent: 1
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: 54.5,15.5
+ parent: 1
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 54.5,14.5
+ parent: 1
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 35.5,106.5
+ parent: 1
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 35.5,102.5
+ parent: 1
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 36.5,109.5
+ parent: 1
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 55.5,60.5
+ parent: 1
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 55.5,48.5
+ parent: 1
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: 55.5,31.5
+ parent: 1
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: 55.5,30.5
+ parent: 1
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 55.5,18.5
+ parent: 1
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 55.5,17.5
+ parent: 1
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 55.5,15.5
+ parent: 1
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 36.5,108.5
+ parent: 1
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 36.5,107.5
+ parent: 1
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 36.5,102.5
+ parent: 1
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 37.5,109.5
+ parent: 1
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 38.5,109.5
+ parent: 1
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: 39.5,109.5
+ parent: 1
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: 40.5,109.5
+ parent: 1
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 56.5,33.5
+ parent: 1
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 56.5,32.5
+ parent: 1
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: 56.5,30.5
+ parent: 1
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: 56.5,29.5
+ parent: 1
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: 56.5,19.5
+ parent: 1
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 56.5,18.5
+ parent: 1
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 56.5,16.5
+ parent: 1
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 56.5,15.5
+ parent: 1
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 57.5,48.5
+ parent: 1
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 57.5,35.5
+ parent: 1
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 57.5,32.5
+ parent: 1
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 57.5,29.5
+ parent: 1
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 57.5,28.5
+ parent: 1
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 57.5,27.5
+ parent: 1
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 57.5,21.5
+ parent: 1
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 57.5,20.5
+ parent: 1
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: 57.5,19.5
+ parent: 1
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: 57.5,16.5
+ parent: 1
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 58.5,48.5
+ parent: 1
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 58.5,31.5
+ parent: 1
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 58.5,27.5
+ parent: 1
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 58.5,26.5
+ parent: 1
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 58.5,25.5
+ parent: 1
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 58.5,23.5
+ parent: 1
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 58.5,22.5
+ parent: 1
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 58.5,21.5
+ parent: 1
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 58.5,18.5
+ parent: 1
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 41.5,109.5
+ parent: 1
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: 58.5,17.5
+ parent: 1
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 58.5,16.5
+ parent: 1
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 70.5,156.5
+ parent: 1
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 59.5,142.5
+ parent: 1
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 71.5,156.5
+ parent: 1
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 59.5,140.5
+ parent: 1
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 70.5,154.5
+ parent: 1
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 59.5,138.5
+ parent: 1
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 59.5,137.5
+ parent: 1
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 59.5,136.5
+ parent: 1
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 59.5,135.5
+ parent: 1
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 59.5,49.5
+ parent: 1
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 41.5,108.5
+ parent: 1
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 126.5,156.5
+ parent: 1
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 59.5,30.5
+ parent: 1
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 59.5,29.5
+ parent: 1
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 59.5,28.5
+ parent: 1
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: 59.5,19.5
+ parent: 1
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 59.5,18.5
+ parent: 1
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 60.5,146.5
+ parent: 1
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 60.5,144.5
+ parent: 1
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 60.5,143.5
+ parent: 1
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 41.5,103.5
+ parent: 1
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 45.5,109.5
+ parent: 1
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 45.5,108.5
+ parent: 1
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 60.5,135.5
+ parent: 1
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 60.5,133.5
+ parent: 1
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 60.5,132.5
+ parent: 1
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 60.5,49.5
+ parent: 1
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 60.5,27.5
+ parent: 1
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 60.5,26.5
+ parent: 1
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: 60.5,24.5
+ parent: 1
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 60.5,23.5
+ parent: 1
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 60.5,21.5
+ parent: 1
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 60.5,20.5
+ parent: 1
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 61.5,151.5
+ parent: 1
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 61.5,149.5
+ parent: 1
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 61.5,147.5
+ parent: 1
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 61.5,141.5
+ parent: 1
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 61.5,140.5
+ parent: 1
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 61.5,139.5
+ parent: 1
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 61.5,138.5
+ parent: 1
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 61.5,137.5
+ parent: 1
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 61.5,130.5
+ parent: 1
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 61.5,128.5
+ parent: 1
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 61.5,127.5
+ parent: 1
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 61.5,49.5
+ parent: 1
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 61.5,19.5
+ parent: 1
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: 62.5,155.5
+ parent: 1
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: 62.5,152.5
+ parent: 1
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 62.5,151.5
+ parent: 1
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: 62.5,145.5
+ parent: 1
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 62.5,144.5
+ parent: 1
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 62.5,143.5
+ parent: 1
+ - uid: 1728
+ components:
+ - type: Transform
+ pos: 62.5,142.5
+ parent: 1
+ - uid: 1729
+ components:
+ - type: Transform
+ pos: 62.5,141.5
+ parent: 1
+ - uid: 1733
+ components:
+ - type: Transform
+ pos: 62.5,137.5
+ parent: 1
+ - uid: 1734
+ components:
+ - type: Transform
+ pos: 62.5,136.5
+ parent: 1
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: 62.5,135.5
+ parent: 1
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: 62.5,134.5
+ parent: 1
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: 62.5,133.5
+ parent: 1
+ - uid: 1760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,92.5
+ parent: 1
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: 62.5,127.5
+ parent: 1
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 62.5,124.5
+ parent: 1
+ - uid: 1772
+ components:
+ - type: Transform
+ pos: 62.5,123.5
+ parent: 1
+ - uid: 1775
+ components:
+ - type: Transform
+ pos: 62.5,60.5
+ parent: 1
+ - uid: 1777
+ components:
+ - type: Transform
+ pos: 62.5,49.5
+ parent: 1
+ - uid: 1778
+ components:
+ - type: Transform
+ pos: 62.5,30.5
+ parent: 1
+ - uid: 1783
+ components:
+ - type: Transform
+ pos: 62.5,25.5
+ parent: 1
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 62.5,22.5
+ parent: 1
+ - uid: 1791
+ components:
+ - type: Transform
+ pos: 62.5,18.5
+ parent: 1
+ - uid: 1793
+ components:
+ - type: Transform
+ pos: 62.5,16.5
+ parent: 1
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 62.5,14.5
+ parent: 1
+ - uid: 1797
+ components:
+ - type: Transform
+ pos: 63.5,149.5
+ parent: 1
+ - uid: 1798
+ components:
+ - type: Transform
+ pos: 63.5,148.5
+ parent: 1
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: 63.5,147.5
+ parent: 1
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: 63.5,146.5
+ parent: 1
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: 63.5,145.5
+ parent: 1
+ - uid: 1827
+ components:
+ - type: Transform
+ pos: 63.5,141.5
+ parent: 1
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: 63.5,137.5
+ parent: 1
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: 63.5,133.5
+ parent: 1
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: 63.5,132.5
+ parent: 1
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 63.5,131.5
+ parent: 1
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: 63.5,130.5
+ parent: 1
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: 63.5,129.5
+ parent: 1
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 63.5,60.5
+ parent: 1
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 63.5,18.5
+ parent: 1
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: 64.5,153.5
+ parent: 1
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 64.5,152.5
+ parent: 1
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: 64.5,151.5
+ parent: 1
+ - uid: 1885
+ components:
+ - type: Transform
+ pos: 64.5,150.5
+ parent: 1
+ - uid: 1886
+ components:
+ - type: Transform
+ pos: 64.5,149.5
+ parent: 1
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 64.5,145.5
+ parent: 1
+ - uid: 1891
+ components:
+ - type: Transform
+ pos: 64.5,141.5
+ parent: 1
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 64.5,137.5
+ parent: 1
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: 64.5,133.5
+ parent: 1
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: 64.5,127.5
+ parent: 1
+ - uid: 1900
+ components:
+ - type: Transform
+ pos: 64.5,125.5
+ parent: 1
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: 65.5,125.5
+ parent: 1
+ - uid: 1905
+ components:
+ - type: Transform
+ pos: 64.5,126.5
+ parent: 1
+ - uid: 1909
+ components:
+ - type: Transform
+ pos: 65.5,153.5
+ parent: 1
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: 65.5,149.5
+ parent: 1
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 65.5,145.5
+ parent: 1
+ - uid: 1915
+ components:
+ - type: Transform
+ pos: 65.5,141.5
+ parent: 1
+ - uid: 1916
+ components:
+ - type: Transform
+ pos: 65.5,137.5
+ parent: 1
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: 65.5,133.5
+ parent: 1
+ - uid: 1918
+ components:
+ - type: Transform
+ pos: 65.5,129.5
+ parent: 1
+ - uid: 1919
+ components:
+ - type: Transform
+ pos: 64.5,128.5
+ parent: 1
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: 64.5,129.5
+ parent: 1
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: 65.5,18.5
+ parent: 1
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 65.5,14.5
+ parent: 1
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 66.5,153.5
+ parent: 1
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: 66.5,149.5
+ parent: 1
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: 66.5,145.5
+ parent: 1
+ - uid: 1946
+ components:
+ - type: Transform
+ pos: 66.5,141.5
+ parent: 1
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: 66.5,137.5
+ parent: 1
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 66.5,133.5
+ parent: 1
+ - uid: 1949
+ components:
+ - type: Transform
+ pos: 66.5,129.5
+ parent: 1
+ - uid: 1950
+ components:
+ - type: Transform
+ pos: 66.5,125.5
+ parent: 1
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: 66.5,18.5
+ parent: 1
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 66.5,14.5
+ parent: 1
+ - uid: 1976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,134.5
+ parent: 1
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: 67.5,153.5
+ parent: 1
+ - uid: 1978
+ components:
+ - type: Transform
+ pos: 67.5,149.5
+ parent: 1
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: 67.5,145.5
+ parent: 1
+ - uid: 1980
+ components:
+ - type: Transform
+ pos: 67.5,133.5
+ parent: 1
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 67.5,129.5
+ parent: 1
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 67.5,125.5
+ parent: 1
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: 67.5,123.5
+ parent: 1
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: 67.5,122.5
+ parent: 1
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 67.5,120.5
+ parent: 1
+ - uid: 1987
+ components:
+ - type: Transform
+ pos: 67.5,119.5
+ parent: 1
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: 67.5,118.5
+ parent: 1
+ - uid: 1989
+ components:
+ - type: Transform
+ pos: 67.5,117.5
+ parent: 1
+ - uid: 1990
+ components:
+ - type: Transform
+ pos: 67.5,116.5
+ parent: 1
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: 67.5,115.5
+ parent: 1
+ - uid: 1992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,133.5
+ parent: 1
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,57.5
+ parent: 1
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 138.5,87.5
+ parent: 1
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: 68.5,154.5
+ parent: 1
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 68.5,153.5
+ parent: 1
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 68.5,149.5
+ parent: 1
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 68.5,141.5
+ parent: 1
+ - uid: 2057
+ components:
+ - type: Transform
+ pos: 68.5,137.5
+ parent: 1
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: 68.5,129.5
+ parent: 1
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: 68.5,125.5
+ parent: 1
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: 68.5,115.5
+ parent: 1
+ - uid: 2063
+ components:
+ - type: Transform
+ pos: 68.5,35.5
+ parent: 1
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: 68.5,33.5
+ parent: 1
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: 68.5,28.5
+ parent: 1
+ - uid: 2127
+ components:
+ - type: Transform
+ pos: 68.5,26.5
+ parent: 1
+ - uid: 2128
+ components:
+ - type: Transform
+ pos: 68.5,15.5
+ parent: 1
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 69.5,145.5
+ parent: 1
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 69.5,133.5
+ parent: 1
+ - uid: 2156
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 2157
+ components:
+ - type: Transform
+ pos: 69.5,39.5
+ parent: 1
+ - uid: 2158
+ components:
+ - type: Transform
+ pos: 69.5,35.5
+ parent: 1
+ - uid: 2159
+ components:
+ - type: Transform
+ pos: 69.5,33.5
+ parent: 1
+ - uid: 2160
+ components:
+ - type: Transform
+ pos: 69.5,28.5
+ parent: 1
+ - uid: 2170
+ components:
+ - type: Transform
+ pos: 69.5,26.5
+ parent: 1
+ - uid: 2177
+ components:
+ - type: Transform
+ pos: 69.5,25.5
+ parent: 1
+ - uid: 2178
+ components:
+ - type: Transform
+ pos: 69.5,24.5
+ parent: 1
+ - uid: 2180
+ components:
+ - type: Transform
+ pos: 69.5,22.5
+ parent: 1
+ - uid: 2184
+ components:
+ - type: Transform
+ pos: 69.5,20.5
+ parent: 1
+ - uid: 2187
+ components:
+ - type: Transform
+ pos: 70.5,149.5
+ parent: 1
+ - uid: 2194
+ components:
+ - type: Transform
+ pos: 70.5,129.5
+ parent: 1
+ - uid: 2195
+ components:
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - uid: 2204
+ components:
+ - type: Transform
+ pos: 70.5,40.5
+ parent: 1
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: 70.5,35.5
+ parent: 1
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 70.5,33.5
+ parent: 1
+ - uid: 2208
+ components:
+ - type: Transform
+ pos: 70.5,28.5
+ parent: 1
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 70.5,26.5
+ parent: 1
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 70.5,19.5
+ parent: 1
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: 71.5,154.5
+ parent: 1
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 71.5,115.5
+ parent: 1
+ - uid: 2230
+ components:
+ - type: Transform
+ pos: 72.5,154.5
+ parent: 1
+ - uid: 2240
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 2241
+ components:
+ - type: Transform
+ pos: 73.5,124.5
+ parent: 1
+ - uid: 2248
+ components:
+ - type: Transform
+ pos: 73.5,19.5
+ parent: 1
+ - uid: 2253
+ components:
+ - type: Transform
+ pos: 74.5,154.5
+ parent: 1
+ - uid: 2260
+ components:
+ - type: Transform
+ pos: 74.5,124.5
+ parent: 1
+ - uid: 2272
+ components:
+ - type: Transform
+ pos: 75.5,154.5
+ parent: 1
+ - uid: 2274
+ components:
+ - type: Transform
+ pos: 76.5,154.5
+ parent: 1
+ - uid: 2286
+ components:
+ - type: Transform
+ pos: 77.5,154.5
+ parent: 1
+ - uid: 2289
+ components:
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - uid: 2291
+ components:
+ - type: Transform
+ pos: 78.5,124.5
+ parent: 1
+ - uid: 2293
+ components:
+ - type: Transform
+ pos: 78.5,115.5
+ parent: 1
+ - uid: 2297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,144.5
+ parent: 1
+ - uid: 2298
+ components:
+ - type: Transform
+ pos: 79.5,154.5
+ parent: 1
+ - uid: 2299
+ components:
+ - type: Transform
+ pos: 79.5,150.5
+ parent: 1
+ - uid: 2313
+ components:
+ - type: Transform
+ pos: 86.5,150.5
+ parent: 1
+ - uid: 2318
+ components:
+ - type: Transform
+ pos: 79.5,128.5
+ parent: 1
+ - uid: 2320
+ components:
+ - type: Transform
+ pos: 79.5,124.5
+ parent: 1
+ - uid: 2321
+ components:
+ - type: Transform
+ pos: 79.5,115.5
+ parent: 1
+ - uid: 2323
+ components:
+ - type: Transform
+ pos: 80.5,154.5
+ parent: 1
+ - uid: 2342
+ components:
+ - type: Transform
+ pos: 80.5,124.5
+ parent: 1
+ - uid: 2363
+ components:
+ - type: Transform
+ pos: 80.5,115.5
+ parent: 1
+ - uid: 2364
+ components:
+ - type: Transform
+ pos: 80.5,40.5
+ parent: 1
+ - uid: 2371
+ components:
+ - type: Transform
+ pos: 80.5,35.5
+ parent: 1
+ - uid: 2372
+ components:
+ - type: Transform
+ pos: 80.5,33.5
+ parent: 1
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: 80.5,28.5
+ parent: 1
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: 80.5,26.5
+ parent: 1
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: 80.5,19.5
+ parent: 1
+ - uid: 2384
+ components:
+ - type: Transform
+ pos: 81.5,154.5
+ parent: 1
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: 81.5,124.5
+ parent: 1
+ - uid: 2386
+ components:
+ - type: Transform
+ pos: 81.5,115.5
+ parent: 1
+ - uid: 2387
+ components:
+ - type: Transform
+ pos: 81.5,40.5
+ parent: 1
+ - uid: 2388
+ components:
+ - type: Transform
+ pos: 81.5,39.5
+ parent: 1
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: 81.5,35.5
+ parent: 1
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: 81.5,33.5
+ parent: 1
+ - uid: 2404
+ components:
+ - type: Transform
+ pos: 81.5,28.5
+ parent: 1
+ - uid: 2413
+ components:
+ - type: Transform
+ pos: 81.5,26.5
+ parent: 1
+ - uid: 2422
+ components:
+ - type: Transform
+ pos: 81.5,25.5
+ parent: 1
+ - uid: 2424
+ components:
+ - type: Transform
+ pos: 81.5,24.5
+ parent: 1
+ - uid: 2426
+ components:
+ - type: Transform
+ pos: 81.5,22.5
+ parent: 1
+ - uid: 2445
+ components:
+ - type: Transform
+ pos: 82.5,154.5
+ parent: 1
+ - uid: 2446
+ components:
+ - type: Transform
+ pos: 82.5,124.5
+ parent: 1
+ - uid: 2448
+ components:
+ - type: Transform
+ pos: 82.5,115.5
+ parent: 1
+ - uid: 2449
+ components:
+ - type: Transform
+ pos: 82.5,35.5
+ parent: 1
+ - uid: 2451
+ components:
+ - type: Transform
+ pos: 82.5,33.5
+ parent: 1
+ - uid: 2452
+ components:
+ - type: Transform
+ pos: 82.5,28.5
+ parent: 1
+ - uid: 2457
+ components:
+ - type: Transform
+ pos: 82.5,26.5
+ parent: 1
+ - uid: 2462
+ components:
+ - type: Transform
+ pos: 83.5,154.5
+ parent: 1
+ - uid: 2485
+ components:
+ - type: Transform
+ pos: 77.5,141.5
+ parent: 1
+ - uid: 2503
+ components:
+ - type: Transform
+ pos: 83.5,124.5
+ parent: 1
+ - uid: 2515
+ components:
+ - type: Transform
+ pos: 83.5,115.5
+ parent: 1
+ - uid: 2520
+ components:
+ - type: Transform
+ pos: 84.5,154.5
+ parent: 1
+ - uid: 2522
+ components:
+ - type: Transform
+ pos: 84.5,115.5
+ parent: 1
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: 85.5,154.5
+ parent: 1
+ - uid: 2534
+ components:
+ - type: Transform
+ pos: 85.5,124.5
+ parent: 1
+ - uid: 2543
+ components:
+ - type: Transform
+ pos: 85.5,115.5
+ parent: 1
+ - uid: 2548
+ components:
+ - type: Transform
+ pos: 86.5,158.5
+ parent: 1
+ - uid: 2551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,121.5
+ parent: 1
+ - uid: 2554
+ components:
+ - type: Transform
+ pos: 86.5,154.5
+ parent: 1
+ - uid: 2555
+ components:
+ - type: Transform
+ pos: 86.5,124.5
+ parent: 1
+ - uid: 2556
+ components:
+ - type: Transform
+ pos: 86.5,121.5
+ parent: 1
+ - uid: 2571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,56.5
+ parent: 1
+ - uid: 2580
+ components:
+ - type: Transform
+ pos: 86.5,120.5
+ parent: 1
+ - uid: 2585
+ components:
+ - type: Transform
+ pos: 86.5,119.5
+ parent: 1
+ - uid: 2586
+ components:
+ - type: Transform
+ pos: 86.5,118.5
+ parent: 1
+ - uid: 2590
+ components:
+ - type: Transform
+ pos: 86.5,117.5
+ parent: 1
+ - uid: 2591
+ components:
+ - type: Transform
+ pos: 86.5,116.5
+ parent: 1
+ - uid: 2592
+ components:
+ - type: Transform
+ pos: 86.5,115.5
+ parent: 1
+ - uid: 2593
+ components:
+ - type: Transform
+ pos: 87.5,158.5
+ parent: 1
+ - uid: 2608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,51.5
+ parent: 1
+ - uid: 2617
+ components:
+ - type: Transform
+ pos: 87.5,154.5
+ parent: 1
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: 87.5,124.5
+ parent: 1
+ - uid: 2625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,128.5
+ parent: 1
+ - uid: 2632
+ components:
+ - type: Transform
+ pos: 88.5,154.5
+ parent: 1
+ - uid: 2650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,112.5
+ parent: 1
+ - uid: 2656
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 2662
+ components:
+ - type: Transform
+ pos: 89.5,154.5
+ parent: 1
+ - uid: 2667
+ components:
+ - type: Transform
+ pos: 89.5,124.5
+ parent: 1
+ - uid: 2669
+ components:
+ - type: Transform
+ pos: 156.5,147.5
+ parent: 1
+ - uid: 2670
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 2711
+ components:
+ - type: Transform
+ pos: 90.5,154.5
+ parent: 1
+ - uid: 2717
+ components:
+ - type: Transform
+ pos: 90.5,153.5
+ parent: 1
+ - uid: 2720
+ components:
+ - type: Transform
+ pos: 77.5,137.5
+ parent: 1
+ - uid: 2741
+ components:
+ - type: Transform
+ pos: 90.5,152.5
+ parent: 1
+ - uid: 2742
+ components:
+ - type: Transform
+ pos: 90.5,151.5
+ parent: 1
+ - uid: 2743
+ components:
+ - type: Transform
+ pos: 90.5,150.5
+ parent: 1
+ - uid: 2744
+ components:
+ - type: Transform
+ pos: 90.5,149.5
+ parent: 1
+ - uid: 2763
+ components:
+ - type: Transform
+ pos: 90.5,147.5
+ parent: 1
+ - uid: 2769
+ components:
+ - type: Transform
+ pos: 90.5,146.5
+ parent: 1
+ - uid: 2784
+ components:
+ - type: Transform
+ pos: 90.5,141.5
+ parent: 1
+ - uid: 2785
+ components:
+ - type: Transform
+ pos: 90.5,137.5
+ parent: 1
+ - uid: 2787
+ components:
+ - type: Transform
+ pos: 90.5,132.5
+ parent: 1
+ - uid: 2788
+ components:
+ - type: Transform
+ pos: 90.5,131.5
+ parent: 1
+ - uid: 2805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,72.5
+ parent: 1
+ - uid: 2823
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 2827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,75.5
+ parent: 1
+ - uid: 2828
+ components:
+ - type: Transform
+ pos: 90.5,129.5
+ parent: 1
+ - uid: 2831
+ components:
+ - type: Transform
+ pos: 90.5,128.5
+ parent: 1
+ - uid: 2832
+ components:
+ - type: Transform
+ pos: 90.5,127.5
+ parent: 1
+ - uid: 2835
+ components:
+ - type: Transform
+ pos: 90.5,125.5
+ parent: 1
+ - uid: 2838
+ components:
+ - type: Transform
+ pos: 90.5,124.5
+ parent: 1
+ - uid: 2839
+ components:
+ - type: Transform
+ pos: 90.5,121.5
+ parent: 1
+ - uid: 2842
+ components:
+ - type: Transform
+ pos: 90.5,120.5
+ parent: 1
+ - uid: 2849
+ components:
+ - type: Transform
+ pos: 91.5,146.5
+ parent: 1
+ - uid: 2851
+ components:
+ - type: Transform
+ pos: 91.5,132.5
+ parent: 1
+ - uid: 2852
+ components:
+ - type: Transform
+ pos: 91.5,120.5
+ parent: 1
+ - uid: 2854
+ components:
+ - type: Transform
+ pos: 92.5,146.5
+ parent: 1
+ - uid: 2890
+ components:
+ - type: Transform
+ pos: 92.5,141.5
+ parent: 1
+ - uid: 2895
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 2896
+ components:
+ - type: Transform
+ pos: 92.5,137.5
+ parent: 1
+ - uid: 2907
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 2962
+ components:
+ - type: Transform
+ pos: 92.5,120.5
+ parent: 1
+ - uid: 2963
+ components:
+ - type: Transform
+ pos: 93.5,157.5
+ parent: 1
+ - uid: 2965
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 2966
+ components:
+ - type: Transform
+ pos: 94.5,157.5
+ parent: 1
+ - uid: 2968
+ components:
+ - type: Transform
+ pos: 46.5,76.5
+ parent: 1
+ - uid: 2976
+ components:
+ - type: Transform
+ pos: 49.5,76.5
+ parent: 1
+ - uid: 2986
+ components:
+ - type: Transform
+ pos: 50.5,76.5
+ parent: 1
+ - uid: 3004
+ components:
+ - type: Transform
+ pos: 50.5,75.5
+ parent: 1
+ - uid: 3006
+ components:
+ - type: Transform
+ pos: 95.5,162.5
+ parent: 1
+ - uid: 3013
+ components:
+ - type: Transform
+ pos: 95.5,161.5
+ parent: 1
+ - uid: 3014
+ components:
+ - type: Transform
+ pos: 95.5,160.5
+ parent: 1
+ - uid: 3023
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 3024
+ components:
+ - type: Transform
+ pos: 95.5,157.5
+ parent: 1
+ - uid: 3025
+ components:
+ - type: Transform
+ pos: 47.5,72.5
+ parent: 1
+ - uid: 3027
+ components:
+ - type: Transform
+ pos: 96.5,153.5
+ parent: 1
+ - uid: 3028
+ components:
+ - type: Transform
+ pos: 96.5,152.5
+ parent: 1
+ - uid: 3029
+ components:
+ - type: Transform
+ pos: 96.5,151.5
+ parent: 1
+ - uid: 3031
+ components:
+ - type: Transform
+ pos: 96.5,149.5
+ parent: 1
+ - uid: 3037
+ components:
+ - type: Transform
+ pos: 96.5,148.5
+ parent: 1
+ - uid: 3044
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 3045
+ components:
+ - type: Transform
+ pos: 48.5,72.5
+ parent: 1
+ - uid: 3046
+ components:
+ - type: Transform
+ pos: 96.5,146.5
+ parent: 1
+ - uid: 3048
+ components:
+ - type: Transform
+ pos: 96.5,144.5
+ parent: 1
+ - uid: 3065
+ components:
+ - type: Transform
+ pos: 96.5,143.5
+ parent: 1
+ - uid: 3067
+ components:
+ - type: Transform
+ pos: 96.5,139.5
+ parent: 1
+ - uid: 3068
+ components:
+ - type: Transform
+ pos: 96.5,137.5
+ parent: 1
+ - uid: 3070
+ components:
+ - type: Transform
+ pos: 96.5,135.5
+ parent: 1
+ - uid: 3077
+ components:
+ - type: Transform
+ pos: 96.5,131.5
+ parent: 1
+ - uid: 3078
+ components:
+ - type: Transform
+ pos: 49.5,72.5
+ parent: 1
+ - uid: 3080
+ components:
+ - type: Transform
+ pos: 97.5,153.5
+ parent: 1
+ - uid: 3087
+ components:
+ - type: Transform
+ pos: 97.5,146.5
+ parent: 1
+ - uid: 3091
+ components:
+ - type: Transform
+ pos: 97.5,143.5
+ parent: 1
+ - uid: 3096
+ components:
+ - type: Transform
+ pos: 97.5,131.5
+ parent: 1
+ - uid: 3098
+ components:
+ - type: Transform
+ pos: 97.5,129.5
+ parent: 1
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: 138.5,124.5
+ parent: 1
+ - uid: 3155
+ components:
+ - type: Transform
+ pos: 97.5,163.5
+ parent: 1
+ - uid: 3159
+ components:
+ - type: Transform
+ pos: 98.5,146.5
+ parent: 1
+ - uid: 3166
+ components:
+ - type: Transform
+ pos: 97.5,164.5
+ parent: 1
+ - uid: 3167
+ components:
+ - type: Transform
+ pos: 98.5,164.5
+ parent: 1
+ - uid: 3168
+ components:
+ - type: Transform
+ pos: 99.5,164.5
+ parent: 1
+ - uid: 3183
+ components:
+ - type: Transform
+ pos: 100.5,164.5
+ parent: 1
+ - uid: 3184
+ components:
+ - type: Transform
+ pos: 85.5,57.5
+ parent: 1
+ - uid: 3194
+ components:
+ - type: Transform
+ pos: 98.5,143.5
+ parent: 1
+ - uid: 3195
+ components:
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 1
+ - uid: 3204
+ components:
+ - type: Transform
+ pos: 78.5,141.5
+ parent: 1
+ - uid: 3213
+ components:
+ - type: Transform
+ pos: 96.5,163.5
+ parent: 1
+ - uid: 3215
+ components:
+ - type: Transform
+ pos: 98.5,131.5
+ parent: 1
+ - uid: 3292
+ components:
+ - type: Transform
+ pos: 98.5,120.5
+ parent: 1
+ - uid: 3296
+ components:
+ - type: Transform
+ pos: 99.5,146.5
+ parent: 1
+ - uid: 3297
+ components:
+ - type: Transform
+ pos: 99.5,145.5
+ parent: 1
+ - uid: 3301
+ components:
+ - type: Transform
+ pos: 99.5,144.5
+ parent: 1
+ - uid: 3302
+ components:
+ - type: Transform
+ pos: 99.5,143.5
+ parent: 1
+ - uid: 3303
+ components:
+ - type: Transform
+ pos: 99.5,139.5
+ parent: 1
+ - uid: 3304
+ components:
+ - type: Transform
+ pos: 99.5,135.5
+ parent: 1
+ - uid: 3305
+ components:
+ - type: Transform
+ pos: 99.5,131.5
+ parent: 1
+ - uid: 3307
+ components:
+ - type: Transform
+ pos: 99.5,129.5
+ parent: 1
+ - uid: 3326
+ components:
+ - type: Transform
+ pos: 99.5,128.5
+ parent: 1
+ - uid: 3334
+ components:
+ - type: Transform
+ pos: 71.5,82.5
+ parent: 1
+ - uid: 3335
+ components:
+ - type: Transform
+ pos: 71.5,83.5
+ parent: 1
+ - uid: 3336
+ components:
+ - type: Transform
+ pos: 71.5,84.5
+ parent: 1
+ - uid: 3337
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 3351
+ components:
+ - type: Transform
+ pos: 89.5,45.5
+ parent: 1
+ - uid: 3383
+ components:
+ - type: Transform
+ pos: 99.5,120.5
+ parent: 1
+ - uid: 3389
+ components:
+ - type: Transform
+ pos: 76.5,84.5
+ parent: 1
+ - uid: 3392
+ components:
+ - type: Transform
+ pos: 73.5,81.5
+ parent: 1
+ - uid: 3393
+ components:
+ - type: Transform
+ pos: 74.5,84.5
+ parent: 1
+ - uid: 3427
+ components:
+ - type: Transform
+ pos: 100.5,146.5
+ parent: 1
+ - uid: 3431
+ components:
+ - type: Transform
+ pos: 75.5,84.5
+ parent: 1
+ - uid: 3432
+ components:
+ - type: Transform
+ pos: 72.5,84.5
+ parent: 1
+ - uid: 3435
+ components:
+ - type: Transform
+ pos: 73.5,84.5
+ parent: 1
+ - uid: 3440
+ components:
+ - type: Transform
+ pos: 85.5,111.5
+ parent: 1
+ - uid: 3441
+ components:
+ - type: Transform
+ pos: 84.5,111.5
+ parent: 1
+ - uid: 3442
+ components:
+ - type: Transform
+ pos: 84.5,103.5
+ parent: 1
+ - uid: 3484
+ components:
+ - type: Transform
+ pos: 101.5,146.5
+ parent: 1
+ - uid: 3487
+ components:
+ - type: Transform
+ pos: 101.5,122.5
+ parent: 1
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: 102.5,157.5
+ parent: 1
+ - uid: 3491
+ components:
+ - type: Transform
+ pos: 102.5,153.5
+ parent: 1
+ - uid: 3512
+ components:
+ - type: Transform
+ pos: 102.5,128.5
+ parent: 1
+ - uid: 3513
+ components:
+ - type: Transform
+ pos: 102.5,127.5
+ parent: 1
+ - uid: 3514
+ components:
+ - type: Transform
+ pos: 102.5,126.5
+ parent: 1
+ - uid: 3515
+ components:
+ - type: Transform
+ pos: 102.5,125.5
+ parent: 1
+ - uid: 3516
+ components:
+ - type: Transform
+ pos: 102.5,123.5
+ parent: 1
+ - uid: 3517
+ components:
+ - type: Transform
+ pos: 102.5,122.5
+ parent: 1
+ - uid: 3532
+ components:
+ - type: Transform
+ pos: 84.5,104.5
+ parent: 1
+ - uid: 3533
+ components:
+ - type: Transform
+ pos: 84.5,106.5
+ parent: 1
+ - uid: 3534
+ components:
+ - type: Transform
+ pos: 84.5,105.5
+ parent: 1
+ - uid: 3535
+ components:
+ - type: Transform
+ pos: 84.5,101.5
+ parent: 1
+ - uid: 3537
+ components:
+ - type: Transform
+ pos: 84.5,99.5
+ parent: 1
+ - uid: 3538
+ components:
+ - type: Transform
+ pos: 84.5,98.5
+ parent: 1
+ - uid: 3539
+ components:
+ - type: Transform
+ pos: 90.5,111.5
+ parent: 1
+ - uid: 3540
+ components:
+ - type: Transform
+ pos: 85.5,98.5
+ parent: 1
+ - uid: 3543
+ components:
+ - type: Transform
+ pos: 85.5,95.5
+ parent: 1
+ - uid: 3544
+ components:
+ - type: Transform
+ pos: 85.5,93.5
+ parent: 1
+ - uid: 3545
+ components:
+ - type: Transform
+ pos: 85.5,89.5
+ parent: 1
+ - uid: 3546
+ components:
+ - type: Transform
+ pos: 86.5,95.5
+ parent: 1
+ - uid: 3547
+ components:
+ - type: Transform
+ pos: 86.5,89.5
+ parent: 1
+ - uid: 3548
+ components:
+ - type: Transform
+ pos: 87.5,98.5
+ parent: 1
+ - uid: 3549
+ components:
+ - type: Transform
+ pos: 87.5,95.5
+ parent: 1
+ - uid: 3551
+ components:
+ - type: Transform
+ pos: 87.5,89.5
+ parent: 1
+ - uid: 3576
+ components:
+ - type: Transform
+ pos: 103.5,162.5
+ parent: 1
+ - uid: 3577
+ components:
+ - type: Transform
+ pos: 103.5,161.5
+ parent: 1
+ - uid: 3579
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 3586
+ components:
+ - type: Transform
+ pos: 88.5,95.5
+ parent: 1
+ - uid: 3587
+ components:
+ - type: Transform
+ pos: 88.5,89.5
+ parent: 1
+ - uid: 3621
+ components:
+ - type: Transform
+ pos: 103.5,159.5
+ parent: 1
+ - uid: 3632
+ components:
+ - type: Transform
+ pos: 103.5,158.5
+ parent: 1
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: 103.5,157.5
+ parent: 1
+ - uid: 3640
+ components:
+ - type: Transform
+ pos: 103.5,153.5
+ parent: 1
+ - uid: 3647
+ components:
+ - type: Transform
+ pos: 103.5,152.5
+ parent: 1
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: 103.5,151.5
+ parent: 1
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 103.5,150.5
+ parent: 1
+ - uid: 3664
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 3685
+ components:
+ - type: Transform
+ pos: 89.5,99.5
+ parent: 1
+ - uid: 3686
+ components:
+ - type: Transform
+ pos: 89.5,98.5
+ parent: 1
+ - uid: 3716
+ components:
+ - type: Transform
+ pos: 77.5,15.5
+ parent: 1
+ - uid: 3718
+ components:
+ - type: Transform
+ pos: 82.5,15.5
+ parent: 1
+ - uid: 3735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,163.5
+ parent: 1
+ - uid: 3736
+ components:
+ - type: Transform
+ pos: 103.5,148.5
+ parent: 1
+ - uid: 3740
+ components:
+ - type: Transform
+ pos: 103.5,147.5
+ parent: 1
+ - uid: 3744
+ components:
+ - type: Transform
+ pos: 89.5,95.5
+ parent: 1
+ - uid: 3745
+ components:
+ - type: Transform
+ pos: 89.5,89.5
+ parent: 1
+ - uid: 3748
+ components:
+ - type: Transform
+ pos: 90.5,110.5
+ parent: 1
+ - uid: 3749
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 3765
+ components:
+ - type: Transform
+ pos: 110.5,17.5
+ parent: 1
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: 103.5,146.5
+ parent: 1
+ - uid: 3781
+ components:
+ - type: Transform
+ pos: 90.5,103.5
+ parent: 1
+ - uid: 3782
+ components:
+ - type: Transform
+ pos: 90.5,102.5
+ parent: 1
+ - uid: 3783
+ components:
+ - type: Transform
+ pos: 90.5,105.5
+ parent: 1
+ - uid: 3784
+ components:
+ - type: Transform
+ pos: 90.5,104.5
+ parent: 1
+ - uid: 3785
+ components:
+ - type: Transform
+ pos: 90.5,107.5
+ parent: 1
+ - uid: 3810
+ components:
+ - type: Transform
+ pos: 104.5,163.5
+ parent: 1
+ - uid: 3811
+ components:
+ - type: Transform
+ pos: 104.5,157.5
+ parent: 1
+ - uid: 3812
+ components:
+ - type: Transform
+ pos: 104.5,153.5
+ parent: 1
+ - uid: 3813
+ components:
+ - type: Transform
+ pos: 105.5,163.5
+ parent: 1
+ - uid: 3814
+ components:
+ - type: Transform
+ pos: 106.5,163.5
+ parent: 1
+ - uid: 3815
+ components:
+ - type: Transform
+ pos: 106.5,157.5
+ parent: 1
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: 106.5,153.5
+ parent: 1
+ - uid: 3817
+ components:
+ - type: Transform
+ pos: 106.5,128.5
+ parent: 1
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: 106.5,126.5
+ parent: 1
+ - uid: 3820
+ components:
+ - type: Transform
+ pos: 107.5,163.5
+ parent: 1
+ - uid: 3821
+ components:
+ - type: Transform
+ pos: 107.5,157.5
+ parent: 1
+ - uid: 3866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,120.5
+ parent: 1
+ - uid: 3871
+ components:
+ - type: Transform
+ pos: 108.5,163.5
+ parent: 1
+ - uid: 3875
+ components:
+ - type: Transform
+ pos: 109.5,163.5
+ parent: 1
+ - uid: 3877
+ components:
+ - type: Transform
+ pos: 110.5,163.5
+ parent: 1
+ - uid: 3879
+ components:
+ - type: Transform
+ pos: 110.5,153.5
+ parent: 1
+ - uid: 3880
+ components:
+ - type: Transform
+ pos: 110.5,128.5
+ parent: 1
+ - uid: 3881
+ components:
+ - type: Transform
+ pos: 110.5,126.5
+ parent: 1
+ - uid: 3883
+ components:
+ - type: Transform
+ pos: 111.5,163.5
+ parent: 1
+ - uid: 3893
+ components:
+ - type: Transform
+ pos: 112.5,153.5
+ parent: 1
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: 113.5,163.5
+ parent: 1
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: 113.5,157.5
+ parent: 1
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: 84.5,144.5
+ parent: 1
+ - uid: 3933
+ components:
+ - type: Transform
+ pos: 123.5,24.5
+ parent: 1
+ - uid: 3949
+ components:
+ - type: Transform
+ pos: 113.5,153.5
+ parent: 1
+ - uid: 3952
+ components:
+ - type: Transform
+ pos: 113.5,152.5
+ parent: 1
+ - uid: 3953
+ components:
+ - type: Transform
+ pos: 113.5,151.5
+ parent: 1
+ - uid: 3954
+ components:
+ - type: Transform
+ pos: 113.5,150.5
+ parent: 1
+ - uid: 3955
+ components:
+ - type: Transform
+ pos: 113.5,149.5
+ parent: 1
+ - uid: 3956
+ components:
+ - type: Transform
+ pos: 113.5,148.5
+ parent: 1
+ - uid: 3957
+ components:
+ - type: Transform
+ pos: 113.5,147.5
+ parent: 1
+ - uid: 3958
+ components:
+ - type: Transform
+ pos: 113.5,146.5
+ parent: 1
+ - uid: 3959
+ components:
+ - type: Transform
+ pos: 114.5,163.5
+ parent: 1
+ - uid: 3960
+ components:
+ - type: Transform
+ pos: 114.5,162.5
+ parent: 1
+ - uid: 3961
+ components:
+ - type: Transform
+ pos: 114.5,161.5
+ parent: 1
+ - uid: 3962
+ components:
+ - type: Transform
+ pos: 114.5,160.5
+ parent: 1
+ - uid: 3963
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 3986
+ components:
+ - type: Transform
+ pos: 133.5,124.5
+ parent: 1
+ - uid: 4009
+ components:
+ - type: Transform
+ pos: 114.5,158.5
+ parent: 1
+ - uid: 4012
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 4014
+ components:
+ - type: Transform
+ pos: 114.5,128.5
+ parent: 1
+ - uid: 4015
+ components:
+ - type: Transform
+ pos: 114.5,127.5
+ parent: 1
+ - uid: 4016
+ components:
+ - type: Transform
+ pos: 114.5,126.5
+ parent: 1
+ - uid: 4017
+ components:
+ - type: Transform
+ pos: 114.5,125.5
+ parent: 1
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: 114.5,123.5
+ parent: 1
+ - uid: 4019
+ components:
+ - type: Transform
+ pos: 114.5,122.5
+ parent: 1
+ - uid: 4054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,163.5
+ parent: 1
+ - uid: 4059
+ components:
+ - type: Transform
+ pos: 115.5,163.5
+ parent: 1
+ - uid: 4063
+ components:
+ - type: Transform
+ pos: 115.5,157.5
+ parent: 1
+ - uid: 4064
+ components:
+ - type: Transform
+ pos: 115.5,128.5
+ parent: 1
+ - uid: 4066
+ components:
+ - type: Transform
+ pos: 116.5,163.5
+ parent: 1
+ - uid: 4067
+ components:
+ - type: Transform
+ pos: 116.5,157.5
+ parent: 1
+ - uid: 4074
+ components:
+ - type: Transform
+ pos: 116.5,153.5
+ parent: 1
+ - uid: 4081
+ components:
+ - type: Transform
+ pos: 116.5,148.5
+ parent: 1
+ - uid: 4088
+ components:
+ - type: Transform
+ pos: 116.5,147.5
+ parent: 1
+ - uid: 4089
+ components:
+ - type: Transform
+ pos: 116.5,146.5
+ parent: 1
+ - uid: 4090
+ components:
+ - type: Transform
+ pos: 116.5,128.5
+ parent: 1
+ - uid: 4092
+ components:
+ - type: Transform
+ pos: 117.5,163.5
+ parent: 1
+ - uid: 4093
+ components:
+ - type: Transform
+ pos: 117.5,148.5
+ parent: 1
+ - uid: 4094
+ components:
+ - type: Transform
+ pos: 117.5,146.5
+ parent: 1
+ - uid: 4095
+ components:
+ - type: Transform
+ pos: 117.5,145.5
+ parent: 1
+ - uid: 4140
+ components:
+ - type: Transform
+ pos: 117.5,144.5
+ parent: 1
+ - uid: 4143
+ components:
+ - type: Transform
+ pos: 117.5,143.5
+ parent: 1
+ - uid: 4145
+ components:
+ - type: Transform
+ pos: 117.5,139.5
+ parent: 1
+ - uid: 4146
+ components:
+ - type: Transform
+ pos: 117.5,135.5
+ parent: 1
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: 117.5,131.5
+ parent: 1
+ - uid: 4148
+ components:
+ - type: Transform
+ pos: 117.5,130.5
+ parent: 1
+ - uid: 4149
+ components:
+ - type: Transform
+ pos: 117.5,129.5
+ parent: 1
+ - uid: 4163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,51.5
+ parent: 1
+ - uid: 4176
+ components:
+ - type: Transform
+ pos: 125.5,24.5
+ parent: 1
+ - uid: 4182
+ components:
+ - type: Transform
+ pos: 117.5,128.5
+ parent: 1
+ - uid: 4188
+ components:
+ - type: Transform
+ pos: 117.5,122.5
+ parent: 1
+ - uid: 4189
+ components:
+ - type: Transform
+ pos: 117.5,121.5
+ parent: 1
+ - uid: 4190
+ components:
+ - type: Transform
+ pos: 117.5,120.5
+ parent: 1
+ - uid: 4191
+ components:
+ - type: Transform
+ pos: 118.5,163.5
+ parent: 1
+ - uid: 4192
+ components:
+ - type: Transform
+ pos: 118.5,157.5
+ parent: 1
+ - uid: 4219
+ components:
+ - type: Transform
+ pos: 118.5,148.5
+ parent: 1
+ - uid: 4225
+ components:
+ - type: Transform
+ pos: 118.5,143.5
+ parent: 1
+ - uid: 4226
+ components:
+ - type: Transform
+ pos: 118.5,131.5
+ parent: 1
+ - uid: 4227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,120.5
+ parent: 1
+ - uid: 4228
+ components:
+ - type: Transform
+ pos: 118.5,120.5
+ parent: 1
+ - uid: 4229
+ components:
+ - type: Transform
+ pos: 119.5,163.5
+ parent: 1
+ - uid: 4230
+ components:
+ - type: Transform
+ pos: 119.5,157.5
+ parent: 1
+ - uid: 4231
+ components:
+ - type: Transform
+ pos: 119.5,153.5
+ parent: 1
+ - uid: 4232
+ components:
+ - type: Transform
+ pos: 119.5,148.5
+ parent: 1
+ - uid: 4275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,120.5
+ parent: 1
+ - uid: 4276
+ components:
+ - type: Transform
+ pos: 119.5,143.5
+ parent: 1
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: 119.5,131.5
+ parent: 1
+ - uid: 4280
+ components:
+ - type: Transform
+ pos: 96.5,147.5
+ parent: 1
+ - uid: 4283
+ components:
+ - type: Transform
+ pos: 120.5,163.5
+ parent: 1
+ - uid: 4284
+ components:
+ - type: Transform
+ pos: 120.5,162.5
+ parent: 1
+ - uid: 4285
+ components:
+ - type: Transform
+ pos: 120.5,161.5
+ parent: 1
+ - uid: 4286
+ components:
+ - type: Transform
+ pos: 120.5,159.5
+ parent: 1
+ - uid: 4287
+ components:
+ - type: Transform
+ pos: 120.5,158.5
+ parent: 1
+ - uid: 4288
+ components:
+ - type: Transform
+ pos: 120.5,157.5
+ parent: 1
+ - uid: 4289
+ components:
+ - type: Transform
+ pos: 120.5,153.5
+ parent: 1
+ - uid: 4290
+ components:
+ - type: Transform
+ pos: 120.5,152.5
+ parent: 1
+ - uid: 4291
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 4293
+ components:
+ - type: Transform
+ pos: 120.5,149.5
+ parent: 1
+ - uid: 4313
+ components:
+ - type: Transform
+ pos: 41.5,43.5
+ parent: 1
+ - uid: 4344
+ components:
+ - type: Transform
+ pos: 120.5,148.5
+ parent: 1
+ - uid: 4345
+ components:
+ - type: Transform
+ pos: 120.5,143.5
+ parent: 1
+ - uid: 4346
+ components:
+ - type: Transform
+ pos: 120.5,139.5
+ parent: 1
+ - uid: 4377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,35.5
+ parent: 1
+ - uid: 4378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 4388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,155.5
+ parent: 1
+ - uid: 4391
+ components:
+ - type: Transform
+ pos: 120.5,137.5
+ parent: 1
+ - uid: 4433
+ components:
+ - type: Transform
+ pos: 120.5,135.5
+ parent: 1
+ - uid: 4434
+ components:
+ - type: Transform
+ pos: 120.5,131.5
+ parent: 1
+ - uid: 4435
+ components:
+ - type: Transform
+ pos: 121.5,157.5
+ parent: 1
+ - uid: 4438
+ components:
+ - type: Transform
+ pos: 122.5,157.5
+ parent: 1
+ - uid: 4439
+ components:
+ - type: Transform
+ pos: 123.5,157.5
+ parent: 1
+ - uid: 4440
+ components:
+ - type: Transform
+ pos: 123.5,120.5
+ parent: 1
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: 124.5,157.5
+ parent: 1
+ - uid: 4442
+ components:
+ - type: Transform
+ pos: 124.5,156.5
+ parent: 1
+ - uid: 4443
+ components:
+ - type: Transform
+ pos: 124.5,155.5
+ parent: 1
+ - uid: 4444
+ components:
+ - type: Transform
+ pos: 124.5,154.5
+ parent: 1
+ - uid: 4445
+ components:
+ - type: Transform
+ pos: 124.5,153.5
+ parent: 1
+ - uid: 4495
+ components:
+ - type: Transform
+ pos: 124.5,152.5
+ parent: 1
+ - uid: 4496
+ components:
+ - type: Transform
+ pos: 124.5,151.5
+ parent: 1
+ - uid: 4505
+ components:
+ - type: Transform
+ pos: 124.5,150.5
+ parent: 1
+ - uid: 4506
+ components:
+ - type: Transform
+ pos: 124.5,149.5
+ parent: 1
+ - uid: 4507
+ components:
+ - type: Transform
+ pos: 124.5,148.5
+ parent: 1
+ - uid: 4508
+ components:
+ - type: Transform
+ pos: 124.5,147.5
+ parent: 1
+ - uid: 4547
+ components:
+ - type: Transform
+ pos: 124.5,146.5
+ parent: 1
+ - uid: 4559
+ components:
+ - type: Transform
+ pos: 124.5,142.5
+ parent: 1
+ - uid: 4585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,36.5
+ parent: 1
+ - uid: 4604
+ components:
+ - type: Transform
+ pos: 124.5,130.5
+ parent: 1
+ - uid: 4605
+ components:
+ - type: Transform
+ pos: 124.5,129.5
+ parent: 1
+ - uid: 4620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,124.5
+ parent: 1
+ - uid: 4652
+ components:
+ - type: Transform
+ pos: 124.5,127.5
+ parent: 1
+ - uid: 4653
+ components:
+ - type: Transform
+ pos: 124.5,126.5
+ parent: 1
+ - uid: 4654
+ components:
+ - type: Transform
+ pos: 124.5,125.5
+ parent: 1
+ - uid: 4657
+ components:
+ - type: Transform
+ pos: 124.5,124.5
+ parent: 1
+ - uid: 4658
+ components:
+ - type: Transform
+ pos: 124.5,123.5
+ parent: 1
+ - uid: 4660
+ components:
+ - type: Transform
+ pos: 124.5,121.5
+ parent: 1
+ - uid: 4661
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 4662
+ components:
+ - type: Transform
+ pos: 125.5,147.5
+ parent: 1
+ - uid: 4663
+ components:
+ - type: Transform
+ pos: 125.5,130.5
+ parent: 1
+ - uid: 4664
+ components:
+ - type: Transform
+ pos: 125.5,120.5
+ parent: 1
+ - uid: 4704
+ components:
+ - type: Transform
+ pos: 126.5,147.5
+ parent: 1
+ - uid: 4732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,120.5
+ parent: 1
+ - uid: 4737
+ components:
+ - type: Transform
+ pos: 127.5,147.5
+ parent: 1
+ - uid: 4738
+ components:
+ - type: Transform
+ pos: 127.5,141.5
+ parent: 1
+ - uid: 4804
+ components:
+ - type: Transform
+ pos: 127.5,130.5
+ parent: 1
+ - uid: 4806
+ components:
+ - type: Transform
+ pos: 128.5,147.5
+ parent: 1
+ - uid: 4807
+ components:
+ - type: Transform
+ pos: 129.5,147.5
+ parent: 1
+ - uid: 4808
+ components:
+ - type: Transform
+ pos: 90.5,106.5
+ parent: 1
+ - uid: 4809
+ components:
+ - type: Transform
+ pos: 90.5,108.5
+ parent: 1
+ - uid: 4810
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 4811
+ components:
+ - type: Transform
+ pos: 129.5,142.5
+ parent: 1
+ - uid: 4812
+ components:
+ - type: Transform
+ pos: 129.5,141.5
+ parent: 1
+ - uid: 4813
+ components:
+ - type: Transform
+ pos: 129.5,130.5
+ parent: 1
+ - uid: 4841
+ components:
+ - type: Transform
+ pos: 129.5,120.5
+ parent: 1
+ - uid: 4842
+ components:
+ - type: Transform
+ pos: 130.5,147.5
+ parent: 1
+ - uid: 4843
+ components:
+ - type: Transform
+ pos: 130.5,143.5
+ parent: 1
+ - uid: 4844
+ components:
+ - type: Transform
+ pos: 130.5,130.5
+ parent: 1
+ - uid: 4845
+ components:
+ - type: Transform
+ pos: 130.5,129.5
+ parent: 1
+ - uid: 4847
+ components:
+ - type: Transform
+ pos: 130.5,127.5
+ parent: 1
+ - uid: 4852
+ components:
+ - type: Transform
+ pos: 130.5,125.5
+ parent: 1
+ - uid: 4853
+ components:
+ - type: Transform
+ pos: 130.5,124.5
+ parent: 1
+ - uid: 4854
+ components:
+ - type: Transform
+ pos: 130.5,123.5
+ parent: 1
+ - uid: 4855
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 4857
+ components:
+ - type: Transform
+ pos: 130.5,121.5
+ parent: 1
+ - uid: 4858
+ components:
+ - type: Transform
+ pos: 130.5,120.5
+ parent: 1
+ - uid: 4864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 4889
+ components:
+ - type: Transform
+ pos: 147.5,42.5
+ parent: 1
+ - uid: 4907
+ components:
+ - type: Transform
+ pos: 130.5,95.5
+ parent: 1
+ - uid: 4908
+ components:
+ - type: Transform
+ pos: 130.5,94.5
+ parent: 1
+ - uid: 4914
+ components:
+ - type: Transform
+ pos: 130.5,92.5
+ parent: 1
+ - uid: 4961
+ components:
+ - type: Transform
+ pos: 130.5,90.5
+ parent: 1
+ - uid: 4964
+ components:
+ - type: Transform
+ pos: 130.5,88.5
+ parent: 1
+ - uid: 4965
+ components:
+ - type: Transform
+ pos: 130.5,87.5
+ parent: 1
+ - uid: 4966
+ components:
+ - type: Transform
+ pos: 131.5,147.5
+ parent: 1
+ - uid: 4967
+ components:
+ - type: Transform
+ pos: 131.5,143.5
+ parent: 1
+ - uid: 4968
+ components:
+ - type: Transform
+ pos: 131.5,130.5
+ parent: 1
+ - uid: 4998
+ components:
+ - type: Transform
+ pos: 116.5,172.5
+ parent: 1
+ - uid: 5001
+ components:
+ - type: Transform
+ pos: 131.5,120.5
+ parent: 1
+ - uid: 5005
+ components:
+ - type: Transform
+ pos: 132.5,147.5
+ parent: 1
+ - uid: 5006
+ components:
+ - type: Transform
+ pos: 132.5,143.5
+ parent: 1
+ - uid: 5008
+ components:
+ - type: Transform
+ pos: 132.5,120.5
+ parent: 1
+ - uid: 5029
+ components:
+ - type: Transform
+ pos: 133.5,147.5
+ parent: 1
+ - uid: 5030
+ components:
+ - type: Transform
+ pos: 133.5,146.5
+ parent: 1
+ - uid: 5031
+ components:
+ - type: Transform
+ pos: 133.5,145.5
+ parent: 1
+ - uid: 5032
+ components:
+ - type: Transform
+ pos: 133.5,144.5
+ parent: 1
+ - uid: 5035
+ components:
+ - type: Transform
+ pos: 133.5,141.5
+ parent: 1
+ - uid: 5085
+ components:
+ - type: Transform
+ pos: 133.5,139.5
+ parent: 1
+ - uid: 5086
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 5088
+ components:
+ - type: Transform
+ pos: 133.5,137.5
+ parent: 1
+ - uid: 5089
+ components:
+ - type: Transform
+ pos: 133.5,130.5
+ parent: 1
+ - uid: 5091
+ components:
+ - type: Transform
+ pos: 132.5,95.5
+ parent: 1
+ - uid: 5117
+ components:
+ - type: Transform
+ pos: 134.5,130.5
+ parent: 1
+ - uid: 5118
+ components:
+ - type: Transform
+ pos: 134.5,120.5
+ parent: 1
+ - uid: 5124
+ components:
+ - type: Transform
+ pos: 135.5,120.5
+ parent: 1
+ - uid: 5126
+ components:
+ - type: Transform
+ pos: 136.5,137.5
+ parent: 1
+ - uid: 5127
+ components:
+ - type: Transform
+ pos: 136.5,130.5
+ parent: 1
+ - uid: 5128
+ components:
+ - type: Transform
+ pos: 136.5,124.5
+ parent: 1
+ - uid: 5129
+ components:
+ - type: Transform
+ pos: 136.5,123.5
+ parent: 1
+ - uid: 5130
+ components:
+ - type: Transform
+ pos: 136.5,122.5
+ parent: 1
+ - uid: 5165
+ components:
+ - type: Transform
+ pos: 136.5,120.5
+ parent: 1
+ - uid: 5167
+ components:
+ - type: Transform
+ pos: 136.5,95.5
+ parent: 1
+ - uid: 5173
+ components:
+ - type: Transform
+ pos: 137.5,136.5
+ parent: 1
+ - uid: 5174
+ components:
+ - type: Transform
+ pos: 137.5,135.5
+ parent: 1
+ - uid: 5175
+ components:
+ - type: Transform
+ pos: 137.5,134.5
+ parent: 1
+ - uid: 5176
+ components:
+ - type: Transform
+ pos: 137.5,133.5
+ parent: 1
+ - uid: 5177
+ components:
+ - type: Transform
+ pos: 137.5,132.5
+ parent: 1
+ - uid: 5178
+ components:
+ - type: Transform
+ pos: 137.5,131.5
+ parent: 1
+ - uid: 5185
+ components:
+ - type: Transform
+ pos: 137.5,130.5
+ parent: 1
+ - uid: 5187
+ components:
+ - type: Transform
+ pos: 137.5,120.5
+ parent: 1
+ - uid: 5189
+ components:
+ - type: Transform
+ pos: 137.5,95.5
+ parent: 1
+ - uid: 5206
+ components:
+ - type: Transform
+ pos: 86.5,58.5
+ parent: 1
+ - uid: 5245
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 5253
+ components:
+ - type: Transform
+ pos: 135.5,124.5
+ parent: 1
+ - uid: 5295
+ components:
+ - type: Transform
+ pos: 84.5,128.5
+ parent: 1
+ - uid: 5340
+ components:
+ - type: Transform
+ pos: 156.5,93.5
+ parent: 1
+ - uid: 5367
+ components:
+ - type: Transform
+ pos: 166.5,143.5
+ parent: 1
+ - uid: 5369
+ components:
+ - type: Transform
+ pos: 165.5,141.5
+ parent: 1
+ - uid: 5399
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 5401
+ components:
+ - type: Transform
+ pos: 138.5,130.5
+ parent: 1
+ - uid: 5402
+ components:
+ - type: Transform
+ pos: 138.5,95.5
+ parent: 1
+ - uid: 5408
+ components:
+ - type: Transform
+ pos: 139.5,120.5
+ parent: 1
+ - uid: 5409
+ components:
+ - type: Transform
+ pos: 139.5,95.5
+ parent: 1
+ - uid: 5467
+ components:
+ - type: Transform
+ pos: 37.5,103.5
+ parent: 1
+ - uid: 5491
+ components:
+ - type: Transform
+ pos: 163.5,124.5
+ parent: 1
+ - uid: 5540
+ components:
+ - type: Transform
+ pos: 17.5,120.5
+ parent: 1
+ - uid: 5548
+ components:
+ - type: Transform
+ pos: 17.5,118.5
+ parent: 1
+ - uid: 5556
+ components:
+ - type: Transform
+ pos: 17.5,116.5
+ parent: 1
+ - uid: 5558
+ components:
+ - type: Transform
+ pos: 17.5,114.5
+ parent: 1
+ - uid: 5620
+ components:
+ - type: Transform
+ pos: 17.5,105.5
+ parent: 1
+ - uid: 5621
+ components:
+ - type: Transform
+ pos: 17.5,104.5
+ parent: 1
+ - uid: 5623
+ components:
+ - type: Transform
+ pos: 17.5,97.5
+ parent: 1
+ - uid: 5633
+ components:
+ - type: Transform
+ pos: 88.5,98.5
+ parent: 1
+ - uid: 5638
+ components:
+ - type: Transform
+ pos: 17.5,94.5
+ parent: 1
+ - uid: 5644
+ components:
+ - type: Transform
+ pos: 17.5,90.5
+ parent: 1
+ - uid: 5645
+ components:
+ - type: Transform
+ pos: 17.5,89.5
+ parent: 1
+ - uid: 5662
+ components:
+ - type: Transform
+ pos: 17.5,85.5
+ parent: 1
+ - uid: 5663
+ components:
+ - type: Transform
+ pos: 17.5,81.5
+ parent: 1
+ - uid: 5664
+ components:
+ - type: Transform
+ pos: 17.5,79.5
+ parent: 1
+ - uid: 5665
+ components:
+ - type: Transform
+ pos: 17.5,77.5
+ parent: 1
+ - uid: 5680
+ components:
+ - type: Transform
+ pos: 18.5,89.5
+ parent: 1
+ - uid: 5703
+ components:
+ - type: Transform
+ pos: 18.5,85.5
+ parent: 1
+ - uid: 5738
+ components:
+ - type: Transform
+ pos: 70.5,125.5
+ parent: 1
+ - uid: 5740
+ components:
+ - type: Transform
+ pos: 73.5,115.5
+ parent: 1
+ - uid: 5747
+ components:
+ - type: Transform
+ pos: 72.5,115.5
+ parent: 1
+ - uid: 5758
+ components:
+ - type: Transform
+ pos: 19.5,120.5
+ parent: 1
+ - uid: 5761
+ components:
+ - type: Transform
+ pos: 19.5,81.5
+ parent: 1
+ - uid: 5762
+ components:
+ - type: Transform
+ pos: 19.5,77.5
+ parent: 1
+ - uid: 5778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,111.5
+ parent: 1
+ - uid: 5779
+ components:
+ - type: Transform
+ pos: 19.5,67.5
+ parent: 1
+ - uid: 5783
+ components:
+ - type: Transform
+ pos: 20.5,124.5
+ parent: 1
+ - uid: 5795
+ components:
+ - type: Transform
+ pos: 20.5,122.5
+ parent: 1
+ - uid: 5796
+ components:
+ - type: Transform
+ pos: 20.5,121.5
+ parent: 1
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: 20.5,87.5
+ parent: 1
+ - uid: 5800
+ components:
+ - type: Transform
+ pos: 20.5,85.5
+ parent: 1
+ - uid: 5813
+ components:
+ - type: Transform
+ pos: 20.5,79.5
+ parent: 1
+ - uid: 5833
+ components:
+ - type: Transform
+ pos: 21.5,125.5
+ parent: 1
+ - uid: 5855
+ components:
+ - type: Transform
+ pos: 22.5,67.5
+ parent: 1
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: 23.5,67.5
+ parent: 1
+ - uid: 5908
+ components:
+ - type: Transform
+ pos: 25.5,67.5
+ parent: 1
+ - uid: 5915
+ components:
+ - type: Transform
+ pos: 26.5,71.5
+ parent: 1
+ - uid: 5949
+ components:
+ - type: Transform
+ pos: 26.5,68.5
+ parent: 1
+ - uid: 5950
+ components:
+ - type: Transform
+ pos: 26.5,67.5
+ parent: 1
+ - uid: 5960
+ components:
+ - type: Transform
+ pos: 26.5,66.5
+ parent: 1
+ - uid: 5962
+ components:
+ - type: Transform
+ pos: 27.5,72.5
+ parent: 1
+ - uid: 5971
+ components:
+ - type: Transform
+ pos: 27.5,66.5
+ parent: 1
+ - uid: 5975
+ components:
+ - type: Transform
+ pos: 36.5,103.5
+ parent: 1
+ - uid: 5976
+ components:
+ - type: Transform
+ pos: 121.5,75.5
+ parent: 1
+ - uid: 5977
+ components:
+ - type: Transform
+ pos: 121.5,72.5
+ parent: 1
+ - uid: 5978
+ components:
+ - type: Transform
+ pos: 121.5,69.5
+ parent: 1
+ - uid: 5986
+ components:
+ - type: Transform
+ pos: 121.5,66.5
+ parent: 1
+ - uid: 5987
+ components:
+ - type: Transform
+ pos: 121.5,63.5
+ parent: 1
+ - uid: 5988
+ components:
+ - type: Transform
+ pos: 121.5,62.5
+ parent: 1
+ - uid: 5989
+ components:
+ - type: Transform
+ pos: 121.5,61.5
+ parent: 1
+ - uid: 5990
+ components:
+ - type: Transform
+ pos: 121.5,57.5
+ parent: 1
+ - uid: 5991
+ components:
+ - type: Transform
+ pos: 121.5,56.5
+ parent: 1
+ - uid: 5993
+ components:
+ - type: Transform
+ pos: 121.5,53.5
+ parent: 1
+ - uid: 5995
+ components:
+ - type: Transform
+ pos: 121.5,52.5
+ parent: 1
+ - uid: 5996
+ components:
+ - type: Transform
+ pos: 121.5,51.5
+ parent: 1
+ - uid: 5997
+ components:
+ - type: Transform
+ pos: 121.5,47.5
+ parent: 1
+ - uid: 6001
+ components:
+ - type: Transform
+ pos: 121.5,46.5
+ parent: 1
+ - uid: 6002
+ components:
+ - type: Transform
+ pos: 29.5,72.5
+ parent: 1
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: 30.5,125.5
+ parent: 1
+ - uid: 6006
+ components:
+ - type: Transform
+ pos: 30.5,124.5
+ parent: 1
+ - uid: 6026
+ components:
+ - type: Transform
+ pos: 159.5,100.5
+ parent: 1
+ - uid: 6028
+ components:
+ - type: Transform
+ pos: 159.5,101.5
+ parent: 1
+ - uid: 6032
+ components:
+ - type: Transform
+ pos: 162.5,105.5
+ parent: 1
+ - uid: 6052
+ components:
+ - type: Transform
+ pos: 33.5,124.5
+ parent: 1
+ - uid: 6056
+ components:
+ - type: Transform
+ pos: 122.5,75.5
+ parent: 1
+ - uid: 6057
+ components:
+ - type: Transform
+ pos: 122.5,61.5
+ parent: 1
+ - uid: 6058
+ components:
+ - type: Transform
+ pos: 122.5,57.5
+ parent: 1
+ - uid: 6059
+ components:
+ - type: Transform
+ pos: 122.5,52.5
+ parent: 1
+ - uid: 6060
+ components:
+ - type: Transform
+ pos: 122.5,45.5
+ parent: 1
+ - uid: 6061
+ components:
+ - type: Transform
+ pos: 123.5,75.5
+ parent: 1
+ - uid: 6062
+ components:
+ - type: Transform
+ pos: 123.5,61.5
+ parent: 1
+ - uid: 6063
+ components:
+ - type: Transform
+ pos: 123.5,57.5
+ parent: 1
+ - uid: 6064
+ components:
+ - type: Transform
+ pos: 124.5,75.5
+ parent: 1
+ - uid: 6065
+ components:
+ - type: Transform
+ pos: 124.5,61.5
+ parent: 1
+ - uid: 6066
+ components:
+ - type: Transform
+ pos: 124.5,57.5
+ parent: 1
+ - uid: 6067
+ components:
+ - type: Transform
+ pos: 34.5,124.5
+ parent: 1
+ - uid: 6071
+ components:
+ - type: Transform
+ pos: 35.5,126.5
+ parent: 1
+ - uid: 6085
+ components:
+ - type: Transform
+ pos: 131.5,95.5
+ parent: 1
+ - uid: 6092
+ components:
+ - type: Transform
+ pos: 124.5,52.5
+ parent: 1
+ - uid: 6096
+ components:
+ - type: Transform
+ pos: 38.5,127.5
+ parent: 1
+ - uid: 6098
+ components:
+ - type: Transform
+ pos: 40.5,127.5
+ parent: 1
+ - uid: 6106
+ components:
+ - type: Transform
+ pos: 43.5,127.5
+ parent: 1
+ - uid: 6113
+ components:
+ - type: Transform
+ pos: 45.5,127.5
+ parent: 1
+ - uid: 6114
+ components:
+ - type: Transform
+ pos: 46.5,127.5
+ parent: 1
+ - uid: 6118
+ components:
+ - type: Transform
+ pos: 124.5,45.5
+ parent: 1
+ - uid: 6119
+ components:
+ - type: Transform
+ pos: 125.5,75.5
+ parent: 1
+ - uid: 6120
+ components:
+ - type: Transform
+ pos: 125.5,72.5
+ parent: 1
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: 48.5,127.5
+ parent: 1
+ - uid: 6148
+ components:
+ - type: Transform
+ pos: 132.5,87.5
+ parent: 1
+ - uid: 6151
+ components:
+ - type: Transform
+ pos: 125.5,69.5
+ parent: 1
+ - uid: 6152
+ components:
+ - type: Transform
+ pos: 125.5,66.5
+ parent: 1
+ - uid: 6153
+ components:
+ - type: Transform
+ pos: 125.5,63.5
+ parent: 1
+ - uid: 6154
+ components:
+ - type: Transform
+ pos: 125.5,62.5
+ parent: 1
+ - uid: 6161
+ components:
+ - type: Transform
+ pos: 125.5,61.5
+ parent: 1
+ - uid: 6162
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 6163
+ components:
+ - type: Transform
+ pos: 125.5,53.5
+ parent: 1
+ - uid: 6164
+ components:
+ - type: Transform
+ pos: 125.5,52.5
+ parent: 1
+ - uid: 6165
+ components:
+ - type: Transform
+ pos: 125.5,51.5
+ parent: 1
+ - uid: 6166
+ components:
+ - type: Transform
+ pos: 125.5,50.5
+ parent: 1
+ - uid: 6200
+ components:
+ - type: Transform
+ pos: 144.5,42.5
+ parent: 1
+ - uid: 6201
+ components:
+ - type: Transform
+ pos: 125.5,49.5
+ parent: 1
+ - uid: 6202
+ components:
+ - type: Transform
+ pos: 125.5,48.5
+ parent: 1
+ - uid: 6205
+ components:
+ - type: Transform
+ pos: 125.5,47.5
+ parent: 1
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: 125.5,46.5
+ parent: 1
+ - uid: 6209
+ components:
+ - type: Transform
+ pos: 125.5,44.5
+ parent: 1
+ - uid: 6210
+ components:
+ - type: Transform
+ pos: 126.5,75.5
+ parent: 1
+ - uid: 6220
+ components:
+ - type: Transform
+ pos: 51.5,155.5
+ parent: 1
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: 159.5,102.5
+ parent: 1
+ - uid: 6258
+ components:
+ - type: Transform
+ pos: 126.5,44.5
+ parent: 1
+ - uid: 6259
+ components:
+ - type: Transform
+ pos: 127.5,75.5
+ parent: 1
+ - uid: 6262
+ components:
+ - type: Transform
+ pos: 127.5,57.5
+ parent: 1
+ - uid: 6263
+ components:
+ - type: Transform
+ pos: 127.5,53.5
+ parent: 1
+ - uid: 6265
+ components:
+ - type: Transform
+ pos: 128.5,75.5
+ parent: 1
+ - uid: 6266
+ components:
+ - type: Transform
+ pos: 128.5,57.5
+ parent: 1
+ - uid: 6267
+ components:
+ - type: Transform
+ pos: 128.5,56.5
+ parent: 1
+ - uid: 6268
+ components:
+ - type: Transform
+ pos: 128.5,54.5
+ parent: 1
+ - uid: 6269
+ components:
+ - type: Transform
+ pos: 128.5,53.5
+ parent: 1
+ - uid: 6270
+ components:
+ - type: Transform
+ pos: 128.5,44.5
+ parent: 1
+ - uid: 6273
+ components:
+ - type: Transform
+ pos: 51.5,144.5
+ parent: 1
+ - uid: 6276
+ components:
+ - type: Transform
+ pos: 51.5,143.5
+ parent: 1
+ - uid: 6306
+ components:
+ - type: Transform
+ pos: 128.5,43.5
+ parent: 1
+ - uid: 6307
+ components:
+ - type: Transform
+ pos: 129.5,75.5
+ parent: 1
+ - uid: 6310
+ components:
+ - type: Transform
+ pos: 129.5,74.5
+ parent: 1
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: 129.5,67.5
+ parent: 1
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 6313
+ components:
+ - type: Transform
+ pos: 129.5,65.5
+ parent: 1
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: 129.5,64.5
+ parent: 1
+ - uid: 6315
+ components:
+ - type: Transform
+ pos: 129.5,63.5
+ parent: 1
+ - uid: 6316
+ components:
+ - type: Transform
+ pos: 129.5,62.5
+ parent: 1
+ - uid: 6317
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 6318
+ components:
+ - type: Transform
+ pos: 129.5,53.5
+ parent: 1
+ - uid: 6319
+ components:
+ - type: Transform
+ pos: 129.5,43.5
+ parent: 1
+ - uid: 6320
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 6322
+ components:
+ - type: Transform
+ pos: 130.5,61.5
+ parent: 1
+ - uid: 6324
+ components:
+ - type: Transform
+ pos: 132.5,61.5
+ parent: 1
+ - uid: 6325
+ components:
+ - type: Transform
+ pos: 51.5,137.5
+ parent: 1
+ - uid: 6327
+ components:
+ - type: Transform
+ pos: 51.5,135.5
+ parent: 1
+ - uid: 6351
+ components:
+ - type: Transform
+ pos: 76.5,77.5
+ parent: 1
+ - uid: 6355
+ components:
+ - type: Transform
+ pos: 132.5,57.5
+ parent: 1
+ - uid: 6359
+ components:
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+ - uid: 6361
+ components:
+ - type: Transform
+ pos: 133.5,57.5
+ parent: 1
+ - uid: 6362
+ components:
+ - type: Transform
+ pos: 133.5,53.5
+ parent: 1
+ - uid: 6363
+ components:
+ - type: Transform
+ pos: 133.5,43.5
+ parent: 1
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: 134.5,57.5
+ parent: 1
+ - uid: 6380
+ components:
+ - type: Transform
+ pos: 77.5,77.5
+ parent: 1
+ - uid: 6401
+ components:
+ - type: Transform
+ pos: 134.5,53.5
+ parent: 1
+ - uid: 6403
+ components:
+ - type: Transform
+ pos: 134.5,43.5
+ parent: 1
+ - uid: 6404
+ components:
+ - type: Transform
+ pos: 134.5,42.5
+ parent: 1
+ - uid: 6405
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - uid: 6409
+ components:
+ - type: Transform
+ pos: 135.5,61.5
+ parent: 1
+ - uid: 6410
+ components:
+ - type: Transform
+ pos: 135.5,57.5
+ parent: 1
+ - uid: 6411
+ components:
+ - type: Transform
+ pos: 135.5,53.5
+ parent: 1
+ - uid: 6416
+ components:
+ - type: Transform
+ pos: 135.5,42.5
+ parent: 1
+ - uid: 6419
+ components:
+ - type: Transform
+ pos: 52.5,137.5
+ parent: 1
+ - uid: 6427
+ components:
+ - type: Transform
+ pos: 53.5,144.5
+ parent: 1
+ - uid: 6435
+ components:
+ - type: Transform
+ pos: 136.5,75.5
+ parent: 1
+ - uid: 6444
+ components:
+ - type: Transform
+ pos: 136.5,72.5
+ parent: 1
+ - uid: 6445
+ components:
+ - type: Transform
+ pos: 136.5,67.5
+ parent: 1
+ - uid: 6446
+ components:
+ - type: Transform
+ pos: 136.5,66.5
+ parent: 1
+ - uid: 6447
+ components:
+ - type: Transform
+ pos: 136.5,65.5
+ parent: 1
+ - uid: 6448
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 6451
+ components:
+ - type: Transform
+ pos: 136.5,63.5
+ parent: 1
+ - uid: 6455
+ components:
+ - type: Transform
+ pos: 136.5,62.5
+ parent: 1
+ - uid: 6456
+ components:
+ - type: Transform
+ pos: 136.5,61.5
+ parent: 1
+ - uid: 6459
+ components:
+ - type: Transform
+ pos: 53.5,137.5
+ parent: 1
+ - uid: 6494
+ components:
+ - type: Transform
+ pos: 131.5,111.5
+ parent: 1
+ - uid: 6495
+ components:
+ - type: Transform
+ pos: 132.5,114.5
+ parent: 1
+ - uid: 6496
+ components:
+ - type: Transform
+ pos: 132.5,111.5
+ parent: 1
+ - uid: 6497
+ components:
+ - type: Transform
+ pos: 133.5,111.5
+ parent: 1
+ - uid: 6499
+ components:
+ - type: Transform
+ pos: 134.5,111.5
+ parent: 1
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: 136.5,60.5
+ parent: 1
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: 136.5,58.5
+ parent: 1
+ - uid: 6517
+ components:
+ - type: Transform
+ pos: 55.5,144.5
+ parent: 1
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: 55.5,142.5
+ parent: 1
+ - uid: 6521
+ components:
+ - type: Transform
+ pos: 55.5,140.5
+ parent: 1
+ - uid: 6522
+ components:
+ - type: Transform
+ pos: 55.5,138.5
+ parent: 1
+ - uid: 6524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,153.5
+ parent: 1
+ - uid: 6527
+ components:
+ - type: Transform
+ pos: 56.5,159.5
+ parent: 1
+ - uid: 6531
+ components:
+ - type: Transform
+ pos: 136.5,57.5
+ parent: 1
+ - uid: 6535
+ components:
+ - type: Transform
+ pos: 136.5,53.5
+ parent: 1
+ - uid: 6538
+ components:
+ - type: Transform
+ pos: 136.5,42.5
+ parent: 1
+ - uid: 6540
+ components:
+ - type: Transform
+ pos: 137.5,53.5
+ parent: 1
+ - uid: 6541
+ components:
+ - type: Transform
+ pos: 135.5,113.5
+ parent: 1
+ - uid: 6543
+ components:
+ - type: Transform
+ pos: 56.5,157.5
+ parent: 1
+ - uid: 6548
+ components:
+ - type: Transform
+ pos: 56.5,155.5
+ parent: 1
+ - uid: 6553
+ components:
+ - type: Transform
+ pos: 135.5,111.5
+ parent: 1
+ - uid: 6557
+ components:
+ - type: Transform
+ pos: 137.5,52.5
+ parent: 1
+ - uid: 6558
+ components:
+ - type: Transform
+ pos: 137.5,51.5
+ parent: 1
+ - uid: 6559
+ components:
+ - type: Transform
+ pos: 137.5,50.5
+ parent: 1
+ - uid: 6561
+ components:
+ - type: Transform
+ pos: 137.5,49.5
+ parent: 1
+ - uid: 6563
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 6581
+ components:
+ - type: Transform
+ pos: 137.5,48.5
+ parent: 1
+ - uid: 6582
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 6583
+ components:
+ - type: Transform
+ pos: 137.5,46.5
+ parent: 1
+ - uid: 6590
+ components:
+ - type: Transform
+ pos: 137.5,45.5
+ parent: 1
+ - uid: 6591
+ components:
+ - type: Transform
+ pos: 137.5,44.5
+ parent: 1
+ - uid: 6593
+ components:
+ - type: Transform
+ pos: 137.5,43.5
+ parent: 1
+ - uid: 6594
+ components:
+ - type: Transform
+ pos: 137.5,42.5
+ parent: 1
+ - uid: 6595
+ components:
+ - type: Transform
+ pos: 138.5,50.5
+ parent: 1
+ - uid: 6601
+ components:
+ - type: Transform
+ pos: 139.5,43.5
+ parent: 1
+ - uid: 6602
+ components:
+ - type: Transform
+ pos: 139.5,42.5
+ parent: 1
+ - uid: 6603
+ components:
+ - type: Transform
+ pos: 139.5,41.5
+ parent: 1
+ - uid: 6606
+ components:
+ - type: Transform
+ pos: 140.5,75.5
+ parent: 1
+ - uid: 6607
+ components:
+ - type: Transform
+ pos: 140.5,72.5
+ parent: 1
+ - uid: 6608
+ components:
+ - type: Transform
+ pos: 140.5,65.5
+ parent: 1
+ - uid: 6610
+ components:
+ - type: Transform
+ pos: 140.5,64.5
+ parent: 1
+ - uid: 6639
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 6643
+ components:
+ - type: Transform
+ pos: 140.5,63.5
+ parent: 1
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: 141.5,75.5
+ parent: 1
+ - uid: 6646
+ components:
+ - type: Transform
+ pos: 141.5,72.5
+ parent: 1
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: 141.5,43.5
+ parent: 1
+ - uid: 6650
+ components:
+ - type: Transform
+ pos: 141.5,41.5
+ parent: 1
+ - uid: 6651
+ components:
+ - type: Transform
+ pos: 142.5,72.5
+ parent: 1
+ - uid: 6652
+ components:
+ - type: Transform
+ pos: 142.5,63.5
+ parent: 1
+ - uid: 6653
+ components:
+ - type: Transform
+ pos: 142.5,62.5
+ parent: 1
+ - uid: 6654
+ components:
+ - type: Transform
+ pos: 142.5,61.5
+ parent: 1
+ - uid: 6655
+ components:
+ - type: Transform
+ pos: 142.5,60.5
+ parent: 1
+ - uid: 6657
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 6658
+ components:
+ - type: Transform
+ pos: 59.5,159.5
+ parent: 1
+ - uid: 6663
+ components:
+ - type: Transform
+ pos: 60.5,162.5
+ parent: 1
+ - uid: 6677
+ components:
+ - type: Transform
+ pos: 142.5,50.5
+ parent: 1
+ - uid: 6678
+ components:
+ - type: Transform
+ pos: 142.5,43.5
+ parent: 1
+ - uid: 6679
+ components:
+ - type: Transform
+ pos: 142.5,41.5
+ parent: 1
+ - uid: 6681
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 6682
+ components:
+ - type: Transform
+ pos: 143.5,59.5
+ parent: 1
+ - uid: 6684
+ components:
+ - type: Transform
+ pos: 143.5,54.5
+ parent: 1
+ - uid: 6693
+ components:
+ - type: Transform
+ pos: 60.5,160.5
+ parent: 1
+ - uid: 6701
+ components:
+ - type: Transform
+ pos: 141.5,109.5
+ parent: 1
+ - uid: 6704
+ components:
+ - type: Transform
+ pos: 141.5,108.5
+ parent: 1
+ - uid: 6710
+ components:
+ - type: Transform
+ pos: 143.5,53.5
+ parent: 1
+ - uid: 6711
+ components:
+ - type: Transform
+ pos: 143.5,52.5
+ parent: 1
+ - uid: 6712
+ components:
+ - type: Transform
+ pos: 143.5,51.5
+ parent: 1
+ - uid: 6713
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 6716
+ components:
+ - type: Transform
+ pos: 143.5,49.5
+ parent: 1
+ - uid: 6717
+ components:
+ - type: Transform
+ pos: 143.5,48.5
+ parent: 1
+ - uid: 6719
+ components:
+ - type: Transform
+ pos: 143.5,47.5
+ parent: 1
+ - uid: 6723
+ components:
+ - type: Transform
+ pos: 62.5,162.5
+ parent: 1
+ - uid: 6726
+ components:
+ - type: Transform
+ pos: 65.5,162.5
+ parent: 1
+ - uid: 6739
+ components:
+ - type: Transform
+ pos: 66.5,165.5
+ parent: 1
+ - uid: 6749
+ components:
+ - type: Transform
+ pos: 141.5,107.5
+ parent: 1
+ - uid: 6750
+ components:
+ - type: Transform
+ pos: 141.5,106.5
+ parent: 1
+ - uid: 6751
+ components:
+ - type: Transform
+ pos: 141.5,102.5
+ parent: 1
+ - uid: 6752
+ components:
+ - type: Transform
+ pos: 141.5,101.5
+ parent: 1
+ - uid: 6753
+ components:
+ - type: Transform
+ pos: 142.5,111.5
+ parent: 1
+ - uid: 6754
+ components:
+ - type: Transform
+ pos: 142.5,107.5
+ parent: 1
+ - uid: 6765
+ components:
+ - type: Transform
+ pos: 143.5,46.5
+ parent: 1
+ - uid: 6766
+ components:
+ - type: Transform
+ pos: 143.5,45.5
+ parent: 1
+ - uid: 6767
+ components:
+ - type: Transform
+ pos: 143.5,44.5
+ parent: 1
+ - uid: 6768
+ components:
+ - type: Transform
+ pos: 143.5,43.5
+ parent: 1
+ - uid: 6772
+ components:
+ - type: Transform
+ pos: 144.5,75.5
+ parent: 1
+ - uid: 6774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,46.5
+ parent: 1
+ - uid: 6776
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+ - uid: 6777
+ components:
+ - type: Transform
+ pos: 66.5,164.5
+ parent: 1
+ - uid: 6790
+ components:
+ - type: Transform
+ pos: 142.5,101.5
+ parent: 1
+ - uid: 6792
+ components:
+ - type: Transform
+ pos: 144.5,111.5
+ parent: 1
+ - uid: 6795
+ components:
+ - type: Transform
+ pos: 144.5,59.5
+ parent: 1
+ - uid: 6796
+ components:
+ - type: Transform
+ pos: 144.5,54.5
+ parent: 1
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: 144.5,47.5
+ parent: 1
+ - uid: 6800
+ components:
+ - type: Transform
+ pos: 145.5,75.5
+ parent: 1
+ - uid: 6801
+ components:
+ - type: Transform
+ pos: 145.5,74.5
+ parent: 1
+ - uid: 6802
+ components:
+ - type: Transform
+ pos: 145.5,73.5
+ parent: 1
+ - uid: 6803
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 6804
+ components:
+ - type: Transform
+ pos: 145.5,63.5
+ parent: 1
+ - uid: 6805
+ components:
+ - type: Transform
+ pos: 145.5,59.5
+ parent: 1
+ - uid: 6807
+ components:
+ - type: Transform
+ pos: 146.5,73.5
+ parent: 1
+ - uid: 6809
+ components:
+ - type: Transform
+ pos: 146.5,65.5
+ parent: 1
+ - uid: 6826
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 6827
+ components:
+ - type: Transform
+ pos: 144.5,101.5
+ parent: 1
+ - uid: 6831
+ components:
+ - type: Transform
+ pos: 145.5,111.5
+ parent: 1
+ - uid: 6832
+ components:
+ - type: Transform
+ pos: 145.5,110.5
+ parent: 1
+ - uid: 6833
+ components:
+ - type: Transform
+ pos: 71.5,165.5
+ parent: 1
+ - uid: 6838
+ components:
+ - type: Transform
+ pos: 146.5,64.5
+ parent: 1
+ - uid: 6839
+ components:
+ - type: Transform
+ pos: 146.5,63.5
+ parent: 1
+ - uid: 6840
+ components:
+ - type: Transform
+ pos: 146.5,62.5
+ parent: 1
+ - uid: 6841
+ components:
+ - type: Transform
+ pos: 146.5,61.5
+ parent: 1
+ - uid: 6842
+ components:
+ - type: Transform
+ pos: 146.5,60.5
+ parent: 1
+ - uid: 6843
+ components:
+ - type: Transform
+ pos: 146.5,59.5
+ parent: 1
+ - uid: 6844
+ components:
+ - type: Transform
+ pos: 146.5,47.5
+ parent: 1
+ - uid: 6845
+ components:
+ - type: Transform
+ pos: 146.5,42.5
+ parent: 1
+ - uid: 6847
+ components:
+ - type: Transform
+ pos: 147.5,47.5
+ parent: 1
+ - uid: 6849
+ components:
+ - type: Transform
+ pos: 148.5,73.5
+ parent: 1
+ - uid: 6850
+ components:
+ - type: Transform
+ pos: 148.5,47.5
+ parent: 1
+ - uid: 6853
+ components:
+ - type: Transform
+ pos: 149.5,73.5
+ parent: 1
+ - uid: 6854
+ components:
+ - type: Transform
+ pos: 72.5,165.5
+ parent: 1
+ - uid: 6874
+ components:
+ - type: Transform
+ pos: 145.5,108.5
+ parent: 1
+ - uid: 6875
+ components:
+ - type: Transform
+ pos: 145.5,107.5
+ parent: 1
+ - uid: 6876
+ components:
+ - type: Transform
+ pos: 145.5,101.5
+ parent: 1
+ - uid: 6877
+ components:
+ - type: Transform
+ pos: 146.5,107.5
+ parent: 1
+ - uid: 6878
+ components:
+ - type: Transform
+ pos: 72.5,163.5
+ parent: 1
+ - uid: 6887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,41.5
+ parent: 1
+ - uid: 6894
+ components:
+ - type: Transform
+ pos: 149.5,54.5
+ parent: 1
+ - uid: 6895
+ components:
+ - type: Transform
+ pos: 149.5,47.5
+ parent: 1
+ - uid: 6897
+ components:
+ - type: Transform
+ pos: 150.5,75.5
+ parent: 1
+ - uid: 6898
+ components:
+ - type: Transform
+ pos: 150.5,74.5
+ parent: 1
+ - uid: 6899
+ components:
+ - type: Transform
+ pos: 150.5,73.5
+ parent: 1
+ - uid: 6901
+ components:
+ - type: Transform
+ pos: 150.5,69.5
+ parent: 1
+ - uid: 6906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,157.5
+ parent: 1
+ - uid: 6908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,157.5
+ parent: 1
+ - uid: 6919
+ components:
+ - type: Transform
+ pos: 146.5,101.5
+ parent: 1
+ - uid: 6934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,50.5
+ parent: 1
+ - uid: 6940
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 6942
+ components:
+ - type: Transform
+ pos: 162.5,127.5
+ parent: 1
+ - uid: 6953
+ components:
+ - type: Transform
+ pos: 153.5,92.5
+ parent: 1
+ - uid: 6956
+ components:
+ - type: Transform
+ pos: 153.5,89.5
+ parent: 1
+ - uid: 6957
+ components:
+ - type: Transform
+ pos: 150.5,66.5
+ parent: 1
+ - uid: 6960
+ components:
+ - type: Transform
+ pos: 150.5,65.5
+ parent: 1
+ - uid: 6961
+ components:
+ - type: Transform
+ pos: 150.5,64.5
+ parent: 1
+ - uid: 6962
+ components:
+ - type: Transform
+ pos: 154.5,92.5
+ parent: 1
+ - uid: 6963
+ components:
+ - type: Transform
+ pos: 154.5,89.5
+ parent: 1
+ - uid: 6964
+ components:
+ - type: Transform
+ pos: 154.5,88.5
+ parent: 1
+ - uid: 6965
+ components:
+ - type: Transform
+ pos: 150.5,60.5
+ parent: 1
+ - uid: 6970
+ components:
+ - type: Transform
+ pos: 155.5,92.5
+ parent: 1
+ - uid: 6972
+ components:
+ - type: Transform
+ pos: 156.5,95.5
+ parent: 1
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: 150.5,59.5
+ parent: 1
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: 164.5,127.5
+ parent: 1
+ - uid: 7018
+ components:
+ - type: Transform
+ pos: 156.5,92.5
+ parent: 1
+ - uid: 7021
+ components:
+ - type: Transform
+ pos: 90.5,109.5
+ parent: 1
+ - uid: 7030
+ components:
+ - type: Transform
+ pos: 150.5,58.5
+ parent: 1
+ - uid: 7031
+ components:
+ - type: Transform
+ pos: 150.5,55.5
+ parent: 1
+ - uid: 7032
+ components:
+ - type: Transform
+ pos: 150.5,54.5
+ parent: 1
+ - uid: 7034
+ components:
+ - type: Transform
+ pos: 150.5,47.5
+ parent: 1
+ - uid: 7036
+ components:
+ - type: Transform
+ pos: 151.5,75.5
+ parent: 1
+ - uid: 7037
+ components:
+ - type: Transform
+ pos: 151.5,65.5
+ parent: 1
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: 151.5,59.5
+ parent: 1
+ - uid: 7064
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 7067
+ components:
+ - type: Transform
+ pos: 120.5,92.5
+ parent: 1
+ - uid: 7068
+ components:
+ - type: Transform
+ pos: 120.5,91.5
+ parent: 1
+ - uid: 7075
+ components:
+ - type: Transform
+ pos: 156.5,87.5
+ parent: 1
+ - uid: 7077
+ components:
+ - type: Transform
+ pos: 156.5,85.5
+ parent: 1
+ - uid: 7078
+ components:
+ - type: Transform
+ pos: 157.5,95.5
+ parent: 1
+ - uid: 7082
+ components:
+ - type: Transform
+ pos: 90.5,98.5
+ parent: 1
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: 84.5,15.5
+ parent: 1
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: 85.5,163.5
+ parent: 1
+ - uid: 7089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,124.5
+ parent: 1
+ - uid: 7097
+ components:
+ - type: Transform
+ pos: 85.5,17.5
+ parent: 1
+ - uid: 7100
+ components:
+ - type: Transform
+ pos: 86.5,166.5
+ parent: 1
+ - uid: 7103
+ components:
+ - type: Transform
+ pos: 151.5,49.5
+ parent: 1
+ - uid: 7104
+ components:
+ - type: Transform
+ pos: 151.5,48.5
+ parent: 1
+ - uid: 7117
+ components:
+ - type: Transform
+ pos: 158.5,111.5
+ parent: 1
+ - uid: 7118
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 7120
+ components:
+ - type: Transform
+ pos: 159.5,111.5
+ parent: 1
+ - uid: 7121
+ components:
+ - type: Transform
+ pos: 159.5,105.5
+ parent: 1
+ - uid: 7126
+ components:
+ - type: Transform
+ pos: 160.5,111.5
+ parent: 1
+ - uid: 7129
+ components:
+ - type: Transform
+ pos: 162.5,125.5
+ parent: 1
+ - uid: 7130
+ components:
+ - type: Transform
+ pos: 90.5,97.5
+ parent: 1
+ - uid: 7131
+ components:
+ - type: Transform
+ pos: 90.5,96.5
+ parent: 1
+ - uid: 7133
+ components:
+ - type: Transform
+ pos: 90.5,95.5
+ parent: 1
+ - uid: 7134
+ components:
+ - type: Transform
+ pos: 90.5,94.5
+ parent: 1
+ - uid: 7135
+ components:
+ - type: Transform
+ pos: 86.5,164.5
+ parent: 1
+ - uid: 7136
+ components:
+ - type: Transform
+ pos: 86.5,163.5
+ parent: 1
+ - uid: 7138
+ components:
+ - type: Transform
+ pos: 87.5,166.5
+ parent: 1
+ - uid: 7139
+ components:
+ - type: Transform
+ pos: 88.5,166.5
+ parent: 1
+ - uid: 7140
+ components:
+ - type: Transform
+ pos: 89.5,174.5
+ parent: 1
+ - uid: 7141
+ components:
+ - type: Transform
+ pos: 89.5,173.5
+ parent: 1
+ - uid: 7142
+ components:
+ - type: Transform
+ pos: 89.5,167.5
+ parent: 1
+ - uid: 7145
+ components:
+ - type: Transform
+ pos: 151.5,47.5
+ parent: 1
+ - uid: 7147
+ components:
+ - type: Transform
+ pos: 152.5,75.5
+ parent: 1
+ - uid: 7148
+ components:
+ - type: Transform
+ pos: 152.5,65.5
+ parent: 1
+ - uid: 7149
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 7150
+ components:
+ - type: Transform
+ pos: 152.5,48.5
+ parent: 1
+ - uid: 7152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,128.5
+ parent: 1
+ - uid: 7155
+ components:
+ - type: Transform
+ pos: 92.5,16.5
+ parent: 1
+ - uid: 7157
+ components:
+ - type: Transform
+ pos: 92.5,14.5
+ parent: 1
+ - uid: 7158
+ components:
+ - type: Transform
+ pos: 153.5,75.5
+ parent: 1
+ - uid: 7159
+ components:
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - uid: 7165
+ components:
+ - type: Transform
+ pos: 153.5,59.5
+ parent: 1
+ - uid: 7166
+ components:
+ - type: Transform
+ pos: 153.5,48.5
+ parent: 1
+ - uid: 7167
+ components:
+ - type: Transform
+ pos: 153.5,42.5
+ parent: 1
+ - uid: 7168
+ components:
+ - type: Transform
+ pos: 154.5,75.5
+ parent: 1
+ - uid: 7169
+ components:
+ - type: Transform
+ pos: 154.5,65.5
+ parent: 1
+ - uid: 7170
+ components:
+ - type: Transform
+ pos: 154.5,59.5
+ parent: 1
+ - uid: 7173
+ components:
+ - type: Transform
+ pos: 155.5,75.5
+ parent: 1
+ - uid: 7174
+ components:
+ - type: Transform
+ pos: 155.5,74.5
+ parent: 1
+ - uid: 7175
+ components:
+ - type: Transform
+ pos: 155.5,73.5
+ parent: 1
+ - uid: 7184
+ components:
+ - type: Transform
+ pos: 162.5,111.5
+ parent: 1
+ - uid: 7186
+ components:
+ - type: Transform
+ pos: 96.5,174.5
+ parent: 1
+ - uid: 7187
+ components:
+ - type: Transform
+ pos: 96.5,173.5
+ parent: 1
+ - uid: 7188
+ components:
+ - type: Transform
+ pos: 96.5,17.5
+ parent: 1
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: 121.5,54.5
+ parent: 1
+ - uid: 7207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,129.5
+ parent: 1
+ - uid: 7208
+ components:
+ - type: Transform
+ pos: 96.5,14.5
+ parent: 1
+ - uid: 7214
+ components:
+ - type: Transform
+ pos: 97.5,173.5
+ parent: 1
+ - uid: 7218
+ components:
+ - type: Transform
+ pos: 121.5,55.5
+ parent: 1
+ - uid: 7297
+ components:
+ - type: Transform
+ pos: 165.5,140.5
+ parent: 1
+ - uid: 7516
+ components:
+ - type: Transform
+ pos: 98.5,17.5
+ parent: 1
+ - uid: 7553
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 7590
+ components:
+ - type: Transform
+ pos: 99.5,17.5
+ parent: 1
+ - uid: 7599
+ components:
+ - type: Transform
+ pos: 100.5,173.5
+ parent: 1
+ - uid: 7614
+ components:
+ - type: Transform
+ pos: 155.5,72.5
+ parent: 1
+ - uid: 7626
+ components:
+ - type: Transform
+ pos: 155.5,71.5
+ parent: 1
+ - uid: 7664
+ components:
+ - type: Transform
+ pos: 101.5,173.5
+ parent: 1
+ - uid: 7698
+ components:
+ - type: Transform
+ pos: 90.5,89.5
+ parent: 1
+ - uid: 7704
+ components:
+ - type: Transform
+ pos: 91.5,93.5
+ parent: 1
+ - uid: 7771
+ components:
+ - type: Transform
+ pos: 101.5,17.5
+ parent: 1
+ - uid: 7790
+ components:
+ - type: Transform
+ pos: 102.5,173.5
+ parent: 1
+ - uid: 7815
+ components:
+ - type: Transform
+ pos: 91.5,89.5
+ parent: 1
+ - uid: 7837
+ components:
+ - type: Transform
+ pos: 103.5,17.5
+ parent: 1
+ - uid: 7860
+ components:
+ - type: Transform
+ pos: 104.5,17.5
+ parent: 1
+ - uid: 7886
+ components:
+ - type: Transform
+ pos: 105.5,173.5
+ parent: 1
+ - uid: 7952
+ components:
+ - type: Transform
+ pos: 105.5,172.5
+ parent: 1
+ - uid: 7964
+ components:
+ - type: Transform
+ pos: 155.5,70.5
+ parent: 1
+ - uid: 7974
+ components:
+ - type: Transform
+ pos: 106.5,172.5
+ parent: 1
+ - uid: 8001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,54.5
+ parent: 1
+ - uid: 8031
+ components:
+ - type: Transform
+ pos: 92.5,93.5
+ parent: 1
+ - uid: 8035
+ components:
+ - type: Transform
+ pos: 92.5,89.5
+ parent: 1
+ - uid: 8125
+ components:
+ - type: Transform
+ pos: 115.5,18.5
+ parent: 1
+ - uid: 8154
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 8177
+ components:
+ - type: Transform
+ pos: 119.5,172.5
+ parent: 1
+ - uid: 8195
+ components:
+ - type: Transform
+ pos: 121.5,23.5
+ parent: 1
+ - uid: 8221
+ components:
+ - type: Transform
+ pos: 121.5,18.5
+ parent: 1
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: 125.5,34.5
+ parent: 1
+ - uid: 8305
+ components:
+ - type: Transform
+ pos: 89.5,58.5
+ parent: 1
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: 93.5,93.5
+ parent: 1
+ - uid: 8381
+ components:
+ - type: Transform
+ pos: 155.5,69.5
+ parent: 1
+ - uid: 8387
+ components:
+ - type: Transform
+ pos: 155.5,68.5
+ parent: 1
+ - uid: 8456
+ components:
+ - type: Transform
+ pos: 163.5,112.5
+ parent: 1
+ - uid: 8469
+ components:
+ - type: Transform
+ pos: 164.5,129.5
+ parent: 1
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: 164.5,125.5
+ parent: 1
+ - uid: 8481
+ components:
+ - type: Transform
+ pos: 155.5,67.5
+ parent: 1
+ - uid: 8487
+ components:
+ - type: Transform
+ pos: 155.5,66.5
+ parent: 1
+ - uid: 8493
+ components:
+ - type: Transform
+ pos: 155.5,65.5
+ parent: 1
+ - uid: 8494
+ components:
+ - type: Transform
+ pos: 155.5,59.5
+ parent: 1
+ - uid: 8495
+ components:
+ - type: Transform
+ pos: 155.5,48.5
+ parent: 1
+ - uid: 8497
+ components:
+ - type: Transform
+ pos: 156.5,60.5
+ parent: 1
+ - uid: 8498
+ components:
+ - type: Transform
+ pos: 156.5,59.5
+ parent: 1
+ - uid: 8606
+ components:
+ - type: Transform
+ pos: 128.5,42.5
+ parent: 1
+ - uid: 8613
+ components:
+ - type: Transform
+ pos: 128.5,41.5
+ parent: 1
+ - uid: 8791
+ components:
+ - type: Transform
+ pos: 93.5,89.5
+ parent: 1
+ - uid: 8800
+ components:
+ - type: Transform
+ pos: 45.5,105.5
+ parent: 1
+ - uid: 8807
+ components:
+ - type: Transform
+ pos: 45.5,104.5
+ parent: 1
+ - uid: 8821
+ components:
+ - type: Transform
+ pos: 46.5,109.5
+ parent: 1
+ - uid: 8827
+ components:
+ - type: Transform
+ pos: 46.5,104.5
+ parent: 1
+ - uid: 8831
+ components:
+ - type: Transform
+ pos: 47.5,109.5
+ parent: 1
+ - uid: 8838
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 8840
+ components:
+ - type: Transform
+ pos: 48.5,109.5
+ parent: 1
+ - uid: 8842
+ components:
+ - type: Transform
+ pos: 48.5,104.5
+ parent: 1
+ - uid: 8856
+ components:
+ - type: Transform
+ pos: 49.5,109.5
+ parent: 1
+ - uid: 8864
+ components:
+ - type: Transform
+ pos: 49.5,104.5
+ parent: 1
+ - uid: 8872
+ components:
+ - type: Transform
+ pos: 50.5,108.5
+ parent: 1
+ - uid: 8876
+ components:
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+ - uid: 8892
+ components:
+ - type: Transform
+ pos: 51.5,108.5
+ parent: 1
+ - uid: 9004
+ components:
+ - type: Transform
+ pos: 110.5,146.5
+ parent: 1
+ - uid: 9029
+ components:
+ - type: Transform
+ pos: 106.5,146.5
+ parent: 1
+ - uid: 9424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,137.5
+ parent: 1
+ - uid: 9425
+ components:
+ - type: Transform
+ pos: 86.5,134.5
+ parent: 1
+ - uid: 9692
+ components:
+ - type: Transform
+ pos: 165.5,146.5
+ parent: 1
+ - uid: 10227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,157.5
+ parent: 1
+ - uid: 10231
+ components:
+ - type: Transform
+ pos: 140.5,135.5
+ parent: 1
+ - uid: 10260
+ components:
+ - type: Transform
+ pos: 141.5,135.5
+ parent: 1
+ - uid: 10483
+ components:
+ - type: Transform
+ pos: 52.5,108.5
+ parent: 1
+ - uid: 10492
+ components:
+ - type: Transform
+ pos: 52.5,104.5
+ parent: 1
+ - uid: 10504
+ components:
+ - type: Transform
+ pos: 53.5,108.5
+ parent: 1
+ - uid: 10516
+ components:
+ - type: Transform
+ pos: 53.5,104.5
+ parent: 1
+ - uid: 10525
+ components:
+ - type: Transform
+ pos: 54.5,111.5
+ parent: 1
+ - uid: 10526
+ components:
+ - type: Transform
+ pos: 54.5,110.5
+ parent: 1
+ - uid: 10530
+ components:
+ - type: Transform
+ pos: 54.5,109.5
+ parent: 1
+ - uid: 10531
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 10695
+ components:
+ - type: Transform
+ pos: 51.5,44.5
+ parent: 1
+ - uid: 10699
+ components:
+ - type: Transform
+ pos: 51.5,45.5
+ parent: 1
+ - uid: 10905
+ components:
+ - type: Transform
+ pos: 166.5,145.5
+ parent: 1
+ - uid: 10970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,112.5
+ parent: 1
+ - uid: 11047
+ components:
+ - type: Transform
+ pos: 131.5,124.5
+ parent: 1
+ - uid: 11346
+ components:
+ - type: Transform
+ pos: 142.5,135.5
+ parent: 1
+ - uid: 11349
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 11357
+ components:
+ - type: Transform
+ pos: 142.5,130.5
+ parent: 1
+ - uid: 11792
+ components:
+ - type: Transform
+ pos: 132.5,154.5
+ parent: 1
+ - uid: 11904
+ components:
+ - type: Transform
+ pos: 157.5,147.5
+ parent: 1
+ - uid: 11917
+ components:
+ - type: Transform
+ pos: 50.5,77.5
+ parent: 1
+ - uid: 12138
+ components:
+ - type: Transform
+ pos: 142.5,129.5
+ parent: 1
+ - uid: 12388
+ components:
+ - type: Transform
+ pos: 156.5,57.5
+ parent: 1
+ - uid: 12497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,127.5
+ parent: 1
+ - uid: 12503
+ components:
+ - type: Transform
+ pos: 68.5,156.5
+ parent: 1
+ - uid: 12504
+ components:
+ - type: Transform
+ pos: 50.5,127.5
+ parent: 1
+ - uid: 12617
+ components:
+ - type: Transform
+ pos: 132.5,153.5
+ parent: 1
+ - uid: 12618
+ components:
+ - type: Transform
+ pos: 132.5,152.5
+ parent: 1
+ - uid: 13117
+ components:
+ - type: Transform
+ pos: 45.5,35.5
+ parent: 1
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 45.5,42.5
+ parent: 1
+ - uid: 13128
+ components:
+ - type: Transform
+ pos: 45.5,41.5
+ parent: 1
+ - uid: 13154
+ components:
+ - type: Transform
+ pos: 53.5,35.5
+ parent: 1
+ - uid: 13157
+ components:
+ - type: Transform
+ pos: 92.5,133.5
+ parent: 1
+ - uid: 13174
+ components:
+ - type: Transform
+ pos: 143.5,135.5
+ parent: 1
+ - uid: 13203
+ components:
+ - type: Transform
+ pos: 91.5,141.5
+ parent: 1
+ - uid: 13509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,54.5
+ parent: 1
+ - uid: 13637
+ components:
+ - type: Transform
+ pos: 156.5,56.5
+ parent: 1
+ - uid: 13707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,55.5
+ parent: 1
+ - uid: 13715
+ components:
+ - type: Transform
+ pos: 165.5,142.5
+ parent: 1
+ - uid: 13723
+ components:
+ - type: Transform
+ pos: 132.5,151.5
+ parent: 1
+ - uid: 13729
+ components:
+ - type: Transform
+ pos: 156.5,55.5
+ parent: 1
+ - uid: 13753
+ components:
+ - type: Transform
+ pos: 156.5,54.5
+ parent: 1
+ - uid: 13760
+ components:
+ - type: Transform
+ pos: 165.5,147.5
+ parent: 1
+ - uid: 13771
+ components:
+ - type: Transform
+ pos: 166.5,146.5
+ parent: 1
+ - uid: 13818
+ components:
+ - type: Transform
+ pos: 147.5,135.5
+ parent: 1
+ - uid: 14307
+ components:
+ - type: Transform
+ pos: 92.5,136.5
+ parent: 1
+ - uid: 14448
+ components:
+ - type: Transform
+ pos: 124.5,141.5
+ parent: 1
+ - uid: 14695
+ components:
+ - type: Transform
+ pos: 132.5,150.5
+ parent: 1
+ - uid: 14781
+ components:
+ - type: Transform
+ pos: 94.5,93.5
+ parent: 1
+ - uid: 14782
+ components:
+ - type: Transform
+ pos: 94.5,92.5
+ parent: 1
+ - uid: 14783
+ components:
+ - type: Transform
+ pos: 94.5,91.5
+ parent: 1
+ - uid: 14784
+ components:
+ - type: Transform
+ pos: 94.5,90.5
+ parent: 1
+ - uid: 14856
+ components:
+ - type: Transform
+ pos: 156.5,53.5
+ parent: 1
+ - uid: 14987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,44.5
+ parent: 1
+ - uid: 15017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,120.5
+ parent: 1
+ - uid: 15070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,155.5
+ parent: 1
+ - uid: 15092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,163.5
+ parent: 1
+ - uid: 15130
+ components:
+ - type: Transform
+ pos: 132.5,141.5
+ parent: 1
+ - uid: 15132
+ components:
+ - type: Transform
+ pos: 130.5,141.5
+ parent: 1
+ - uid: 15303
+ components:
+ - type: Transform
+ pos: 133.5,154.5
+ parent: 1
+ - uid: 15407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,77.5
+ parent: 1
+ - uid: 15508
+ components:
+ - type: Transform
+ pos: 84.5,134.5
+ parent: 1
+ - uid: 15664
+ components:
+ - type: Transform
+ pos: 79.5,134.5
+ parent: 1
+ - uid: 15720
+ components:
+ - type: Transform
+ pos: 86.5,128.5
+ parent: 1
+ - uid: 15736
+ components:
+ - type: Transform
+ pos: 79.5,144.5
+ parent: 1
+ - uid: 15765
+ components:
+ - type: Transform
+ pos: 92.5,142.5
+ parent: 1
+ - uid: 15816
+ components:
+ - type: Transform
+ pos: 166.5,142.5
+ parent: 1
+ - uid: 15818
+ components:
+ - type: Transform
+ pos: 135.5,149.5
+ parent: 1
+ - uid: 15821
+ components:
+ - type: Transform
+ pos: 136.5,154.5
+ parent: 1
+ - uid: 15822
+ components:
+ - type: Transform
+ pos: 136.5,149.5
+ parent: 1
+ - uid: 15825
+ components:
+ - type: Transform
+ pos: 137.5,154.5
+ parent: 1
+ - uid: 15826
+ components:
+ - type: Transform
+ pos: 137.5,153.5
+ parent: 1
+ - uid: 15827
+ components:
+ - type: Transform
+ pos: 165.5,138.5
+ parent: 1
+ - uid: 15828
+ components:
+ - type: Transform
+ pos: 137.5,150.5
+ parent: 1
+ - uid: 15829
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 15985
+ components:
+ - type: Transform
+ pos: 90.5,133.5
+ parent: 1
+ - uid: 16003
+ components:
+ - type: Transform
+ pos: 92.5,145.5
+ parent: 1
+ - uid: 16004
+ components:
+ - type: Transform
+ pos: 91.5,137.5
+ parent: 1
+ - uid: 16006
+ components:
+ - type: Transform
+ pos: 90.5,136.5
+ parent: 1
+ - uid: 16181
+ components:
+ - type: Transform
+ pos: 159.5,97.5
+ parent: 1
+ - uid: 16213
+ components:
+ - type: Transform
+ pos: 84.5,124.5
+ parent: 1
+ - uid: 16295
+ components:
+ - type: Transform
+ pos: 138.5,154.5
+ parent: 1
+ - uid: 16321
+ components:
+ - type: Transform
+ pos: 94.5,89.5
+ parent: 1
+ - uid: 16340
+ components:
+ - type: Transform
+ pos: 139.5,154.5
+ parent: 1
+ - uid: 16521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,113.5
+ parent: 1
+ - uid: 16636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 16637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,66.5
+ parent: 1
+ - uid: 16638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,65.5
+ parent: 1
+ - uid: 16652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,64.5
+ parent: 1
+ - uid: 16691
+ components:
+ - type: Transform
+ pos: 156.5,52.5
+ parent: 1
+ - uid: 16840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,63.5
+ parent: 1
+ - uid: 16990
+ components:
+ - type: Transform
+ pos: 156.5,51.5
+ parent: 1
+ - uid: 16991
+ components:
+ - type: Transform
+ pos: 156.5,50.5
+ parent: 1
+ - uid: 16992
+ components:
+ - type: Transform
+ pos: 156.5,49.5
+ parent: 1
+ - uid: 17016
+ components:
+ - type: Transform
+ pos: 84.5,110.5
+ parent: 1
+ - uid: 17664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,62.5
+ parent: 1
+ - uid: 17665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,67.5
+ parent: 1
+ - uid: 17666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,67.5
+ parent: 1
+ - uid: 17667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,67.5
+ parent: 1
+ - uid: 17668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 17670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,67.5
+ parent: 1
+ - uid: 17760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,172.5
+ parent: 1
+ - uid: 17928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,167.5
+ parent: 1
+ - uid: 17929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,166.5
+ parent: 1
+ - uid: 17940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,164.5
+ parent: 1
+ - uid: 18032
+ components:
+ - type: Transform
+ pos: 157.5,65.5
+ parent: 1
+ - uid: 18033
+ components:
+ - type: Transform
+ pos: 157.5,64.5
+ parent: 1
+ - uid: 18034
+ components:
+ - type: Transform
+ pos: 157.5,63.5
+ parent: 1
+ - uid: 18035
+ components:
+ - type: Transform
+ pos: 157.5,62.5
+ parent: 1
+ - uid: 18036
+ components:
+ - type: Transform
+ pos: 157.5,61.5
+ parent: 1
+ - uid: 18052
+ components:
+ - type: Transform
+ pos: 157.5,60.5
+ parent: 1
+ - uid: 18053
+ components:
+ - type: Transform
+ pos: 157.5,41.5
+ parent: 1
+ - uid: 18064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,136.5
+ parent: 1
+ - uid: 18069
+ components:
+ - type: Transform
+ pos: 170.5,133.5
+ parent: 1
+ - uid: 18071
+ components:
+ - type: Transform
+ pos: 170.5,132.5
+ parent: 1
+ - uid: 18077
+ components:
+ - type: Transform
+ pos: 51.5,76.5
+ parent: 1
+ - uid: 18078
+ components:
+ - type: Transform
+ pos: 166.5,131.5
+ parent: 1
+ - uid: 18079
+ components:
+ - type: Transform
+ pos: 166.5,130.5
+ parent: 1
+ - uid: 18190
+ components:
+ - type: Transform
+ pos: 159.5,41.5
+ parent: 1
+ - uid: 18273
+ components:
+ - type: Transform
+ pos: 146.5,102.5
+ parent: 1
+ - uid: 18274
+ components:
+ - type: Transform
+ pos: 146.5,106.5
+ parent: 1
+ - uid: 18440
+ components:
+ - type: Transform
+ pos: 141.5,111.5
+ parent: 1
+ - uid: 18583
+ components:
+ - type: Transform
+ pos: 140.5,157.5
+ parent: 1
+ - uid: 18663
+ components:
+ - type: Transform
+ pos: 140.5,154.5
+ parent: 1
+ - uid: 18859
+ components:
+ - type: Transform
+ pos: 154.5,147.5
+ parent: 1
+ - uid: 18866
+ components:
+ - type: Transform
+ pos: 85.5,58.5
+ parent: 1
+ - uid: 19017
+ components:
+ - type: Transform
+ pos: 144.5,157.5
+ parent: 1
+ - uid: 19020
+ components:
+ - type: Transform
+ pos: 144.5,154.5
+ parent: 1
+ - uid: 19359
+ components:
+ - type: Transform
+ pos: 160.5,60.5
+ parent: 1
+ - uid: 19446
+ components:
+ - type: Transform
+ pos: 160.5,58.5
+ parent: 1
+ - uid: 19469
+ components:
+ - type: Transform
+ pos: 160.5,56.5
+ parent: 1
+ - uid: 19493
+ components:
+ - type: Transform
+ pos: 155.5,88.5
+ parent: 1
+ - uid: 19585
+ components:
+ - type: Transform
+ pos: 160.5,54.5
+ parent: 1
+ - uid: 19685
+ components:
+ - type: Transform
+ pos: 160.5,53.5
+ parent: 1
+ - uid: 19753
+ components:
+ - type: Transform
+ pos: 148.5,157.5
+ parent: 1
+ - uid: 19754
+ components:
+ - type: Transform
+ pos: 148.5,154.5
+ parent: 1
+ - uid: 19755
+ components:
+ - type: Transform
+ pos: 152.5,157.5
+ parent: 1
+ - uid: 19841
+ components:
+ - type: Transform
+ pos: 152.5,154.5
+ parent: 1
+ - uid: 19843
+ components:
+ - type: Transform
+ pos: 153.5,154.5
+ parent: 1
+ - uid: 19845
+ components:
+ - type: Transform
+ pos: 154.5,154.5
+ parent: 1
+ - uid: 19859
+ components:
+ - type: Transform
+ pos: 161.5,60.5
+ parent: 1
+ - uid: 19956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,128.5
+ parent: 1
+ - uid: 19986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,108.5
+ parent: 1
+ - uid: 20413
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 20414
+ components:
+ - type: Transform
+ pos: 162.5,42.5
+ parent: 1
+ - uid: 20427
+ components:
+ - type: Transform
+ pos: 163.5,53.5
+ parent: 1
+ - uid: 20734
+ components:
+ - type: Transform
+ pos: 163.5,43.5
+ parent: 1
+ - uid: 20768
+ components:
+ - type: Transform
+ pos: 164.5,60.5
+ parent: 1
+ - uid: 20770
+ components:
+ - type: Transform
+ pos: 155.5,154.5
+ parent: 1
+ - uid: 20779
+ components:
+ - type: Transform
+ pos: 164.5,59.5
+ parent: 1
+ - uid: 20782
+ components:
+ - type: Transform
+ pos: 164.5,55.5
+ parent: 1
+ - uid: 20790
+ components:
+ - type: Transform
+ pos: 164.5,54.5
+ parent: 1
+ - uid: 20841
+ components:
+ - type: Transform
+ pos: 53.5,105.5
+ parent: 1
+ - uid: 20846
+ components:
+ - type: Transform
+ pos: 142.5,42.5
+ parent: 1
+ - uid: 20848
+ components:
+ - type: Transform
+ pos: 53.5,107.5
+ parent: 1
+ - uid: 20884
+ components:
+ - type: Transform
+ pos: 164.5,43.5
+ parent: 1
+ - uid: 20886
+ components:
+ - type: Transform
+ pos: 102.5,163.5
+ parent: 1
+ - uid: 20944
+ components:
+ - type: Transform
+ pos: 53.5,106.5
+ parent: 1
+ - uid: 21085
+ components:
+ - type: Transform
+ pos: 156.5,94.5
+ parent: 1
+ - uid: 21086
+ components:
+ - type: Transform
+ pos: 147.5,134.5
+ parent: 1
+ - uid: 22100
+ components:
+ - type: Transform
+ pos: 157.5,84.5
+ parent: 1
+ - uid: 22483
+ components:
+ - type: Transform
+ pos: 147.5,129.5
+ parent: 1
+ - uid: 22487
+ components:
+ - type: Transform
+ pos: 142.5,132.5
+ parent: 1
+ - uid: 22498
+ components:
+ - type: Transform
+ pos: 143.5,129.5
+ parent: 1
+ - uid: 22796
+ components:
+ - type: Transform
+ pos: 135.5,67.5
+ parent: 1
+ - uid: 22797
+ components:
+ - type: Transform
+ pos: 133.5,67.5
+ parent: 1
+ - uid: 22798
+ components:
+ - type: Transform
+ pos: 130.5,67.5
+ parent: 1
+ - uid: 23082
+ components:
+ - type: Transform
+ pos: 158.5,151.5
+ parent: 1
+ - uid: 23132
+ components:
+ - type: Transform
+ pos: 51.5,104.5
+ parent: 1
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 159.5,84.5
+ parent: 1
+ - uid: 23299
+ components:
+ - type: Transform
+ pos: 161.5,83.5
+ parent: 1
+ - uid: 23315
+ components:
+ - type: Transform
+ pos: 90.5,145.5
+ parent: 1
+ - uid: 23334
+ components:
+ - type: Transform
+ pos: 164.5,130.5
+ parent: 1
+ - uid: 23341
+ components:
+ - type: Transform
+ pos: 53.5,76.5
+ parent: 1
+ - uid: 23353
+ components:
+ - type: Transform
+ pos: 90.5,54.5
+ parent: 1
+ - uid: 23357
+ components:
+ - type: Transform
+ pos: 17.5,98.5
+ parent: 1
+ - uid: 23366
+ components:
+ - type: Transform
+ pos: 41.5,90.5
+ parent: 1
+ - uid: 23559
+ components:
+ - type: Transform
+ pos: 165.5,149.5
+ parent: 1
+ - uid: 23560
+ components:
+ - type: Transform
+ pos: 165.5,139.5
+ parent: 1
+ - uid: 23618
+ components:
+ - type: Transform
+ pos: 87.5,45.5
+ parent: 1
+ - uid: 23634
+ components:
+ - type: Transform
+ pos: 54.5,69.5
+ parent: 1
+ - uid: 23642
+ components:
+ - type: Transform
+ pos: 48.5,77.5
+ parent: 1
+ - uid: 23643
+ components:
+ - type: Transform
+ pos: 45.5,71.5
+ parent: 1
+ - uid: 23656
+ components:
+ - type: Transform
+ pos: 162.5,82.5
+ parent: 1
+ - uid: 23855
+ components:
+ - type: Transform
+ pos: 162.5,81.5
+ parent: 1
+ - uid: 23857
+ components:
+ - type: Transform
+ pos: 162.5,80.5
+ parent: 1
+ - uid: 23891
+ components:
+ - type: Transform
+ pos: 158.5,150.5
+ parent: 1
+ - uid: 23892
+ components:
+ - type: Transform
+ pos: 158.5,149.5
+ parent: 1
+ - uid: 23956
+ components:
+ - type: Transform
+ pos: 78.5,71.5
+ parent: 1
+ - uid: 24021
+ components:
+ - type: Transform
+ pos: 78.5,77.5
+ parent: 1
+ - uid: 24188
+ components:
+ - type: Transform
+ pos: 147.5,130.5
+ parent: 1
+ - uid: 24203
+ components:
+ - type: Transform
+ pos: 161.5,150.5
+ parent: 1
+ - uid: 24207
+ components:
+ - type: Transform
+ pos: 160.5,147.5
+ parent: 1
+ - uid: 24226
+ components:
+ - type: Transform
+ pos: 162.5,78.5
+ parent: 1
+ - uid: 24292
+ components:
+ - type: Transform
+ pos: 87.5,44.5
+ parent: 1
+ - uid: 24298
+ components:
+ - type: Transform
+ pos: 90.5,58.5
+ parent: 1
+ - uid: 24313
+ components:
+ - type: Transform
+ pos: 90.5,116.5
+ parent: 1
+ - uid: 24316
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 24317
+ components:
+ - type: Transform
+ pos: 91.5,116.5
+ parent: 1
+ - uid: 24320
+ components:
+ - type: Transform
+ pos: 92.5,116.5
+ parent: 1
+ - uid: 24321
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 24322
+ components:
+ - type: Transform
+ pos: 97.5,112.5
+ parent: 1
+ - uid: 24325
+ components:
+ - type: Transform
+ pos: 97.5,116.5
+ parent: 1
+ - uid: 24415
+ components:
+ - type: Transform
+ pos: 36.5,83.5
+ parent: 1
+ - uid: 24422
+ components:
+ - type: Transform
+ pos: 151.5,51.5
+ parent: 1
+ - uid: 24428
+ components:
+ - type: Transform
+ pos: 162.5,76.5
+ parent: 1
+ - uid: 24575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 24623
+ components:
+ - type: Transform
+ pos: 62.5,50.5
+ parent: 1
+ - uid: 24671
+ components:
+ - type: Transform
+ pos: 162.5,73.5
+ parent: 1
+ - uid: 25118
+ components:
+ - type: Transform
+ pos: 162.5,72.5
+ parent: 1
+ - uid: 25140
+ components:
+ - type: Transform
+ pos: 162.5,70.5
+ parent: 1
+ - uid: 25142
+ components:
+ - type: Transform
+ pos: 162.5,68.5
+ parent: 1
+ - uid: 25233
+ components:
+ - type: Transform
+ pos: 97.5,113.5
+ parent: 1
+ - uid: 25256
+ components:
+ - type: Transform
+ pos: 97.5,114.5
+ parent: 1
+ - uid: 25258
+ components:
+ - type: Transform
+ pos: 96.5,116.5
+ parent: 1
+ - uid: 25259
+ components:
+ - type: Transform
+ pos: 97.5,115.5
+ parent: 1
+ - uid: 25360
+ components:
+ - type: Transform
+ pos: 162.5,67.5
+ parent: 1
+ - uid: 25380
+ components:
+ - type: Transform
+ pos: 29.5,105.5
+ parent: 1
+ - uid: 25495
+ components:
+ - type: Transform
+ pos: 92.5,111.5
+ parent: 1
+ - uid: 25496
+ components:
+ - type: Transform
+ pos: 94.5,111.5
+ parent: 1
+ - uid: 25497
+ components:
+ - type: Transform
+ pos: 95.5,111.5
+ parent: 1
+ - uid: 25498
+ components:
+ - type: Transform
+ pos: 96.5,111.5
+ parent: 1
+ - uid: 25499
+ components:
+ - type: Transform
+ pos: 93.5,111.5
+ parent: 1
+ - uid: 25530
+ components:
+ - type: Transform
+ pos: 29.5,103.5
+ parent: 1
+ - uid: 25551
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 25602
+ components:
+ - type: Transform
+ pos: 30.5,102.5
+ parent: 1
+ - uid: 25604
+ components:
+ - type: Transform
+ pos: 36.5,82.5
+ parent: 1
+ - uid: 25845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - uid: 25855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,29.5
+ parent: 1
+ - uid: 25925
+ components:
+ - type: Transform
+ pos: 36.5,81.5
+ parent: 1
+ - uid: 26553
+ components:
+ - type: Transform
+ pos: 62.5,52.5
+ parent: 1
+ - uid: 26592
+ components:
+ - type: Transform
+ pos: 37.5,81.5
+ parent: 1
+ - uid: 26593
+ components:
+ - type: Transform
+ pos: 38.5,81.5
+ parent: 1
+ - uid: 26666
+ components:
+ - type: Transform
+ pos: 163.5,77.5
+ parent: 1
+ - uid: 26667
+ components:
+ - type: Transform
+ pos: 163.5,67.5
+ parent: 1
+ - uid: 26669
+ components:
+ - type: Transform
+ pos: 39.5,81.5
+ parent: 1
+ - uid: 26670
+ components:
+ - type: Transform
+ pos: 163.5,64.5
+ parent: 1
+ - uid: 26672
+ components:
+ - type: Transform
+ pos: 163.5,62.5
+ parent: 1
+ - uid: 26673
+ components:
+ - type: Transform
+ pos: 163.5,61.5
+ parent: 1
+ - uid: 26676
+ components:
+ - type: Transform
+ pos: 165.5,81.5
+ parent: 1
+ - uid: 26677
+ components:
+ - type: Transform
+ pos: 165.5,80.5
+ parent: 1
+ - uid: 26805
+ components:
+ - type: Transform
+ pos: 165.5,78.5
+ parent: 1
+ - uid: 26812
+ components:
+ - type: Transform
+ pos: 40.5,81.5
+ parent: 1
+ - uid: 26814
+ components:
+ - type: Transform
+ pos: 41.5,82.5
+ parent: 1
+ - uid: 26816
+ components:
+ - type: Transform
+ pos: 41.5,81.5
+ parent: 1
+ - uid: 26874
+ components:
+ - type: Transform
+ pos: 58.5,60.5
+ parent: 1
+ - uid: 26978
+ components:
+ - type: Transform
+ pos: 131.5,141.5
+ parent: 1
+ - uid: 26993
+ components:
+ - type: Transform
+ pos: 87.5,43.5
+ parent: 1
+ - uid: 27047
+ components:
+ - type: Transform
+ pos: 78.5,76.5
+ parent: 1
+ - uid: 27106
+ components:
+ - type: Transform
+ pos: 165.5,77.5
+ parent: 1
+ - uid: 27114
+ components:
+ - type: Transform
+ pos: 78.5,72.5
+ parent: 1
+ - uid: 27166
+ components:
+ - type: Transform
+ pos: 78.5,74.5
+ parent: 1
+ - uid: 27265
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 1
+ - uid: 27361
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 1
+ - uid: 27420
+ components:
+ - type: Transform
+ pos: 36.5,84.5
+ parent: 1
+ - uid: 27458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,33.5
+ parent: 1
+ - uid: 27459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,34.5
+ parent: 1
+ - uid: 27488
+ components:
+ - type: Transform
+ pos: 147.5,132.5
+ parent: 1
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: 144.5,129.5
+ parent: 1
+ - uid: 27959
+ components:
+ - type: Transform
+ pos: 145.5,129.5
+ parent: 1
+ - uid: 27960
+ components:
+ - type: Transform
+ pos: 146.5,129.5
+ parent: 1
+ - uid: 28355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,90.5
+ parent: 1
+ - uid: 28357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,90.5
+ parent: 1
+ - uid: 28958
+ components:
+ - type: Transform
+ pos: 89.5,44.5
+ parent: 1
+ - uid: 28985
+ components:
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - uid: 28986
+ components:
+ - type: Transform
+ pos: 35.5,85.5
+ parent: 1
+ - uid: 29032
+ components:
+ - type: Transform
+ pos: 36.5,85.5
+ parent: 1
+ - uid: 29098
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 29101
+ components:
+ - type: Transform
+ pos: 39.5,95.5
+ parent: 1
+ - uid: 29102
+ components:
+ - type: Transform
+ pos: 39.5,85.5
+ parent: 1
+ - uid: 29105
+ components:
+ - type: Transform
+ pos: 40.5,95.5
+ parent: 1
+ - uid: 29111
+ components:
+ - type: Transform
+ pos: 40.5,85.5
+ parent: 1
+ - uid: 29117
+ components:
+ - type: Transform
+ pos: 41.5,95.5
+ parent: 1
+ - uid: 29119
+ components:
+ - type: Transform
+ pos: 41.5,94.5
+ parent: 1
+ - uid: 29120
+ components:
+ - type: Transform
+ pos: 121.5,24.5
+ parent: 1
+ - uid: 29122
+ components:
+ - type: Transform
+ pos: 41.5,86.5
+ parent: 1
+ - uid: 29169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,17.5
+ parent: 1
+ - uid: 29176
+ components:
+ - type: Transform
+ pos: 14.5,109.5
+ parent: 1
+ - uid: 29177
+ components:
+ - type: Transform
+ pos: 14.5,108.5
+ parent: 1
+ - uid: 29178
+ components:
+ - type: Transform
+ pos: 14.5,106.5
+ parent: 1
+ - uid: 29180
+ components:
+ - type: Transform
+ pos: 15.5,105.5
+ parent: 1
+ - uid: 29185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,15.5
+ parent: 1
+ - uid: 29186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,15.5
+ parent: 1
+ - uid: 29187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,16.5
+ parent: 1
+ - uid: 29255
+ components:
+ - type: Transform
+ pos: 41.5,85.5
+ parent: 1
+ - uid: 29519
+ components:
+ - type: Transform
+ pos: 101.5,163.5
+ parent: 1
+ - uid: 29521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,72.5
+ parent: 1
+ - uid: 29524
+ components:
+ - type: Transform
+ pos: 54.5,155.5
+ parent: 1
+ - uid: 29549
+ components:
+ - type: Transform
+ pos: 138.5,91.5
+ parent: 1
+ - uid: 29941
+ components:
+ - type: Transform
+ pos: 150.5,147.5
+ parent: 1
+ - uid: 29942
+ components:
+ - type: Transform
+ pos: 150.5,149.5
+ parent: 1
+ - uid: 30012
+ components:
+ - type: Transform
+ pos: 142.5,154.5
+ parent: 1
+ - uid: 30026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,155.5
+ parent: 1
+ - uid: 30027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,156.5
+ parent: 1
+ - uid: 30102
+ components:
+ - type: Transform
+ pos: 142.5,157.5
+ parent: 1
+ - uid: 30104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,155.5
+ parent: 1
+ - uid: 30105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,157.5
+ parent: 1
+ - uid: 30106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,154.5
+ parent: 1
+ - uid: 30107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,156.5
+ parent: 1
+ - uid: 30108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,155.5
+ parent: 1
+ - uid: 30115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,156.5
+ parent: 1
+ - uid: 30135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,156.5
+ parent: 1
+ - uid: 30138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,155.5
+ parent: 1
+ - uid: 30154
+ components:
+ - type: Transform
+ pos: 90.5,57.5
+ parent: 1
+ - uid: 30182
+ components:
+ - type: Transform
+ pos: 133.5,87.5
+ parent: 1
+ - uid: 30209
+ components:
+ - type: Transform
+ pos: 164.5,150.5
+ parent: 1
+ - uid: 30213
+ components:
+ - type: Transform
+ pos: 162.5,150.5
+ parent: 1
+ - uid: 30215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,150.5
+ parent: 1
+ - uid: 30222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,129.5
+ parent: 1
+ - uid: 30335
+ components:
+ - type: Transform
+ pos: 63.5,155.5
+ parent: 1
+ - uid: 30351
+ components:
+ - type: Transform
+ pos: 65.5,155.5
+ parent: 1
+ - uid: 30355
+ components:
+ - type: Transform
+ pos: 64.5,123.5
+ parent: 1
+ - uid: 30356
+ components:
+ - type: Transform
+ pos: 65.5,123.5
+ parent: 1
+ - uid: 30394
+ components:
+ - type: Transform
+ pos: 47.5,77.5
+ parent: 1
+ - uid: 30397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 30598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,30.5
+ parent: 1
+ - uid: 30612
+ components:
+ - type: Transform
+ pos: 161.5,146.5
+ parent: 1
+ - uid: 30629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,89.5
+ parent: 1
+ - uid: 30632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,32.5
+ parent: 1
+ - uid: 30656
+ components:
+ - type: Transform
+ pos: 164.5,146.5
+ parent: 1
+ - uid: 30729
+ components:
+ - type: Transform
+ pos: 145.5,109.5
+ parent: 1
+ - uid: 30731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,121.5
+ parent: 1
+ - uid: 30788
+ components:
+ - type: Transform
+ pos: 90.5,53.5
+ parent: 1
+ - uid: 30796
+ components:
+ - type: Transform
+ pos: 87.5,46.5
+ parent: 1
+ - uid: 30811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,75.5
+ parent: 1
+ - uid: 30815
+ components:
+ - type: Transform
+ pos: 101.5,164.5
+ parent: 1
+ - uid: 30862
+ components:
+ - type: Transform
+ pos: 89.5,46.5
+ parent: 1
+ - uid: 30889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,150.5
+ parent: 1
+ - uid: 31147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,128.5
+ parent: 1
+ - uid: 31769
+ components:
+ - type: Transform
+ pos: 36.5,95.5
+ parent: 1
+ - uid: 31797
+ components:
+ - type: Transform
+ pos: 89.5,43.5
+ parent: 1
+ - uid: 31951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,76.5
+ parent: 1
+ - uid: 31977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,73.5
+ parent: 1
+ - uid: 31978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,72.5
+ parent: 1
+ - uid: 31982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,68.5
+ parent: 1
+ - uid: 31993
+ components:
+ - type: Transform
+ pos: 126.5,155.5
+ parent: 1
+ - uid: 32002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,123.5
+ parent: 1
+ - uid: 32047
+ components:
+ - type: Transform
+ pos: 140.5,132.5
+ parent: 1
+ - uid: 32048
+ components:
+ - type: Transform
+ pos: 140.5,133.5
+ parent: 1
+ - uid: 32097
+ components:
+ - type: Transform
+ pos: 86.5,144.5
+ parent: 1
+ - uid: 32255
+ components:
+ - type: Transform
+ pos: 62.5,53.5
+ parent: 1
+ - uid: 32256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,30.5
+ parent: 1
+ - uid: 32264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,47.5
+ parent: 1
+ - uid: 32267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,44.5
+ parent: 1
+ - uid: 32268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,43.5
+ parent: 1
+ - uid: 32289
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 32292
+ components:
+ - type: Transform
+ pos: 88.5,46.5
+ parent: 1
+ - uid: 32377
+ components:
+ - type: Transform
+ pos: 135.5,87.5
+ parent: 1
+ - uid: 32388
+ components:
+ - type: Transform
+ pos: 138.5,92.5
+ parent: 1
+ - uid: 32435
+ components:
+ - type: Transform
+ pos: 42.5,127.5
+ parent: 1
+ - uid: 33000
+ components:
+ - type: Transform
+ pos: 152.5,147.5
+ parent: 1
+ - uid: 33896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,28.5
+ parent: 1
+ - uid: 33912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,41.5
+ parent: 1
+ - uid: 34225
+ components:
+ - type: Transform
+ pos: 144.5,43.5
+ parent: 1
+ - uid: 34228
+ components:
+ - type: Transform
+ pos: 50.5,72.5
+ parent: 1
+ - uid: 34411
+ components:
+ - type: Transform
+ pos: 66.5,155.5
+ parent: 1
+ - uid: 34417
+ components:
+ - type: Transform
+ pos: 63.5,123.5
+ parent: 1
+ - uid: 34418
+ components:
+ - type: Transform
+ pos: 67.5,155.5
+ parent: 1
+ - uid: 34602
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34605
+ components:
+ - type: Transform
+ pos: 138.5,89.5
+ parent: 1
+ - uid: 34659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,125.5
+ parent: 1
+ - uid: 34687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,126.5
+ parent: 1
+ - uid: 34711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,82.5
+ parent: 1
+ - uid: 34728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,150.5
+ parent: 1
+ - uid: 34738
+ components:
+ - type: Transform
+ pos: 156.5,88.5
+ parent: 1
+ - uid: 34967
+ components:
+ - type: Transform
+ pos: 151.5,147.5
+ parent: 1
+ - uid: 35083
+ components:
+ - type: Transform
+ pos: 138.5,88.5
+ parent: 1
+ - uid: 35084
+ components:
+ - type: Transform
+ pos: 138.5,94.5
+ parent: 1
+ - uid: 35085
+ components:
+ - type: Transform
+ pos: 131.5,87.5
+ parent: 1
+ - uid: 35086
+ components:
+ - type: Transform
+ pos: 136.5,87.5
+ parent: 1
+ - uid: 35090
+ components:
+ - type: Transform
+ pos: 138.5,90.5
+ parent: 1
+ - uid: 35124
+ components:
+ - type: Transform
+ pos: 162.5,146.5
+ parent: 1
+ - uid: 35204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,129.5
+ parent: 1
+ - uid: 35659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,133.5
+ parent: 1
+ - uid: 35832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,128.5
+ parent: 1
+ - uid: 35836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,132.5
+ parent: 1
+ - uid: 35839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,134.5
+ parent: 1
+ - uid: 36536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,160.5
+ parent: 1
+ - uid: 36763
+ components:
+ - type: Transform
+ pos: 90.5,142.5
+ parent: 1
+ - uid: 36764
+ components:
+ - type: Transform
+ pos: 78.5,134.5
+ parent: 1
+ - uid: 36765
+ components:
+ - type: Transform
+ pos: 78.5,144.5
+ parent: 1
+ - uid: 37139
+ components:
+ - type: Transform
+ pos: 161.5,147.5
+ parent: 1
+ - uid: 37142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,137.5
+ parent: 1
+- proto: WallReinforcedRust
+ entities:
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 76.5,163.5
+ parent: 1
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 89.5,170.5
+ parent: 1
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 30.5,78.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 30.5,76.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 30.5,73.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 30.5,68.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 30.5,66.5
+ parent: 1
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: 32.5,78.5
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 33.5,78.5
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 34.5,78.5
+ parent: 1
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 37.5,78.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 39.5,78.5
+ parent: 1
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 41.5,78.5
+ parent: 1
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 25.5,117.5
+ parent: 1
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 25.5,114.5
+ parent: 1
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 25.5,111.5
+ parent: 1
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 25.5,109.5
+ parent: 1
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: 27.5,85.5
+ parent: 1
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: 28.5,118.5
+ parent: 1
+ - uid: 1348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,39.5
+ parent: 1
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: 28.5,85.5
+ parent: 1
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,143.5
+ parent: 1
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,141.5
+ parent: 1
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,139.5
+ parent: 1
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,147.5
+ parent: 1
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,145.5
+ parent: 1
+ - uid: 1476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,134.5
+ parent: 1
+ - uid: 1478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,150.5
+ parent: 1
+ - uid: 1479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,148.5
+ parent: 1
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,131.5
+ parent: 1
+ - uid: 1481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,129.5
+ parent: 1
+ - uid: 1500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,154.5
+ parent: 1
+ - uid: 1501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,153.5
+ parent: 1
+ - uid: 1502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,126.5
+ parent: 1
+ - uid: 1505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,125.5
+ parent: 1
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 17.5,119.5
+ parent: 1
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 17.5,117.5
+ parent: 1
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 17.5,115.5
+ parent: 1
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 17.5,109.5
+ parent: 1
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 17.5,103.5
+ parent: 1
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 17.5,96.5
+ parent: 1
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 17.5,95.5
+ parent: 1
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 17.5,92.5
+ parent: 1
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 17.5,87.5
+ parent: 1
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 18.5,81.5
+ parent: 1
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 18.5,77.5
+ parent: 1
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 19.5,89.5
+ parent: 1
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 19.5,85.5
+ parent: 1
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 19.5,76.5
+ parent: 1
+ - uid: 1710
+ components:
+ - type: Transform
+ pos: 19.5,68.5
+ parent: 1
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: 20.5,125.5
+ parent: 1
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 20.5,123.5
+ parent: 1
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: 20.5,120.5
+ parent: 1
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: 20.5,89.5
+ parent: 1
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: 20.5,81.5
+ parent: 1
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: 20.5,77.5
+ parent: 1
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 20.5,67.5
+ parent: 1
+ - uid: 1768
+ components:
+ - type: Transform
+ pos: 21.5,67.5
+ parent: 1
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: 24.5,67.5
+ parent: 1
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 25.5,125.5
+ parent: 1
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,72.5
+ parent: 1
+ - uid: 2137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,70.5
+ parent: 1
+ - uid: 2138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,69.5
+ parent: 1
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: 29.5,125.5
+ parent: 1
+ - uid: 2186
+ components:
+ - type: Transform
+ pos: 29.5,66.5
+ parent: 1
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: 31.5,124.5
+ parent: 1
+ - uid: 2296
+ components:
+ - type: Transform
+ pos: 35.5,127.5
+ parent: 1
+ - uid: 2394
+ components:
+ - type: Transform
+ pos: 35.5,125.5
+ parent: 1
+ - uid: 2456
+ components:
+ - type: Transform
+ pos: 35.5,124.5
+ parent: 1
+ - uid: 2512
+ components:
+ - type: Transform
+ pos: 36.5,127.5
+ parent: 1
+ - uid: 2584
+ components:
+ - type: Transform
+ pos: 44.5,127.5
+ parent: 1
+ - uid: 2659
+ components:
+ - type: Transform
+ pos: 47.5,127.5
+ parent: 1
+ - uid: 3035
+ components:
+ - type: Transform
+ pos: 51.5,154.5
+ parent: 1
+ - uid: 3147
+ components:
+ - type: Transform
+ pos: 51.5,150.5
+ parent: 1
+ - uid: 3290
+ components:
+ - type: Transform
+ pos: 51.5,146.5
+ parent: 1
+ - uid: 3291
+ components:
+ - type: Transform
+ pos: 51.5,145.5
+ parent: 1
+ - uid: 3417
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 3418
+ components:
+ - type: Transform
+ pos: 51.5,138.5
+ parent: 1
+ - uid: 3425
+ components:
+ - type: Transform
+ pos: 51.5,136.5
+ parent: 1
+ - uid: 3769
+ components:
+ - type: Transform
+ pos: 52.5,155.5
+ parent: 1
+ - uid: 3770
+ components:
+ - type: Transform
+ pos: 52.5,144.5
+ parent: 1
+ - uid: 3869
+ components:
+ - type: Transform
+ pos: 54.5,144.5
+ parent: 1
+ - uid: 4027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,81.5
+ parent: 1
+ - uid: 4133
+ components:
+ - type: Transform
+ pos: 116.5,18.5
+ parent: 1
+ - uid: 4135
+ components:
+ - type: Transform
+ pos: 122.5,24.5
+ parent: 1
+ - uid: 4175
+ components:
+ - type: Transform
+ pos: 124.5,24.5
+ parent: 1
+ - uid: 4181
+ components:
+ - type: Transform
+ pos: 54.5,137.5
+ parent: 1
+ - uid: 4205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,81.5
+ parent: 1
+ - uid: 4269
+ components:
+ - type: Transform
+ pos: 115.5,16.5
+ parent: 1
+ - uid: 4270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,43.5
+ parent: 1
+ - uid: 4336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,33.5
+ parent: 1
+ - uid: 4426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,35.5
+ parent: 1
+ - uid: 4486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,32.5
+ parent: 1
+ - uid: 4487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,30.5
+ parent: 1
+ - uid: 4537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,48.5
+ parent: 1
+ - uid: 4544
+ components:
+ - type: Transform
+ pos: 55.5,155.5
+ parent: 1
+ - uid: 4584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,37.5
+ parent: 1
+ - uid: 4644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,28.5
+ parent: 1
+ - uid: 4645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,25.5
+ parent: 1
+ - uid: 4646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,22.5
+ parent: 1
+ - uid: 4647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,19.5
+ parent: 1
+ - uid: 4730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,27.5
+ parent: 1
+ - uid: 4731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,26.5
+ parent: 1
+ - uid: 4773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,24.5
+ parent: 1
+ - uid: 4774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,23.5
+ parent: 1
+ - uid: 4776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,21.5
+ parent: 1
+ - uid: 4777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,19.5
+ parent: 1
+ - uid: 4781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,17.5
+ parent: 1
+ - uid: 4782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,15.5
+ parent: 1
+ - uid: 4784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,14.5
+ parent: 1
+ - uid: 4785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,17.5
+ parent: 1
+ - uid: 4786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,16.5
+ parent: 1
+ - uid: 4787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,15.5
+ parent: 1
+ - uid: 4788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,15.5
+ parent: 1
+ - uid: 4789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,23.5
+ parent: 1
+ - uid: 4790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,21.5
+ parent: 1
+ - uid: 4791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,19.5
+ parent: 1
+ - uid: 4797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,19.5
+ parent: 1
+ - uid: 4835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,23.5
+ parent: 1
+ - uid: 4836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,21.5
+ parent: 1
+ - uid: 4885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,20.5
+ parent: 1
+ - uid: 4887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,19.5
+ parent: 1
+ - uid: 4890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,15.5
+ parent: 1
+ - uid: 4892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,15.5
+ parent: 1
+ - uid: 4893
+ components:
+ - type: Transform
+ pos: 85.5,16.5
+ parent: 1
+ - uid: 4895
+ components:
+ - type: Transform
+ pos: 86.5,17.5
+ parent: 1
+ - uid: 4897
+ components:
+ - type: Transform
+ pos: 92.5,17.5
+ parent: 1
+ - uid: 4898
+ components:
+ - type: Transform
+ pos: 92.5,15.5
+ parent: 1
+ - uid: 4899
+ components:
+ - type: Transform
+ pos: 96.5,16.5
+ parent: 1
+ - uid: 4939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,128.5
+ parent: 1
+ - uid: 4947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,105.5
+ parent: 1
+ - uid: 4953
+ components:
+ - type: Transform
+ pos: 96.5,15.5
+ parent: 1
+ - uid: 4954
+ components:
+ - type: Transform
+ pos: 97.5,17.5
+ parent: 1
+ - uid: 4955
+ components:
+ - type: Transform
+ pos: 100.5,17.5
+ parent: 1
+ - uid: 4956
+ components:
+ - type: Transform
+ pos: 102.5,17.5
+ parent: 1
+ - uid: 4959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,172.5
+ parent: 1
+ - uid: 4992
+ components:
+ - type: Transform
+ pos: 111.5,17.5
+ parent: 1
+ - uid: 4994
+ components:
+ - type: Transform
+ pos: 112.5,17.5
+ parent: 1
+ - uid: 4995
+ components:
+ - type: Transform
+ pos: 120.5,18.5
+ parent: 1
+ - uid: 4996
+ components:
+ - type: Transform
+ pos: 121.5,22.5
+ parent: 1
+ - uid: 4997
+ components:
+ - type: Transform
+ pos: 121.5,19.5
+ parent: 1
+ - uid: 5049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,45.5
+ parent: 1
+ - uid: 5058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,45.5
+ parent: 1
+ - uid: 5064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,44.5
+ parent: 1
+ - uid: 5079
+ components:
+ - type: Transform
+ pos: 125.5,33.5
+ parent: 1
+ - uid: 5083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,172.5
+ parent: 1
+ - uid: 5107
+ components:
+ - type: Transform
+ pos: 125.5,25.5
+ parent: 1
+ - uid: 5114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,172.5
+ parent: 1
+ - uid: 5141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,114.5
+ parent: 1
+ - uid: 5149
+ components:
+ - type: Transform
+ pos: 126.5,34.5
+ parent: 1
+ - uid: 5150
+ components:
+ - type: Transform
+ pos: 127.5,40.5
+ parent: 1
+ - uid: 5153
+ components:
+ - type: Transform
+ pos: 127.5,35.5
+ parent: 1
+ - uid: 5154
+ components:
+ - type: Transform
+ pos: 127.5,34.5
+ parent: 1
+ - uid: 5158
+ components:
+ - type: Transform
+ pos: 113.5,15.5
+ parent: 1
+ - uid: 5214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,114.5
+ parent: 1
+ - uid: 5226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,114.5
+ parent: 1
+ - uid: 5233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,35.5
+ parent: 1
+ - uid: 5234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,41.5
+ parent: 1
+ - uid: 5244
+ components:
+ - type: Transform
+ pos: 55.5,143.5
+ parent: 1
+ - uid: 5320
+ components:
+ - type: Transform
+ pos: 55.5,141.5
+ parent: 1
+ - uid: 5323
+ components:
+ - type: Transform
+ pos: 55.5,137.5
+ parent: 1
+ - uid: 5349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,35.5
+ parent: 1
+ - uid: 5360
+ components:
+ - type: Transform
+ pos: 56.5,158.5
+ parent: 1
+ - uid: 5376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,149.5
+ parent: 1
+ - uid: 5503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,15.5
+ parent: 1
+ - uid: 5541
+ components:
+ - type: Transform
+ pos: 56.5,156.5
+ parent: 1
+ - uid: 5555
+ components:
+ - type: Transform
+ pos: 57.5,159.5
+ parent: 1
+ - uid: 5557
+ components:
+ - type: Transform
+ pos: 60.5,161.5
+ parent: 1
+ - uid: 5559
+ components:
+ - type: Transform
+ pos: 60.5,159.5
+ parent: 1
+ - uid: 5565
+ components:
+ - type: Transform
+ pos: 61.5,162.5
+ parent: 1
+ - uid: 5588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,90.5
+ parent: 1
+ - uid: 5624
+ components:
+ - type: Transform
+ pos: 64.5,162.5
+ parent: 1
+ - uid: 5625
+ components:
+ - type: Transform
+ pos: 66.5,163.5
+ parent: 1
+ - uid: 5631
+ components:
+ - type: Transform
+ pos: 66.5,162.5
+ parent: 1
+ - uid: 5639
+ components:
+ - type: Transform
+ pos: 67.5,165.5
+ parent: 1
+ - uid: 5640
+ components:
+ - type: Transform
+ pos: 72.5,164.5
+ parent: 1
+ - uid: 5643
+ components:
+ - type: Transform
+ pos: 73.5,163.5
+ parent: 1
+ - uid: 5651
+ components:
+ - type: Transform
+ pos: 82.5,163.5
+ parent: 1
+ - uid: 5704
+ components:
+ - type: Transform
+ pos: 86.5,165.5
+ parent: 1
+ - uid: 5719
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: 90.5,174.5
+ parent: 1
+ - uid: 5759
+ components:
+ - type: Transform
+ pos: 95.5,174.5
+ parent: 1
+ - uid: 5770
+ components:
+ - type: Transform
+ pos: 104.5,173.5
+ parent: 1
+ - uid: 5832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,156.5
+ parent: 1
+ - uid: 5867
+ components:
+ - type: Transform
+ pos: 16.5,109.5
+ parent: 1
+ - uid: 5882
+ components:
+ - type: Transform
+ pos: 15.5,109.5
+ parent: 1
+ - uid: 5909
+ components:
+ - type: Transform
+ pos: 14.5,105.5
+ parent: 1
+ - uid: 5933
+ components:
+ - type: Transform
+ pos: 16.5,105.5
+ parent: 1
+ - uid: 6033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,104.5
+ parent: 1
+ - uid: 6055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,111.5
+ parent: 1
+ - uid: 6144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,125.5
+ parent: 1
+ - uid: 6208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,121.5
+ parent: 1
+ - uid: 6500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,115.5
+ parent: 1
+ - uid: 6520
+ components:
+ - type: Transform
+ pos: 27.5,89.5
+ parent: 1
+ - uid: 6572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,111.5
+ parent: 1
+ - uid: 6649
+ components:
+ - type: Transform
+ pos: 163.5,60.5
+ parent: 1
+ - uid: 6691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,105.5
+ parent: 1
+ - uid: 6695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,40.5
+ parent: 1
+ - uid: 6758
+ components:
+ - type: Transform
+ pos: 150.5,42.5
+ parent: 1
+ - uid: 6762
+ components:
+ - type: Transform
+ pos: 154.5,42.5
+ parent: 1
+ - uid: 6764
+ components:
+ - type: Transform
+ pos: 164.5,44.5
+ parent: 1
+ - uid: 6793
+ components:
+ - type: Transform
+ pos: 158.5,41.5
+ parent: 1
+ - uid: 6794
+ components:
+ - type: Transform
+ pos: 160.5,59.5
+ parent: 1
+ - uid: 6798
+ components:
+ - type: Transform
+ pos: 160.5,55.5
+ parent: 1
+ - uid: 6834
+ components:
+ - type: Transform
+ pos: 161.5,53.5
+ parent: 1
+ - uid: 6846
+ components:
+ - type: Transform
+ pos: 161.5,41.5
+ parent: 1
+ - uid: 6851
+ components:
+ - type: Transform
+ pos: 162.5,60.5
+ parent: 1
+ - uid: 6879
+ components:
+ - type: Transform
+ pos: 162.5,41.5
+ parent: 1
+ - uid: 6892
+ components:
+ - type: Transform
+ pos: 164.5,53.5
+ parent: 1
+ - uid: 6939
+ components:
+ - type: Transform
+ pos: 164.5,48.5
+ parent: 1
+ - uid: 6974
+ components:
+ - type: Transform
+ pos: 164.5,52.5
+ parent: 1
+ - uid: 6975
+ components:
+ - type: Transform
+ pos: 155.5,41.5
+ parent: 1
+ - uid: 6976
+ components:
+ - type: Transform
+ pos: 162.5,43.5
+ parent: 1
+ - uid: 6980
+ components:
+ - type: Transform
+ pos: 156.5,84.5
+ parent: 1
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: 161.5,84.5
+ parent: 1
+ - uid: 6984
+ components:
+ - type: Transform
+ pos: 161.5,82.5
+ parent: 1
+ - uid: 6986
+ components:
+ - type: Transform
+ pos: 162.5,77.5
+ parent: 1
+ - uid: 6988
+ components:
+ - type: Transform
+ pos: 162.5,71.5
+ parent: 1
+ - uid: 6991
+ components:
+ - type: Transform
+ pos: 162.5,69.5
+ parent: 1
+ - uid: 7026
+ components:
+ - type: Transform
+ pos: 163.5,81.5
+ parent: 1
+ - uid: 7028
+ components:
+ - type: Transform
+ pos: 163.5,66.5
+ parent: 1
+ - uid: 7029
+ components:
+ - type: Transform
+ pos: 163.5,63.5
+ parent: 1
+ - uid: 7035
+ components:
+ - type: Transform
+ pos: 164.5,81.5
+ parent: 1
+ - uid: 7042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,148.5
+ parent: 1
+ - uid: 7046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,147.5
+ parent: 1
+ - uid: 7047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,150.5
+ parent: 1
+ - uid: 7049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,150.5
+ parent: 1
+ - uid: 7052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,148.5
+ parent: 1
+ - uid: 7058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,128.5
+ parent: 1
+ - uid: 7060
+ components:
+ - type: Transform
+ pos: 164.5,77.5
+ parent: 1
+ - uid: 7094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,126.5
+ parent: 1
+ - uid: 7122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,90.5
+ parent: 1
+ - uid: 8557
+ components:
+ - type: Transform
+ pos: 127.5,39.5
+ parent: 1
+ - uid: 8757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,122.5
+ parent: 1
+ - uid: 11937
+ components:
+ - type: Transform
+ pos: 46.5,77.5
+ parent: 1
+ - uid: 15823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,150.5
+ parent: 1
+ - uid: 16238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,172.5
+ parent: 1
+ - uid: 16239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,172.5
+ parent: 1
+ - uid: 17927
+ components:
+ - type: Transform
+ pos: 126.5,168.5
+ parent: 1
+ - uid: 17938
+ components:
+ - type: Transform
+ pos: 126.5,162.5
+ parent: 1
+ - uid: 17941
+ components:
+ - type: Transform
+ pos: 126.5,165.5
+ parent: 1
+ - uid: 18067
+ components:
+ - type: Transform
+ pos: 166.5,138.5
+ parent: 1
+ - uid: 23463
+ components:
+ - type: Transform
+ pos: 49.5,77.5
+ parent: 1
+ - uid: 25938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,27.5
+ parent: 1
+ - uid: 26275
+ components:
+ - type: Transform
+ pos: 110.5,172.5
+ parent: 1
+ - uid: 30336
+ components:
+ - type: Transform
+ pos: 64.5,155.5
+ parent: 1
+ - uid: 30353
+ components:
+ - type: Transform
+ pos: 66.5,123.5
+ parent: 1
+ - uid: 30510
+ components:
+ - type: Transform
+ pos: 125.5,29.5
+ parent: 1
+ - uid: 32265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,46.5
+ parent: 1
+ - uid: 32266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,45.5
+ parent: 1
+ - uid: 32417
+ components:
+ - type: Transform
+ pos: 155.5,147.5
+ parent: 1
+ - uid: 33939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,40.5
+ parent: 1
+ - uid: 34224
+ components:
+ - type: Transform
+ pos: 145.5,42.5
+ parent: 1
+ - uid: 34420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,157.5
+ parent: 1
+ - uid: 34421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,155.5
+ parent: 1
+ - uid: 34422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,158.5
+ parent: 1
+ - uid: 34423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,158.5
+ parent: 1
+ - uid: 34424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,157.5
+ parent: 1
+ - uid: 34425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,157.5
+ parent: 1
+ - uid: 34472
+ components:
+ - type: Transform
+ pos: 131.5,155.5
+ parent: 1
+ - uid: 34599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,143.5
+ parent: 1
+ - uid: 34600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,140.5
+ parent: 1
+ - uid: 34601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,137.5
+ parent: 1
+ - uid: 34606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,137.5
+ parent: 1
+ - uid: 34692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,128.5
+ parent: 1
+ - uid: 34712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,83.5
+ parent: 1
+ - uid: 34739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,48.5
+ parent: 1
+ - uid: 34740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,173.5
+ parent: 1
+ - uid: 34835
+ components:
+ - type: Transform
+ pos: 126.5,158.5
+ parent: 1
+ - uid: 34843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,58.5
+ parent: 1
+ - uid: 34844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,124.5
+ parent: 1
+ - uid: 34896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,92.5
+ parent: 1
+ - uid: 34897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,92.5
+ parent: 1
+ - uid: 34923
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 34947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,48.5
+ parent: 1
+ - uid: 34974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,132.5
+ parent: 1
+ - uid: 34976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,134.5
+ parent: 1
+ - uid: 34977
+ components:
+ - type: Transform
+ pos: 127.5,155.5
+ parent: 1
+ - uid: 35834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,130.5
+ parent: 1
+ - uid: 35838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,135.5
+ parent: 1
+ - uid: 36395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,129.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 18.5,117.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 18.5,95.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 19.5,117.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 19.5,103.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,83.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 20.5,114.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 20.5,109.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 20.5,106.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 21.5,117.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 21.5,103.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 21.5,89.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 21.5,77.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 22.5,120.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 22.5,118.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 22.5,117.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 22.5,114.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 22.5,109.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 23.5,106.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 23.5,105.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 23.5,104.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 23.5,103.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 23.5,102.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 23.5,101.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 23.5,99.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 23.5,98.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 23.5,77.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 24.5,106.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 24.5,98.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 24.5,88.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 24.5,86.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 24.5,84.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 24.5,83.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 25.5,98.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 26.5,98.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 26.5,77.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 26.5,76.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 26.5,74.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 27.5,120.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 27.5,98.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 28.5,120.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 28.5,98.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 58.5,95.5
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 29.5,99.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 29.5,83.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 29.5,81.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 44.5,121.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 30.5,121.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 30.5,118.5
+ parent: 1
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 30.5,106.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 30.5,98.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 30.5,81.5
+ parent: 1
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 31.5,98.5
+ parent: 1
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 31.5,81.5
+ parent: 1
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 32.5,118.5
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 32.5,98.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 33.5,98.5
+ parent: 1
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,115.5
+ parent: 1
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 34.5,118.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 34.5,81.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 35.5,123.5
+ parent: 1
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 35.5,98.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 36.5,120.5
+ parent: 1
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 36.5,105.5
+ parent: 1
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 36.5,98.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 37.5,118.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 37.5,117.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 37.5,116.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 37.5,114.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 37.5,113.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 37.5,111.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 37.5,110.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 37.5,98.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 38.5,118.5
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 38.5,97.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 38.5,96.5
+ parent: 1
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 39.5,118.5
+ parent: 1
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 40.5,118.5
+ parent: 1
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 40.5,115.5
+ parent: 1
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 41.5,110.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 42.5,120.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 42.5,118.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 42.5,81.5
+ parent: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 43.5,110.5
+ parent: 1
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 43.5,118.5
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 44.5,125.5
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 44.5,124.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 44.5,120.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 44.5,118.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 44.5,81.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 45.5,118.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 45.5,103.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 45.5,102.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 45.5,99.5
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 45.5,98.5
+ parent: 1
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 45.5,95.5
+ parent: 1
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 45.5,94.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 45.5,93.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 45.5,91.5
+ parent: 1
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 45.5,85.5
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 45.5,84.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 45.5,82.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 45.5,81.5
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 45.5,80.5
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ pos: 45.5,79.5
+ parent: 1
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 97.5,106.5
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 119.5,114.5
+ parent: 1
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 46.5,118.5
+ parent: 1
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 46.5,115.5
+ parent: 1
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 46.5,98.5
+ parent: 1
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 46.5,94.5
+ parent: 1
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 46.5,85.5
+ parent: 1
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 46.5,79.5
+ parent: 1
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 47.5,118.5
+ parent: 1
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 47.5,85.5
+ parent: 1
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 47.5,79.5
+ parent: 1
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 48.5,118.5
+ parent: 1
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 48.5,98.5
+ parent: 1
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 48.5,85.5
+ parent: 1
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 48.5,79.5
+ parent: 1
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 49.5,118.5
+ parent: 1
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 49.5,117.5
+ parent: 1
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 49.5,116.5
+ parent: 1
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 49.5,115.5
+ parent: 1
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 49.5,114.5
+ parent: 1
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 49.5,85.5
+ parent: 1
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 49.5,79.5
+ parent: 1
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 50.5,115.5
+ parent: 1
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 50.5,88.5
+ parent: 1
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 50.5,86.5
+ parent: 1
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 50.5,85.5
+ parent: 1
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 50.5,79.5
+ parent: 1
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 122.5,105.5
+ parent: 1
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 51.5,122.5
+ parent: 1
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 51.5,85.5
+ parent: 1
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: 51.5,79.5
+ parent: 1
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 52.5,115.5
+ parent: 1
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: 52.5,98.5
+ parent: 1
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 52.5,79.5
+ parent: 1
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: 53.5,120.5
+ parent: 1
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 53.5,116.5
+ parent: 1
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 53.5,115.5
+ parent: 1
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 53.5,98.5
+ parent: 1
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 53.5,79.5
+ parent: 1
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,44.5
+ parent: 1
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: 54.5,120.5
+ parent: 1
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: 54.5,115.5
+ parent: 1
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 54.5,114.5
+ parent: 1
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 54.5,100.5
+ parent: 1
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 54.5,99.5
+ parent: 1
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: 54.5,98.5
+ parent: 1
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 54.5,94.5
+ parent: 1
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: 54.5,89.5
+ parent: 1
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 54.5,85.5
+ parent: 1
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: 54.5,83.5
+ parent: 1
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 54.5,82.5
+ parent: 1
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 54.5,81.5
+ parent: 1
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 54.5,80.5
+ parent: 1
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 54.5,79.5
+ parent: 1
+ - uid: 1424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,87.5
+ parent: 1
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 153.5,97.5
+ parent: 1
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 55.5,135.5
+ parent: 1
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 55.5,134.5
+ parent: 1
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 55.5,131.5
+ parent: 1
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 55.5,115.5
+ parent: 1
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 89.5,42.5
+ parent: 1
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 56.5,151.5
+ parent: 1
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 56.5,150.5
+ parent: 1
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 56.5,148.5
+ parent: 1
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 56.5,147.5
+ parent: 1
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 56.5,135.5
+ parent: 1
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 56.5,124.5
+ parent: 1
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 56.5,123.5
+ parent: 1
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 56.5,121.5
+ parent: 1
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 56.5,120.5
+ parent: 1
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 56.5,115.5
+ parent: 1
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 57.5,127.5
+ parent: 1
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 57.5,125.5
+ parent: 1
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 57.5,120.5
+ parent: 1
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 57.5,119.5
+ parent: 1
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 57.5,118.5
+ parent: 1
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 57.5,115.5
+ parent: 1
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 58.5,131.5
+ parent: 1
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: 58.5,129.5
+ parent: 1
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 58.5,125.5
+ parent: 1
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 58.5,115.5
+ parent: 1
+ - uid: 1591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,115.5
+ parent: 1
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 58.5,109.5
+ parent: 1
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: 58.5,108.5
+ parent: 1
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: 122.5,115.5
+ parent: 1
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 58.5,106.5
+ parent: 1
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 58.5,105.5
+ parent: 1
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 58.5,104.5
+ parent: 1
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 58.5,103.5
+ parent: 1
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 58.5,100.5
+ parent: 1
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 58.5,99.5
+ parent: 1
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 58.5,98.5
+ parent: 1
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 58.5,97.5
+ parent: 1
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 58.5,92.5
+ parent: 1
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 58.5,88.5
+ parent: 1
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 58.5,86.5
+ parent: 1
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 58.5,85.5
+ parent: 1
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: 58.5,84.5
+ parent: 1
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 58.5,82.5
+ parent: 1
+ - uid: 1623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,85.5
+ parent: 1
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 58.5,76.5
+ parent: 1
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 58.5,75.5
+ parent: 1
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 58.5,74.5
+ parent: 1
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 58.5,73.5
+ parent: 1
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 58.5,72.5
+ parent: 1
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 58.5,71.5
+ parent: 1
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 58.5,70.5
+ parent: 1
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 58.5,69.5
+ parent: 1
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 58.5,68.5
+ parent: 1
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 58.5,67.5
+ parent: 1
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 58.5,66.5
+ parent: 1
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 59.5,153.5
+ parent: 1
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 59.5,120.5
+ parent: 1
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 59.5,119.5
+ parent: 1
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 59.5,118.5
+ parent: 1
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 59.5,115.5
+ parent: 1
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 59.5,105.5
+ parent: 1
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 59.5,98.5
+ parent: 1
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 59.5,88.5
+ parent: 1
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 59.5,79.5
+ parent: 1
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 59.5,66.5
+ parent: 1
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 60.5,157.5
+ parent: 1
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: 60.5,156.5
+ parent: 1
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: 60.5,154.5
+ parent: 1
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 1743
+ components:
+ - type: Transform
+ pos: 60.5,120.5
+ parent: 1
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: 60.5,115.5
+ parent: 1
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 60.5,88.5
+ parent: 1
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: 60.5,79.5
+ parent: 1
+ - uid: 1755
+ components:
+ - type: Transform
+ pos: 60.5,75.5
+ parent: 1
+ - uid: 1756
+ components:
+ - type: Transform
+ pos: 60.5,74.5
+ parent: 1
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: 60.5,73.5
+ parent: 1
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: 60.5,72.5
+ parent: 1
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 60.5,71.5
+ parent: 1
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: 61.5,120.5
+ parent: 1
+ - uid: 1803
+ components:
+ - type: Transform
+ pos: 61.5,119.5
+ parent: 1
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: 61.5,118.5
+ parent: 1
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: 61.5,115.5
+ parent: 1
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 61.5,111.5
+ parent: 1
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 68.5,105.5
+ parent: 1
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 61.5,98.5
+ parent: 1
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 61.5,88.5
+ parent: 1
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 61.5,76.5
+ parent: 1
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 61.5,71.5
+ parent: 1
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 61.5,66.5
+ parent: 1
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 153.5,100.5
+ parent: 1
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 63.5,62.5
+ parent: 1
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 62.5,62.5
+ parent: 1
+ - uid: 1852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,74.5
+ parent: 1
+ - uid: 1857
+ components:
+ - type: Transform
+ pos: 62.5,120.5
+ parent: 1
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: 62.5,115.5
+ parent: 1
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: 62.5,111.5
+ parent: 1
+ - uid: 1864
+ components:
+ - type: Transform
+ pos: 62.5,98.5
+ parent: 1
+ - uid: 1865
+ components:
+ - type: Transform
+ pos: 62.5,88.5
+ parent: 1
+ - uid: 1870
+ components:
+ - type: Transform
+ pos: 62.5,66.5
+ parent: 1
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: 105.5,36.5
+ parent: 1
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: 63.5,158.5
+ parent: 1
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 89.5,37.5
+ parent: 1
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 63.5,120.5
+ parent: 1
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 63.5,119.5
+ parent: 1
+ - uid: 1926
+ components:
+ - type: Transform
+ pos: 63.5,118.5
+ parent: 1
+ - uid: 1928
+ components:
+ - type: Transform
+ pos: 63.5,111.5
+ parent: 1
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: 63.5,105.5
+ parent: 1
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 63.5,98.5
+ parent: 1
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: 63.5,88.5
+ parent: 1
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 63.5,71.5
+ parent: 1
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 63.5,66.5
+ parent: 1
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 63.5,45.5
+ parent: 1
+ - uid: 1994
+ components:
+ - type: Transform
+ pos: 64.5,120.5
+ parent: 1
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: 64.5,115.5
+ parent: 1
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: 64.5,111.5
+ parent: 1
+ - uid: 1998
+ components:
+ - type: Transform
+ pos: 64.5,110.5
+ parent: 1
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: 64.5,109.5
+ parent: 1
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: 64.5,107.5
+ parent: 1
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: 64.5,106.5
+ parent: 1
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: 64.5,105.5
+ parent: 1
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 64.5,104.5
+ parent: 1
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 64.5,103.5
+ parent: 1
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: 64.5,102.5
+ parent: 1
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: 64.5,100.5
+ parent: 1
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: 64.5,98.5
+ parent: 1
+ - uid: 2011
+ components:
+ - type: Transform
+ pos: 64.5,97.5
+ parent: 1
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: 64.5,96.5
+ parent: 1
+ - uid: 2016
+ components:
+ - type: Transform
+ pos: 64.5,92.5
+ parent: 1
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: 64.5,91.5
+ parent: 1
+ - uid: 2018
+ components:
+ - type: Transform
+ pos: 64.5,90.5
+ parent: 1
+ - uid: 2019
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: 64.5,88.5
+ parent: 1
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: 64.5,86.5
+ parent: 1
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: 64.5,84.5
+ parent: 1
+ - uid: 2025
+ components:
+ - type: Transform
+ pos: 64.5,83.5
+ parent: 1
+ - uid: 2026
+ components:
+ - type: Transform
+ pos: 64.5,82.5
+ parent: 1
+ - uid: 2027
+ components:
+ - type: Transform
+ pos: 64.5,81.5
+ parent: 1
+ - uid: 2028
+ components:
+ - type: Transform
+ pos: 64.5,80.5
+ parent: 1
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 2031
+ components:
+ - type: Transform
+ pos: 64.5,76.5
+ parent: 1
+ - uid: 2032
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,68.5
+ parent: 1
+ - uid: 2036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,28.5
+ parent: 1
+ - uid: 2037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,32.5
+ parent: 1
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 81.5,61.5
+ parent: 1
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 67.5,72.5
+ parent: 1
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 71.5,70.5
+ parent: 1
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 113.5,21.5
+ parent: 1
+ - uid: 2062
+ components:
+ - type: Transform
+ pos: 67.5,67.5
+ parent: 1
+ - uid: 2066
+ components:
+ - type: Transform
+ pos: 65.5,120.5
+ parent: 1
+ - uid: 2067
+ components:
+ - type: Transform
+ pos: 65.5,119.5
+ parent: 1
+ - uid: 2068
+ components:
+ - type: Transform
+ pos: 65.5,118.5
+ parent: 1
+ - uid: 2069
+ components:
+ - type: Transform
+ pos: 65.5,117.5
+ parent: 1
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: 65.5,116.5
+ parent: 1
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: 65.5,115.5
+ parent: 1
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: 65.5,105.5
+ parent: 1
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: 65.5,89.5
+ parent: 1
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: 65.5,85.5
+ parent: 1
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 65.5,79.5
+ parent: 1
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 65.5,77.5
+ parent: 1
+ - uid: 2080
+ components:
+ - type: Transform
+ pos: 65.5,71.5
+ parent: 1
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 65.5,66.5
+ parent: 1
+ - uid: 2085
+ components:
+ - type: Transform
+ pos: 65.5,62.5
+ parent: 1
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: 65.5,57.5
+ parent: 1
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 65.5,50.5
+ parent: 1
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 65.5,48.5
+ parent: 1
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 65.5,47.5
+ parent: 1
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 65.5,46.5
+ parent: 1
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 65.5,45.5
+ parent: 1
+ - uid: 2103
+ components:
+ - type: Transform
+ pos: 65.5,44.5
+ parent: 1
+ - uid: 2104
+ components:
+ - type: Transform
+ pos: 65.5,43.5
+ parent: 1
+ - uid: 2105
+ components:
+ - type: Transform
+ pos: 65.5,42.5
+ parent: 1
+ - uid: 2106
+ components:
+ - type: Transform
+ pos: 65.5,41.5
+ parent: 1
+ - uid: 2107
+ components:
+ - type: Transform
+ pos: 65.5,40.5
+ parent: 1
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: 65.5,39.5
+ parent: 1
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: 65.5,38.5
+ parent: 1
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: 65.5,37.5
+ parent: 1
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 65.5,35.5
+ parent: 1
+ - uid: 2113
+ components:
+ - type: Transform
+ pos: 65.5,34.5
+ parent: 1
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: 65.5,32.5
+ parent: 1
+ - uid: 2116
+ components:
+ - type: Transform
+ pos: 65.5,31.5
+ parent: 1
+ - uid: 2117
+ components:
+ - type: Transform
+ pos: 65.5,30.5
+ parent: 1
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: 65.5,29.5
+ parent: 1
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: 65.5,28.5
+ parent: 1
+ - uid: 2120
+ components:
+ - type: Transform
+ pos: 65.5,27.5
+ parent: 1
+ - uid: 2121
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 1
+ - uid: 2122
+ components:
+ - type: Transform
+ pos: 65.5,25.5
+ parent: 1
+ - uid: 2123
+ components:
+ - type: Transform
+ pos: 65.5,24.5
+ parent: 1
+ - uid: 2124
+ components:
+ - type: Transform
+ pos: 65.5,23.5
+ parent: 1
+ - uid: 2125
+ components:
+ - type: Transform
+ pos: 114.5,21.5
+ parent: 1
+ - uid: 2126
+ components:
+ - type: Transform
+ pos: 65.5,21.5
+ parent: 1
+ - uid: 2134
+ components:
+ - type: Transform
+ pos: 66.5,160.5
+ parent: 1
+ - uid: 2136
+ components:
+ - type: Transform
+ pos: 66.5,158.5
+ parent: 1
+ - uid: 2149
+ components:
+ - type: Transform
+ pos: 70.5,71.5
+ parent: 1
+ - uid: 2167
+ components:
+ - type: Transform
+ pos: 66.5,79.5
+ parent: 1
+ - uid: 2169
+ components:
+ - type: Transform
+ pos: 66.5,77.5
+ parent: 1
+ - uid: 2171
+ components:
+ - type: Transform
+ pos: 66.5,66.5
+ parent: 1
+ - uid: 2173
+ components:
+ - type: Transform
+ pos: 66.5,24.5
+ parent: 1
+ - uid: 2174
+ components:
+ - type: Transform
+ pos: 66.5,21.5
+ parent: 1
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,32.5
+ parent: 1
+ - uid: 2181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,33.5
+ parent: 1
+ - uid: 2203
+ components:
+ - type: Transform
+ pos: 67.5,69.5
+ parent: 1
+ - uid: 2218
+ components:
+ - type: Transform
+ pos: 67.5,85.5
+ parent: 1
+ - uid: 2219
+ components:
+ - type: Transform
+ pos: 67.5,79.5
+ parent: 1
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 67.5,77.5
+ parent: 1
+ - uid: 2221
+ components:
+ - type: Transform
+ pos: 67.5,76.5
+ parent: 1
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: 67.5,75.5
+ parent: 1
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 67.5,73.5
+ parent: 1
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 2226
+ components:
+ - type: Transform
+ pos: 72.5,70.5
+ parent: 1
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 71.5,66.5
+ parent: 1
+ - uid: 2231
+ components:
+ - type: Transform
+ pos: 67.5,66.5
+ parent: 1
+ - uid: 2234
+ components:
+ - type: Transform
+ pos: 72.5,66.5
+ parent: 1
+ - uid: 2275
+ components:
+ - type: Transform
+ pos: 68.5,111.5
+ parent: 1
+ - uid: 2276
+ components:
+ - type: Transform
+ pos: 68.5,110.5
+ parent: 1
+ - uid: 2277
+ components:
+ - type: Transform
+ pos: 68.5,109.5
+ parent: 1
+ - uid: 2280
+ components:
+ - type: Transform
+ pos: 68.5,85.5
+ parent: 1
+ - uid: 2281
+ components:
+ - type: Transform
+ pos: 68.5,79.5
+ parent: 1
+ - uid: 2282
+ components:
+ - type: Transform
+ pos: 68.5,77.5
+ parent: 1
+ - uid: 2284
+ components:
+ - type: Transform
+ pos: 68.5,66.5
+ parent: 1
+ - uid: 2292
+ components:
+ - type: Transform
+ pos: 68.5,24.5
+ parent: 1
+ - uid: 2324
+ components:
+ - type: Transform
+ pos: 69.5,105.5
+ parent: 1
+ - uid: 2325
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 2326
+ components:
+ - type: Transform
+ pos: 69.5,100.5
+ parent: 1
+ - uid: 2327
+ components:
+ - type: Transform
+ pos: 69.5,99.5
+ parent: 1
+ - uid: 2332
+ components:
+ - type: Transform
+ pos: 69.5,95.5
+ parent: 1
+ - uid: 2333
+ components:
+ - type: Transform
+ pos: 69.5,94.5
+ parent: 1
+ - uid: 2334
+ components:
+ - type: Transform
+ pos: 69.5,93.5
+ parent: 1
+ - uid: 2335
+ components:
+ - type: Transform
+ pos: 69.5,92.5
+ parent: 1
+ - uid: 2336
+ components:
+ - type: Transform
+ pos: 69.5,91.5
+ parent: 1
+ - uid: 2337
+ components:
+ - type: Transform
+ pos: 69.5,90.5
+ parent: 1
+ - uid: 2338
+ components:
+ - type: Transform
+ pos: 69.5,89.5
+ parent: 1
+ - uid: 2340
+ components:
+ - type: Transform
+ pos: 69.5,79.5
+ parent: 1
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 69.5,77.5
+ parent: 1
+ - uid: 2343
+ components:
+ - type: Transform
+ pos: 69.5,66.5
+ parent: 1
+ - uid: 2344
+ components:
+ - type: Transform
+ pos: 69.5,62.5
+ parent: 1
+ - uid: 2345
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 2350
+ components:
+ - type: Transform
+ pos: 69.5,56.5
+ parent: 1
+ - uid: 2355
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 2356
+ components:
+ - type: Transform
+ pos: 69.5,50.5
+ parent: 1
+ - uid: 2358
+ components:
+ - type: Transform
+ pos: 69.5,48.5
+ parent: 1
+ - uid: 2359
+ components:
+ - type: Transform
+ pos: 69.5,47.5
+ parent: 1
+ - uid: 2361
+ components:
+ - type: Transform
+ pos: 69.5,45.5
+ parent: 1
+ - uid: 2362
+ components:
+ - type: Transform
+ pos: 69.5,44.5
+ parent: 1
+ - uid: 2428
+ components:
+ - type: Transform
+ pos: 70.5,105.5
+ parent: 1
+ - uid: 2429
+ components:
+ - type: Transform
+ pos: 70.5,104.5
+ parent: 1
+ - uid: 2430
+ components:
+ - type: Transform
+ pos: 70.5,103.5
+ parent: 1
+ - uid: 2431
+ components:
+ - type: Transform
+ pos: 70.5,102.5
+ parent: 1
+ - uid: 2432
+ components:
+ - type: Transform
+ pos: 70.5,101.5
+ parent: 1
+ - uid: 2433
+ components:
+ - type: Transform
+ pos: 70.5,93.5
+ parent: 1
+ - uid: 2436
+ components:
+ - type: Transform
+ pos: 70.5,89.5
+ parent: 1
+ - uid: 2437
+ components:
+ - type: Transform
+ pos: 70.5,85.5
+ parent: 1
+ - uid: 2438
+ components:
+ - type: Transform
+ pos: 70.5,79.5
+ parent: 1
+ - uid: 2439
+ components:
+ - type: Transform
+ pos: 70.5,77.5
+ parent: 1
+ - uid: 2442
+ components:
+ - type: Transform
+ pos: 70.5,66.5
+ parent: 1
+ - uid: 2444
+ components:
+ - type: Transform
+ pos: 70.5,44.5
+ parent: 1
+ - uid: 2459
+ components:
+ - type: Transform
+ pos: 71.5,120.5
+ parent: 1
+ - uid: 2460
+ components:
+ - type: Transform
+ pos: 71.5,119.5
+ parent: 1
+ - uid: 2461
+ components:
+ - type: Transform
+ pos: 71.5,116.5
+ parent: 1
+ - uid: 2467
+ components:
+ - type: Transform
+ pos: 71.5,105.5
+ parent: 1
+ - uid: 2468
+ components:
+ - type: Transform
+ pos: 71.5,101.5
+ parent: 1
+ - uid: 2471
+ components:
+ - type: Transform
+ pos: 71.5,93.5
+ parent: 1
+ - uid: 2474
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 2480
+ components:
+ - type: Transform
+ pos: 71.5,79.5
+ parent: 1
+ - uid: 2481
+ components:
+ - type: Transform
+ pos: 71.5,77.5
+ parent: 1
+ - uid: 2482
+ components:
+ - type: Transform
+ pos: 106.5,105.5
+ parent: 1
+ - uid: 2488
+ components:
+ - type: Transform
+ pos: 71.5,62.5
+ parent: 1
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: 71.5,50.5
+ parent: 1
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: 71.5,44.5
+ parent: 1
+ - uid: 2509
+ components:
+ - type: Transform
+ pos: 72.5,162.5
+ parent: 1
+ - uid: 2510
+ components:
+ - type: Transform
+ pos: 72.5,161.5
+ parent: 1
+ - uid: 2511
+ components:
+ - type: Transform
+ pos: 72.5,160.5
+ parent: 1
+ - uid: 2517
+ components:
+ - type: Transform
+ pos: 72.5,120.5
+ parent: 1
+ - uid: 2524
+ components:
+ - type: Transform
+ pos: 72.5,101.5
+ parent: 1
+ - uid: 2525
+ components:
+ - type: Transform
+ pos: 72.5,93.5
+ parent: 1
+ - uid: 2526
+ components:
+ - type: Transform
+ pos: 72.5,89.5
+ parent: 1
+ - uid: 2529
+ components:
+ - type: Transform
+ pos: 72.5,77.5
+ parent: 1
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 2533
+ components:
+ - type: Transform
+ pos: 111.5,101.5
+ parent: 1
+ - uid: 2538
+ components:
+ - type: Transform
+ pos: 72.5,62.5
+ parent: 1
+ - uid: 2550
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 2557
+ components:
+ - type: Transform
+ pos: 73.5,101.5
+ parent: 1
+ - uid: 2559
+ components:
+ - type: Transform
+ pos: 73.5,93.5
+ parent: 1
+ - uid: 2566
+ components:
+ - type: Transform
+ pos: 73.5,79.5
+ parent: 1
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: 73.5,78.5
+ parent: 1
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: 73.5,77.5
+ parent: 1
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: 73.5,66.5
+ parent: 1
+ - uid: 2572
+ components:
+ - type: Transform
+ pos: 73.5,50.5
+ parent: 1
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: 73.5,49.5
+ parent: 1
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: 93.5,109.5
+ parent: 1
+ - uid: 2575
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 1
+ - uid: 2576
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 1
+ - uid: 2577
+ components:
+ - type: Transform
+ pos: 73.5,44.5
+ parent: 1
+ - uid: 2587
+ components:
+ - type: Transform
+ pos: 74.5,120.5
+ parent: 1
+ - uid: 2589
+ components:
+ - type: Transform
+ pos: 137.5,104.5
+ parent: 1
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: 74.5,79.5
+ parent: 1
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: 74.5,66.5
+ parent: 1
+ - uid: 2612
+ components:
+ - type: Transform
+ pos: 74.5,50.5
+ parent: 1
+ - uid: 2613
+ components:
+ - type: Transform
+ pos: 74.5,46.5
+ parent: 1
+ - uid: 2628
+ components:
+ - type: Transform
+ pos: 75.5,120.5
+ parent: 1
+ - uid: 2641
+ components:
+ - type: Transform
+ pos: 75.5,79.5
+ parent: 1
+ - uid: 2642
+ components:
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - uid: 2644
+ components:
+ - type: Transform
+ pos: 75.5,66.5
+ parent: 1
+ - uid: 2651
+ components:
+ - type: Transform
+ pos: 75.5,50.5
+ parent: 1
+ - uid: 2653
+ components:
+ - type: Transform
+ pos: 75.5,44.5
+ parent: 1
+ - uid: 2661
+ components:
+ - type: Transform
+ pos: 76.5,157.5
+ parent: 1
+ - uid: 2665
+ components:
+ - type: Transform
+ pos: 76.5,120.5
+ parent: 1
+ - uid: 2675
+ components:
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - uid: 2677
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 2686
+ components:
+ - type: Transform
+ pos: 76.5,79.5
+ parent: 1
+ - uid: 2703
+ components:
+ - type: Transform
+ pos: 76.5,66.5
+ parent: 1
+ - uid: 2706
+ components:
+ - type: Transform
+ pos: 76.5,50.5
+ parent: 1
+ - uid: 2707
+ components:
+ - type: Transform
+ pos: 76.5,46.5
+ parent: 1
+ - uid: 2708
+ components:
+ - type: Transform
+ pos: 93.5,107.5
+ parent: 1
+ - uid: 2738
+ components:
+ - type: Transform
+ pos: 77.5,120.5
+ parent: 1
+ - uid: 2746
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 2747
+ components:
+ - type: Transform
+ pos: 77.5,93.5
+ parent: 1
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: 77.5,89.5
+ parent: 1
+ - uid: 2750
+ components:
+ - type: Transform
+ pos: 77.5,79.5
+ parent: 1
+ - uid: 2754
+ components:
+ - type: Transform
+ pos: 77.5,66.5
+ parent: 1
+ - uid: 2759
+ components:
+ - type: Transform
+ pos: 77.5,46.5
+ parent: 1
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: 77.5,44.5
+ parent: 1
+ - uid: 2768
+ components:
+ - type: Transform
+ pos: 78.5,157.5
+ parent: 1
+ - uid: 2771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,142.5
+ parent: 1
+ - uid: 2779
+ components:
+ - type: Transform
+ pos: 78.5,120.5
+ parent: 1
+ - uid: 2780
+ components:
+ - type: Transform
+ pos: 78.5,119.5
+ parent: 1
+ - uid: 2781
+ components:
+ - type: Transform
+ pos: 78.5,118.5
+ parent: 1
+ - uid: 2782
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 2783
+ components:
+ - type: Transform
+ pos: 78.5,116.5
+ parent: 1
+ - uid: 2789
+ components:
+ - type: Transform
+ pos: 78.5,105.5
+ parent: 1
+ - uid: 2790
+ components:
+ - type: Transform
+ pos: 78.5,101.5
+ parent: 1
+ - uid: 2793
+ components:
+ - type: Transform
+ pos: 78.5,93.5
+ parent: 1
+ - uid: 2796
+ components:
+ - type: Transform
+ pos: 78.5,85.5
+ parent: 1
+ - uid: 2797
+ components:
+ - type: Transform
+ pos: 78.5,84.5
+ parent: 1
+ - uid: 2798
+ components:
+ - type: Transform
+ pos: 78.5,83.5
+ parent: 1
+ - uid: 2799
+ components:
+ - type: Transform
+ pos: 78.5,82.5
+ parent: 1
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: 78.5,81.5
+ parent: 1
+ - uid: 2801
+ components:
+ - type: Transform
+ pos: 78.5,79.5
+ parent: 1
+ - uid: 2806
+ components:
+ - type: Transform
+ pos: 145.5,87.5
+ parent: 1
+ - uid: 2811
+ components:
+ - type: Transform
+ pos: 78.5,69.5
+ parent: 1
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: 78.5,68.5
+ parent: 1
+ - uid: 2813
+ components:
+ - type: Transform
+ pos: 78.5,67.5
+ parent: 1
+ - uid: 2814
+ components:
+ - type: Transform
+ pos: 78.5,66.5
+ parent: 1
+ - uid: 2817
+ components:
+ - type: Transform
+ pos: 78.5,50.5
+ parent: 1
+ - uid: 2818
+ components:
+ - type: Transform
+ pos: 78.5,46.5
+ parent: 1
+ - uid: 2820
+ components:
+ - type: Transform
+ pos: 78.5,44.5
+ parent: 1
+ - uid: 2850
+ components:
+ - type: Transform
+ pos: 79.5,120.5
+ parent: 1
+ - uid: 2856
+ components:
+ - type: Transform
+ pos: 79.5,105.5
+ parent: 1
+ - uid: 2857
+ components:
+ - type: Transform
+ pos: 79.5,104.5
+ parent: 1
+ - uid: 2859
+ components:
+ - type: Transform
+ pos: 79.5,102.5
+ parent: 1
+ - uid: 2860
+ components:
+ - type: Transform
+ pos: 79.5,101.5
+ parent: 1
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: 79.5,93.5
+ parent: 1
+ - uid: 2864
+ components:
+ - type: Transform
+ pos: 79.5,89.5
+ parent: 1
+ - uid: 2867
+ components:
+ - type: Transform
+ pos: 79.5,81.5
+ parent: 1
+ - uid: 2868
+ components:
+ - type: Transform
+ pos: 79.5,79.5
+ parent: 1
+ - uid: 2873
+ components:
+ - type: Transform
+ pos: 79.5,69.5
+ parent: 1
+ - uid: 2879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,85.5
+ parent: 1
+ - uid: 2884
+ components:
+ - type: Transform
+ pos: 79.5,50.5
+ parent: 1
+ - uid: 2887
+ components:
+ - type: Transform
+ pos: 79.5,44.5
+ parent: 1
+ - uid: 2908
+ components:
+ - type: Transform
+ pos: 80.5,111.5
+ parent: 1
+ - uid: 2909
+ components:
+ - type: Transform
+ pos: 80.5,110.5
+ parent: 1
+ - uid: 2910
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 2911
+ components:
+ - type: Transform
+ pos: 80.5,105.5
+ parent: 1
+ - uid: 2912
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 2913
+ components:
+ - type: Transform
+ pos: 80.5,100.5
+ parent: 1
+ - uid: 2914
+ components:
+ - type: Transform
+ pos: 80.5,99.5
+ parent: 1
+ - uid: 2919
+ components:
+ - type: Transform
+ pos: 80.5,95.5
+ parent: 1
+ - uid: 2920
+ components:
+ - type: Transform
+ pos: 80.5,94.5
+ parent: 1
+ - uid: 2921
+ components:
+ - type: Transform
+ pos: 80.5,93.5
+ parent: 1
+ - uid: 2922
+ components:
+ - type: Transform
+ pos: 80.5,92.5
+ parent: 1
+ - uid: 2923
+ components:
+ - type: Transform
+ pos: 80.5,91.5
+ parent: 1
+ - uid: 2924
+ components:
+ - type: Transform
+ pos: 80.5,90.5
+ parent: 1
+ - uid: 2925
+ components:
+ - type: Transform
+ pos: 80.5,89.5
+ parent: 1
+ - uid: 2931
+ components:
+ - type: Transform
+ pos: 80.5,79.5
+ parent: 1
+ - uid: 2946
+ components:
+ - type: Transform
+ pos: 80.5,69.5
+ parent: 1
+ - uid: 2950
+ components:
+ - type: Transform
+ pos: 45.5,110.5
+ parent: 1
+ - uid: 2956
+ components:
+ - type: Transform
+ pos: 80.5,50.5
+ parent: 1
+ - uid: 2960
+ components:
+ - type: Transform
+ pos: 80.5,46.5
+ parent: 1
+ - uid: 2961
+ components:
+ - type: Transform
+ pos: 80.5,44.5
+ parent: 1
+ - uid: 2983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,46.5
+ parent: 1
+ - uid: 2992
+ components:
+ - type: Transform
+ pos: 81.5,81.5
+ parent: 1
+ - uid: 2993
+ components:
+ - type: Transform
+ pos: 81.5,79.5
+ parent: 1
+ - uid: 3036
+ components:
+ - type: Transform
+ pos: 82.5,157.5
+ parent: 1
+ - uid: 3053
+ components:
+ - type: Transform
+ pos: 82.5,85.5
+ parent: 1
+ - uid: 3054
+ components:
+ - type: Transform
+ pos: 82.5,81.5
+ parent: 1
+ - uid: 3055
+ components:
+ - type: Transform
+ pos: 82.5,79.5
+ parent: 1
+ - uid: 3058
+ components:
+ - type: Transform
+ pos: 82.5,69.5
+ parent: 1
+ - uid: 3071
+ components:
+ - type: Transform
+ pos: 82.5,24.5
+ parent: 1
+ - uid: 3076
+ components:
+ - type: Transform
+ pos: 83.5,157.5
+ parent: 1
+ - uid: 3105
+ components:
+ - type: Transform
+ pos: 83.5,105.5
+ parent: 1
+ - uid: 3108
+ components:
+ - type: Transform
+ pos: 83.5,81.5
+ parent: 1
+ - uid: 3109
+ components:
+ - type: Transform
+ pos: 83.5,79.5
+ parent: 1
+ - uid: 3114
+ components:
+ - type: Transform
+ pos: 83.5,69.5
+ parent: 1
+ - uid: 3132
+ components:
+ - type: Transform
+ pos: 85.5,59.5
+ parent: 1
+ - uid: 3134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,62.5
+ parent: 1
+ - uid: 3144
+ components:
+ - type: Transform
+ pos: 84.5,160.5
+ parent: 1
+ - uid: 3145
+ components:
+ - type: Transform
+ pos: 84.5,159.5
+ parent: 1
+ - uid: 3174
+ components:
+ - type: Transform
+ pos: 84.5,89.5
+ parent: 1
+ - uid: 3175
+ components:
+ - type: Transform
+ pos: 84.5,85.5
+ parent: 1
+ - uid: 3176
+ components:
+ - type: Transform
+ pos: 84.5,81.5
+ parent: 1
+ - uid: 3177
+ components:
+ - type: Transform
+ pos: 84.5,79.5
+ parent: 1
+ - uid: 3178
+ components:
+ - type: Transform
+ pos: 84.5,69.5
+ parent: 1
+ - uid: 3185
+ components:
+ - type: Transform
+ pos: 84.5,24.5
+ parent: 1
+ - uid: 3193
+ components:
+ - type: Transform
+ pos: 85.5,160.5
+ parent: 1
+ - uid: 3216
+ components:
+ - type: Transform
+ pos: 85.5,120.5
+ parent: 1
+ - uid: 3219
+ components:
+ - type: Transform
+ pos: 85.5,105.5
+ parent: 1
+ - uid: 3227
+ components:
+ - type: Transform
+ pos: 129.5,146.5
+ parent: 1
+ - uid: 3229
+ components:
+ - type: Transform
+ pos: 129.5,144.5
+ parent: 1
+ - uid: 3240
+ components:
+ - type: Transform
+ pos: 85.5,85.5
+ parent: 1
+ - uid: 3241
+ components:
+ - type: Transform
+ pos: 85.5,84.5
+ parent: 1
+ - uid: 3242
+ components:
+ - type: Transform
+ pos: 85.5,83.5
+ parent: 1
+ - uid: 3243
+ components:
+ - type: Transform
+ pos: 85.5,82.5
+ parent: 1
+ - uid: 3244
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 3245
+ components:
+ - type: Transform
+ pos: 85.5,79.5
+ parent: 1
+ - uid: 3246
+ components:
+ - type: Transform
+ pos: 85.5,69.5
+ parent: 1
+ - uid: 3260
+ components:
+ - type: Transform
+ pos: 85.5,43.5
+ parent: 1
+ - uid: 3261
+ components:
+ - type: Transform
+ pos: 85.5,42.5
+ parent: 1
+ - uid: 3263
+ components:
+ - type: Transform
+ pos: 85.5,40.5
+ parent: 1
+ - uid: 3264
+ components:
+ - type: Transform
+ pos: 85.5,39.5
+ parent: 1
+ - uid: 3265
+ components:
+ - type: Transform
+ pos: 85.5,38.5
+ parent: 1
+ - uid: 3267
+ components:
+ - type: Transform
+ pos: 85.5,36.5
+ parent: 1
+ - uid: 3269
+ components:
+ - type: Transform
+ pos: 85.5,34.5
+ parent: 1
+ - uid: 3270
+ components:
+ - type: Transform
+ pos: 85.5,33.5
+ parent: 1
+ - uid: 3271
+ components:
+ - type: Transform
+ pos: 85.5,32.5
+ parent: 1
+ - uid: 3272
+ components:
+ - type: Transform
+ pos: 85.5,31.5
+ parent: 1
+ - uid: 3273
+ components:
+ - type: Transform
+ pos: 85.5,30.5
+ parent: 1
+ - uid: 3274
+ components:
+ - type: Transform
+ pos: 96.5,109.5
+ parent: 1
+ - uid: 3275
+ components:
+ - type: Transform
+ pos: 85.5,28.5
+ parent: 1
+ - uid: 3276
+ components:
+ - type: Transform
+ pos: 85.5,27.5
+ parent: 1
+ - uid: 3277
+ components:
+ - type: Transform
+ pos: 85.5,26.5
+ parent: 1
+ - uid: 3278
+ components:
+ - type: Transform
+ pos: 85.5,25.5
+ parent: 1
+ - uid: 3279
+ components:
+ - type: Transform
+ pos: 85.5,24.5
+ parent: 1
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: 85.5,21.5
+ parent: 1
+ - uid: 3310
+ components:
+ - type: Transform
+ pos: 86.5,105.5
+ parent: 1
+ - uid: 3315
+ components:
+ - type: Transform
+ pos: 70.5,159.5
+ parent: 1
+ - uid: 3317
+ components:
+ - type: Transform
+ pos: 86.5,79.5
+ parent: 1
+ - uid: 3318
+ components:
+ - type: Transform
+ pos: 86.5,69.5
+ parent: 1
+ - uid: 3325
+ components:
+ - type: Transform
+ pos: 87.5,160.5
+ parent: 1
+ - uid: 3340
+ components:
+ - type: Transform
+ pos: 87.5,79.5
+ parent: 1
+ - uid: 3341
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 3342
+ components:
+ - type: Transform
+ pos: 87.5,70.5
+ parent: 1
+ - uid: 3343
+ components:
+ - type: Transform
+ pos: 87.5,69.5
+ parent: 1
+ - uid: 3371
+ components:
+ - type: Transform
+ pos: 87.5,29.5
+ parent: 1
+ - uid: 3372
+ components:
+ - type: Transform
+ pos: 87.5,28.5
+ parent: 1
+ - uid: 3374
+ components:
+ - type: Transform
+ pos: 87.5,26.5
+ parent: 1
+ - uid: 3375
+ components:
+ - type: Transform
+ pos: 87.5,25.5
+ parent: 1
+ - uid: 3377
+ components:
+ - type: Transform
+ pos: 87.5,23.5
+ parent: 1
+ - uid: 3378
+ components:
+ - type: Transform
+ pos: 87.5,22.5
+ parent: 1
+ - uid: 3382
+ components:
+ - type: Transform
+ pos: 88.5,160.5
+ parent: 1
+ - uid: 3403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,71.5
+ parent: 1
+ - uid: 3430
+ components:
+ - type: Transform
+ pos: 89.5,111.5
+ parent: 1
+ - uid: 3453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,66.5
+ parent: 1
+ - uid: 3466
+ components:
+ - type: Transform
+ pos: 89.5,30.5
+ parent: 1
+ - uid: 3478
+ components:
+ - type: Transform
+ pos: 90.5,166.5
+ parent: 1
+ - uid: 3479
+ components:
+ - type: Transform
+ pos: 90.5,160.5
+ parent: 1
+ - uid: 3552
+ components:
+ - type: Transform
+ pos: 89.5,105.5
+ parent: 1
+ - uid: 3555
+ components:
+ - type: Transform
+ pos: 90.5,70.5
+ parent: 1
+ - uid: 3565
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 3578
+ components:
+ - type: Transform
+ pos: 91.5,124.5
+ parent: 1
+ - uid: 3588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,112.5
+ parent: 1
+ - uid: 3589
+ components:
+ - type: Transform
+ pos: 91.5,79.5
+ parent: 1
+ - uid: 3590
+ components:
+ - type: Transform
+ pos: 91.5,78.5
+ parent: 1
+ - uid: 3591
+ components:
+ - type: Transform
+ pos: 91.5,77.5
+ parent: 1
+ - uid: 3593
+ components:
+ - type: Transform
+ pos: 91.5,75.5
+ parent: 1
+ - uid: 3595
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 3597
+ components:
+ - type: Transform
+ pos: 91.5,71.5
+ parent: 1
+ - uid: 3598
+ components:
+ - type: Transform
+ pos: 91.5,70.5
+ parent: 1
+ - uid: 3609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,112.5
+ parent: 1
+ - uid: 3611
+ components:
+ - type: Transform
+ pos: 91.5,33.5
+ parent: 1
+ - uid: 3619
+ components:
+ - type: Transform
+ pos: 92.5,166.5
+ parent: 1
+ - uid: 3622
+ components:
+ - type: Transform
+ pos: 92.5,156.5
+ parent: 1
+ - uid: 3625
+ components:
+ - type: Transform
+ pos: 92.5,153.5
+ parent: 1
+ - uid: 3626
+ components:
+ - type: Transform
+ pos: 92.5,152.5
+ parent: 1
+ - uid: 3627
+ components:
+ - type: Transform
+ pos: 92.5,151.5
+ parent: 1
+ - uid: 3629
+ components:
+ - type: Transform
+ pos: 92.5,149.5
+ parent: 1
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: 92.5,148.5
+ parent: 1
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: 92.5,147.5
+ parent: 1
+ - uid: 3641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,112.5
+ parent: 1
+ - uid: 3656
+ components:
+ - type: Transform
+ pos: 92.5,131.5
+ parent: 1
+ - uid: 3658
+ components:
+ - type: Transform
+ pos: 92.5,129.5
+ parent: 1
+ - uid: 3659
+ components:
+ - type: Transform
+ pos: 92.5,128.5
+ parent: 1
+ - uid: 3660
+ components:
+ - type: Transform
+ pos: 92.5,127.5
+ parent: 1
+ - uid: 3661
+ components:
+ - type: Transform
+ pos: 92.5,126.5
+ parent: 1
+ - uid: 3662
+ components:
+ - type: Transform
+ pos: 92.5,125.5
+ parent: 1
+ - uid: 3663
+ components:
+ - type: Transform
+ pos: 92.5,124.5
+ parent: 1
+ - uid: 3669
+ components:
+ - type: Transform
+ pos: 120.5,105.5
+ parent: 1
+ - uid: 3670
+ components:
+ - type: Transform
+ pos: 119.5,108.5
+ parent: 1
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: 119.5,109.5
+ parent: 1
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 123.5,105.5
+ parent: 1
+ - uid: 3676
+ components:
+ - type: Transform
+ pos: 92.5,105.5
+ parent: 1
+ - uid: 3677
+ components:
+ - type: Transform
+ pos: 92.5,104.5
+ parent: 1
+ - uid: 3678
+ components:
+ - type: Transform
+ pos: 92.5,103.5
+ parent: 1
+ - uid: 3679
+ components:
+ - type: Transform
+ pos: 88.5,105.5
+ parent: 1
+ - uid: 3681
+ components:
+ - type: Transform
+ pos: 92.5,98.5
+ parent: 1
+ - uid: 3682
+ components:
+ - type: Transform
+ pos: 92.5,97.5
+ parent: 1
+ - uid: 3683
+ components:
+ - type: Transform
+ pos: 92.5,96.5
+ parent: 1
+ - uid: 3684
+ components:
+ - type: Transform
+ pos: 92.5,95.5
+ parent: 1
+ - uid: 3688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,112.5
+ parent: 1
+ - uid: 3689
+ components:
+ - type: Transform
+ pos: 92.5,79.5
+ parent: 1
+ - uid: 3714
+ components:
+ - type: Transform
+ pos: 92.5,33.5
+ parent: 1
+ - uid: 3725
+ components:
+ - type: Transform
+ pos: 93.5,170.5
+ parent: 1
+ - uid: 3726
+ components:
+ - type: Transform
+ pos: 93.5,169.5
+ parent: 1
+ - uid: 3728
+ components:
+ - type: Transform
+ pos: 93.5,167.5
+ parent: 1
+ - uid: 3741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,97.5
+ parent: 1
+ - uid: 3743
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 3746
+ components:
+ - type: Transform
+ pos: 93.5,99.5
+ parent: 1
+ - uid: 3747
+ components:
+ - type: Transform
+ pos: 93.5,95.5
+ parent: 1
+ - uid: 3757
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 1
+ - uid: 3761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,29.5
+ parent: 1
+ - uid: 3779
+ components:
+ - type: Transform
+ pos: 94.5,105.5
+ parent: 1
+ - uid: 3780
+ components:
+ - type: Transform
+ pos: 94.5,95.5
+ parent: 1
+ - uid: 3789
+ components:
+ - type: Transform
+ pos: 94.5,85.5
+ parent: 1
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: 94.5,79.5
+ parent: 1
+ - uid: 3795
+ components:
+ - type: Transform
+ pos: 94.5,62.5
+ parent: 1
+ - uid: 3796
+ components:
+ - type: Transform
+ pos: 94.5,57.5
+ parent: 1
+ - uid: 3797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,53.5
+ parent: 1
+ - uid: 3802
+ components:
+ - type: Transform
+ pos: 94.5,33.5
+ parent: 1
+ - uid: 3809
+ components:
+ - type: Transform
+ pos: 95.5,170.5
+ parent: 1
+ - uid: 3832
+ components:
+ - type: Transform
+ pos: 97.5,108.5
+ parent: 1
+ - uid: 3833
+ components:
+ - type: Transform
+ pos: 97.5,109.5
+ parent: 1
+ - uid: 3836
+ components:
+ - type: Transform
+ pos: 95.5,95.5
+ parent: 1
+ - uid: 3838
+ components:
+ - type: Transform
+ pos: 95.5,79.5
+ parent: 1
+ - uid: 3839
+ components:
+ - type: Transform
+ pos: 95.5,75.5
+ parent: 1
+ - uid: 3840
+ components:
+ - type: Transform
+ pos: 95.5,74.5
+ parent: 1
+ - uid: 3842
+ components:
+ - type: Transform
+ pos: 95.5,72.5
+ parent: 1
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: 95.5,71.5
+ parent: 1
+ - uid: 3845
+ components:
+ - type: Transform
+ pos: 95.5,69.5
+ parent: 1
+ - uid: 3846
+ components:
+ - type: Transform
+ pos: 95.5,68.5
+ parent: 1
+ - uid: 3847
+ components:
+ - type: Transform
+ pos: 95.5,67.5
+ parent: 1
+ - uid: 3848
+ components:
+ - type: Transform
+ pos: 95.5,66.5
+ parent: 1
+ - uid: 3849
+ components:
+ - type: Transform
+ pos: 95.5,65.5
+ parent: 1
+ - uid: 3850
+ components:
+ - type: Transform
+ pos: 95.5,64.5
+ parent: 1
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: 95.5,63.5
+ parent: 1
+ - uid: 3852
+ components:
+ - type: Transform
+ pos: 95.5,62.5
+ parent: 1
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: 95.5,61.5
+ parent: 1
+ - uid: 3857
+ components:
+ - type: Transform
+ pos: 95.5,57.5
+ parent: 1
+ - uid: 3862
+ components:
+ - type: Transform
+ pos: 95.5,33.5
+ parent: 1
+ - uid: 3870
+ components:
+ - type: Transform
+ pos: 96.5,170.5
+ parent: 1
+ - uid: 3903
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 3912
+ components:
+ - type: Transform
+ pos: 119.5,106.5
+ parent: 1
+ - uid: 3913
+ components:
+ - type: Transform
+ pos: 119.5,107.5
+ parent: 1
+ - uid: 3914
+ components:
+ - type: Transform
+ pos: 96.5,95.5
+ parent: 1
+ - uid: 3915
+ components:
+ - type: Transform
+ pos: 96.5,94.5
+ parent: 1
+ - uid: 3917
+ components:
+ - type: Transform
+ pos: 96.5,92.5
+ parent: 1
+ - uid: 3918
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: 96.5,90.5
+ parent: 1
+ - uid: 3920
+ components:
+ - type: Transform
+ pos: 96.5,89.5
+ parent: 1
+ - uid: 3922
+ components:
+ - type: Transform
+ pos: 96.5,79.5
+ parent: 1
+ - uid: 3930
+ components:
+ - type: Transform
+ pos: 96.5,33.5
+ parent: 1
+ - uid: 3968
+ components:
+ - type: Transform
+ pos: 97.5,95.5
+ parent: 1
+ - uid: 3969
+ components:
+ - type: Transform
+ pos: 97.5,89.5
+ parent: 1
+ - uid: 3971
+ components:
+ - type: Transform
+ pos: 97.5,87.5
+ parent: 1
+ - uid: 3972
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 3973
+ components:
+ - type: Transform
+ pos: 97.5,85.5
+ parent: 1
+ - uid: 3975
+ components:
+ - type: Transform
+ pos: 97.5,83.5
+ parent: 1
+ - uid: 3976
+ components:
+ - type: Transform
+ pos: 97.5,82.5
+ parent: 1
+ - uid: 3977
+ components:
+ - type: Transform
+ pos: 97.5,81.5
+ parent: 1
+ - uid: 3978
+ components:
+ - type: Transform
+ pos: 97.5,80.5
+ parent: 1
+ - uid: 3979
+ components:
+ - type: Transform
+ pos: 97.5,79.5
+ parent: 1
+ - uid: 3980
+ components:
+ - type: Transform
+ pos: 97.5,75.5
+ parent: 1
+ - uid: 3994
+ components:
+ - type: Transform
+ pos: 97.5,61.5
+ parent: 1
+ - uid: 3995
+ components:
+ - type: Transform
+ pos: 97.5,60.5
+ parent: 1
+ - uid: 3996
+ components:
+ - type: Transform
+ pos: 97.5,59.5
+ parent: 1
+ - uid: 3998
+ components:
+ - type: Transform
+ pos: 97.5,57.5
+ parent: 1
+ - uid: 3999
+ components:
+ - type: Transform
+ pos: 97.5,56.5
+ parent: 1
+ - uid: 4005
+ components:
+ - type: Transform
+ pos: 97.5,24.5
+ parent: 1
+ - uid: 4023
+ components:
+ - type: Transform
+ pos: 98.5,95.5
+ parent: 1
+ - uid: 4029
+ components:
+ - type: Transform
+ pos: 98.5,61.5
+ parent: 1
+ - uid: 4033
+ components:
+ - type: Transform
+ pos: 98.5,56.5
+ parent: 1
+ - uid: 4052
+ components:
+ - type: Transform
+ pos: 98.5,33.5
+ parent: 1
+ - uid: 4107
+ components:
+ - type: Transform
+ pos: 99.5,61.5
+ parent: 1
+ - uid: 4112
+ components:
+ - type: Transform
+ pos: 99.5,49.5
+ parent: 1
+ - uid: 4119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 4121
+ components:
+ - type: Transform
+ pos: 100.5,38.5
+ parent: 1
+ - uid: 4123
+ components:
+ - type: Transform
+ pos: 97.5,38.5
+ parent: 1
+ - uid: 4141
+ components:
+ - type: Transform
+ pos: 89.5,39.5
+ parent: 1
+ - uid: 4159
+ components:
+ - type: Transform
+ pos: 100.5,95.5
+ parent: 1
+ - uid: 4164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,62.5
+ parent: 1
+ - uid: 4167
+ components:
+ - type: Transform
+ pos: 100.5,67.5
+ parent: 1
+ - uid: 4170
+ components:
+ - type: Transform
+ pos: 100.5,56.5
+ parent: 1
+ - uid: 4172
+ components:
+ - type: Transform
+ pos: 100.5,49.5
+ parent: 1
+ - uid: 4173
+ components:
+ - type: Transform
+ pos: 89.5,38.5
+ parent: 1
+ - uid: 4174
+ components:
+ - type: Transform
+ pos: 100.5,33.5
+ parent: 1
+ - uid: 4184
+ components:
+ - type: Transform
+ pos: 89.5,49.5
+ parent: 1
+ - uid: 4193
+ components:
+ - type: Transform
+ pos: 101.5,116.5
+ parent: 1
+ - uid: 4196
+ components:
+ - type: Transform
+ pos: 101.5,95.5
+ parent: 1
+ - uid: 4203
+ components:
+ - type: Transform
+ pos: 101.5,61.5
+ parent: 1
+ - uid: 4204
+ components:
+ - type: Transform
+ pos: 101.5,56.5
+ parent: 1
+ - uid: 4206
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: 98.5,38.5
+ parent: 1
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: 99.5,38.5
+ parent: 1
+ - uid: 4218
+ components:
+ - type: Transform
+ pos: 102.5,170.5
+ parent: 1
+ - uid: 4237
+ components:
+ - type: Transform
+ pos: 102.5,105.5
+ parent: 1
+ - uid: 4238
+ components:
+ - type: Transform
+ pos: 102.5,100.5
+ parent: 1
+ - uid: 4239
+ components:
+ - type: Transform
+ pos: 102.5,99.5
+ parent: 1
+ - uid: 4242
+ components:
+ - type: Transform
+ pos: 102.5,96.5
+ parent: 1
+ - uid: 4243
+ components:
+ - type: Transform
+ pos: 102.5,95.5
+ parent: 1
+ - uid: 4244
+ components:
+ - type: Transform
+ pos: 102.5,94.5
+ parent: 1
+ - uid: 4245
+ components:
+ - type: Transform
+ pos: 102.5,93.5
+ parent: 1
+ - uid: 4246
+ components:
+ - type: Transform
+ pos: 102.5,92.5
+ parent: 1
+ - uid: 4247
+ components:
+ - type: Transform
+ pos: 102.5,91.5
+ parent: 1
+ - uid: 4248
+ components:
+ - type: Transform
+ pos: 102.5,90.5
+ parent: 1
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: 102.5,65.5
+ parent: 1
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: 102.5,61.5
+ parent: 1
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: 102.5,56.5
+ parent: 1
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: 102.5,53.5
+ parent: 1
+ - uid: 4305
+ components:
+ - type: Transform
+ pos: 103.5,95.5
+ parent: 1
+ - uid: 4323
+ components:
+ - type: Transform
+ pos: 103.5,61.5
+ parent: 1
+ - uid: 4324
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 4325
+ components:
+ - type: Transform
+ pos: 103.5,59.5
+ parent: 1
+ - uid: 4326
+ components:
+ - type: Transform
+ pos: 103.5,58.5
+ parent: 1
+ - uid: 4327
+ components:
+ - type: Transform
+ pos: 103.5,57.5
+ parent: 1
+ - uid: 4328
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 1
+ - uid: 4330
+ components:
+ - type: Transform
+ pos: 103.5,53.5
+ parent: 1
+ - uid: 4343
+ components:
+ - type: Transform
+ pos: 104.5,170.5
+ parent: 1
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: 104.5,105.5
+ parent: 1
+ - uid: 4368
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 4370
+ components:
+ - type: Transform
+ pos: 104.5,60.5
+ parent: 1
+ - uid: 4372
+ components:
+ - type: Transform
+ pos: 104.5,53.5
+ parent: 1
+ - uid: 4400
+ components:
+ - type: Transform
+ pos: 105.5,116.5
+ parent: 1
+ - uid: 4404
+ components:
+ - type: Transform
+ pos: 105.5,105.5
+ parent: 1
+ - uid: 4405
+ components:
+ - type: Transform
+ pos: 105.5,100.5
+ parent: 1
+ - uid: 4406
+ components:
+ - type: Transform
+ pos: 105.5,95.5
+ parent: 1
+ - uid: 4413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,47.5
+ parent: 1
+ - uid: 4416
+ components:
+ - type: Transform
+ pos: 105.5,60.5
+ parent: 1
+ - uid: 4418
+ components:
+ - type: Transform
+ pos: 105.5,55.5
+ parent: 1
+ - uid: 4424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,41.5
+ parent: 1
+ - uid: 4451
+ components:
+ - type: Transform
+ pos: 106.5,100.5
+ parent: 1
+ - uid: 4452
+ components:
+ - type: Transform
+ pos: 106.5,95.5
+ parent: 1
+ - uid: 4485
+ components:
+ - type: Transform
+ pos: 106.5,33.5
+ parent: 1
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: 107.5,105.5
+ parent: 1
+ - uid: 4513
+ components:
+ - type: Transform
+ pos: 107.5,100.5
+ parent: 1
+ - uid: 4514
+ components:
+ - type: Transform
+ pos: 107.5,95.5
+ parent: 1
+ - uid: 4528
+ components:
+ - type: Transform
+ pos: 107.5,60.5
+ parent: 1
+ - uid: 4530
+ components:
+ - type: Transform
+ pos: 107.5,55.5
+ parent: 1
+ - uid: 4531
+ components:
+ - type: Transform
+ pos: 107.5,53.5
+ parent: 1
+ - uid: 4535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,32.5
+ parent: 1
+ - uid: 4546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,166.5
+ parent: 1
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 4575
+ components:
+ - type: Transform
+ pos: 108.5,65.5
+ parent: 1
+ - uid: 4577
+ components:
+ - type: Transform
+ pos: 108.5,60.5
+ parent: 1
+ - uid: 4578
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 4581
+ components:
+ - type: Transform
+ pos: 108.5,49.5
+ parent: 1
+ - uid: 4590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,166.5
+ parent: 1
+ - uid: 4609
+ components:
+ - type: Transform
+ pos: 109.5,105.5
+ parent: 1
+ - uid: 4610
+ components:
+ - type: Transform
+ pos: 109.5,100.5
+ parent: 1
+ - uid: 4611
+ components:
+ - type: Transform
+ pos: 109.5,95.5
+ parent: 1
+ - uid: 4630
+ components:
+ - type: Transform
+ pos: 109.5,61.5
+ parent: 1
+ - uid: 4631
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 4632
+ components:
+ - type: Transform
+ pos: 109.5,59.5
+ parent: 1
+ - uid: 4633
+ components:
+ - type: Transform
+ pos: 109.5,58.5
+ parent: 1
+ - uid: 4634
+ components:
+ - type: Transform
+ pos: 109.5,57.5
+ parent: 1
+ - uid: 4635
+ components:
+ - type: Transform
+ pos: 109.5,56.5
+ parent: 1
+ - uid: 4636
+ components:
+ - type: Transform
+ pos: 109.5,55.5
+ parent: 1
+ - uid: 4637
+ components:
+ - type: Transform
+ pos: 109.5,49.5
+ parent: 1
+ - uid: 4669
+ components:
+ - type: Transform
+ pos: 110.5,105.5
+ parent: 1
+ - uid: 4670
+ components:
+ - type: Transform
+ pos: 110.5,100.5
+ parent: 1
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: 110.5,65.5
+ parent: 1
+ - uid: 4680
+ components:
+ - type: Transform
+ pos: 110.5,61.5
+ parent: 1
+ - uid: 4681
+ components:
+ - type: Transform
+ pos: 110.5,56.5
+ parent: 1
+ - uid: 4684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,102.5
+ parent: 1
+ - uid: 4690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,97.5
+ parent: 1
+ - uid: 4691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,102.5
+ parent: 1
+ - uid: 4713
+ components:
+ - type: Transform
+ pos: 111.5,116.5
+ parent: 1
+ - uid: 4716
+ components:
+ - type: Transform
+ pos: 79.5,62.5
+ parent: 1
+ - uid: 4717
+ components:
+ - type: Transform
+ pos: 111.5,105.5
+ parent: 1
+ - uid: 4718
+ components:
+ - type: Transform
+ pos: 111.5,100.5
+ parent: 1
+ - uid: 4719
+ components:
+ - type: Transform
+ pos: 111.5,95.5
+ parent: 1
+ - uid: 4727
+ components:
+ - type: Transform
+ pos: 111.5,61.5
+ parent: 1
+ - uid: 4728
+ components:
+ - type: Transform
+ pos: 111.5,56.5
+ parent: 1
+ - uid: 4751
+ components:
+ - type: Transform
+ pos: 112.5,105.5
+ parent: 1
+ - uid: 4753
+ components:
+ - type: Transform
+ pos: 112.5,95.5
+ parent: 1
+ - uid: 4758
+ components:
+ - type: Transform
+ pos: 90.5,78.5
+ parent: 1
+ - uid: 4762
+ components:
+ - type: Transform
+ pos: 112.5,67.5
+ parent: 1
+ - uid: 4763
+ components:
+ - type: Transform
+ pos: 112.5,65.5
+ parent: 1
+ - uid: 4765
+ components:
+ - type: Transform
+ pos: 112.5,56.5
+ parent: 1
+ - uid: 4768
+ components:
+ - type: Transform
+ pos: 112.5,50.5
+ parent: 1
+ - uid: 4769
+ components:
+ - type: Transform
+ pos: 112.5,49.5
+ parent: 1
+ - uid: 4770
+ components:
+ - type: Transform
+ pos: 112.5,48.5
+ parent: 1
+ - uid: 4771
+ components:
+ - type: Transform
+ pos: 112.5,47.5
+ parent: 1
+ - uid: 4772
+ components:
+ - type: Transform
+ pos: 112.5,46.5
+ parent: 1
+ - uid: 4775
+ components:
+ - type: Transform
+ pos: 112.5,42.5
+ parent: 1
+ - uid: 4778
+ components:
+ - type: Transform
+ pos: 112.5,39.5
+ parent: 1
+ - uid: 4780
+ components:
+ - type: Transform
+ pos: 112.5,37.5
+ parent: 1
+ - uid: 4783
+ components:
+ - type: Transform
+ pos: 112.5,34.5
+ parent: 1
+ - uid: 4825
+ components:
+ - type: Transform
+ pos: 113.5,95.5
+ parent: 1
+ - uid: 4830
+ components:
+ - type: Transform
+ pos: 113.5,61.5
+ parent: 1
+ - uid: 4832
+ components:
+ - type: Transform
+ pos: 113.5,56.5
+ parent: 1
+ - uid: 4834
+ components:
+ - type: Transform
+ pos: 113.5,46.5
+ parent: 1
+ - uid: 4860
+ components:
+ - type: Transform
+ pos: 114.5,105.5
+ parent: 1
+ - uid: 4861
+ components:
+ - type: Transform
+ pos: 114.5,100.5
+ parent: 1
+ - uid: 4862
+ components:
+ - type: Transform
+ pos: 114.5,99.5
+ parent: 1
+ - uid: 4865
+ components:
+ - type: Transform
+ pos: 114.5,96.5
+ parent: 1
+ - uid: 4866
+ components:
+ - type: Transform
+ pos: 114.5,95.5
+ parent: 1
+ - uid: 4867
+ components:
+ - type: Transform
+ pos: 114.5,94.5
+ parent: 1
+ - uid: 4868
+ components:
+ - type: Transform
+ pos: 114.5,93.5
+ parent: 1
+ - uid: 4869
+ components:
+ - type: Transform
+ pos: 114.5,92.5
+ parent: 1
+ - uid: 4870
+ components:
+ - type: Transform
+ pos: 114.5,91.5
+ parent: 1
+ - uid: 4871
+ components:
+ - type: Transform
+ pos: 114.5,90.5
+ parent: 1
+ - uid: 4872
+ components:
+ - type: Transform
+ pos: 114.5,89.5
+ parent: 1
+ - uid: 4877
+ components:
+ - type: Transform
+ pos: 114.5,61.5
+ parent: 1
+ - uid: 4881
+ components:
+ - type: Transform
+ pos: 114.5,56.5
+ parent: 1
+ - uid: 4884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,93.5
+ parent: 1
+ - uid: 4886
+ components:
+ - type: Transform
+ pos: 114.5,34.5
+ parent: 1
+ - uid: 4894
+ components:
+ - type: Transform
+ pos: 114.5,25.5
+ parent: 1
+ - uid: 4896
+ components:
+ - type: Transform
+ pos: 114.5,23.5
+ parent: 1
+ - uid: 4905
+ components:
+ - type: Transform
+ pos: 97.5,107.5
+ parent: 1
+ - uid: 4916
+ components:
+ - type: Transform
+ pos: 115.5,116.5
+ parent: 1
+ - uid: 4919
+ components:
+ - type: Transform
+ pos: 115.5,95.5
+ parent: 1
+ - uid: 4920
+ components:
+ - type: Transform
+ pos: 115.5,89.5
+ parent: 1
+ - uid: 4922
+ components:
+ - type: Transform
+ pos: 115.5,87.5
+ parent: 1
+ - uid: 4923
+ components:
+ - type: Transform
+ pos: 115.5,86.5
+ parent: 1
+ - uid: 4925
+ components:
+ - type: Transform
+ pos: 57.5,117.5
+ parent: 1
+ - uid: 4926
+ components:
+ - type: Transform
+ pos: 115.5,83.5
+ parent: 1
+ - uid: 4929
+ components:
+ - type: Transform
+ pos: 115.5,80.5
+ parent: 1
+ - uid: 4930
+ components:
+ - type: Transform
+ pos: 115.5,79.5
+ parent: 1
+ - uid: 4931
+ components:
+ - type: Transform
+ pos: 115.5,75.5
+ parent: 1
+ - uid: 4945
+ components:
+ - type: Transform
+ pos: 115.5,61.5
+ parent: 1
+ - uid: 4946
+ components:
+ - type: Transform
+ pos: 115.5,60.5
+ parent: 1
+ - uid: 4948
+ components:
+ - type: Transform
+ pos: 115.5,58.5
+ parent: 1
+ - uid: 4950
+ components:
+ - type: Transform
+ pos: 115.5,56.5
+ parent: 1
+ - uid: 4951
+ components:
+ - type: Transform
+ pos: 115.5,52.5
+ parent: 1
+ - uid: 4952
+ components:
+ - type: Transform
+ pos: 115.5,46.5
+ parent: 1
+ - uid: 4963
+ components:
+ - type: Transform
+ pos: 116.5,149.5
+ parent: 1
+ - uid: 4979
+ components:
+ - type: Transform
+ pos: 116.5,95.5
+ parent: 1
+ - uid: 4980
+ components:
+ - type: Transform
+ pos: 116.5,89.5
+ parent: 1
+ - uid: 4981
+ components:
+ - type: Transform
+ pos: 116.5,87.5
+ parent: 1
+ - uid: 4982
+ components:
+ - type: Transform
+ pos: 116.5,79.5
+ parent: 1
+ - uid: 4986
+ components:
+ - type: Transform
+ pos: 116.5,75.5
+ parent: 1
+ - uid: 4987
+ components:
+ - type: Transform
+ pos: 116.5,56.5
+ parent: 1
+ - uid: 4991
+ components:
+ - type: Transform
+ pos: 116.5,46.5
+ parent: 1
+ - uid: 4993
+ components:
+ - type: Transform
+ pos: 116.5,34.5
+ parent: 1
+ - uid: 5047
+ components:
+ - type: Transform
+ pos: 75.5,62.5
+ parent: 1
+ - uid: 5050
+ components:
+ - type: Transform
+ pos: 117.5,87.5
+ parent: 1
+ - uid: 5053
+ components:
+ - type: Transform
+ pos: 117.5,75.5
+ parent: 1
+ - uid: 5054
+ components:
+ - type: Transform
+ pos: 117.5,74.5
+ parent: 1
+ - uid: 5056
+ components:
+ - type: Transform
+ pos: 117.5,72.5
+ parent: 1
+ - uid: 5057
+ components:
+ - type: Transform
+ pos: 117.5,71.5
+ parent: 1
+ - uid: 5059
+ components:
+ - type: Transform
+ pos: 117.5,69.5
+ parent: 1
+ - uid: 5060
+ components:
+ - type: Transform
+ pos: 117.5,68.5
+ parent: 1
+ - uid: 5061
+ components:
+ - type: Transform
+ pos: 117.5,67.5
+ parent: 1
+ - uid: 5065
+ components:
+ - type: Transform
+ pos: 117.5,63.5
+ parent: 1
+ - uid: 5066
+ components:
+ - type: Transform
+ pos: 117.5,62.5
+ parent: 1
+ - uid: 5067
+ components:
+ - type: Transform
+ pos: 117.5,61.5
+ parent: 1
+ - uid: 5068
+ components:
+ - type: Transform
+ pos: 117.5,60.5
+ parent: 1
+ - uid: 5069
+ components:
+ - type: Transform
+ pos: 117.5,59.5
+ parent: 1
+ - uid: 5071
+ components:
+ - type: Transform
+ pos: 117.5,57.5
+ parent: 1
+ - uid: 5072
+ components:
+ - type: Transform
+ pos: 117.5,56.5
+ parent: 1
+ - uid: 5074
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 5096
+ components:
+ - type: Transform
+ pos: 118.5,95.5
+ parent: 1
+ - uid: 5097
+ components:
+ - type: Transform
+ pos: 118.5,89.5
+ parent: 1
+ - uid: 5098
+ components:
+ - type: Transform
+ pos: 118.5,87.5
+ parent: 1
+ - uid: 5099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,62.5
+ parent: 1
+ - uid: 5121
+ components:
+ - type: Transform
+ pos: 72.5,67.5
+ parent: 1
+ - uid: 5133
+ components:
+ - type: Transform
+ pos: 161.5,114.5
+ parent: 1
+ - uid: 5134
+ components:
+ - type: Transform
+ pos: 119.5,116.5
+ parent: 1
+ - uid: 5137
+ components:
+ - type: Transform
+ pos: 119.5,95.5
+ parent: 1
+ - uid: 5142
+ components:
+ - type: Transform
+ pos: 119.5,87.5
+ parent: 1
+ - uid: 5148
+ components:
+ - type: Transform
+ pos: 119.5,46.5
+ parent: 1
+ - uid: 5197
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 5212
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 5213
+ components:
+ - type: Transform
+ pos: 120.5,94.5
+ parent: 1
+ - uid: 5215
+ components:
+ - type: Transform
+ pos: 89.5,78.5
+ parent: 1
+ - uid: 5219
+ components:
+ - type: Transform
+ pos: 120.5,87.5
+ parent: 1
+ - uid: 5223
+ components:
+ - type: Transform
+ pos: 120.5,52.5
+ parent: 1
+ - uid: 5229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,36.5
+ parent: 1
+ - uid: 5235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,41.5
+ parent: 1
+ - uid: 5243
+ components:
+ - type: Transform
+ pos: 121.5,166.5
+ parent: 1
+ - uid: 5252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,66.5
+ parent: 1
+ - uid: 5260
+ components:
+ - type: Transform
+ pos: 121.5,95.5
+ parent: 1
+ - uid: 5263
+ components:
+ - type: Transform
+ pos: 121.5,87.5
+ parent: 1
+ - uid: 5264
+ components:
+ - type: Transform
+ pos: 121.5,79.5
+ parent: 1
+ - uid: 5307
+ components:
+ - type: Transform
+ pos: 121.5,43.5
+ parent: 1
+ - uid: 5309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,40.5
+ parent: 1
+ - uid: 5339
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 5341
+ components:
+ - type: Transform
+ pos: 122.5,72.5
+ parent: 1
+ - uid: 5342
+ components:
+ - type: Transform
+ pos: 122.5,69.5
+ parent: 1
+ - uid: 5343
+ components:
+ - type: Transform
+ pos: 122.5,66.5
+ parent: 1
+ - uid: 5370
+ components:
+ - type: Transform
+ pos: 163.5,140.5
+ parent: 1
+ - uid: 5373
+ components:
+ - type: Transform
+ pos: 123.5,95.5
+ parent: 1
+ - uid: 5377
+ components:
+ - type: Transform
+ pos: 123.5,86.5
+ parent: 1
+ - uid: 5378
+ components:
+ - type: Transform
+ pos: 123.5,85.5
+ parent: 1
+ - uid: 5379
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 5382
+ components:
+ - type: Transform
+ pos: 123.5,72.5
+ parent: 1
+ - uid: 5383
+ components:
+ - type: Transform
+ pos: 123.5,69.5
+ parent: 1
+ - uid: 5384
+ components:
+ - type: Transform
+ pos: 123.5,66.5
+ parent: 1
+ - uid: 5404
+ components:
+ - type: Transform
+ pos: 66.5,71.5
+ parent: 1
+ - uid: 5405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,140.5
+ parent: 1
+ - uid: 5406
+ components:
+ - type: Transform
+ pos: 72.5,69.5
+ parent: 1
+ - uid: 5407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,140.5
+ parent: 1
+ - uid: 5421
+ components:
+ - type: Transform
+ pos: 124.5,135.5
+ parent: 1
+ - uid: 5425
+ components:
+ - type: Transform
+ pos: 124.5,131.5
+ parent: 1
+ - uid: 5431
+ components:
+ - type: Transform
+ pos: 68.5,71.5
+ parent: 1
+ - uid: 5437
+ components:
+ - type: Transform
+ pos: 124.5,116.5
+ parent: 1
+ - uid: 5448
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 5457
+ components:
+ - type: Transform
+ pos: 124.5,96.5
+ parent: 1
+ - uid: 5465
+ components:
+ - type: Transform
+ pos: 124.5,84.5
+ parent: 1
+ - uid: 5468
+ components:
+ - type: Transform
+ pos: 124.5,72.5
+ parent: 1
+ - uid: 5469
+ components:
+ - type: Transform
+ pos: 124.5,69.5
+ parent: 1
+ - uid: 5470
+ components:
+ - type: Transform
+ pos: 124.5,66.5
+ parent: 1
+ - uid: 5471
+ components:
+ - type: Transform
+ pos: 124.5,63.5
+ parent: 1
+ - uid: 5502
+ components:
+ - type: Transform
+ pos: 125.5,116.5
+ parent: 1
+ - uid: 5505
+ components:
+ - type: Transform
+ pos: 125.5,79.5
+ parent: 1
+ - uid: 5543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,25.5
+ parent: 1
+ - uid: 5544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,24.5
+ parent: 1
+ - uid: 5560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,108.5
+ parent: 1
+ - uid: 5562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,106.5
+ parent: 1
+ - uid: 5566
+ components:
+ - type: Transform
+ pos: 126.5,150.5
+ parent: 1
+ - uid: 5567
+ components:
+ - type: Transform
+ pos: 126.5,149.5
+ parent: 1
+ - uid: 5576
+ components:
+ - type: Transform
+ pos: 126.5,116.5
+ parent: 1
+ - uid: 5577
+ components:
+ - type: Transform
+ pos: 126.5,115.5
+ parent: 1
+ - uid: 5579
+ components:
+ - type: Transform
+ pos: 119.5,115.5
+ parent: 1
+ - uid: 5581
+ components:
+ - type: Transform
+ pos: 126.5,111.5
+ parent: 1
+ - uid: 5582
+ components:
+ - type: Transform
+ pos: 126.5,110.5
+ parent: 1
+ - uid: 5586
+ components:
+ - type: Transform
+ pos: 126.5,106.5
+ parent: 1
+ - uid: 5587
+ components:
+ - type: Transform
+ pos: 126.5,105.5
+ parent: 1
+ - uid: 5597
+ components:
+ - type: Transform
+ pos: 126.5,95.5
+ parent: 1
+ - uid: 5598
+ components:
+ - type: Transform
+ pos: 126.5,94.5
+ parent: 1
+ - uid: 5599
+ components:
+ - type: Transform
+ pos: 126.5,93.5
+ parent: 1
+ - uid: 5600
+ components:
+ - type: Transform
+ pos: 126.5,92.5
+ parent: 1
+ - uid: 5601
+ components:
+ - type: Transform
+ pos: 126.5,91.5
+ parent: 1
+ - uid: 5603
+ components:
+ - type: Transform
+ pos: 126.5,89.5
+ parent: 1
+ - uid: 5604
+ components:
+ - type: Transform
+ pos: 126.5,88.5
+ parent: 1
+ - uid: 5605
+ components:
+ - type: Transform
+ pos: 126.5,87.5
+ parent: 1
+ - uid: 5606
+ components:
+ - type: Transform
+ pos: 126.5,86.5
+ parent: 1
+ - uid: 5607
+ components:
+ - type: Transform
+ pos: 126.5,85.5
+ parent: 1
+ - uid: 5608
+ components:
+ - type: Transform
+ pos: 126.5,84.5
+ parent: 1
+ - uid: 5609
+ components:
+ - type: Transform
+ pos: 126.5,83.5
+ parent: 1
+ - uid: 5612
+ components:
+ - type: Transform
+ pos: 126.5,80.5
+ parent: 1
+ - uid: 5613
+ components:
+ - type: Transform
+ pos: 126.5,79.5
+ parent: 1
+ - uid: 5635
+ components:
+ - type: Transform
+ pos: 127.5,46.5
+ parent: 1
+ - uid: 5646
+ components:
+ - type: Transform
+ pos: 128.5,149.5
+ parent: 1
+ - uid: 5658
+ components:
+ - type: Transform
+ pos: 128.5,46.5
+ parent: 1
+ - uid: 5659
+ components:
+ - type: Transform
+ pos: 128.5,45.5
+ parent: 1
+ - uid: 5718
+ components:
+ - type: Transform
+ pos: 130.5,116.5
+ parent: 1
+ - uid: 5727
+ components:
+ - type: Transform
+ pos: 130.5,107.5
+ parent: 1
+ - uid: 5742
+ components:
+ - type: Transform
+ pos: 130.5,99.5
+ parent: 1
+ - uid: 5755
+ components:
+ - type: Transform
+ pos: 130.5,86.5
+ parent: 1
+ - uid: 5771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,112.5
+ parent: 1
+ - uid: 5775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 5797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,112.5
+ parent: 1
+ - uid: 5807
+ components:
+ - type: Transform
+ pos: 132.5,116.5
+ parent: 1
+ - uid: 5850
+ components:
+ - type: Transform
+ pos: 133.5,116.5
+ parent: 1
+ - uid: 5857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,110.5
+ parent: 1
+ - uid: 5872
+ components:
+ - type: Transform
+ pos: 134.5,116.5
+ parent: 1
+ - uid: 5895
+ components:
+ - type: Transform
+ pos: 134.5,50.5
+ parent: 1
+ - uid: 5899
+ components:
+ - type: Transform
+ pos: 134.5,47.5
+ parent: 1
+ - uid: 5903
+ components:
+ - type: Transform
+ pos: 134.5,44.5
+ parent: 1
+ - uid: 5910
+ components:
+ - type: Transform
+ pos: 135.5,146.5
+ parent: 1
+ - uid: 5911
+ components:
+ - type: Transform
+ pos: 135.5,145.5
+ parent: 1
+ - uid: 5913
+ components:
+ - type: Transform
+ pos: 135.5,143.5
+ parent: 1
+ - uid: 5917
+ components:
+ - type: Transform
+ pos: 109.5,34.5
+ parent: 1
+ - uid: 5923
+ components:
+ - type: Transform
+ pos: 135.5,116.5
+ parent: 1
+ - uid: 5930
+ components:
+ - type: Transform
+ pos: 135.5,108.5
+ parent: 1
+ - uid: 5936
+ components:
+ - type: Transform
+ pos: 41.5,102.5
+ parent: 1
+ - uid: 5939
+ components:
+ - type: Transform
+ pos: 154.5,94.5
+ parent: 1
+ - uid: 5940
+ components:
+ - type: Transform
+ pos: 154.5,95.5
+ parent: 1
+ - uid: 5941
+ components:
+ - type: Transform
+ pos: 154.5,93.5
+ parent: 1
+ - uid: 5942
+ components:
+ - type: Transform
+ pos: 155.5,95.5
+ parent: 1
+ - uid: 5944
+ components:
+ - type: Transform
+ pos: 135.5,50.5
+ parent: 1
+ - uid: 5945
+ components:
+ - type: Transform
+ pos: 135.5,47.5
+ parent: 1
+ - uid: 5951
+ components:
+ - type: Transform
+ pos: 136.5,146.5
+ parent: 1
+ - uid: 5958
+ components:
+ - type: Transform
+ pos: 130.5,103.5
+ parent: 1
+ - uid: 5963
+ components:
+ - type: Transform
+ pos: 136.5,116.5
+ parent: 1
+ - uid: 5964
+ components:
+ - type: Transform
+ pos: 136.5,114.5
+ parent: 1
+ - uid: 5965
+ components:
+ - type: Transform
+ pos: 136.5,108.5
+ parent: 1
+ - uid: 5966
+ components:
+ - type: Transform
+ pos: 136.5,98.5
+ parent: 1
+ - uid: 5967
+ components:
+ - type: Transform
+ pos: 136.5,97.5
+ parent: 1
+ - uid: 5998
+ components:
+ - type: Transform
+ pos: 136.5,50.5
+ parent: 1
+ - uid: 5999
+ components:
+ - type: Transform
+ pos: 136.5,47.5
+ parent: 1
+ - uid: 6000
+ components:
+ - type: Transform
+ pos: 136.5,44.5
+ parent: 1
+ - uid: 6003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,101.5
+ parent: 1
+ - uid: 6008
+ components:
+ - type: Transform
+ pos: 137.5,148.5
+ parent: 1
+ - uid: 6010
+ components:
+ - type: Transform
+ pos: 137.5,146.5
+ parent: 1
+ - uid: 6021
+ components:
+ - type: Transform
+ pos: 137.5,116.5
+ parent: 1
+ - uid: 6023
+ components:
+ - type: Transform
+ pos: 137.5,108.5
+ parent: 1
+ - uid: 6034
+ components:
+ - type: Transform
+ pos: 137.5,101.5
+ parent: 1
+ - uid: 6035
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 6037
+ components:
+ - type: Transform
+ pos: 137.5,98.5
+ parent: 1
+ - uid: 6049
+ components:
+ - type: Transform
+ pos: 67.5,71.5
+ parent: 1
+ - uid: 6051
+ components:
+ - type: Transform
+ pos: 67.5,70.5
+ parent: 1
+ - uid: 6074
+ components:
+ - type: Transform
+ pos: 74.5,111.5
+ parent: 1
+ - uid: 6076
+ components:
+ - type: Transform
+ pos: 138.5,116.5
+ parent: 1
+ - uid: 6078
+ components:
+ - type: Transform
+ pos: 138.5,108.5
+ parent: 1
+ - uid: 6100
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 6101
+ components:
+ - type: Transform
+ pos: 139.5,138.5
+ parent: 1
+ - uid: 6104
+ components:
+ - type: Transform
+ pos: 139.5,135.5
+ parent: 1
+ - uid: 6107
+ components:
+ - type: Transform
+ pos: 139.5,116.5
+ parent: 1
+ - uid: 6108
+ components:
+ - type: Transform
+ pos: 139.5,114.5
+ parent: 1
+ - uid: 6122
+ components:
+ - type: Transform
+ pos: 87.5,38.5
+ parent: 1
+ - uid: 6130
+ components:
+ - type: Transform
+ pos: 140.5,139.5
+ parent: 1
+ - uid: 6143
+ components:
+ - type: Transform
+ pos: 140.5,116.5
+ parent: 1
+ - uid: 6145
+ components:
+ - type: Transform
+ pos: 140.5,108.5
+ parent: 1
+ - uid: 6150
+ components:
+ - type: Transform
+ pos: 140.5,79.5
+ parent: 1
+ - uid: 6175
+ components:
+ - type: Transform
+ pos: 141.5,116.5
+ parent: 1
+ - uid: 6176
+ components:
+ - type: Transform
+ pos: 141.5,114.5
+ parent: 1
+ - uid: 6177
+ components:
+ - type: Transform
+ pos: 141.5,113.5
+ parent: 1
+ - uid: 6180
+ components:
+ - type: Transform
+ pos: 58.5,101.5
+ parent: 1
+ - uid: 6183
+ components:
+ - type: Transform
+ pos: 137.5,107.5
+ parent: 1
+ - uid: 6184
+ components:
+ - type: Transform
+ pos: 151.5,101.5
+ parent: 1
+ - uid: 6194
+ components:
+ - type: Transform
+ pos: 141.5,95.5
+ parent: 1
+ - uid: 6196
+ components:
+ - type: Transform
+ pos: 141.5,93.5
+ parent: 1
+ - uid: 6197
+ components:
+ - type: Transform
+ pos: 141.5,92.5
+ parent: 1
+ - uid: 6198
+ components:
+ - type: Transform
+ pos: 141.5,86.5
+ parent: 1
+ - uid: 6199
+ components:
+ - type: Transform
+ pos: 141.5,84.5
+ parent: 1
+ - uid: 6226
+ components:
+ - type: Transform
+ pos: 142.5,139.5
+ parent: 1
+ - uid: 6235
+ components:
+ - type: Transform
+ pos: 142.5,127.5
+ parent: 1
+ - uid: 6237
+ components:
+ - type: Transform
+ pos: 142.5,125.5
+ parent: 1
+ - uid: 6238
+ components:
+ - type: Transform
+ pos: 142.5,124.5
+ parent: 1
+ - uid: 6239
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 6240
+ components:
+ - type: Transform
+ pos: 142.5,122.5
+ parent: 1
+ - uid: 6241
+ components:
+ - type: Transform
+ pos: 142.5,121.5
+ parent: 1
+ - uid: 6242
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 6257
+ components:
+ - type: Transform
+ pos: 142.5,79.5
+ parent: 1
+ - uid: 6282
+ components:
+ - type: Transform
+ pos: 143.5,141.5
+ parent: 1
+ - uid: 6283
+ components:
+ - type: Transform
+ pos: 143.5,140.5
+ parent: 1
+ - uid: 6284
+ components:
+ - type: Transform
+ pos: 143.5,139.5
+ parent: 1
+ - uid: 6285
+ components:
+ - type: Transform
+ pos: 143.5,138.5
+ parent: 1
+ - uid: 6286
+ components:
+ - type: Transform
+ pos: 143.5,137.5
+ parent: 1
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: 143.5,136.5
+ parent: 1
+ - uid: 6294
+ components:
+ - type: Transform
+ pos: 143.5,120.5
+ parent: 1
+ - uid: 6295
+ components:
+ - type: Transform
+ pos: 143.5,116.5
+ parent: 1
+ - uid: 6296
+ components:
+ - type: Transform
+ pos: 143.5,113.5
+ parent: 1
+ - uid: 6302
+ components:
+ - type: Transform
+ pos: 143.5,92.5
+ parent: 1
+ - uid: 6303
+ components:
+ - type: Transform
+ pos: 143.5,86.5
+ parent: 1
+ - uid: 6304
+ components:
+ - type: Transform
+ pos: 143.5,84.5
+ parent: 1
+ - uid: 6305
+ components:
+ - type: Transform
+ pos: 143.5,79.5
+ parent: 1
+ - uid: 6329
+ components:
+ - type: Transform
+ pos: 150.5,76.5
+ parent: 1
+ - uid: 6338
+ components:
+ - type: Transform
+ pos: 144.5,116.5
+ parent: 1
+ - uid: 6346
+ components:
+ - type: Transform
+ pos: 144.5,92.5
+ parent: 1
+ - uid: 6353
+ components:
+ - type: Transform
+ pos: 144.5,84.5
+ parent: 1
+ - uid: 6354
+ components:
+ - type: Transform
+ pos: 144.5,79.5
+ parent: 1
+ - uid: 6377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,85.5
+ parent: 1
+ - uid: 6378
+ components:
+ - type: Transform
+ pos: 145.5,113.5
+ parent: 1
+ - uid: 6388
+ components:
+ - type: Transform
+ pos: 145.5,96.5
+ parent: 1
+ - uid: 6389
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 6391
+ components:
+ - type: Transform
+ pos: 145.5,93.5
+ parent: 1
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 6393
+ components:
+ - type: Transform
+ pos: 145.5,86.5
+ parent: 1
+ - uid: 6399
+ components:
+ - type: Transform
+ pos: 145.5,79.5
+ parent: 1
+ - uid: 6402
+ components:
+ - type: Transform
+ pos: 145.5,76.5
+ parent: 1
+ - uid: 6429
+ components:
+ - type: Transform
+ pos: 146.5,116.5
+ parent: 1
+ - uid: 6461
+ components:
+ - type: Transform
+ pos: 147.5,146.5
+ parent: 1
+ - uid: 6463
+ components:
+ - type: Transform
+ pos: 147.5,144.5
+ parent: 1
+ - uid: 6464
+ components:
+ - type: Transform
+ pos: 147.5,143.5
+ parent: 1
+ - uid: 6465
+ components:
+ - type: Transform
+ pos: 147.5,142.5
+ parent: 1
+ - uid: 6466
+ components:
+ - type: Transform
+ pos: 147.5,141.5
+ parent: 1
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: 147.5,140.5
+ parent: 1
+ - uid: 6481
+ components:
+ - type: Transform
+ pos: 147.5,124.5
+ parent: 1
+ - uid: 6509
+ components:
+ - type: Transform
+ pos: 158.5,53.5
+ parent: 1
+ - uid: 6525
+ components:
+ - type: Transform
+ pos: 148.5,146.5
+ parent: 1
+ - uid: 6526
+ components:
+ - type: Transform
+ pos: 148.5,144.5
+ parent: 1
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: 148.5,116.5
+ parent: 1
+ - uid: 6533
+ components:
+ - type: Transform
+ pos: 148.5,84.5
+ parent: 1
+ - uid: 6545
+ components:
+ - type: Transform
+ pos: 149.5,146.5
+ parent: 1
+ - uid: 6571
+ components:
+ - type: Transform
+ pos: 141.5,146.5
+ parent: 1
+ - uid: 6575
+ components:
+ - type: Transform
+ pos: 150.5,116.5
+ parent: 1
+ - uid: 6577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,83.5
+ parent: 1
+ - uid: 6579
+ components:
+ - type: Transform
+ pos: 150.5,84.5
+ parent: 1
+ - uid: 6613
+ components:
+ - type: Transform
+ pos: 143.5,146.5
+ parent: 1
+ - uid: 6614
+ components:
+ - type: Transform
+ pos: 151.5,144.5
+ parent: 1
+ - uid: 6615
+ components:
+ - type: Transform
+ pos: 151.5,143.5
+ parent: 1
+ - uid: 6616
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 6617
+ components:
+ - type: Transform
+ pos: 151.5,141.5
+ parent: 1
+ - uid: 6618
+ components:
+ - type: Transform
+ pos: 151.5,140.5
+ parent: 1
+ - uid: 6619
+ components:
+ - type: Transform
+ pos: 151.5,136.5
+ parent: 1
+ - uid: 6620
+ components:
+ - type: Transform
+ pos: 151.5,135.5
+ parent: 1
+ - uid: 6621
+ components:
+ - type: Transform
+ pos: 151.5,134.5
+ parent: 1
+ - uid: 6622
+ components:
+ - type: Transform
+ pos: 151.5,133.5
+ parent: 1
+ - uid: 6623
+ components:
+ - type: Transform
+ pos: 151.5,132.5
+ parent: 1
+ - uid: 6625
+ components:
+ - type: Transform
+ pos: 151.5,130.5
+ parent: 1
+ - uid: 6626
+ components:
+ - type: Transform
+ pos: 151.5,129.5
+ parent: 1
+ - uid: 6627
+ components:
+ - type: Transform
+ pos: 151.5,128.5
+ parent: 1
+ - uid: 6628
+ components:
+ - type: Transform
+ pos: 151.5,127.5
+ parent: 1
+ - uid: 6629
+ components:
+ - type: Transform
+ pos: 151.5,126.5
+ parent: 1
+ - uid: 6630
+ components:
+ - type: Transform
+ pos: 151.5,125.5
+ parent: 1
+ - uid: 6631
+ components:
+ - type: Transform
+ pos: 151.5,124.5
+ parent: 1
+ - uid: 6632
+ components:
+ - type: Transform
+ pos: 151.5,123.5
+ parent: 1
+ - uid: 6633
+ components:
+ - type: Transform
+ pos: 151.5,122.5
+ parent: 1
+ - uid: 6634
+ components:
+ - type: Transform
+ pos: 151.5,121.5
+ parent: 1
+ - uid: 6635
+ components:
+ - type: Transform
+ pos: 151.5,120.5
+ parent: 1
+ - uid: 6636
+ components:
+ - type: Transform
+ pos: 151.5,116.5
+ parent: 1
+ - uid: 6642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,167.5
+ parent: 1
+ - uid: 6659
+ components:
+ - type: Transform
+ pos: 142.5,146.5
+ parent: 1
+ - uid: 6660
+ components:
+ - type: Transform
+ pos: 143.5,142.5
+ parent: 1
+ - uid: 6661
+ components:
+ - type: Transform
+ pos: 142.5,142.5
+ parent: 1
+ - uid: 6665
+ components:
+ - type: Transform
+ pos: 152.5,144.5
+ parent: 1
+ - uid: 6666
+ components:
+ - type: Transform
+ pos: 152.5,140.5
+ parent: 1
+ - uid: 6668
+ components:
+ - type: Transform
+ pos: 152.5,132.5
+ parent: 1
+ - uid: 6670
+ components:
+ - type: Transform
+ pos: 152.5,116.5
+ parent: 1
+ - uid: 6675
+ components:
+ - type: Transform
+ pos: 152.5,84.5
+ parent: 1
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: 153.5,144.5
+ parent: 1
+ - uid: 6689
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - uid: 6690
+ components:
+ - type: Transform
+ pos: 153.5,132.5
+ parent: 1
+ - uid: 6692
+ components:
+ - type: Transform
+ pos: 153.5,128.5
+ parent: 1
+ - uid: 6694
+ components:
+ - type: Transform
+ pos: 153.5,126.5
+ parent: 1
+ - uid: 6696
+ components:
+ - type: Transform
+ pos: 153.5,124.5
+ parent: 1
+ - uid: 6697
+ components:
+ - type: Transform
+ pos: 153.5,120.5
+ parent: 1
+ - uid: 6698
+ components:
+ - type: Transform
+ pos: 153.5,116.5
+ parent: 1
+ - uid: 6700
+ components:
+ - type: Transform
+ pos: 153.5,95.5
+ parent: 1
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: 154.5,143.5
+ parent: 1
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: 154.5,142.5
+ parent: 1
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: 154.5,141.5
+ parent: 1
+ - uid: 6735
+ components:
+ - type: Transform
+ pos: 154.5,140.5
+ parent: 1
+ - uid: 6736
+ components:
+ - type: Transform
+ pos: 154.5,136.5
+ parent: 1
+ - uid: 6737
+ components:
+ - type: Transform
+ pos: 154.5,135.5
+ parent: 1
+ - uid: 6738
+ components:
+ - type: Transform
+ pos: 154.5,134.5
+ parent: 1
+ - uid: 6740
+ components:
+ - type: Transform
+ pos: 154.5,132.5
+ parent: 1
+ - uid: 6742
+ components:
+ - type: Transform
+ pos: 154.5,124.5
+ parent: 1
+ - uid: 6743
+ components:
+ - type: Transform
+ pos: 154.5,123.5
+ parent: 1
+ - uid: 6744
+ components:
+ - type: Transform
+ pos: 154.5,122.5
+ parent: 1
+ - uid: 6745
+ components:
+ - type: Transform
+ pos: 154.5,121.5
+ parent: 1
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: 154.5,120.5
+ parent: 1
+ - uid: 6747
+ components:
+ - type: Transform
+ pos: 154.5,116.5
+ parent: 1
+ - uid: 6755
+ components:
+ - type: Transform
+ pos: 154.5,87.5
+ parent: 1
+ - uid: 6756
+ components:
+ - type: Transform
+ pos: 154.5,86.5
+ parent: 1
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: 154.5,80.5
+ parent: 1
+ - uid: 6763
+ components:
+ - type: Transform
+ pos: 154.5,78.5
+ parent: 1
+ - uid: 6773
+ components:
+ - type: Transform
+ pos: 154.5,45.5
+ parent: 1
+ - uid: 6782
+ components:
+ - type: Transform
+ pos: 155.5,140.5
+ parent: 1
+ - uid: 6785
+ components:
+ - type: Transform
+ pos: 155.5,129.5
+ parent: 1
+ - uid: 6786
+ components:
+ - type: Transform
+ pos: 155.5,124.5
+ parent: 1
+ - uid: 6791
+ components:
+ - type: Transform
+ pos: 147.5,126.5
+ parent: 1
+ - uid: 6808
+ components:
+ - type: Transform
+ pos: 155.5,45.5
+ parent: 1
+ - uid: 6813
+ components:
+ - type: Transform
+ pos: 156.5,144.5
+ parent: 1
+ - uid: 6815
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - uid: 6816
+ components:
+ - type: Transform
+ pos: 156.5,132.5
+ parent: 1
+ - uid: 6817
+ components:
+ - type: Transform
+ pos: 156.5,129.5
+ parent: 1
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: 156.5,128.5
+ parent: 1
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 6821
+ components:
+ - type: Transform
+ pos: 156.5,125.5
+ parent: 1
+ - uid: 6822
+ components:
+ - type: Transform
+ pos: 156.5,124.5
+ parent: 1
+ - uid: 6823
+ components:
+ - type: Transform
+ pos: 156.5,120.5
+ parent: 1
+ - uid: 6824
+ components:
+ - type: Transform
+ pos: 156.5,116.5
+ parent: 1
+ - uid: 6858
+ components:
+ - type: Transform
+ pos: 157.5,144.5
+ parent: 1
+ - uid: 6859
+ components:
+ - type: Transform
+ pos: 157.5,143.5
+ parent: 1
+ - uid: 6860
+ components:
+ - type: Transform
+ pos: 157.5,142.5
+ parent: 1
+ - uid: 6861
+ components:
+ - type: Transform
+ pos: 157.5,141.5
+ parent: 1
+ - uid: 6862
+ components:
+ - type: Transform
+ pos: 157.5,140.5
+ parent: 1
+ - uid: 6863
+ components:
+ - type: Transform
+ pos: 157.5,136.5
+ parent: 1
+ - uid: 6864
+ components:
+ - type: Transform
+ pos: 157.5,135.5
+ parent: 1
+ - uid: 6865
+ components:
+ - type: Transform
+ pos: 157.5,134.5
+ parent: 1
+ - uid: 6866
+ components:
+ - type: Transform
+ pos: 157.5,133.5
+ parent: 1
+ - uid: 6867
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 6882
+ components:
+ - type: Transform
+ pos: 157.5,76.5
+ parent: 1
+ - uid: 6888
+ components:
+ - type: Transform
+ pos: 157.5,72.5
+ parent: 1
+ - uid: 6889
+ components:
+ - type: Transform
+ pos: 157.5,71.5
+ parent: 1
+ - uid: 6891
+ components:
+ - type: Transform
+ pos: 157.5,69.5
+ parent: 1
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: 157.5,67.5
+ parent: 1
+ - uid: 6900
+ components:
+ - type: Transform
+ pos: 157.5,45.5
+ parent: 1
+ - uid: 6905
+ components:
+ - type: Transform
+ pos: 147.5,127.5
+ parent: 1
+ - uid: 6910
+ components:
+ - type: Transform
+ pos: 147.5,125.5
+ parent: 1
+ - uid: 6912
+ components:
+ - type: Transform
+ pos: 158.5,140.5
+ parent: 1
+ - uid: 6914
+ components:
+ - type: Transform
+ pos: 158.5,132.5
+ parent: 1
+ - uid: 6915
+ components:
+ - type: Transform
+ pos: 158.5,129.5
+ parent: 1
+ - uid: 6917
+ components:
+ - type: Transform
+ pos: 158.5,116.5
+ parent: 1
+ - uid: 6922
+ components:
+ - type: Transform
+ pos: 158.5,108.5
+ parent: 1
+ - uid: 6925
+ components:
+ - type: Transform
+ pos: 147.5,101.5
+ parent: 1
+ - uid: 6937
+ components:
+ - type: Transform
+ pos: 158.5,72.5
+ parent: 1
+ - uid: 6938
+ components:
+ - type: Transform
+ pos: 158.5,67.5
+ parent: 1
+ - uid: 6943
+ components:
+ - type: Transform
+ pos: 159.5,144.5
+ parent: 1
+ - uid: 6945
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - uid: 6946
+ components:
+ - type: Transform
+ pos: 159.5,132.5
+ parent: 1
+ - uid: 6947
+ components:
+ - type: Transform
+ pos: 159.5,129.5
+ parent: 1
+ - uid: 6948
+ components:
+ - type: Transform
+ pos: 159.5,120.5
+ parent: 1
+ - uid: 6949
+ components:
+ - type: Transform
+ pos: 159.5,116.5
+ parent: 1
+ - uid: 6978
+ components:
+ - type: Transform
+ pos: 159.5,67.5
+ parent: 1
+ - uid: 6979
+ components:
+ - type: Transform
+ pos: 159.5,66.5
+ parent: 1
+ - uid: 6981
+ components:
+ - type: Transform
+ pos: 159.5,64.5
+ parent: 1
+ - uid: 6985
+ components:
+ - type: Transform
+ pos: 159.5,51.5
+ parent: 1
+ - uid: 6987
+ components:
+ - type: Transform
+ pos: 159.5,49.5
+ parent: 1
+ - uid: 6989
+ components:
+ - type: Transform
+ pos: 159.5,47.5
+ parent: 1
+ - uid: 6996
+ components:
+ - type: Transform
+ pos: 160.5,144.5
+ parent: 1
+ - uid: 6997
+ components:
+ - type: Transform
+ pos: 160.5,143.5
+ parent: 1
+ - uid: 6998
+ components:
+ - type: Transform
+ pos: 160.5,142.5
+ parent: 1
+ - uid: 7000
+ components:
+ - type: Transform
+ pos: 160.5,140.5
+ parent: 1
+ - uid: 7001
+ components:
+ - type: Transform
+ pos: 160.5,136.5
+ parent: 1
+ - uid: 7002
+ components:
+ - type: Transform
+ pos: 160.5,135.5
+ parent: 1
+ - uid: 7003
+ components:
+ - type: Transform
+ pos: 160.5,134.5
+ parent: 1
+ - uid: 7004
+ components:
+ - type: Transform
+ pos: 160.5,133.5
+ parent: 1
+ - uid: 7005
+ components:
+ - type: Transform
+ pos: 160.5,132.5
+ parent: 1
+ - uid: 7006
+ components:
+ - type: Transform
+ pos: 160.5,131.5
+ parent: 1
+ - uid: 7007
+ components:
+ - type: Transform
+ pos: 160.5,129.5
+ parent: 1
+ - uid: 7008
+ components:
+ - type: Transform
+ pos: 160.5,128.5
+ parent: 1
+ - uid: 7009
+ components:
+ - type: Transform
+ pos: 160.5,127.5
+ parent: 1
+ - uid: 7011
+ components:
+ - type: Transform
+ pos: 160.5,125.5
+ parent: 1
+ - uid: 7013
+ components:
+ - type: Transform
+ pos: 160.5,123.5
+ parent: 1
+ - uid: 7015
+ components:
+ - type: Transform
+ pos: 160.5,121.5
+ parent: 1
+ - uid: 7016
+ components:
+ - type: Transform
+ pos: 160.5,120.5
+ parent: 1
+ - uid: 7017
+ components:
+ - type: Transform
+ pos: 160.5,116.5
+ parent: 1
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: 160.5,77.5
+ parent: 1
+ - uid: 7025
+ components:
+ - type: Transform
+ pos: 160.5,72.5
+ parent: 1
+ - uid: 7027
+ components:
+ - type: Transform
+ pos: 160.5,63.5
+ parent: 1
+ - uid: 7043
+ components:
+ - type: Transform
+ pos: 161.5,139.5
+ parent: 1
+ - uid: 7045
+ components:
+ - type: Transform
+ pos: 161.5,137.5
+ parent: 1
+ - uid: 7048
+ components:
+ - type: Transform
+ pos: 161.5,120.5
+ parent: 1
+ - uid: 7056
+ components:
+ - type: Transform
+ pos: 92.5,102.5
+ parent: 1
+ - uid: 7062
+ components:
+ - type: Transform
+ pos: 161.5,67.5
+ parent: 1
+ - uid: 7132
+ components:
+ - type: Transform
+ pos: 163.5,108.5
+ parent: 1
+ - uid: 7156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,21.5
+ parent: 1
+ - uid: 7189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,25.5
+ parent: 1
+ - uid: 7241
+ components:
+ - type: Transform
+ pos: 119.5,105.5
+ parent: 1
+ - uid: 7475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,29.5
+ parent: 1
+ - uid: 7565
+ components:
+ - type: Transform
+ pos: 81.5,51.5
+ parent: 1
+ - uid: 7598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,53.5
+ parent: 1
+ - uid: 7617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,53.5
+ parent: 1
+ - uid: 7647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,29.5
+ parent: 1
+ - uid: 7688
+ components:
+ - type: Transform
+ pos: 90.5,92.5
+ parent: 1
+ - uid: 7690
+ components:
+ - type: Transform
+ pos: 90.5,90.5
+ parent: 1
+ - uid: 7717
+ components:
+ - type: Transform
+ pos: 97.5,127.5
+ parent: 1
+ - uid: 7819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,171.5
+ parent: 1
+ - uid: 8019
+ components:
+ - type: Transform
+ pos: 93.5,98.5
+ parent: 1
+ - uid: 8071
+ components:
+ - type: Transform
+ pos: 115.5,20.5
+ parent: 1
+ - uid: 8091
+ components:
+ - type: Transform
+ pos: 115.5,19.5
+ parent: 1
+ - uid: 8220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,26.5
+ parent: 1
+ - uid: 8235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,28.5
+ parent: 1
+ - uid: 8562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,33.5
+ parent: 1
+ - uid: 8603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,31.5
+ parent: 1
+ - uid: 8605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,24.5
+ parent: 1
+ - uid: 9133
+ components:
+ - type: Transform
+ pos: 124.5,139.5
+ parent: 1
+ - uid: 9252
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 9433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,93.5
+ parent: 1
+ - uid: 9645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,103.5
+ parent: 1
+ - uid: 9689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,30.5
+ parent: 1
+ - uid: 9703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,32.5
+ parent: 1
+ - uid: 9713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,32.5
+ parent: 1
+ - uid: 9745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,18.5
+ parent: 1
+ - uid: 9750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,31.5
+ parent: 1
+ - uid: 9761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,29.5
+ parent: 1
+ - uid: 9797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,26.5
+ parent: 1
+ - uid: 9803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,26.5
+ parent: 1
+ - uid: 9804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,25.5
+ parent: 1
+ - uid: 9821
+ components:
+ - type: Transform
+ pos: 107.5,22.5
+ parent: 1
+ - uid: 9822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,21.5
+ parent: 1
+ - uid: 9838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,67.5
+ parent: 1
+ - uid: 9844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,70.5
+ parent: 1
+ - uid: 10343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,72.5
+ parent: 1
+ - uid: 10386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,141.5
+ parent: 1
+ - uid: 10390
+ components:
+ - type: Transform
+ pos: 66.5,157.5
+ parent: 1
+ - uid: 10502
+ components:
+ - type: Transform
+ pos: 42.5,121.5
+ parent: 1
+ - uid: 10560
+ components:
+ - type: Transform
+ pos: 152.5,113.5
+ parent: 1
+ - uid: 10728
+ components:
+ - type: Transform
+ pos: 86.5,38.5
+ parent: 1
+ - uid: 10798
+ components:
+ - type: Transform
+ pos: 97.5,105.5
+ parent: 1
+ - uid: 10981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,20.5
+ parent: 1
+ - uid: 10983
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,20.5
+ parent: 1
+ - uid: 11175
+ components:
+ - type: Transform
+ pos: 148.5,112.5
+ parent: 1
+ - uid: 11177
+ components:
+ - type: Transform
+ pos: 147.5,109.5
+ parent: 1
+ - uid: 11179
+ components:
+ - type: Transform
+ pos: 152.5,114.5
+ parent: 1
+ - uid: 11334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,18.5
+ parent: 1
+ - uid: 11371
+ components:
+ - type: Transform
+ pos: 141.5,89.5
+ parent: 1
+ - uid: 11373
+ components:
+ - type: Transform
+ pos: 141.5,91.5
+ parent: 1
+ - uid: 11456
+ components:
+ - type: Transform
+ pos: 32.5,69.5
+ parent: 1
+ - uid: 11457
+ components:
+ - type: Transform
+ pos: 33.5,69.5
+ parent: 1
+ - uid: 11458
+ components:
+ - type: Transform
+ pos: 34.5,69.5
+ parent: 1
+ - uid: 11485
+ components:
+ - type: Transform
+ pos: 147.5,111.5
+ parent: 1
+ - uid: 11487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,112.5
+ parent: 1
+ - uid: 11488
+ components:
+ - type: Transform
+ pos: 35.5,69.5
+ parent: 1
+ - uid: 11489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,112.5
+ parent: 1
+ - uid: 11504
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11523
+ components:
+ - type: Transform
+ pos: 36.5,68.5
+ parent: 1
+ - uid: 11536
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11543
+ components:
+ - type: Transform
+ pos: 37.5,69.5
+ parent: 1
+ - uid: 12028
+ components:
+ - type: Transform
+ pos: 38.5,69.5
+ parent: 1
+ - uid: 12029
+ components:
+ - type: Transform
+ pos: 40.5,69.5
+ parent: 1
+ - uid: 12160
+ components:
+ - type: Transform
+ pos: 147.5,107.5
+ parent: 1
+ - uid: 12437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,73.5
+ parent: 1
+ - uid: 12452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,48.5
+ parent: 1
+ - uid: 12473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,96.5
+ parent: 1
+ - uid: 12505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,121.5
+ parent: 1
+ - uid: 12508
+ components:
+ - type: Transform
+ pos: 37.5,121.5
+ parent: 1
+ - uid: 12511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,113.5
+ parent: 1
+ - uid: 12643
+ components:
+ - type: Transform
+ pos: 101.5,44.5
+ parent: 1
+ - uid: 12659
+ components:
+ - type: Transform
+ pos: 93.5,55.5
+ parent: 1
+ - uid: 12731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,33.5
+ parent: 1
+ - uid: 12833
+ components:
+ - type: Transform
+ pos: 90.5,38.5
+ parent: 1
+ - uid: 12834
+ components:
+ - type: Transform
+ pos: 100.5,45.5
+ parent: 1
+ - uid: 12835
+ components:
+ - type: Transform
+ pos: 100.5,48.5
+ parent: 1
+ - uid: 12836
+ components:
+ - type: Transform
+ pos: 100.5,44.5
+ parent: 1
+ - uid: 13204
+ components:
+ - type: Transform
+ pos: 55.5,53.5
+ parent: 1
+ - uid: 13235
+ components:
+ - type: Transform
+ pos: 124.5,137.5
+ parent: 1
+ - uid: 13240
+ components:
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 1
+ - uid: 13241
+ components:
+ - type: Transform
+ pos: 100.5,46.5
+ parent: 1
+ - uid: 13249
+ components:
+ - type: Transform
+ pos: 58.5,53.5
+ parent: 1
+ - uid: 13250
+ components:
+ - type: Transform
+ pos: 59.5,53.5
+ parent: 1
+ - uid: 13251
+ components:
+ - type: Transform
+ pos: 59.5,52.5
+ parent: 1
+ - uid: 13256
+ components:
+ - type: Transform
+ pos: 115.5,24.5
+ parent: 1
+ - uid: 13258
+ components:
+ - type: Transform
+ pos: 59.5,50.5
+ parent: 1
+ - uid: 13469
+ components:
+ - type: Transform
+ pos: 60.5,53.5
+ parent: 1
+ - uid: 13471
+ components:
+ - type: Transform
+ pos: 61.5,53.5
+ parent: 1
+ - uid: 13492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,97.5
+ parent: 1
+ - uid: 13808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,62.5
+ parent: 1
+ - uid: 14168
+ components:
+ - type: Transform
+ pos: 111.5,21.5
+ parent: 1
+ - uid: 14273
+ components:
+ - type: Transform
+ pos: 58.5,102.5
+ parent: 1
+ - uid: 14500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,140.5
+ parent: 1
+ - uid: 14572
+ components:
+ - type: Transform
+ pos: 62.5,71.5
+ parent: 1
+ - uid: 14642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,143.5
+ parent: 1
+ - uid: 14757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,127.5
+ parent: 1
+ - uid: 15072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,170.5
+ parent: 1
+ - uid: 15436
+ components:
+ - type: Transform
+ pos: 58.5,128.5
+ parent: 1
+ - uid: 15663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,97.5
+ parent: 1
+ - uid: 15665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,97.5
+ parent: 1
+ - uid: 15824
+ components:
+ - type: Transform
+ pos: 162.5,140.5
+ parent: 1
+ - uid: 16179
+ components:
+ - type: Transform
+ pos: 151.5,113.5
+ parent: 1
+ - uid: 16201
+ components:
+ - type: Transform
+ pos: 153.5,113.5
+ parent: 1
+ - uid: 16211
+ components:
+ - type: Transform
+ pos: 45.5,92.5
+ parent: 1
+ - uid: 16231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,127.5
+ parent: 1
+ - uid: 16454
+ components:
+ - type: Transform
+ pos: 93.5,105.5
+ parent: 1
+ - uid: 16571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,50.5
+ parent: 1
+ - uid: 16591
+ components:
+ - type: Transform
+ pos: 97.5,128.5
+ parent: 1
+ - uid: 16923
+ components:
+ - type: Transform
+ pos: 96.5,167.5
+ parent: 1
+ - uid: 16924
+ components:
+ - type: Transform
+ pos: 96.5,168.5
+ parent: 1
+ - uid: 16929
+ components:
+ - type: Transform
+ pos: 97.5,166.5
+ parent: 1
+ - uid: 16932
+ components:
+ - type: Transform
+ pos: 101.5,165.5
+ parent: 1
+ - uid: 17895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,82.5
+ parent: 1
+ - uid: 17901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,46.5
+ parent: 1
+ - uid: 17949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,80.5
+ parent: 1
+ - uid: 17952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,109.5
+ parent: 1
+ - uid: 17956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,81.5
+ parent: 1
+ - uid: 18271
+ components:
+ - type: Transform
+ pos: 110.5,34.5
+ parent: 1
+ - uid: 18281
+ components:
+ - type: Transform
+ pos: 154.5,101.5
+ parent: 1
+ - uid: 18376
+ components:
+ - type: Transform
+ pos: 145.5,91.5
+ parent: 1
+ - uid: 18377
+ components:
+ - type: Transform
+ pos: 145.5,90.5
+ parent: 1
+ - uid: 18581
+ components:
+ - type: Transform
+ pos: 20.5,110.5
+ parent: 1
+ - uid: 18973
+ components:
+ - type: Transform
+ pos: 97.5,126.5
+ parent: 1
+ - uid: 19044
+ components:
+ - type: Transform
+ pos: 20.5,112.5
+ parent: 1
+ - uid: 19106
+ components:
+ - type: Transform
+ pos: 97.5,35.5
+ parent: 1
+ - uid: 19118
+ components:
+ - type: Transform
+ pos: 59.5,123.5
+ parent: 1
+ - uid: 19263
+ components:
+ - type: Transform
+ pos: 19.5,105.5
+ parent: 1
+ - uid: 19341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,166.5
+ parent: 1
+ - uid: 19373
+ components:
+ - type: Transform
+ pos: 96.5,105.5
+ parent: 1
+ - uid: 19401
+ components:
+ - type: Transform
+ pos: 98.5,126.5
+ parent: 1
+ - uid: 19460
+ components:
+ - type: Transform
+ pos: 95.5,105.5
+ parent: 1
+ - uid: 19499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,97.5
+ parent: 1
+ - uid: 19565
+ components:
+ - type: Transform
+ pos: 59.5,124.5
+ parent: 1
+ - uid: 19954
+ components:
+ - type: Transform
+ pos: 99.5,126.5
+ parent: 1
+ - uid: 20466
+ components:
+ - type: Transform
+ pos: 93.5,54.5
+ parent: 1
+ - uid: 20500
+ components:
+ - type: Transform
+ pos: 90.5,49.5
+ parent: 1
+ - uid: 20505
+ components:
+ - type: Transform
+ pos: 124.5,40.5
+ parent: 1
+ - uid: 20851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,78.5
+ parent: 1
+ - uid: 20907
+ components:
+ - type: Transform
+ pos: 91.5,49.5
+ parent: 1
+ - uid: 21030
+ components:
+ - type: Transform
+ pos: 95.5,38.5
+ parent: 1
+ - uid: 21031
+ components:
+ - type: Transform
+ pos: 96.5,38.5
+ parent: 1
+ - uid: 21034
+ components:
+ - type: Transform
+ pos: 155.5,132.5
+ parent: 1
+ - uid: 21041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,83.5
+ parent: 1
+ - uid: 21047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,98.5
+ parent: 1
+ - uid: 21050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,87.5
+ parent: 1
+ - uid: 21061
+ components:
+ - type: Transform
+ pos: 93.5,38.5
+ parent: 1
+ - uid: 22417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,87.5
+ parent: 1
+ - uid: 22418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,87.5
+ parent: 1
+ - uid: 23184
+ components:
+ - type: Transform
+ pos: 121.5,28.5
+ parent: 1
+ - uid: 23210
+ components:
+ - type: Transform
+ pos: 91.5,38.5
+ parent: 1
+ - uid: 23211
+ components:
+ - type: Transform
+ pos: 94.5,38.5
+ parent: 1
+ - uid: 23212
+ components:
+ - type: Transform
+ pos: 92.5,38.5
+ parent: 1
+ - uid: 23331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,166.5
+ parent: 1
+ - uid: 23359
+ components:
+ - type: Transform
+ pos: 100.5,126.5
+ parent: 1
+ - uid: 23369
+ components:
+ - type: Transform
+ pos: 74.5,62.5
+ parent: 1
+ - uid: 23378
+ components:
+ - type: Transform
+ pos: 73.5,62.5
+ parent: 1
+ - uid: 23381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,53.5
+ parent: 1
+ - uid: 23388
+ components:
+ - type: Transform
+ pos: 102.5,38.5
+ parent: 1
+ - uid: 23418
+ components:
+ - type: Transform
+ pos: 80.5,62.5
+ parent: 1
+ - uid: 23429
+ components:
+ - type: Transform
+ pos: 161.5,133.5
+ parent: 1
+ - uid: 23438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,97.5
+ parent: 1
+ - uid: 23507
+ components:
+ - type: Transform
+ pos: 81.5,62.5
+ parent: 1
+ - uid: 23623
+ components:
+ - type: Transform
+ pos: 90.5,62.5
+ parent: 1
+ - uid: 23648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,49.5
+ parent: 1
+ - uid: 23716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,143.5
+ parent: 1
+ - uid: 23761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,83.5
+ parent: 1
+ - uid: 23764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,83.5
+ parent: 1
+ - uid: 23823
+ components:
+ - type: Transform
+ pos: 119.5,113.5
+ parent: 1
+ - uid: 24057
+ components:
+ - type: Transform
+ pos: 101.5,126.5
+ parent: 1
+ - uid: 24186
+ components:
+ - type: Transform
+ pos: 115.5,126.5
+ parent: 1
+ - uid: 24230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,87.5
+ parent: 1
+ - uid: 24334
+ components:
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - uid: 24350
+ components:
+ - type: Transform
+ pos: 111.5,104.5
+ parent: 1
+ - uid: 24408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,70.5
+ parent: 1
+ - uid: 24410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,62.5
+ parent: 1
+ - uid: 24411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,46.5
+ parent: 1
+ - uid: 24509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,64.5
+ parent: 1
+ - uid: 24513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,69.5
+ parent: 1
+ - uid: 24515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,79.5
+ parent: 1
+ - uid: 24544
+ components:
+ - type: Transform
+ pos: 116.5,126.5
+ parent: 1
+ - uid: 24660
+ components:
+ - type: Transform
+ pos: 117.5,126.5
+ parent: 1
+ - uid: 24661
+ components:
+ - type: Transform
+ pos: 118.5,126.5
+ parent: 1
+ - uid: 24690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,66.5
+ parent: 1
+ - uid: 24692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,73.5
+ parent: 1
+ - uid: 24693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,74.5
+ parent: 1
+ - uid: 24694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,68.5
+ parent: 1
+ - uid: 24939
+ components:
+ - type: Transform
+ pos: 105.5,102.5
+ parent: 1
+ - uid: 24940
+ components:
+ - type: Transform
+ pos: 105.5,101.5
+ parent: 1
+ - uid: 24944
+ components:
+ - type: Transform
+ pos: 105.5,104.5
+ parent: 1
+ - uid: 25107
+ components:
+ - type: Transform
+ pos: 144.5,115.5
+ parent: 1
+ - uid: 25243
+ components:
+ - type: Transform
+ pos: 98.5,49.5
+ parent: 1
+ - uid: 25252
+ components:
+ - type: Transform
+ pos: 119.5,144.5
+ parent: 1
+ - uid: 25253
+ components:
+ - type: Transform
+ pos: 119.5,145.5
+ parent: 1
+ - uid: 25267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,48.5
+ parent: 1
+ - uid: 25309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,57.5
+ parent: 1
+ - uid: 25359
+ components:
+ - type: Transform
+ pos: 119.5,146.5
+ parent: 1
+ - uid: 25390
+ components:
+ - type: Transform
+ pos: 93.5,49.5
+ parent: 1
+ - uid: 25484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 25600
+ components:
+ - type: Transform
+ pos: 102.5,104.5
+ parent: 1
+ - uid: 25601
+ components:
+ - type: Transform
+ pos: 102.5,103.5
+ parent: 1
+ - uid: 25603
+ components:
+ - type: Transform
+ pos: 102.5,102.5
+ parent: 1
+ - uid: 25605
+ components:
+ - type: Transform
+ pos: 114.5,102.5
+ parent: 1
+ - uid: 25606
+ components:
+ - type: Transform
+ pos: 114.5,103.5
+ parent: 1
+ - uid: 25607
+ components:
+ - type: Transform
+ pos: 114.5,104.5
+ parent: 1
+ - uid: 25628
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 25697
+ components:
+ - type: Transform
+ pos: 100.5,43.5
+ parent: 1
+ - uid: 25708
+ components:
+ - type: Transform
+ pos: 100.5,41.5
+ parent: 1
+ - uid: 25788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,66.5
+ parent: 1
+ - uid: 25809
+ components:
+ - type: Transform
+ pos: 106.5,53.5
+ parent: 1
+ - uid: 25850
+ components:
+ - type: Transform
+ pos: 119.5,147.5
+ parent: 1
+ - uid: 25918
+ components:
+ - type: Transform
+ pos: 125.5,98.5
+ parent: 1
+ - uid: 25920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,65.5
+ parent: 1
+ - uid: 26176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,65.5
+ parent: 1
+ - uid: 26234
+ components:
+ - type: Transform
+ pos: 119.5,130.5
+ parent: 1
+ - uid: 26320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,33.5
+ parent: 1
+ - uid: 26682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,115.5
+ parent: 1
+ - uid: 26713
+ components:
+ - type: Transform
+ pos: 119.5,129.5
+ parent: 1
+ - uid: 26714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,75.5
+ parent: 1
+ - uid: 26716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,67.5
+ parent: 1
+ - uid: 26798
+ components:
+ - type: Transform
+ pos: 119.5,128.5
+ parent: 1
+ - uid: 26807
+ components:
+ - type: Transform
+ pos: 119.5,127.5
+ parent: 1
+ - uid: 26822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,65.5
+ parent: 1
+ - uid: 26823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,71.5
+ parent: 1
+ - uid: 26873
+ components:
+ - type: Transform
+ pos: 59.5,45.5
+ parent: 1
+ - uid: 26878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,116.5
+ parent: 1
+ - uid: 26883
+ components:
+ - type: Transform
+ pos: 119.5,126.5
+ parent: 1
+ - uid: 27173
+ components:
+ - type: Transform
+ pos: 101.5,65.5
+ parent: 1
+ - uid: 27178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,54.5
+ parent: 1
+ - uid: 27272
+ components:
+ - type: Transform
+ pos: 108.5,37.5
+ parent: 1
+ - uid: 27274
+ components:
+ - type: Transform
+ pos: 108.5,43.5
+ parent: 1
+ - uid: 27320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,50.5
+ parent: 1
+ - uid: 27323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,49.5
+ parent: 1
+ - uid: 27327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,101.5
+ parent: 1
+ - uid: 27331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,48.5
+ parent: 1
+ - uid: 27414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,47.5
+ parent: 1
+ - uid: 27510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,46.5
+ parent: 1
+ - uid: 27581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,43.5
+ parent: 1
+ - uid: 27597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,50.5
+ parent: 1
+ - uid: 27600
+ components:
+ - type: Transform
+ pos: 64.5,57.5
+ parent: 1
+ - uid: 27603
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 27619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,49.5
+ parent: 1
+ - uid: 27620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,47.5
+ parent: 1
+ - uid: 27651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,43.5
+ parent: 1
+ - uid: 27656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,40.5
+ parent: 1
+ - uid: 27661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,35.5
+ parent: 1
+ - uid: 27732
+ components:
+ - type: Transform
+ pos: 106.5,37.5
+ parent: 1
+ - uid: 27832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,79.5
+ parent: 1
+ - uid: 27868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,87.5
+ parent: 1
+ - uid: 28135
+ components:
+ - type: Transform
+ pos: 45.5,87.5
+ parent: 1
+ - uid: 28143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,63.5
+ parent: 1
+ - uid: 28289
+ components:
+ - type: Transform
+ pos: 103.5,42.5
+ parent: 1
+ - uid: 28338
+ components:
+ - type: Transform
+ pos: 51.5,126.5
+ parent: 1
+ - uid: 28518
+ components:
+ - type: Transform
+ pos: 103.5,41.5
+ parent: 1
+ - uid: 28538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,88.5
+ parent: 1
+ - uid: 28588
+ components:
+ - type: Transform
+ pos: 154.5,84.5
+ parent: 1
+ - uid: 28590
+ components:
+ - type: Transform
+ pos: 109.5,43.5
+ parent: 1
+ - uid: 28592
+ components:
+ - type: Transform
+ pos: 154.5,82.5
+ parent: 1
+ - uid: 28611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,79.5
+ parent: 1
+ - uid: 28615
+ components:
+ - type: Transform
+ pos: 109.5,41.5
+ parent: 1
+ - uid: 28627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,70.5
+ parent: 1
+ - uid: 28629
+ components:
+ - type: Transform
+ pos: 130.5,114.5
+ parent: 1
+ - uid: 28715
+ components:
+ - type: Transform
+ pos: 118.5,24.5
+ parent: 1
+ - uid: 28716
+ components:
+ - type: Transform
+ pos: 120.5,24.5
+ parent: 1
+ - uid: 28731
+ components:
+ - type: Transform
+ pos: 57.5,156.5
+ parent: 1
+ - uid: 28733
+ components:
+ - type: Transform
+ pos: 126.5,40.5
+ parent: 1
+ - uid: 28734
+ components:
+ - type: Transform
+ pos: 54.5,104.5
+ parent: 1
+ - uid: 28735
+ components:
+ - type: Transform
+ pos: 54.5,103.5
+ parent: 1
+ - uid: 28751
+ components:
+ - type: Transform
+ pos: 109.5,38.5
+ parent: 1
+ - uid: 28760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,54.5
+ parent: 1
+ - uid: 28762
+ components:
+ - type: Transform
+ pos: 109.5,40.5
+ parent: 1
+ - uid: 28767
+ components:
+ - type: Transform
+ pos: 103.5,37.5
+ parent: 1
+ - uid: 28770
+ components:
+ - type: Transform
+ pos: 103.5,43.5
+ parent: 1
+ - uid: 28771
+ components:
+ - type: Transform
+ pos: 103.5,39.5
+ parent: 1
+ - uid: 28772
+ components:
+ - type: Transform
+ pos: 109.5,39.5
+ parent: 1
+ - uid: 28773
+ components:
+ - type: Transform
+ pos: 105.5,37.5
+ parent: 1
+ - uid: 28774
+ components:
+ - type: Transform
+ pos: 107.5,43.5
+ parent: 1
+ - uid: 28775
+ components:
+ - type: Transform
+ pos: 104.5,43.5
+ parent: 1
+ - uid: 28776
+ components:
+ - type: Transform
+ pos: 104.5,37.5
+ parent: 1
+ - uid: 28788
+ components:
+ - type: Transform
+ pos: 94.5,54.5
+ parent: 1
+ - uid: 28789
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,79.5
+ parent: 1
+ - uid: 28880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,49.5
+ parent: 1
+ - uid: 28882
+ components:
+ - type: Transform
+ pos: 116.5,67.5
+ parent: 1
+ - uid: 28896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,53.5
+ parent: 1
+ - uid: 28916
+ components:
+ - type: Transform
+ pos: 109.5,42.5
+ parent: 1
+ - uid: 28927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,53.5
+ parent: 1
+ - uid: 28938
+ components:
+ - type: Transform
+ pos: 109.5,37.5
+ parent: 1
+ - uid: 28939
+ components:
+ - type: Transform
+ pos: 103.5,38.5
+ parent: 1
+ - uid: 29033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,64.5
+ parent: 1
+ - uid: 29034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,67.5
+ parent: 1
+ - uid: 29038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,72.5
+ parent: 1
+ - uid: 29058
+ components:
+ - type: Transform
+ pos: 61.5,69.5
+ parent: 1
+ - uid: 29097
+ components:
+ - type: Transform
+ pos: 62.5,69.5
+ parent: 1
+ - uid: 29173
+ components:
+ - type: Transform
+ pos: 112.5,21.5
+ parent: 1
+ - uid: 29179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,131.5
+ parent: 1
+ - uid: 29296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,83.5
+ parent: 1
+ - uid: 29347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,33.5
+ parent: 1
+ - uid: 29358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,83.5
+ parent: 1
+ - uid: 29474
+ components:
+ - type: Transform
+ pos: 100.5,39.5
+ parent: 1
+ - uid: 29504
+ components:
+ - type: Transform
+ pos: 58.5,77.5
+ parent: 1
+ - uid: 29516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,163.5
+ parent: 1
+ - uid: 29517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,161.5
+ parent: 1
+ - uid: 29806
+ components:
+ - type: Transform
+ pos: 154.5,133.5
+ parent: 1
+ - uid: 29842
+ components:
+ - type: Transform
+ pos: 103.5,44.5
+ parent: 1
+ - uid: 29940
+ components:
+ - type: Transform
+ pos: 101.5,49.5
+ parent: 1
+ - uid: 30109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,49.5
+ parent: 1
+ - uid: 30187
+ components:
+ - type: Transform
+ pos: 143.5,143.5
+ parent: 1
+ - uid: 30190
+ components:
+ - type: Transform
+ pos: 156.5,101.5
+ parent: 1
+ - uid: 30198
+ components:
+ - type: Transform
+ pos: 143.5,145.5
+ parent: 1
+ - uid: 30205
+ components:
+ - type: Transform
+ pos: 138.5,146.5
+ parent: 1
+ - uid: 30230
+ components:
+ - type: Transform
+ pos: 147.5,113.5
+ parent: 1
+ - uid: 30240
+ components:
+ - type: Transform
+ pos: 74.5,109.5
+ parent: 1
+ - uid: 30292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,38.5
+ parent: 1
+ - uid: 30330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,142.5
+ parent: 1
+ - uid: 30396
+ components:
+ - type: Transform
+ pos: 108.5,48.5
+ parent: 1
+ - uid: 30413
+ components:
+ - type: Transform
+ pos: 89.5,41.5
+ parent: 1
+ - uid: 30450
+ components:
+ - type: Transform
+ pos: 146.5,126.5
+ parent: 1
+ - uid: 30635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,44.5
+ parent: 1
+ - uid: 30668
+ components:
+ - type: Transform
+ pos: 147.5,123.5
+ parent: 1
+ - uid: 30834
+ components:
+ - type: Transform
+ pos: 73.5,157.5
+ parent: 1
+ - uid: 30838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,87.5
+ parent: 1
+ - uid: 30869
+ components:
+ - type: Transform
+ pos: 23.5,83.5
+ parent: 1
+ - uid: 31828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,90.5
+ parent: 1
+ - uid: 31850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,62.5
+ parent: 1
+ - uid: 31856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,65.5
+ parent: 1
+ - uid: 31857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,67.5
+ parent: 1
+ - uid: 32049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,47.5
+ parent: 1
+ - uid: 32065
+ components:
+ - type: Transform
+ pos: 154.5,130.5
+ parent: 1
+ - uid: 32190
+ components:
+ - type: Transform
+ pos: 147.5,108.5
+ parent: 1
+ - uid: 32219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,104.5
+ parent: 1
+ - uid: 32285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,42.5
+ parent: 1
+ - uid: 32407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,43.5
+ parent: 1
+ - uid: 32409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,43.5
+ parent: 1
+ - uid: 32437
+ components:
+ - type: Transform
+ pos: 108.5,47.5
+ parent: 1
+ - uid: 32441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,29.5
+ parent: 1
+ - uid: 32931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,166.5
+ parent: 1
+ - uid: 32942
+ components:
+ - type: Transform
+ pos: 149.5,115.5
+ parent: 1
+ - uid: 33011
+ components:
+ - type: Transform
+ pos: 26.5,82.5
+ parent: 1
+ - uid: 33062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,24.5
+ parent: 1
+ - uid: 33830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,87.5
+ parent: 1
+ - uid: 33843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,114.5
+ parent: 1
+ - uid: 33880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,103.5
+ parent: 1
+ - uid: 33884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,159.5
+ parent: 1
+ - uid: 33966
+ components:
+ - type: Transform
+ pos: 125.5,101.5
+ parent: 1
+ - uid: 34054
+ components:
+ - type: Transform
+ pos: 108.5,44.5
+ parent: 1
+ - uid: 34079
+ components:
+ - type: Transform
+ pos: 89.5,48.5
+ parent: 1
+ - uid: 34110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,80.5
+ parent: 1
+ - uid: 34114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,78.5
+ parent: 1
+ - uid: 34375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,82.5
+ parent: 1
+ - uid: 34377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,82.5
+ parent: 1
+ - uid: 34379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,82.5
+ parent: 1
+ - uid: 34386
+ components:
+ - type: Transform
+ pos: 142.5,83.5
+ parent: 1
+ - uid: 34432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,157.5
+ parent: 1
+ - uid: 34473
+ components:
+ - type: Transform
+ pos: 105.5,49.5
+ parent: 1
+ - uid: 34496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,42.5
+ parent: 1
+ - uid: 34697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,120.5
+ parent: 1
+ - uid: 34741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,168.5
+ parent: 1
+ - uid: 34751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,162.5
+ parent: 1
+ - uid: 34752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,161.5
+ parent: 1
+ - uid: 34758
+ components:
+ - type: Transform
+ pos: 94.5,109.5
+ parent: 1
+ - uid: 34760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,166.5
+ parent: 1
+ - uid: 34839
+ components:
+ - type: Transform
+ pos: 130.5,84.5
+ parent: 1
+ - uid: 34840
+ components:
+ - type: Transform
+ pos: 130.5,83.5
+ parent: 1
+ - uid: 34842
+ components:
+ - type: Transform
+ pos: 130.5,81.5
+ parent: 1
+ - uid: 34890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,120.5
+ parent: 1
+ - uid: 34902
+ components:
+ - type: Transform
+ pos: 130.5,80.5
+ parent: 1
+ - uid: 34915
+ components:
+ - type: Transform
+ pos: 130.5,79.5
+ parent: 1
+ - uid: 34916
+ components:
+ - type: Transform
+ pos: 131.5,84.5
+ parent: 1
+ - uid: 34917
+ components:
+ - type: Transform
+ pos: 131.5,79.5
+ parent: 1
+ - uid: 34924
+ components:
+ - type: Transform
+ pos: 132.5,84.5
+ parent: 1
+ - uid: 34925
+ components:
+ - type: Transform
+ pos: 133.5,84.5
+ parent: 1
+ - uid: 34927
+ components:
+ - type: Transform
+ pos: 134.5,84.5
+ parent: 1
+ - uid: 34928
+ components:
+ - type: Transform
+ pos: 136.5,84.5
+ parent: 1
+ - uid: 34940
+ components:
+ - type: Transform
+ pos: 137.5,84.5
+ parent: 1
+ - uid: 34941
+ components:
+ - type: Transform
+ pos: 138.5,79.5
+ parent: 1
+ - uid: 34942
+ components:
+ - type: Transform
+ pos: 138.5,84.5
+ parent: 1
+ - uid: 34944
+ components:
+ - type: Transform
+ pos: 139.5,81.5
+ parent: 1
+ - uid: 34949
+ components:
+ - type: Transform
+ pos: 139.5,83.5
+ parent: 1
+ - uid: 34950
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 34951
+ components:
+ - type: Transform
+ pos: 139.5,84.5
+ parent: 1
+ - uid: 34952
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 34959
+ components:
+ - type: Transform
+ pos: 139.5,80.5
+ parent: 1
+ - uid: 34965
+ components:
+ - type: Transform
+ pos: 163.5,133.5
+ parent: 1
+ - uid: 35126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,171.5
+ parent: 1
+ - uid: 35129
+ components:
+ - type: Transform
+ pos: 18.5,105.5
+ parent: 1
+ - uid: 35150
+ components:
+ - type: Transform
+ pos: 41.5,121.5
+ parent: 1
+ - uid: 35199
+ components:
+ - type: Transform
+ pos: 59.5,121.5
+ parent: 1
+ - uid: 35208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,87.5
+ parent: 1
+ - uid: 35210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,86.5
+ parent: 1
+ - uid: 35249
+ components:
+ - type: Transform
+ pos: 73.5,158.5
+ parent: 1
+ - uid: 35253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,94.5
+ parent: 1
+ - uid: 35261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,85.5
+ parent: 1
+ - uid: 35314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,86.5
+ parent: 1
+ - uid: 35326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,88.5
+ parent: 1
+ - uid: 35395
+ components:
+ - type: Transform
+ pos: 73.5,159.5
+ parent: 1
+ - uid: 35502
+ components:
+ - type: Transform
+ pos: 115.5,165.5
+ parent: 1
+ - uid: 35516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,121.5
+ parent: 1
+ - uid: 35555
+ components:
+ - type: Transform
+ pos: 126.5,102.5
+ parent: 1
+ - uid: 35556
+ components:
+ - type: Transform
+ pos: 124.5,102.5
+ parent: 1
+ - uid: 35576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,97.5
+ parent: 1
+ - uid: 35638
+ components:
+ - type: Transform
+ pos: 57.5,149.5
+ parent: 1
+ - uid: 35654
+ components:
+ - type: Transform
+ pos: 160.5,122.5
+ parent: 1
+ - uid: 35656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,87.5
+ parent: 1
+ - uid: 35697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,97.5
+ parent: 1
+ - uid: 35851
+ components:
+ - type: Transform
+ pos: 113.5,166.5
+ parent: 1
+ - uid: 35914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,32.5
+ parent: 1
+ - uid: 35915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,46.5
+ parent: 1
+ - uid: 36026
+ components:
+ - type: Transform
+ pos: 153.5,101.5
+ parent: 1
+ - uid: 36094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,44.5
+ parent: 1
+ - uid: 36448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,127.5
+ parent: 1
+ - uid: 36458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,82.5
+ parent: 1
+ - uid: 36817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,89.5
+ parent: 1
+ - uid: 36818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,89.5
+ parent: 1
+ - uid: 36820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,89.5
+ parent: 1
+ - uid: 36821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,89.5
+ parent: 1
+ - uid: 36822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,89.5
+ parent: 1
+ - uid: 36832
+ components:
+ - type: Transform
+ pos: 97.5,84.5
+ parent: 1
+ - uid: 36863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,168.5
+ parent: 1
+ - uid: 36866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,162.5
+ parent: 1
+ - uid: 37131
+ components:
+ - type: Transform
+ pos: 164.5,133.5
+ parent: 1
+ - uid: 37132
+ components:
+ - type: Transform
+ pos: 164.5,134.5
+ parent: 1
+ - uid: 37185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,137.5
+ parent: 1
+ - uid: 37217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,83.5
+ parent: 1
+ - uid: 37504
+ components:
+ - type: Transform
+ pos: 161.5,117.5
+ parent: 1
+- proto: WallSolidRust
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,64.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,82.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 46.5,119.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,171.5
+ parent: 1
+ - uid: 1346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,87.5
+ parent: 1
+ - uid: 1475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,87.5
+ parent: 1
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,47.5
+ parent: 1
+ - uid: 1871
+ components:
+ - type: Transform
+ pos: 97.5,37.5
+ parent: 1
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: 97.5,34.5
+ parent: 1
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: 89.5,34.5
+ parent: 1
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: 85.5,22.5
+ parent: 1
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 97.5,25.5
+ parent: 1
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: 110.5,29.5
+ parent: 1
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 98.5,24.5
+ parent: 1
+ - uid: 2229
+ components:
+ - type: Transform
+ pos: 124.5,34.5
+ parent: 1
+ - uid: 3005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,166.5
+ parent: 1
+ - uid: 3214
+ components:
+ - type: Transform
+ pos: 68.5,159.5
+ parent: 1
+ - uid: 3346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,88.5
+ parent: 1
+ - uid: 3394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,106.5
+ parent: 1
+ - uid: 3443
+ components:
+ - type: Transform
+ pos: 96.5,169.5
+ parent: 1
+ - uid: 3454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,65.5
+ parent: 1
+ - uid: 3764
+ components:
+ - type: Transform
+ pos: 92.5,29.5
+ parent: 1
+ - uid: 3788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,94.5
+ parent: 1
+ - uid: 3792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,97.5
+ parent: 1
+ - uid: 3801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,85.5
+ parent: 1
+ - uid: 3993
+ components:
+ - type: Transform
+ pos: 97.5,71.5
+ parent: 1
+ - uid: 4131
+ components:
+ - type: Transform
+ pos: 90.5,29.5
+ parent: 1
+ - uid: 4212
+ components:
+ - type: Transform
+ pos: 115.5,28.5
+ parent: 1
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: 59.5,41.5
+ parent: 1
+ - uid: 4268
+ components:
+ - type: Transform
+ pos: 107.5,24.5
+ parent: 1
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,167.5
+ parent: 1
+ - uid: 4509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,85.5
+ parent: 1
+ - uid: 4802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,171.5
+ parent: 1
+ - uid: 4839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,166.5
+ parent: 1
+ - uid: 4904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,167.5
+ parent: 1
+ - uid: 5063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,50.5
+ parent: 1
+ - uid: 5119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,49.5
+ parent: 1
+ - uid: 5353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,44.5
+ parent: 1
+ - uid: 5482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,22.5
+ parent: 1
+ - uid: 5536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,22.5
+ parent: 1
+ - uid: 5537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,20.5
+ parent: 1
+ - uid: 5545
+ components:
+ - type: Transform
+ pos: 93.5,24.5
+ parent: 1
+ - uid: 5546
+ components:
+ - type: Transform
+ pos: 92.5,24.5
+ parent: 1
+ - uid: 5552
+ components:
+ - type: Transform
+ pos: 87.5,27.5
+ parent: 1
+ - uid: 5553
+ components:
+ - type: Transform
+ pos: 87.5,24.5
+ parent: 1
+ - uid: 5628
+ components:
+ - type: Transform
+ pos: 89.5,29.5
+ parent: 1
+ - uid: 5637
+ components:
+ - type: Transform
+ pos: 93.5,28.5
+ parent: 1
+ - uid: 5948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,114.5
+ parent: 1
+ - uid: 5974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,106.5
+ parent: 1
+ - uid: 6087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,95.5
+ parent: 1
+ - uid: 6095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,102.5
+ parent: 1
+ - uid: 6099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,103.5
+ parent: 1
+ - uid: 6102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,95.5
+ parent: 1
+ - uid: 6111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,120.5
+ parent: 1
+ - uid: 6121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,114.5
+ parent: 1
+ - uid: 6126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,109.5
+ parent: 1
+ - uid: 6129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,106.5
+ parent: 1
+ - uid: 6134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,105.5
+ parent: 1
+ - uid: 6172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,95.5
+ parent: 1
+ - uid: 6222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 6223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,103.5
+ parent: 1
+ - uid: 6224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,120.5
+ parent: 1
+ - uid: 6225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,109.5
+ parent: 1
+ - uid: 6251
+ components:
+ - type: Transform
+ pos: 145.5,81.5
+ parent: 1
+ - uid: 6277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,95.5
+ parent: 1
+ - uid: 6279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,89.5
+ parent: 1
+ - uid: 6375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,114.5
+ parent: 1
+ - uid: 6483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,109.5
+ parent: 1
+ - uid: 6547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,89.5
+ parent: 1
+ - uid: 6573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,87.5
+ parent: 1
+ - uid: 6685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,85.5
+ parent: 1
+ - uid: 6720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,77.5
+ parent: 1
+ - uid: 6721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,120.5
+ parent: 1
+ - uid: 6724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,77.5
+ parent: 1
+ - uid: 6780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,120.5
+ parent: 1
+ - uid: 6784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,83.5
+ parent: 1
+ - uid: 6810
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 6848
+ components:
+ - type: Transform
+ pos: 88.5,24.5
+ parent: 1
+ - uid: 6857
+ components:
+ - type: Transform
+ pos: 26.5,79.5
+ parent: 1
+ - uid: 6902
+ components:
+ - type: Transform
+ pos: 26.5,78.5
+ parent: 1
+ - uid: 7059
+ components:
+ - type: Transform
+ pos: 103.5,25.5
+ parent: 1
+ - uid: 7061
+ components:
+ - type: Transform
+ pos: 140.5,84.5
+ parent: 1
+ - uid: 7083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,73.5
+ parent: 1
+ - uid: 7098
+ components:
+ - type: Transform
+ pos: 87.5,21.5
+ parent: 1
+ - uid: 7114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,120.5
+ parent: 1
+ - uid: 7127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,76.5
+ parent: 1
+ - uid: 7143
+ components:
+ - type: Transform
+ pos: 29.5,84.5
+ parent: 1
+ - uid: 7144
+ components:
+ - type: Transform
+ pos: 29.5,82.5
+ parent: 1
+ - uid: 7146
+ components:
+ - type: Transform
+ pos: 141.5,79.5
+ parent: 1
+ - uid: 7151
+ components:
+ - type: Transform
+ pos: 142.5,86.5
+ parent: 1
+ - uid: 7162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,123.5
+ parent: 1
+ - uid: 7172
+ components:
+ - type: Transform
+ pos: 142.5,84.5
+ parent: 1
+ - uid: 7190
+ components:
+ - type: Transform
+ pos: 110.5,25.5
+ parent: 1
+ - uid: 7210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,76.5
+ parent: 1
+ - uid: 7246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,80.5
+ parent: 1
+ - uid: 7533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,120.5
+ parent: 1
+ - uid: 7595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,77.5
+ parent: 1
+ - uid: 7655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,67.5
+ parent: 1
+ - uid: 7663
+ components:
+ - type: Transform
+ pos: 103.5,29.5
+ parent: 1
+ - uid: 7806
+ components:
+ - type: Transform
+ pos: 100.5,29.5
+ parent: 1
+ - uid: 7854
+ components:
+ - type: Transform
+ pos: 31.5,118.5
+ parent: 1
+ - uid: 7992
+ components:
+ - type: Transform
+ pos: 93.5,33.5
+ parent: 1
+ - uid: 8199
+ components:
+ - type: Transform
+ pos: 103.5,28.5
+ parent: 1
+ - uid: 8238
+ components:
+ - type: Transform
+ pos: 97.5,29.5
+ parent: 1
+ - uid: 8240
+ components:
+ - type: Transform
+ pos: 93.5,29.5
+ parent: 1
+ - uid: 8271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,33.5
+ parent: 1
+ - uid: 8287
+ components:
+ - type: Transform
+ pos: 97.5,33.5
+ parent: 1
+ - uid: 8301
+ components:
+ - type: Transform
+ pos: 99.5,24.5
+ parent: 1
+ - uid: 8312
+ components:
+ - type: Transform
+ pos: 100.5,24.5
+ parent: 1
+ - uid: 8350
+ components:
+ - type: Transform
+ pos: 99.5,33.5
+ parent: 1
+ - uid: 8438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,46.5
+ parent: 1
+ - uid: 8455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,48.5
+ parent: 1
+ - uid: 8468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,44.5
+ parent: 1
+ - uid: 8484
+ components:
+ - type: Transform
+ pos: 99.5,29.5
+ parent: 1
+ - uid: 8496
+ components:
+ - type: Transform
+ pos: 144.5,86.5
+ parent: 1
+ - uid: 8501
+ components:
+ - type: Transform
+ pos: 110.5,30.5
+ parent: 1
+ - uid: 8558
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 8561
+ components:
+ - type: Transform
+ pos: 89.5,32.5
+ parent: 1
+ - uid: 8646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,46.5
+ parent: 1
+ - uid: 8667
+ components:
+ - type: Transform
+ pos: 59.5,131.5
+ parent: 1
+ - uid: 8848
+ components:
+ - type: Transform
+ pos: 33.5,81.5
+ parent: 1
+ - uid: 8866
+ components:
+ - type: Transform
+ pos: 35.5,81.5
+ parent: 1
+ - uid: 9392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,44.5
+ parent: 1
+ - uid: 9393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,44.5
+ parent: 1
+ - uid: 9394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,41.5
+ parent: 1
+ - uid: 9395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,37.5
+ parent: 1
+ - uid: 9396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,29.5
+ parent: 1
+ - uid: 9399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,57.5
+ parent: 1
+ - uid: 9706
+ components:
+ - type: Transform
+ pos: 108.5,25.5
+ parent: 1
+ - uid: 9708
+ components:
+ - type: Transform
+ pos: 111.5,32.5
+ parent: 1
+ - uid: 9711
+ components:
+ - type: Transform
+ pos: 107.5,32.5
+ parent: 1
+ - uid: 9739
+ components:
+ - type: Transform
+ pos: 103.5,23.5
+ parent: 1
+ - uid: 9741
+ components:
+ - type: Transform
+ pos: 105.5,33.5
+ parent: 1
+ - uid: 9746
+ components:
+ - type: Transform
+ pos: 107.5,30.5
+ parent: 1
+ - uid: 9751
+ components:
+ - type: Transform
+ pos: 107.5,33.5
+ parent: 1
+ - uid: 9798
+ components:
+ - type: Transform
+ pos: 107.5,27.5
+ parent: 1
+ - uid: 9809
+ components:
+ - type: Transform
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 9810
+ components:
+ - type: Transform
+ pos: 112.5,41.5
+ parent: 1
+ - uid: 9811
+ components:
+ - type: Transform
+ pos: 112.5,40.5
+ parent: 1
+ - uid: 9817
+ components:
+ - type: Transform
+ pos: 112.5,36.5
+ parent: 1
+ - uid: 9818
+ components:
+ - type: Transform
+ pos: 112.5,35.5
+ parent: 1
+ - uid: 9824
+ components:
+ - type: Transform
+ pos: 103.5,18.5
+ parent: 1
+ - uid: 10457
+ components:
+ - type: Transform
+ pos: 36.5,118.5
+ parent: 1
+ - uid: 10524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,79.5
+ parent: 1
+ - uid: 10980
+ components:
+ - type: Transform
+ pos: 103.5,21.5
+ parent: 1
+ - uid: 10982
+ components:
+ - type: Transform
+ pos: 103.5,22.5
+ parent: 1
+ - uid: 11101
+ components:
+ - type: Transform
+ pos: 105.5,34.5
+ parent: 1
+ - uid: 11364
+ components:
+ - type: Transform
+ pos: 145.5,84.5
+ parent: 1
+ - uid: 11935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,120.5
+ parent: 1
+ - uid: 11938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,121.5
+ parent: 1
+ - uid: 12152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,112.5
+ parent: 1
+ - uid: 12155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,112.5
+ parent: 1
+ - uid: 12227
+ components:
+ - type: Transform
+ pos: 113.5,34.5
+ parent: 1
+ - uid: 12501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,121.5
+ parent: 1
+ - uid: 12732
+ components:
+ - type: Transform
+ pos: 64.5,41.5
+ parent: 1
+ - uid: 12733
+ components:
+ - type: Transform
+ pos: 114.5,28.5
+ parent: 1
+ - uid: 12734
+ components:
+ - type: Transform
+ pos: 114.5,27.5
+ parent: 1
+ - uid: 12736
+ components:
+ - type: Transform
+ pos: 114.5,24.5
+ parent: 1
+ - uid: 12737
+ components:
+ - type: Transform
+ pos: 114.5,22.5
+ parent: 1
+ - uid: 12740
+ components:
+ - type: Transform
+ pos: 115.5,34.5
+ parent: 1
+ - uid: 12741
+ components:
+ - type: Transform
+ pos: 114.5,32.5
+ parent: 1
+ - uid: 14498
+ components:
+ - type: Transform
+ pos: 164.5,132.5
+ parent: 1
+ - uid: 14499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,130.5
+ parent: 1
+ - uid: 14503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,141.5
+ parent: 1
+ - uid: 14632
+ components:
+ - type: Transform
+ pos: 33.5,118.5
+ parent: 1
+ - uid: 14728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,169.5
+ parent: 1
+ - uid: 14752
+ components:
+ - type: Transform
+ pos: 51.5,125.5
+ parent: 1
+ - uid: 14754
+ components:
+ - type: Transform
+ pos: 51.5,124.5
+ parent: 1
+ - uid: 14755
+ components:
+ - type: Transform
+ pos: 51.5,121.5
+ parent: 1
+ - uid: 14824
+ components:
+ - type: Transform
+ pos: 53.5,127.5
+ parent: 1
+ - uid: 14827
+ components:
+ - type: Transform
+ pos: 53.5,119.5
+ parent: 1
+ - uid: 14837
+ components:
+ - type: Transform
+ pos: 51.5,127.5
+ parent: 1
+ - uid: 16232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,147.5
+ parent: 1
+ - uid: 16233
+ components:
+ - type: Transform
+ pos: 55.5,145.5
+ parent: 1
+ - uid: 16234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,132.5
+ parent: 1
+ - uid: 16811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,70.5
+ parent: 1
+ - uid: 16861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,60.5
+ parent: 1
+ - uid: 16922
+ components:
+ - type: Transform
+ pos: 97.5,167.5
+ parent: 1
+ - uid: 16931
+ components:
+ - type: Transform
+ pos: 102.5,165.5
+ parent: 1
+ - uid: 17638
+ components:
+ - type: Transform
+ pos: 145.5,83.5
+ parent: 1
+ - uid: 18189
+ components:
+ - type: Transform
+ pos: 145.5,78.5
+ parent: 1
+ - uid: 18479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,83.5
+ parent: 1
+ - uid: 18566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,58.5
+ parent: 1
+ - uid: 18904
+ components:
+ - type: Transform
+ pos: 73.5,155.5
+ parent: 1
+ - uid: 19045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,111.5
+ parent: 1
+ - uid: 19238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,144.5
+ parent: 1
+ - uid: 19262
+ components:
+ - type: Transform
+ pos: 44.5,122.5
+ parent: 1
+ - uid: 19480
+ components:
+ - type: Transform
+ pos: 20.5,113.5
+ parent: 1
+ - uid: 19509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,145.5
+ parent: 1
+ - uid: 20163
+ components:
+ - type: Transform
+ pos: 55.5,127.5
+ parent: 1
+ - uid: 20164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,154.5
+ parent: 1
+ - uid: 20320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,153.5
+ parent: 1
+ - uid: 20751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,152.5
+ parent: 1
+ - uid: 20849
+ components:
+ - type: Transform
+ pos: 149.5,84.5
+ parent: 1
+ - uid: 23083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,75.5
+ parent: 1
+ - uid: 23084
+ components:
+ - type: Transform
+ pos: 152.5,78.5
+ parent: 1
+ - uid: 23227
+ components:
+ - type: Transform
+ pos: 117.5,35.5
+ parent: 1
+ - uid: 23265
+ components:
+ - type: Transform
+ pos: 117.5,34.5
+ parent: 1
+ - uid: 23287
+ components:
+ - type: Transform
+ pos: 116.5,32.5
+ parent: 1
+ - uid: 23337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,58.5
+ parent: 1
+ - uid: 23348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,55.5
+ parent: 1
+ - uid: 23404
+ components:
+ - type: Transform
+ pos: 154.5,113.5
+ parent: 1
+ - uid: 23436
+ components:
+ - type: Transform
+ pos: 125.5,166.5
+ parent: 1
+ - uid: 23440
+ components:
+ - type: Transform
+ pos: 122.5,165.5
+ parent: 1
+ - uid: 23539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,53.5
+ parent: 1
+ - uid: 23630
+ components:
+ - type: Transform
+ pos: 43.5,119.5
+ parent: 1
+ - uid: 23747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,88.5
+ parent: 1
+ - uid: 23763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,84.5
+ parent: 1
+ - uid: 23937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,46.5
+ parent: 1
+ - uid: 24066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,59.5
+ parent: 1
+ - uid: 24083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,70.5
+ parent: 1
+ - uid: 24132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,89.5
+ parent: 1
+ - uid: 24201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,46.5
+ parent: 1
+ - uid: 24205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,87.5
+ parent: 1
+ - uid: 24229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,95.5
+ parent: 1
+ - uid: 24231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,87.5
+ parent: 1
+ - uid: 24232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,104.5
+ parent: 1
+ - uid: 24508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,69.5
+ parent: 1
+ - uid: 24756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,71.5
+ parent: 1
+ - uid: 25115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,114.5
+ parent: 1
+ - uid: 25116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,114.5
+ parent: 1
+ - uid: 25117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,113.5
+ parent: 1
+ - uid: 25119
+ components:
+ - type: Transform
+ pos: 154.5,81.5
+ parent: 1
+ - uid: 25141
+ components:
+ - type: Transform
+ pos: 154.5,79.5
+ parent: 1
+ - uid: 25220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,113.5
+ parent: 1
+ - uid: 25442
+ components:
+ - type: Transform
+ pos: 154.5,77.5
+ parent: 1
+ - uid: 25567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,116.5
+ parent: 1
+ - uid: 25852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,55.5
+ parent: 1
+ - uid: 26560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,116.5
+ parent: 1
+ - uid: 26671
+ components:
+ - type: Transform
+ pos: 154.5,43.5
+ parent: 1
+ - uid: 26675
+ components:
+ - type: Transform
+ pos: 155.5,77.5
+ parent: 1
+ - uid: 26898
+ components:
+ - type: Transform
+ pos: 156.5,45.5
+ parent: 1
+ - uid: 26925
+ components:
+ - type: Transform
+ pos: 121.5,27.5
+ parent: 1
+ - uid: 27428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,68.5
+ parent: 1
+ - uid: 27582
+ components:
+ - type: Transform
+ pos: 116.5,43.5
+ parent: 1
+ - uid: 27584
+ components:
+ - type: Transform
+ pos: 117.5,32.5
+ parent: 1
+ - uid: 27640
+ components:
+ - type: Transform
+ pos: 120.5,28.5
+ parent: 1
+ - uid: 27641
+ components:
+ - type: Transform
+ pos: 121.5,25.5
+ parent: 1
+ - uid: 27653
+ components:
+ - type: Transform
+ pos: 121.5,42.5
+ parent: 1
+ - uid: 27654
+ components:
+ - type: Transform
+ pos: 117.5,24.5
+ parent: 1
+ - uid: 27655
+ components:
+ - type: Transform
+ pos: 116.5,24.5
+ parent: 1
+ - uid: 27659
+ components:
+ - type: Transform
+ pos: 121.5,29.5
+ parent: 1
+ - uid: 27660
+ components:
+ - type: Transform
+ pos: 120.5,43.5
+ parent: 1
+ - uid: 27662
+ components:
+ - type: Transform
+ pos: 121.5,34.5
+ parent: 1
+ - uid: 27954
+ components:
+ - type: Transform
+ pos: 157.5,77.5
+ parent: 1
+ - uid: 27955
+ components:
+ - type: Transform
+ pos: 157.5,73.5
+ parent: 1
+ - uid: 27975
+ components:
+ - type: Transform
+ pos: 121.5,39.5
+ parent: 1
+ - uid: 28153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,149.5
+ parent: 1
+ - uid: 28159
+ components:
+ - type: Transform
+ pos: 157.5,68.5
+ parent: 1
+ - uid: 28356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,116.5
+ parent: 1
+ - uid: 28612
+ components:
+ - type: Transform
+ pos: 62.5,68.5
+ parent: 1
+ - uid: 28616
+ components:
+ - type: Transform
+ pos: 158.5,77.5
+ parent: 1
+ - uid: 28617
+ components:
+ - type: Transform
+ pos: 158.5,45.5
+ parent: 1
+ - uid: 28730
+ components:
+ - type: Transform
+ pos: 56.5,127.5
+ parent: 1
+ - uid: 28756
+ components:
+ - type: Transform
+ pos: 95.5,54.5
+ parent: 1
+ - uid: 28757
+ components:
+ - type: Transform
+ pos: 96.5,54.5
+ parent: 1
+ - uid: 28766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,55.5
+ parent: 1
+ - uid: 28893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,35.5
+ parent: 1
+ - uid: 28894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,48.5
+ parent: 1
+ - uid: 28897
+ components:
+ - type: Transform
+ pos: 100.5,53.5
+ parent: 1
+ - uid: 28914
+ components:
+ - type: Transform
+ pos: 154.5,83.5
+ parent: 1
+ - uid: 28915
+ components:
+ - type: Transform
+ pos: 155.5,84.5
+ parent: 1
+ - uid: 28934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,154.5
+ parent: 1
+ - uid: 28948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,150.5
+ parent: 1
+ - uid: 29162
+ components:
+ - type: Transform
+ pos: 122.5,40.5
+ parent: 1
+ - uid: 29164
+ components:
+ - type: Transform
+ pos: 117.5,42.5
+ parent: 1
+ - uid: 29171
+ components:
+ - type: Transform
+ pos: 56.5,125.5
+ parent: 1
+ - uid: 29172
+ components:
+ - type: Transform
+ pos: 117.5,40.5
+ parent: 1
+ - uid: 29174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,153.5
+ parent: 1
+ - uid: 29189
+ components:
+ - type: Transform
+ pos: 122.5,34.5
+ parent: 1
+ - uid: 29239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,144.5
+ parent: 1
+ - uid: 29329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,129.5
+ parent: 1
+ - uid: 29865
+ components:
+ - type: Transform
+ pos: 64.5,45.5
+ parent: 1
+ - uid: 30333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,170.5
+ parent: 1
+ - uid: 30389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,125.5
+ parent: 1
+ - uid: 30446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,144.5
+ parent: 1
+ - uid: 30456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,122.5
+ parent: 1
+ - uid: 30516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,127.5
+ parent: 1
+ - uid: 30517
+ components:
+ - type: Transform
+ pos: 59.5,127.5
+ parent: 1
+ - uid: 30525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,58.5
+ parent: 1
+ - uid: 30554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,155.5
+ parent: 1
+ - uid: 30605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,80.5
+ parent: 1
+ - uid: 30614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,122.5
+ parent: 1
+ - uid: 30630
+ components:
+ - type: Transform
+ pos: 59.5,125.5
+ parent: 1
+ - uid: 30646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,158.5
+ parent: 1
+ - uid: 30653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,155.5
+ parent: 1
+ - uid: 30665
+ components:
+ - type: Transform
+ pos: 161.5,119.5
+ parent: 1
+ - uid: 30667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,153.5
+ parent: 1
+ - uid: 30670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,158.5
+ parent: 1
+ - uid: 30671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,159.5
+ parent: 1
+ - uid: 30727
+ components:
+ - type: Transform
+ pos: 114.5,166.5
+ parent: 1
+ - uid: 30763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,159.5
+ parent: 1
+ - uid: 30791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,77.5
+ parent: 1
+ - uid: 30836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,157.5
+ parent: 1
+ - uid: 30989
+ components:
+ - type: Transform
+ pos: 125.5,40.5
+ parent: 1
+ - uid: 31028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,157.5
+ parent: 1
+ - uid: 31056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,161.5
+ parent: 1
+ - uid: 31146
+ components:
+ - type: Transform
+ pos: 115.5,21.5
+ parent: 1
+ - uid: 31156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,160.5
+ parent: 1
+ - uid: 31678
+ components:
+ - type: Transform
+ pos: 159.5,77.5
+ parent: 1
+ - uid: 31758
+ components:
+ - type: Transform
+ pos: 159.5,65.5
+ parent: 1
+ - uid: 31784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,129.5
+ parent: 1
+ - uid: 31785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,144.5
+ parent: 1
+ - uid: 31786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,116.5
+ parent: 1
+ - uid: 31787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,129.5
+ parent: 1
+ - uid: 31788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,144.5
+ parent: 1
+ - uid: 31789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,141.5
+ parent: 1
+ - uid: 31790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,126.5
+ parent: 1
+ - uid: 31792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,140.5
+ parent: 1
+ - uid: 31793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,136.5
+ parent: 1
+ - uid: 31795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,116.5
+ parent: 1
+ - uid: 31796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,133.5
+ parent: 1
+ - uid: 31820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,160.5
+ parent: 1
+ - uid: 31825
+ components:
+ - type: Transform
+ pos: 110.5,39.5
+ parent: 1
+ - uid: 31836
+ components:
+ - type: Transform
+ pos: 159.5,63.5
+ parent: 1
+ - uid: 31839
+ components:
+ - type: Transform
+ pos: 159.5,53.5
+ parent: 1
+ - uid: 31842
+ components:
+ - type: Transform
+ pos: 159.5,52.5
+ parent: 1
+ - uid: 31845
+ components:
+ - type: Transform
+ pos: 159.5,50.5
+ parent: 1
+ - uid: 31848
+ components:
+ - type: Transform
+ pos: 159.5,48.5
+ parent: 1
+ - uid: 31851
+ components:
+ - type: Transform
+ pos: 159.5,45.5
+ parent: 1
+ - uid: 31853
+ components:
+ - type: Transform
+ pos: 160.5,67.5
+ parent: 1
+ - uid: 31859
+ components:
+ - type: Transform
+ pos: 105.5,53.5
+ parent: 1
+ - uid: 31884
+ components:
+ - type: Transform
+ pos: 161.5,77.5
+ parent: 1
+ - uid: 31933
+ components:
+ - type: Transform
+ pos: 23.5,97.5
+ parent: 1
+ - uid: 31936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,166.5
+ parent: 1
+ - uid: 32122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,170.5
+ parent: 1
+ - uid: 32169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,171.5
+ parent: 1
+ - uid: 32202
+ components:
+ - type: Transform
+ pos: 101.5,170.5
+ parent: 1
+ - uid: 32408
+ components:
+ - type: Transform
+ pos: 114.5,43.5
+ parent: 1
+ - uid: 32558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,160.5
+ parent: 1
+ - uid: 32585
+ components:
+ - type: Transform
+ pos: 126.5,151.5
+ parent: 1
+ - uid: 32586
+ components:
+ - type: Transform
+ pos: 127.5,149.5
+ parent: 1
+ - uid: 32588
+ components:
+ - type: Transform
+ pos: 131.5,149.5
+ parent: 1
+ - uid: 32589
+ components:
+ - type: Transform
+ pos: 56.5,122.5
+ parent: 1
+ - uid: 32590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,156.5
+ parent: 1
+ - uid: 32592
+ components:
+ - type: Transform
+ pos: 101.5,172.5
+ parent: 1
+ - uid: 32593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,165.5
+ parent: 1
+ - uid: 32601
+ components:
+ - type: Transform
+ pos: 126.5,154.5
+ parent: 1
+ - uid: 32935
+ components:
+ - type: Transform
+ pos: 78.5,156.5
+ parent: 1
+ - uid: 32949
+ components:
+ - type: Transform
+ pos: 26.5,81.5
+ parent: 1
+ - uid: 32980
+ components:
+ - type: Transform
+ pos: 145.5,88.5
+ parent: 1
+ - uid: 33274
+ components:
+ - type: Transform
+ pos: 100.5,22.5
+ parent: 1
+ - uid: 33842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,87.5
+ parent: 1
+ - uid: 33981
+ components:
+ - type: Transform
+ pos: 161.5,72.5
+ parent: 1
+ - uid: 34107
+ components:
+ - type: Transform
+ pos: 150.5,78.5
+ parent: 1
+ - uid: 34109
+ components:
+ - type: Transform
+ pos: 148.5,79.5
+ parent: 1
+ - uid: 34112
+ components:
+ - type: Transform
+ pos: 148.5,82.5
+ parent: 1
+ - uid: 34113
+ components:
+ - type: Transform
+ pos: 148.5,83.5
+ parent: 1
+ - uid: 34125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,166.5
+ parent: 1
+ - uid: 34169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,121.5
+ parent: 1
+ - uid: 34192
+ components:
+ - type: Transform
+ pos: 154.5,85.5
+ parent: 1
+ - uid: 34264
+ components:
+ - type: Transform
+ pos: 160.5,62.5
+ parent: 1
+ - uid: 34378
+ components:
+ - type: Transform
+ pos: 142.5,82.5
+ parent: 1
+ - uid: 34504
+ components:
+ - type: Transform
+ pos: 158.5,44.5
+ parent: 1
+ - uid: 34532
+ components:
+ - type: Transform
+ pos: 162.5,45.5
+ parent: 1
+ - uid: 34719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,108.5
+ parent: 1
+ - uid: 34723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,170.5
+ parent: 1
+ - uid: 34753
+ components:
+ - type: Transform
+ pos: 124.5,159.5
+ parent: 1
+ - uid: 34756
+ components:
+ - type: Transform
+ pos: 122.5,159.5
+ parent: 1
+ - uid: 34968
+ components:
+ - type: Transform
+ pos: 150.5,146.5
+ parent: 1
+ - uid: 35127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,167.5
+ parent: 1
+ - uid: 35147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,98.5
+ parent: 1
+ - uid: 35149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,171.5
+ parent: 1
+ - uid: 35155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,96.5
+ parent: 1
+ - uid: 35165
+ components:
+ - type: Transform
+ pos: 45.5,125.5
+ parent: 1
+ - uid: 35167
+ components:
+ - type: Transform
+ pos: 57.5,135.5
+ parent: 1
+ - uid: 35200
+ components:
+ - type: Transform
+ pos: 62.5,158.5
+ parent: 1
+ - uid: 35202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,144.5
+ parent: 1
+ - uid: 35203
+ components:
+ - type: Transform
+ pos: 80.5,157.5
+ parent: 1
+ - uid: 35219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 35256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,90.5
+ parent: 1
+ - uid: 35265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,92.5
+ parent: 1
+ - uid: 35517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,131.5
+ parent: 1
+ - uid: 35570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,142.5
+ parent: 1
+ - uid: 35575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,139.5
+ parent: 1
+ - uid: 35577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,136.5
+ parent: 1
+ - uid: 35579
+ components:
+ - type: Transform
+ pos: 50.5,121.5
+ parent: 1
+ - uid: 35657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,88.5
+ parent: 1
+ - uid: 35658
+ components:
+ - type: Transform
+ pos: 141.5,90.5
+ parent: 1
+ - uid: 35662
+ components:
+ - type: Transform
+ pos: 58.5,149.5
+ parent: 1
+ - uid: 35663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,126.5
+ parent: 1
+ - uid: 35686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,163.5
+ parent: 1
+ - uid: 35718
+ components:
+ - type: Transform
+ pos: 102.5,33.5
+ parent: 1
+ - uid: 35833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,167.5
+ parent: 1
+ - uid: 35835
+ components:
+ - type: Transform
+ pos: 111.5,166.5
+ parent: 1
+ - uid: 35953
+ components:
+ - type: Transform
+ pos: 95.5,167.5
+ parent: 1
+ - uid: 35966
+ components:
+ - type: Transform
+ pos: 57.5,138.5
+ parent: 1
+ - uid: 36116
+ components:
+ - type: Transform
+ pos: 107.5,34.5
+ parent: 1
+ - uid: 36128
+ components:
+ - type: Transform
+ pos: 51.5,123.5
+ parent: 1
+ - uid: 36442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,122.5
+ parent: 1
+ - uid: 37030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,162.5
+ parent: 1
+ - uid: 37133
+ components:
+ - type: Transform
+ pos: 164.5,135.5
+ parent: 1
+ - uid: 37208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,86.5
+ parent: 1
+ - uid: 37218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,78.5
+ parent: 1
+- proto: WardrobeAtmosphericsFilled
+ entities:
+ - uid: 16111
+ components:
+ - type: Transform
+ pos: 77.5,118.5
+ parent: 1
+- proto: WardrobeBotanistFilled
+ entities:
+ - uid: 26460
+ components:
+ - type: Transform
+ pos: 98.5,94.5
+ parent: 1
+- proto: WardrobeCargoFilled
+ entities:
+ - uid: 3699
+ components:
+ - type: Transform
+ pos: 154.5,100.5
+ parent: 1
+ - uid: 19540
+ components:
+ - type: Transform
+ pos: 156.5,100.5
+ parent: 1
+ - uid: 34127
+ components:
+ - type: Transform
+ pos: 155.5,100.5
+ parent: 1
+- proto: WardrobeChapelFilled
+ entities:
+ - uid: 26938
+ components:
+ - type: Transform
+ pos: 71.5,69.5
+ parent: 1
+- proto: WardrobeChemistryFilled
+ entities:
+ - uid: 5695
+ components:
+ - type: Transform
+ pos: 89.5,97.5
+ parent: 1
+- proto: WardrobeEngineeringFilled
+ entities:
+ - uid: 16080
+ components:
+ - type: Transform
+ pos: 136.5,131.5
+ parent: 1
+- proto: WardrobeMedicalDoctorFilled
+ entities:
+ - uid: 27622
+ components:
+ - type: Transform
+ pos: 70.5,83.5
+ parent: 1
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 22710
+ components:
+ - type: Transform
+ pos: 122.5,67.5
+ parent: 1
+ - uid: 22711
+ components:
+ - type: Transform
+ pos: 122.5,70.5
+ parent: 1
+ - uid: 22712
+ components:
+ - type: Transform
+ pos: 122.5,73.5
+ parent: 1
+ - uid: 23029
+ components:
+ - type: Transform
+ pos: 136.5,45.5
+ parent: 1
+ - uid: 23030
+ components:
+ - type: Transform
+ pos: 136.5,48.5
+ parent: 1
+ - uid: 23031
+ components:
+ - type: Transform
+ pos: 136.5,51.5
+ parent: 1
+ - uid: 25924
+ components:
+ - type: Transform
+ pos: 122.5,62.5
+ parent: 1
+- proto: WardrobeRoboticsFilled
+ entities:
+ - uid: 20958
+ components:
+ - type: Transform
+ pos: 59.5,97.5
+ parent: 1
+- proto: WardrobeSalvageFilled
+ entities:
+ - uid: 19481
+ components:
+ - type: Transform
+ pos: 144.5,91.5
+ parent: 1
+- proto: WardrobeScienceFilled
+ entities:
+ - uid: 20832
+ components:
+ - type: Transform
+ pos: 24.5,105.5
+ parent: 1
+- proto: WardrobeSecurityFilled
+ entities:
+ - uid: 22665
+ components:
+ - type: Transform
+ pos: 153.5,49.5
+ parent: 1
+- proto: WarningCO2
+ entities:
+ - uid: 30669
+ components:
+ - type: Transform
+ pos: 62.5,143.5
+ parent: 1
+- proto: WarningN2
+ entities:
+ - uid: 30627
+ components:
+ - type: Transform
+ pos: 63.5,131.5
+ parent: 1
+- proto: WarningO2
+ entities:
+ - uid: 30686
+ components:
+ - type: Transform
+ pos: 64.5,127.5
+ parent: 1
+- proto: WarningPlasma
+ entities:
+ - uid: 30628
+ components:
+ - type: Transform
+ pos: 61.5,139.5
+ parent: 1
+- proto: WarningTritium
+ entities:
+ - uid: 34029
+ components:
+ - type: Transform
+ pos: 63.5,147.5
+ parent: 1
+- proto: WarningWaste
+ entities:
+ - uid: 30678
+ components:
+ - type: Transform
+ pos: 62.5,135.5
+ parent: 1
+ - uid: 32583
+ components:
+ - type: Transform
+ pos: 64.5,151.5
+ parent: 1
+- proto: WaterCooler
+ entities:
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 50.5,51.5
+ parent: 1
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: 131.5,94.5
+ parent: 1
+ - uid: 19414
+ components:
+ - type: Transform
+ pos: 153.5,102.5
+ parent: 1
+ - uid: 19868
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 20820
+ components:
+ - type: Transform
+ pos: 28.5,99.5
+ parent: 1
+ - uid: 25549
+ components:
+ - type: Transform
+ pos: 102.5,48.5
+ parent: 1
+ - uid: 26665
+ components:
+ - type: Transform
+ pos: 97.5,90.5
+ parent: 1
+ - uid: 27033
+ components:
+ - type: Transform
+ pos: 97.5,48.5
+ parent: 1
+ - uid: 27065
+ components:
+ - type: Transform
+ pos: 73.5,67.5
+ parent: 1
+ - uid: 27258
+ components:
+ - type: Transform
+ pos: 144.5,53.5
+ parent: 1
+ - uid: 35188
+ components:
+ - type: Transform
+ pos: 120.5,167.5
+ parent: 1
+ - uid: 35408
+ components:
+ - type: Transform
+ pos: 100.5,172.5
+ parent: 1
+ - uid: 36127
+ components:
+ - type: Transform
+ pos: 31.5,123.5
+ parent: 1
+- proto: WaterTank
+ entities:
+ - uid: 18387
+ components:
+ - type: Transform
+ pos: 139.5,94.5
+ parent: 1
+- proto: WaterTankFull
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 97.5,62.5
+ parent: 1
+ - uid: 12017
+ components:
+ - type: Transform
+ pos: 95.5,80.5
+ parent: 1
+ - uid: 12398
+ components:
+ - type: Transform
+ pos: 88.5,48.5
+ parent: 1
+ - uid: 13648
+ components:
+ - type: Transform
+ pos: 66.5,67.5
+ parent: 1
+ - uid: 18309
+ components:
+ - type: Transform
+ pos: 63.5,19.5
+ parent: 1
+ - uid: 19367
+ components:
+ - type: Transform
+ pos: 37.5,97.5
+ parent: 1
+ - uid: 25125
+ components:
+ - type: Transform
+ pos: 160.5,112.5
+ parent: 1
+ - uid: 25314
+ components:
+ - type: Transform
+ pos: 86.5,37.5
+ parent: 1
+ - uid: 25930
+ components:
+ - type: Transform
+ pos: 64.5,44.5
+ parent: 1
+ - uid: 28213
+ components:
+ - type: Transform
+ pos: 64.5,116.5
+ parent: 1
+ - uid: 29077
+ components:
+ - type: Transform
+ pos: 121.5,93.5
+ parent: 1
+ - uid: 29344
+ components:
+ - type: Transform
+ pos: 114.5,44.5
+ parent: 1
+ - uid: 32023
+ components:
+ - type: Transform
+ pos: 146.5,130.5
+ parent: 1
+ - uid: 34023
+ components:
+ - type: Transform
+ pos: 108.5,33.5
+ parent: 1
+ - uid: 34660
+ components:
+ - type: Transform
+ pos: 157.5,49.5
+ parent: 1
+ - uid: 35168
+ components:
+ - type: Transform
+ pos: 115.5,167.5
+ parent: 1
+ - uid: 35434
+ components:
+ - type: Transform
+ pos: 93.5,165.5
+ parent: 1
+ - uid: 35695
+ components:
+ - type: Transform
+ pos: 30.5,84.5
+ parent: 1
+ - uid: 35950
+ components:
+ - type: Transform
+ pos: 153.5,145.5
+ parent: 1
+ - uid: 36136
+ components:
+ - type: Transform
+ pos: 23.5,118.5
+ parent: 1
+ - uid: 36169
+ components:
+ - type: Transform
+ pos: 52.5,112.5
+ parent: 1
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 26459
+ components:
+ - type: Transform
+ pos: 101.5,96.5
+ parent: 1
+ - uid: 29592
+ components:
+ - type: Transform
+ pos: 159.5,122.5
+ parent: 1
+- proto: WaterVaporCanister
+ entities:
+ - uid: 4668
+ components:
+ - type: Transform
+ pos: 124.5,85.5
+ parent: 1
+ - uid: 15971
+ components:
+ - type: Transform
+ pos: 85.5,119.5
+ parent: 1
+ - uid: 20491
+ components:
+ - type: Transform
+ pos: 48.5,101.5
+ parent: 1
+ - uid: 23448
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 40.5,53.5
+ parent: 1
+ - uid: 5912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,153.5
+ parent: 1
+ - uid: 22695
+ components:
+ - type: Transform
+ pos: 151.5,66.5
+ parent: 1
+ - uid: 22725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,71.5
+ parent: 1
+ - uid: 22726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,56.5
+ parent: 1
+ - uid: 22728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,51.5
+ parent: 1
+ - uid: 22737
+ components:
+ - type: Transform
+ pos: 135.5,62.5
+ parent: 1
+ - uid: 22741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,66.5
+ parent: 1
+ - uid: 22963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,67.5
+ parent: 1
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 24427
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+ - uid: 32414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,112.5
+ parent: 1
+ - uid: 37365
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+- proto: WeaponDisabler
+ entities:
+ - uid: 22693
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.4364,58.18435
+ parent: 1
+- proto: WeaponDisablerPractice
+ entities:
+ - uid: 22694
+ components:
+ - type: Transform
+ pos: 154.4635,66.52208
+ parent: 1
+- proto: WeaponLaserCarbinePractice
+ entities:
+ - uid: 5863
+ components:
+ - type: Transform
+ rot: -131.94689145077115 rad
+ pos: 151.8403,69.57161
+ parent: 1
+- proto: WeaponRifleFoam
+ entities:
+ - uid: 26738
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 104.70838,64.387856
+ parent: 1
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 12957
+ components:
+ - type: Transform
+ pos: 47.5,17.5
+ parent: 1
+ - uid: 12959
+ components:
+ - type: Transform
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 12960
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 12961
+ components:
+ - type: Transform
+ pos: 47.5,31.5
+ parent: 1
+ - uid: 12962
+ components:
+ - type: Transform
+ pos: 43.5,28.5
+ parent: 1
+ - uid: 12963
+ components:
+ - type: Transform
+ pos: 43.5,20.5
+ parent: 1
+ - uid: 23940
+ components:
+ - type: Transform
+ pos: 50.5,45.5
+ parent: 1
+ - uid: 33543
+ components:
+ - type: Transform
+ pos: 123.5,31.5
+ parent: 1
+- proto: WeaponWaterPistol
+ entities:
+ - uid: 27394
+ components:
+ - type: Transform
+ pos: 124.47113,86.63725
+ parent: 1
+- proto: WeedSpray
+ entities:
+ - uid: 2602
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 98.7172,96.58852
+ parent: 1
+- proto: Welder
+ entities:
+ - uid: 20955
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 63.384483,91.585014
+ parent: 1
+ - uid: 35865
+ components:
+ - type: Transform
+ pos: 52.573807,135.59659
+ parent: 1
+- proto: WelderIndustrial
+ entities:
+ - uid: 16205
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 113.48779,162.48056
+ parent: 1
+- proto: WelderIndustrialAdvanced
+ entities:
+ - uid: 16204
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 68.427216,123.49962
+ parent: 1
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 60.5,121.5
+ parent: 1
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 92.5,99.5
+ parent: 1
+ - uid: 6564
+ components:
+ - type: Transform
+ pos: 86.5,82.5
+ parent: 1
+ - uid: 8010
+ components:
+ - type: Transform
+ pos: 70.5,47.5
+ parent: 1
+ - uid: 12574
+ components:
+ - type: Transform
+ pos: 158.5,52.5
+ parent: 1
+ - uid: 13621
+ components:
+ - type: Transform
+ pos: 156.5,145.5
+ parent: 1
+ - uid: 13679
+ components:
+ - type: Transform
+ pos: 60.5,67.5
+ parent: 1
+ - uid: 16091
+ components:
+ - type: Transform
+ pos: 120.5,145.5
+ parent: 1
+ - uid: 16117
+ components:
+ - type: Transform
+ pos: 120.5,129.5
+ parent: 1
+ - uid: 16119
+ components:
+ - type: Transform
+ pos: 104.5,158.5
+ parent: 1
+ - uid: 16120
+ components:
+ - type: Transform
+ pos: 114.5,152.5
+ parent: 1
+ - uid: 16409
+ components:
+ - type: Transform
+ pos: 98.5,122.5
+ parent: 1
+ - uid: 16590
+ components:
+ - type: Transform
+ pos: 96.5,127.5
+ parent: 1
+ - uid: 18386
+ components:
+ - type: Transform
+ pos: 139.5,93.5
+ parent: 1
+ - uid: 19050
+ components:
+ - type: Transform
+ pos: 20.5,76.5
+ parent: 1
+ - uid: 20953
+ components:
+ - type: Transform
+ pos: 59.5,92.5
+ parent: 1
+ - uid: 27220
+ components:
+ - type: Transform
+ pos: 86.5,60.5
+ parent: 1
+ - uid: 30451
+ components:
+ - type: Transform
+ pos: 139.5,125.5
+ parent: 1
+ - uid: 33502
+ components:
+ - type: Transform
+ pos: 116.5,19.5
+ parent: 1
+ - uid: 33895
+ components:
+ - type: Transform
+ pos: 125.5,92.5
+ parent: 1
+ - uid: 34019
+ components:
+ - type: Transform
+ pos: 63.5,25.5
+ parent: 1
+ - uid: 35441
+ components:
+ - type: Transform
+ pos: 91.5,125.5
+ parent: 1
+ - uid: 35944
+ components:
+ - type: Transform
+ pos: 122.5,43.5
+ parent: 1
+ - uid: 36106
+ components:
+ - type: Transform
+ pos: 95.5,34.5
+ parent: 1
+ - uid: 36137
+ components:
+ - type: Transform
+ pos: 23.5,117.5
+ parent: 1
+ - uid: 36168
+ components:
+ - type: Transform
+ pos: 53.5,112.5
+ parent: 1
+ - uid: 36447
+ components:
+ - type: Transform
+ pos: 29.5,96.5
+ parent: 1
+ - uid: 37034
+ components:
+ - type: Transform
+ pos: 95.5,168.5
+ parent: 1
+- proto: WetFloorSign
+ entities:
+ - uid: 25917
+ components:
+ - type: Transform
+ pos: 159.68712,121.791306
+ parent: 1
+ - uid: 26881
+ components:
+ - type: Transform
+ pos: 159.34763,121.887054
+ parent: 1
+ - uid: 29582
+ components:
+ - type: Transform
+ pos: 159.41005,121.415115
+ parent: 1
+- proto: Windoor
+ entities:
+ - uid: 765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 4075
+ components:
+ - type: MetaData
+ name: white cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,52.5
+ parent: 1
+ - uid: 4077
+ components:
+ - type: MetaData
+ name: grey cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,49.5
+ parent: 1
+ - uid: 4079
+ components:
+ - type: MetaData
+ name: black cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,46.5
+ parent: 1
+ - uid: 6487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 10330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,142.5
+ parent: 1
+ - uid: 10333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,142.5
+ parent: 1
+ - uid: 13668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13667:
+ - DoorStatus: Close
+ - uid: 20914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 22637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 22638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 22639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 22640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 23405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 25515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 25752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 26610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,91.5
+ parent: 1
+ - uid: 26618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,93.5
+ parent: 1
+ - uid: 26623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,90.5
+ parent: 1
+ - uid: 26624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,94.5
+ parent: 1
+ - uid: 29099
+ components:
+ - type: Transform
+ pos: 66.5,69.5
+ parent: 1
+ - uid: 30454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 30568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 30722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,80.5
+ parent: 1
+ - uid: 30850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 33281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,23.5
+ parent: 1
+ - uid: 34531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,44.5
+ parent: 1
+ - uid: 34635
+ components:
+ - type: Transform
+ pos: 161.5,63.5
+ parent: 1
+ - uid: 35331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,159.5
+ parent: 1
+ - uid: 35332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,159.5
+ parent: 1
+ - uid: 35333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,159.5
+ parent: 1
+ - uid: 35334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,159.5
+ parent: 1
+ - uid: 35995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+- proto: WindoorBarLocked
+ entities:
+ - uid: 35136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,171.5
+ parent: 1
+- proto: WindoorCargoLocked
+ entities:
+ - uid: 19314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,102.5
+ parent: 1
+ - uid: 19316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,103.5
+ parent: 1
+ - uid: 19318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+- proto: WindoorHydroponicsLocked
+ entities:
+ - uid: 26468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 26469
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 26470
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 27852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,97.5
+ parent: 1
+- proto: WindoorKitchenLocked
+ entities:
+ - uid: 4683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 20754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 26567
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 26568
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 35549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,99.5
+ parent: 1
+- proto: WindoorSecureArmoryLocked
+ entities:
+ - uid: 3541
+ components:
+ - type: Transform
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 3542
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 12420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,61.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26866:
+ - DoorStatus: DoorBolt
+ - uid: 22782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 22789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,63.5
+ parent: 1
+- proto: WindoorSecureAtmosphericsLocked
+ entities:
+ - uid: 16015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 16016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,115.5
+ parent: 1
+- proto: WindoorSecureChemistryLocked
+ entities:
+ - uid: 5477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 5937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 18184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,107.5
+ parent: 1
+ - uid: 18185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,108.5
+ parent: 1
+ - uid: 18186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+- proto: WindoorSecureCommandLocked
+ entities:
+ - uid: 1191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,41.5
+ parent: 1
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 16081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 16082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,122.5
+ parent: 1
+- proto: WindoorSecureHeadOfPersonnelLocked
+ entities:
+ - uid: 13667
+ components:
+ - type: Transform
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13668:
+ - DoorStatus: Close
+- proto: WindoorSecureJanitorLocked
+ entities:
+ - uid: 30036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,119.5
+ parent: 1
+ - uid: 30079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,119.5
+ parent: 1
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 17734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 17735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,104.5
+ parent: 1
+ - uid: 28727
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - uid: 28728
+ components:
+ - type: Transform
+ pos: 117.5,52.5
+ parent: 1
+ - uid: 32120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+- proto: WindoorSecureSalvageLocked
+ entities:
+ - uid: 21678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,96.5
+ parent: 1
+ - uid: 23245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,96.5
+ parent: 1
+- proto: WindoorSecureScienceLocked
+ entities:
+ - uid: 7810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 20803
+ components:
+ - type: Transform
+ pos: 38.5,111.5
+ parent: 1
+ - uid: 20804
+ components:
+ - type: Transform
+ pos: 39.5,111.5
+ parent: 1
+ - uid: 20805
+ components:
+ - type: Transform
+ pos: 40.5,111.5
+ parent: 1
+ - uid: 20806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20807:
+ - DoorStatus: DoorBolt
+ - uid: 20807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20806:
+ - DoorStatus: DoorBolt
+ - uid: 20810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20813:
+ - DoorStatus: DoorBolt
+ - uid: 20811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20812:
+ - DoorStatus: DoorBolt
+ - uid: 20812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20811:
+ - DoorStatus: DoorBolt
+ - uid: 20813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20810:
+ - DoorStatus: DoorBolt
+ - uid: 20856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 20857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,92.5
+ parent: 1
+ - uid: 24418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,89.5
+ parent: 1
+ - uid: 29092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,91.5
+ parent: 1
+ - uid: 29093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,102.5
+ parent: 1
+ - uid: 29123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,101.5
+ parent: 1
+- proto: WindoorSecureSecurityLawyerLocked
+ entities:
+ - uid: 2611
+ components:
+ - type: Transform
+ pos: 99.5,42.5
+ parent: 1
+ - uid: 3064
+ components:
+ - type: Transform
+ pos: 90.5,42.5
+ parent: 1
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 4068
+ components:
+ - type: Transform
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 4070
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 5236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,153.5
+ parent: 1
+ - uid: 19739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,114.5
+ parent: 1
+ - uid: 22833
+ components:
+ - type: MetaData
+ name: cell 1 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,74.5
+ parent: 1
+ - uid: 22834
+ components:
+ - type: MetaData
+ name: cell 2 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,71.5
+ parent: 1
+ - uid: 22835
+ components:
+ - type: MetaData
+ name: cell 3 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,68.5
+ parent: 1
+ - uid: 22836
+ components:
+ - type: MetaData
+ name: cell 4 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 22841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,74.5
+ parent: 1
+ - uid: 22842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 25536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 26866
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12420:
+ - DoorStatus: DoorBolt
+- proto: Window
+ entities:
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 48.5,115.5
+ parent: 1
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 47.5,115.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 39.5,98.5
+ parent: 1
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 46.5,116.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 46.5,117.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 40.5,98.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 41.5,98.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 41.5,97.5
+ parent: 1
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 41.5,96.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 50.5,52.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 40.5,116.5
+ parent: 1
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 40.5,117.5
+ parent: 1
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 39.5,115.5
+ parent: 1
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 38.5,115.5
+ parent: 1
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 54.5,93.5
+ parent: 1
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 58.5,93.5
+ parent: 1
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 58.5,94.5
+ parent: 1
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 50.5,89.5
+ parent: 1
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 54.5,90.5
+ parent: 1
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 54.5,91.5
+ parent: 1
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 54.5,92.5
+ parent: 1
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 48.5,94.5
+ parent: 1
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 50.5,90.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 50.5,93.5
+ parent: 1
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 150.5,140.5
+ parent: 1
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 133.5,79.5
+ parent: 1
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 145.5,126.5
+ parent: 1
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 1
+ - uid: 2088
+ components:
+ - type: Transform
+ pos: 69.5,52.5
+ parent: 1
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 69.5,55.5
+ parent: 1
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 69.5,58.5
+ parent: 1
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 69.5,57.5
+ parent: 1
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 69.5,54.5
+ parent: 1
+ - uid: 2185
+ components:
+ - type: Transform
+ pos: 121.5,30.5
+ parent: 1
+ - uid: 2322
+ components:
+ - type: Transform
+ pos: 69.5,60.5
+ parent: 1
+ - uid: 2346
+ components:
+ - type: Transform
+ pos: 69.5,53.5
+ parent: 1
+ - uid: 2348
+ components:
+ - type: Transform
+ pos: 69.5,59.5
+ parent: 1
+ - uid: 2564
+ components:
+ - type: Transform
+ pos: 76.5,89.5
+ parent: 1
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: 76.5,88.5
+ parent: 1
+ - uid: 2595
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 2597
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 2639
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - uid: 2640
+ components:
+ - type: Transform
+ pos: 74.5,88.5
+ parent: 1
+ - uid: 2671
+ components:
+ - type: Transform
+ pos: 73.5,89.5
+ parent: 1
+ - uid: 2672
+ components:
+ - type: Transform
+ pos: 73.5,88.5
+ parent: 1
+ - uid: 2673
+ components:
+ - type: Transform
+ pos: 79.5,85.5
+ parent: 1
+ - uid: 2674
+ components:
+ - type: Transform
+ pos: 80.5,85.5
+ parent: 1
+ - uid: 2676
+ components:
+ - type: Transform
+ pos: 81.5,85.5
+ parent: 1
+ - uid: 3130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,60.5
+ parent: 1
+ - uid: 3153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,158.5
+ parent: 1
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: 63.5,61.5
+ parent: 1
+ - uid: 4650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,52.5
+ parent: 1
+ - uid: 4749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,52.5
+ parent: 1
+ - uid: 4766
+ components:
+ - type: Transform
+ pos: 141.5,97.5
+ parent: 1
+ - uid: 4831
+ components:
+ - type: Transform
+ pos: 79.5,66.5
+ parent: 1
+ - uid: 4878
+ components:
+ - type: Transform
+ pos: 80.5,66.5
+ parent: 1
+ - uid: 4972
+ components:
+ - type: Transform
+ pos: 81.5,66.5
+ parent: 1
+ - uid: 4974
+ components:
+ - type: Transform
+ pos: 82.5,66.5
+ parent: 1
+ - uid: 4975
+ components:
+ - type: Transform
+ pos: 83.5,66.5
+ parent: 1
+ - uid: 4990
+ components:
+ - type: Transform
+ pos: 142.5,151.5
+ parent: 1
+ - uid: 5045
+ components:
+ - type: Transform
+ pos: 87.5,62.5
+ parent: 1
+ - uid: 5102
+ components:
+ - type: Transform
+ pos: 147.5,122.5
+ parent: 1
+ - uid: 5110
+ components:
+ - type: Transform
+ pos: 121.5,36.5
+ parent: 1
+ - uid: 5111
+ components:
+ - type: Transform
+ pos: 121.5,37.5
+ parent: 1
+ - uid: 5132
+ components:
+ - type: Transform
+ pos: 147.5,121.5
+ parent: 1
+ - uid: 5143
+ components:
+ - type: Transform
+ pos: 84.5,66.5
+ parent: 1
+ - uid: 5146
+ components:
+ - type: Transform
+ pos: 146.5,120.5
+ parent: 1
+ - uid: 5163
+ components:
+ - type: Transform
+ pos: 147.5,120.5
+ parent: 1
+ - uid: 5166
+ components:
+ - type: Transform
+ pos: 85.5,68.5
+ parent: 1
+ - uid: 5204
+ components:
+ - type: Transform
+ pos: 85.5,67.5
+ parent: 1
+ - uid: 5207
+ components:
+ - type: Transform
+ pos: 85.5,66.5
+ parent: 1
+ - uid: 5220
+ components:
+ - type: Transform
+ pos: 91.5,66.5
+ parent: 1
+ - uid: 5331
+ components:
+ - type: Transform
+ pos: 90.5,66.5
+ parent: 1
+ - uid: 5435
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 1
+ - uid: 5436
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 1
+ - uid: 5440
+ components:
+ - type: Transform
+ pos: 92.5,62.5
+ parent: 1
+ - uid: 5441
+ components:
+ - type: Transform
+ pos: 93.5,62.5
+ parent: 1
+ - uid: 5493
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 1
+ - uid: 5496
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 1
+ - uid: 5498
+ components:
+ - type: Transform
+ pos: 37.5,60.5
+ parent: 1
+ - uid: 5504
+ components:
+ - type: Transform
+ pos: 105.5,85.5
+ parent: 1
+ - uid: 5569
+ components:
+ - type: Transform
+ pos: 37.5,59.5
+ parent: 1
+ - uid: 5574
+ components:
+ - type: Transform
+ pos: 37.5,55.5
+ parent: 1
+ - uid: 5575
+ components:
+ - type: Transform
+ pos: 37.5,61.5
+ parent: 1
+ - uid: 5589
+ components:
+ - type: Transform
+ pos: 103.5,83.5
+ parent: 1
+ - uid: 5626
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 1
+ - uid: 5629
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 1
+ - uid: 5668
+ components:
+ - type: Transform
+ pos: 60.5,62.5
+ parent: 1
+ - uid: 5707
+ components:
+ - type: Transform
+ pos: 71.5,111.5
+ parent: 1
+ - uid: 5714
+ components:
+ - type: Transform
+ pos: 69.5,109.5
+ parent: 1
+ - uid: 5752
+ components:
+ - type: Transform
+ pos: 70.5,111.5
+ parent: 1
+ - uid: 5753
+ components:
+ - type: Transform
+ pos: 73.5,111.5
+ parent: 1
+ - uid: 5754
+ components:
+ - type: Transform
+ pos: 109.5,122.5
+ parent: 1
+ - uid: 5772
+ components:
+ - type: Transform
+ pos: 107.5,122.5
+ parent: 1
+ - uid: 5774
+ components:
+ - type: Transform
+ pos: 108.5,120.5
+ parent: 1
+ - uid: 5777
+ components:
+ - type: Transform
+ pos: 110.5,120.5
+ parent: 1
+ - uid: 5784
+ components:
+ - type: Transform
+ pos: 106.5,122.5
+ parent: 1
+ - uid: 5802
+ components:
+ - type: Transform
+ pos: 106.5,121.5
+ parent: 1
+ - uid: 5811
+ components:
+ - type: Transform
+ pos: 35.5,54.5
+ parent: 1
+ - uid: 5814
+ components:
+ - type: Transform
+ pos: 36.5,61.5
+ parent: 1
+ - uid: 5840
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 1
+ - uid: 5841
+ components:
+ - type: Transform
+ pos: 35.5,61.5
+ parent: 1
+ - uid: 5842
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 1
+ - uid: 5843
+ components:
+ - type: Transform
+ pos: 35.5,59.5
+ parent: 1
+ - uid: 5844
+ components:
+ - type: Transform
+ pos: 35.5,55.5
+ parent: 1
+ - uid: 5849
+ components:
+ - type: Transform
+ pos: 59.5,62.5
+ parent: 1
+ - uid: 5853
+ components:
+ - type: Transform
+ pos: 58.5,62.5
+ parent: 1
+ - uid: 5854
+ components:
+ - type: Transform
+ pos: 56.5,62.5
+ parent: 1
+ - uid: 5856
+ components:
+ - type: Transform
+ pos: 57.5,62.5
+ parent: 1
+ - uid: 5869
+ components:
+ - type: Transform
+ pos: 73.5,109.5
+ parent: 1
+ - uid: 5881
+ components:
+ - type: Transform
+ pos: 70.5,109.5
+ parent: 1
+ - uid: 5883
+ components:
+ - type: Transform
+ pos: 75.5,109.5
+ parent: 1
+ - uid: 5922
+ components:
+ - type: Transform
+ pos: 76.5,111.5
+ parent: 1
+ - uid: 5932
+ components:
+ - type: Transform
+ pos: 71.5,109.5
+ parent: 1
+ - uid: 5934
+ components:
+ - type: Transform
+ pos: 72.5,109.5
+ parent: 1
+ - uid: 5955
+ components:
+ - type: Transform
+ pos: 72.5,111.5
+ parent: 1
+ - uid: 5956
+ components:
+ - type: Transform
+ pos: 75.5,111.5
+ parent: 1
+ - uid: 5968
+ components:
+ - type: Transform
+ pos: 69.5,111.5
+ parent: 1
+ - uid: 5970
+ components:
+ - type: Transform
+ pos: 108.5,122.5
+ parent: 1
+ - uid: 6012
+ components:
+ - type: Transform
+ pos: 106.5,120.5
+ parent: 1
+ - uid: 6014
+ components:
+ - type: Transform
+ pos: 110.5,122.5
+ parent: 1
+ - uid: 6016
+ components:
+ - type: Transform
+ pos: 109.5,120.5
+ parent: 1
+ - uid: 6018
+ components:
+ - type: Transform
+ pos: 110.5,121.5
+ parent: 1
+ - uid: 6019
+ components:
+ - type: Transform
+ pos: 107.5,120.5
+ parent: 1
+ - uid: 6138
+ components:
+ - type: Transform
+ pos: 103.5,82.5
+ parent: 1
+ - uid: 6139
+ components:
+ - type: Transform
+ pos: 103.5,81.5
+ parent: 1
+ - uid: 6140
+ components:
+ - type: Transform
+ pos: 103.5,80.5
+ parent: 1
+ - uid: 6181
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 6182
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 6233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,48.5
+ parent: 1
+ - uid: 6288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,51.5
+ parent: 1
+ - uid: 6381
+ components:
+ - type: Transform
+ pos: 108.5,79.5
+ parent: 1
+ - uid: 6382
+ components:
+ - type: Transform
+ pos: 103.5,85.5
+ parent: 1
+ - uid: 6383
+ components:
+ - type: Transform
+ pos: 103.5,79.5
+ parent: 1
+ - uid: 6384
+ components:
+ - type: Transform
+ pos: 106.5,85.5
+ parent: 1
+ - uid: 6385
+ components:
+ - type: Transform
+ pos: 104.5,79.5
+ parent: 1
+ - uid: 6386
+ components:
+ - type: Transform
+ pos: 106.5,94.5
+ parent: 1
+ - uid: 6387
+ components:
+ - type: Transform
+ pos: 106.5,93.5
+ parent: 1
+ - uid: 6415
+ components:
+ - type: Transform
+ pos: 159.5,82.5
+ parent: 1
+ - uid: 6426
+ components:
+ - type: Transform
+ pos: 106.5,92.5
+ parent: 1
+ - uid: 6452
+ components:
+ - type: Transform
+ pos: 158.5,82.5
+ parent: 1
+ - uid: 6453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 6454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 6468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,45.5
+ parent: 1
+ - uid: 6471
+ components:
+ - type: Transform
+ pos: 106.5,91.5
+ parent: 1
+ - uid: 6474
+ components:
+ - type: Transform
+ pos: 106.5,90.5
+ parent: 1
+ - uid: 6503
+ components:
+ - type: Transform
+ pos: 157.5,82.5
+ parent: 1
+ - uid: 6504
+ components:
+ - type: Transform
+ pos: 156.5,82.5
+ parent: 1
+ - uid: 6788
+ components:
+ - type: Transform
+ pos: 23.5,111.5
+ parent: 1
+ - uid: 6933
+ components:
+ - type: Transform
+ pos: 161.5,118.5
+ parent: 1
+ - uid: 7051
+ components:
+ - type: Transform
+ pos: 112.5,52.5
+ parent: 1
+ - uid: 7057
+ components:
+ - type: Transform
+ pos: 112.5,51.5
+ parent: 1
+ - uid: 7095
+ components:
+ - type: Transform
+ pos: 81.5,52.5
+ parent: 1
+ - uid: 7153
+ components:
+ - type: Transform
+ pos: 46.5,52.5
+ parent: 1
+ - uid: 7240
+ components:
+ - type: Transform
+ pos: 107.5,85.5
+ parent: 1
+ - uid: 7242
+ components:
+ - type: Transform
+ pos: 105.5,79.5
+ parent: 1
+ - uid: 7243
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 7253
+ components:
+ - type: Transform
+ pos: 76.5,109.5
+ parent: 1
+ - uid: 7255
+ components:
+ - type: Transform
+ pos: 77.5,109.5
+ parent: 1
+ - uid: 7256
+ components:
+ - type: Transform
+ pos: 78.5,111.5
+ parent: 1
+ - uid: 7257
+ components:
+ - type: Transform
+ pos: 77.5,111.5
+ parent: 1
+ - uid: 7258
+ components:
+ - type: Transform
+ pos: 78.5,109.5
+ parent: 1
+ - uid: 7260
+ components:
+ - type: Transform
+ pos: 79.5,111.5
+ parent: 1
+ - uid: 7262
+ components:
+ - type: Transform
+ pos: 79.5,109.5
+ parent: 1
+ - uid: 7469
+ components:
+ - type: Transform
+ pos: 81.5,53.5
+ parent: 1
+ - uid: 7474
+ components:
+ - type: Transform
+ pos: 152.5,54.5
+ parent: 1
+ - uid: 7560
+ components:
+ - type: Transform
+ pos: 107.5,90.5
+ parent: 1
+ - uid: 7568
+ components:
+ - type: Transform
+ pos: 107.5,89.5
+ parent: 1
+ - uid: 7585
+ components:
+ - type: Transform
+ pos: 108.5,85.5
+ parent: 1
+ - uid: 7624
+ components:
+ - type: Transform
+ pos: 106.5,79.5
+ parent: 1
+ - uid: 7641
+ components:
+ - type: Transform
+ pos: 108.5,89.5
+ parent: 1
+ - uid: 7648
+ components:
+ - type: Transform
+ pos: 109.5,85.5
+ parent: 1
+ - uid: 7868
+ components:
+ - type: Transform
+ pos: 107.5,79.5
+ parent: 1
+ - uid: 7879
+ components:
+ - type: Transform
+ pos: 109.5,89.5
+ parent: 1
+ - uid: 7881
+ components:
+ - type: Transform
+ pos: 104.5,85.5
+ parent: 1
+ - uid: 7900
+ components:
+ - type: Transform
+ pos: 109.5,84.5
+ parent: 1
+ - uid: 7901
+ components:
+ - type: Transform
+ pos: 109.5,83.5
+ parent: 1
+ - uid: 7904
+ components:
+ - type: Transform
+ pos: 109.5,82.5
+ parent: 1
+ - uid: 7914
+ components:
+ - type: Transform
+ pos: 109.5,81.5
+ parent: 1
+ - uid: 7930
+ components:
+ - type: Transform
+ pos: 109.5,79.5
+ parent: 1
+ - uid: 7931
+ components:
+ - type: Transform
+ pos: 110.5,89.5
+ parent: 1
+ - uid: 7934
+ components:
+ - type: Transform
+ pos: 111.5,89.5
+ parent: 1
+ - uid: 7945
+ components:
+ - type: Transform
+ pos: 112.5,89.5
+ parent: 1
+ - uid: 7981
+ components:
+ - type: Transform
+ pos: 113.5,89.5
+ parent: 1
+ - uid: 7996
+ components:
+ - type: Transform
+ pos: 117.5,79.5
+ parent: 1
+ - uid: 8002
+ components:
+ - type: Transform
+ pos: 81.5,58.5
+ parent: 1
+ - uid: 8003
+ components:
+ - type: Transform
+ pos: 81.5,60.5
+ parent: 1
+ - uid: 8004
+ components:
+ - type: Transform
+ pos: 81.5,59.5
+ parent: 1
+ - uid: 8043
+ components:
+ - type: Transform
+ pos: 120.5,79.5
+ parent: 1
+ - uid: 8063
+ components:
+ - type: Transform
+ pos: 119.5,79.5
+ parent: 1
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: 118.5,79.5
+ parent: 1
+ - uid: 8551
+ components:
+ - type: Transform
+ pos: 155.5,54.5
+ parent: 1
+ - uid: 8663
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 9662
+ components:
+ - type: Transform
+ pos: 35.5,53.5
+ parent: 1
+ - uid: 9664
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 1
+ - uid: 9710
+ components:
+ - type: Transform
+ pos: 121.5,38.5
+ parent: 1
+ - uid: 9845
+ components:
+ - type: Transform
+ pos: 69.5,85.5
+ parent: 1
+ - uid: 10338
+ components:
+ - type: Transform
+ pos: 142.5,149.5
+ parent: 1
+ - uid: 10340
+ components:
+ - type: Transform
+ pos: 146.5,151.5
+ parent: 1
+ - uid: 10795
+ components:
+ - type: Transform
+ pos: 100.5,116.5
+ parent: 1
+ - uid: 10796
+ components:
+ - type: Transform
+ pos: 99.5,116.5
+ parent: 1
+ - uid: 10797
+ components:
+ - type: Transform
+ pos: 98.5,116.5
+ parent: 1
+ - uid: 10800
+ components:
+ - type: Transform
+ pos: 104.5,106.5
+ parent: 1
+ - uid: 10926
+ components:
+ - type: Transform
+ pos: 107.5,116.5
+ parent: 1
+ - uid: 10927
+ components:
+ - type: Transform
+ pos: 110.5,116.5
+ parent: 1
+ - uid: 10928
+ components:
+ - type: Transform
+ pos: 106.5,116.5
+ parent: 1
+ - uid: 10929
+ components:
+ - type: Transform
+ pos: 109.5,116.5
+ parent: 1
+ - uid: 10930
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+ - uid: 10931
+ components:
+ - type: Transform
+ pos: 112.5,106.5
+ parent: 1
+ - uid: 10933
+ components:
+ - type: Transform
+ pos: 116.5,116.5
+ parent: 1
+ - uid: 11028
+ components:
+ - type: Transform
+ pos: 117.5,116.5
+ parent: 1
+ - uid: 11042
+ components:
+ - type: Transform
+ pos: 118.5,116.5
+ parent: 1
+ - uid: 11337
+ components:
+ - type: Transform
+ pos: 107.5,23.5
+ parent: 1
+ - uid: 12512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,121.5
+ parent: 1
+ - uid: 13584
+ components:
+ - type: Transform
+ pos: 32.5,73.5
+ parent: 1
+ - uid: 13635
+ components:
+ - type: Transform
+ pos: 134.5,79.5
+ parent: 1
+ - uid: 13806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 14478
+ components:
+ - type: Transform
+ pos: 130.5,106.5
+ parent: 1
+ - uid: 14479
+ components:
+ - type: Transform
+ pos: 130.5,105.5
+ parent: 1
+ - uid: 14480
+ components:
+ - type: Transform
+ pos: 130.5,104.5
+ parent: 1
+ - uid: 14482
+ components:
+ - type: Transform
+ pos: 130.5,100.5
+ parent: 1
+ - uid: 14483
+ components:
+ - type: Transform
+ pos: 130.5,101.5
+ parent: 1
+ - uid: 14484
+ components:
+ - type: Transform
+ pos: 130.5,102.5
+ parent: 1
+ - uid: 15018
+ components:
+ - type: Transform
+ pos: 124.5,132.5
+ parent: 1
+ - uid: 15020
+ components:
+ - type: Transform
+ pos: 124.5,133.5
+ parent: 1
+ - uid: 15021
+ components:
+ - type: Transform
+ pos: 124.5,134.5
+ parent: 1
+ - uid: 15405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 15682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 16121
+ components:
+ - type: Transform
+ pos: 119.5,112.5
+ parent: 1
+ - uid: 16410
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 16455
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+ - uid: 17012
+ components:
+ - type: Transform
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 17014
+ components:
+ - type: Transform
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 17015
+ components:
+ - type: Transform
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: 44.5,123.5
+ parent: 1
+ - uid: 18715
+ components:
+ - type: Transform
+ pos: 23.5,93.5
+ parent: 1
+ - uid: 18894
+ components:
+ - type: Transform
+ pos: 135.5,79.5
+ parent: 1
+ - uid: 19109
+ components:
+ - type: Transform
+ pos: 103.5,49.5
+ parent: 1
+ - uid: 19172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,158.5
+ parent: 1
+ - uid: 19461
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 20419
+ components:
+ - type: Transform
+ pos: 49.5,94.5
+ parent: 1
+ - uid: 20420
+ components:
+ - type: Transform
+ pos: 50.5,94.5
+ parent: 1
+ - uid: 20481
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 20874
+ components:
+ - type: Transform
+ pos: 136.5,79.5
+ parent: 1
+ - uid: 23439
+ components:
+ - type: Transform
+ pos: 81.5,55.5
+ parent: 1
+ - uid: 23516
+ components:
+ - type: Transform
+ pos: 81.5,56.5
+ parent: 1
+ - uid: 23589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,98.5
+ parent: 1
+ - uid: 24343
+ components:
+ - type: Transform
+ pos: 151.5,78.5
+ parent: 1
+ - uid: 24537
+ components:
+ - type: Transform
+ pos: 148.5,81.5
+ parent: 1
+ - uid: 24733
+ components:
+ - type: Transform
+ pos: 146.5,109.5
+ parent: 1
+ - uid: 25169
+ components:
+ - type: Transform
+ pos: 60.5,111.5
+ parent: 1
+ - uid: 25230
+ components:
+ - type: Transform
+ pos: 126.5,107.5
+ parent: 1
+ - uid: 25231
+ components:
+ - type: Transform
+ pos: 126.5,108.5
+ parent: 1
+ - uid: 25232
+ components:
+ - type: Transform
+ pos: 126.5,109.5
+ parent: 1
+ - uid: 25238
+ components:
+ - type: Transform
+ pos: 123.5,107.5
+ parent: 1
+ - uid: 25239
+ components:
+ - type: Transform
+ pos: 123.5,108.5
+ parent: 1
+ - uid: 25546
+ components:
+ - type: Transform
+ pos: 102.5,49.5
+ parent: 1
+ - uid: 25611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,84.5
+ parent: 1
+ - uid: 25847
+ components:
+ - type: Transform
+ pos: 145.5,94.5
+ parent: 1
+ - uid: 26143
+ components:
+ - type: Transform
+ pos: 113.5,52.5
+ parent: 1
+ - uid: 26209
+ components:
+ - type: Transform
+ pos: 59.5,110.5
+ parent: 1
+ - uid: 26230
+ components:
+ - type: Transform
+ pos: 147.5,128.5
+ parent: 1
+ - uid: 26478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,115.5
+ parent: 1
+ - uid: 26492
+ components:
+ - type: Transform
+ pos: 77.5,62.5
+ parent: 1
+ - uid: 26497
+ components:
+ - type: Transform
+ pos: 62.5,37.5
+ parent: 1
+ - uid: 26502
+ components:
+ - type: Transform
+ pos: 88.5,62.5
+ parent: 1
+ - uid: 27190
+ components:
+ - type: Transform
+ pos: 59.5,111.5
+ parent: 1
+ - uid: 27417
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 27419
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 27512
+ components:
+ - type: Transform
+ pos: 65.5,60.5
+ parent: 1
+ - uid: 27593
+ components:
+ - type: Transform
+ pos: 65.5,58.5
+ parent: 1
+ - uid: 27602
+ components:
+ - type: Transform
+ pos: 65.5,59.5
+ parent: 1
+ - uid: 28190
+ components:
+ - type: Transform
+ pos: 126.5,82.5
+ parent: 1
+ - uid: 28192
+ components:
+ - type: Transform
+ pos: 115.5,81.5
+ parent: 1
+ - uid: 28761
+ components:
+ - type: Transform
+ pos: 94.5,49.5
+ parent: 1
+ - uid: 28764
+ components:
+ - type: Transform
+ pos: 97.5,49.5
+ parent: 1
+ - uid: 28892
+ components:
+ - type: Transform
+ pos: 142.5,97.5
+ parent: 1
+ - uid: 29673
+ components:
+ - type: Transform
+ pos: 148.5,140.5
+ parent: 1
+ - uid: 29838
+ components:
+ - type: Transform
+ pos: 142.5,150.5
+ parent: 1
+ - uid: 29840
+ components:
+ - type: Transform
+ pos: 146.5,149.5
+ parent: 1
+ - uid: 29841
+ components:
+ - type: Transform
+ pos: 146.5,150.5
+ parent: 1
+ - uid: 30130
+ components:
+ - type: Transform
+ pos: 141.5,142.5
+ parent: 1
+ - uid: 30538
+ components:
+ - type: Transform
+ pos: 24.5,111.5
+ parent: 1
+ - uid: 30553
+ components:
+ - type: Transform
+ pos: 79.5,157.5
+ parent: 1
+ - uid: 30600
+ components:
+ - type: Transform
+ pos: 89.5,62.5
+ parent: 1
+ - uid: 31783
+ components:
+ - type: Transform
+ pos: 126.5,81.5
+ parent: 1
+ - uid: 31799
+ components:
+ - type: Transform
+ pos: 141.5,96.5
+ parent: 1
+ - uid: 31887
+ components:
+ - type: Transform
+ pos: 143.5,126.5
+ parent: 1
+ - uid: 32069
+ components:
+ - type: Transform
+ pos: 77.5,157.5
+ parent: 1
+ - uid: 32072
+ components:
+ - type: Transform
+ pos: 81.5,157.5
+ parent: 1
+ - uid: 32116
+ components:
+ - type: Transform
+ pos: 22.5,111.5
+ parent: 1
+ - uid: 32221
+ components:
+ - type: Transform
+ pos: 23.5,91.5
+ parent: 1
+ - uid: 32243
+ components:
+ - type: Transform
+ pos: 115.5,82.5
+ parent: 1
+ - uid: 32245
+ components:
+ - type: Transform
+ pos: 115.5,84.5
+ parent: 1
+ - uid: 32258
+ components:
+ - type: Transform
+ pos: 62.5,38.5
+ parent: 1
+ - uid: 32283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 32415
+ components:
+ - type: Transform
+ pos: 132.5,79.5
+ parent: 1
+ - uid: 32982
+ components:
+ - type: Transform
+ pos: 130.5,82.5
+ parent: 1
+ - uid: 33167
+ components:
+ - type: Transform
+ pos: 116.5,28.5
+ parent: 1
+ - uid: 33168
+ components:
+ - type: Transform
+ pos: 117.5,28.5
+ parent: 1
+ - uid: 33169
+ components:
+ - type: Transform
+ pos: 118.5,28.5
+ parent: 1
+ - uid: 33170
+ components:
+ - type: Transform
+ pos: 119.5,28.5
+ parent: 1
+ - uid: 33171
+ components:
+ - type: Transform
+ pos: 103.5,27.5
+ parent: 1
+ - uid: 33173
+ components:
+ - type: Transform
+ pos: 93.5,26.5
+ parent: 1
+ - uid: 33174
+ components:
+ - type: Transform
+ pos: 93.5,27.5
+ parent: 1
+ - uid: 33175
+ components:
+ - type: Transform
+ pos: 91.5,24.5
+ parent: 1
+ - uid: 33269
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+ - uid: 33279
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 33280
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33320
+ components:
+ - type: Transform
+ pos: 117.5,36.5
+ parent: 1
+ - uid: 33323
+ components:
+ - type: Transform
+ pos: 117.5,37.5
+ parent: 1
+ - uid: 33324
+ components:
+ - type: Transform
+ pos: 117.5,41.5
+ parent: 1
+ - uid: 33893
+ components:
+ - type: Transform
+ pos: 62.5,39.5
+ parent: 1
+ - uid: 33899
+ components:
+ - type: Transform
+ pos: 115.5,85.5
+ parent: 1
+ - uid: 33903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,69.5
+ parent: 1
+ - uid: 34066
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 34106
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 34111
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 34187
+ components:
+ - type: Transform
+ pos: 50.5,68.5
+ parent: 1
+ - uid: 34634
+ components:
+ - type: Transform
+ pos: 162.5,63.5
+ parent: 1
+ - uid: 34699
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 34701
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 34702
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 34703
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 34707
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 34708
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 34709
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 34710
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 34762
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 34814
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 34815
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 34816
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 34926
+ components:
+ - type: Transform
+ pos: 137.5,79.5
+ parent: 1
+ - uid: 34985
+ components:
+ - type: Transform
+ pos: 104.5,49.5
+ parent: 1
+ - uid: 34986
+ components:
+ - type: Transform
+ pos: 50.5,71.5
+ parent: 1
+ - uid: 35651
+ components:
+ - type: Transform
+ pos: 155.5,101.5
+ parent: 1
+ - uid: 35796
+ components:
+ - type: Transform
+ pos: 55.5,125.5
+ parent: 1
+ - uid: 36586
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+ - uid: 37031
+ components:
+ - type: Transform
+ pos: 101.5,166.5
+ parent: 1
+ - uid: 37359
+ components:
+ - type: Transform
+ pos: 144.5,97.5
+ parent: 1
+ - uid: 37498
+ components:
+ - type: Transform
+ pos: 145.5,120.5
+ parent: 1
+ - uid: 37554
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,159.5
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,170.5
+ parent: 1
+ - uid: 3328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 6518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,173.5
+ parent: 1
+ - uid: 19160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,54.5
+ parent: 1
+ - uid: 23384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,54.5
+ parent: 1
+ - uid: 31866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,80.5
+ parent: 1
+ - uid: 33964
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,73.5
+ parent: 1
+ - uid: 34615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,43.5
+ parent: 1
+ - uid: 35247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,159.5
+ parent: 1
+ - uid: 35251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 35252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,161.5
+ parent: 1
+ - uid: 35258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,159.5
+ parent: 1
+ - uid: 35267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,159.5
+ parent: 1
+ - uid: 35268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,160.5
+ parent: 1
+ - uid: 35269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,161.5
+ parent: 1
+ - uid: 35270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,161.5
+ parent: 1
+ - uid: 35271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,159.5
+ parent: 1
+ - uid: 35272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,162.5
+ parent: 1
+ - uid: 36061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,70.5
+ parent: 1
+ - uid: 36064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,73.5
+ parent: 1
+ - uid: 36065
+ components:
+ - type: Transform
+ pos: 22.5,75.5
+ parent: 1
+ - uid: 36066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,71.5
+ parent: 1
+ - uid: 36067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,72.5
+ parent: 1
+ - uid: 36068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,72.5
+ parent: 1
+ - uid: 36069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,73.5
+ parent: 1
+ - uid: 36070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,71.5
+ parent: 1
+ - uid: 36071
+ components:
+ - type: Transform
+ pos: 21.5,70.5
+ parent: 1
+ - uid: 36072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,74.5
+ parent: 1
+ - uid: 36073
+ components:
+ - type: Transform
+ pos: 24.5,71.5
+ parent: 1
+ - uid: 36074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,69.5
+ parent: 1
+ - uid: 36075
+ components:
+ - type: Transform
+ pos: 23.5,72.5
+ parent: 1
+ - uid: 36076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,70.5
+ parent: 1
+ - uid: 36077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,70.5
+ parent: 1
+ - uid: 36078
+ components:
+ - type: Transform
+ pos: 23.5,73.5
+ parent: 1
+ - uid: 36079
+ components:
+ - type: Transform
+ pos: 24.5,75.5
+ parent: 1
+ - uid: 36080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,69.5
+ parent: 1
+ - uid: 36081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,68.5
+ parent: 1
+ - uid: 36082
+ components:
+ - type: Transform
+ pos: 21.5,75.5
+ parent: 1
+ - uid: 36083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,73.5
+ parent: 1
+ - uid: 36084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,69.5
+ parent: 1
+ - uid: 36085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,69.5
+ parent: 1
+ - uid: 36086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,68.5
+ parent: 1
+ - uid: 36087
+ components:
+ - type: Transform
+ pos: 22.5,72.5
+ parent: 1
+ - uid: 36089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,71.5
+ parent: 1
+ - uid: 36090
+ components:
+ - type: Transform
+ pos: 20.5,74.5
+ parent: 1
+ - uid: 36091
+ components:
+ - type: Transform
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36340
+ components:
+ - type: MetaData
+ name: large lens
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,152.5
+ parent: 1
+ - uid: 36341
+ components:
+ - type: MetaData
+ name: large lens
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,151.5
+ parent: 1
+ - uid: 37332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,66.5
+ parent: 1
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,119.5
+ parent: 1
+ - uid: 16100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 17669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 24414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 26419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,133.5
+ parent: 1
+ - uid: 27237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,134.5
+ parent: 1
+ - uid: 27623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,82.5
+ parent: 1
+ - uid: 28187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,119.5
+ parent: 1
+ - uid: 35016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,100.5
+ parent: 1
+ - uid: 35019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 36645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,100.5
+ parent: 1
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 13118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,36.5
+ parent: 1
+ - uid: 13120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,37.5
+ parent: 1
+ - uid: 13121
+ components:
+ - type: Transform
+ pos: 52.5,38.5
+ parent: 1
+ - uid: 13122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,40.5
+ parent: 1
+ - uid: 13123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,41.5
+ parent: 1
+ - uid: 13124
+ components:
+ - type: Transform
+ pos: 52.5,42.5
+ parent: 1
+ - uid: 17715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,102.5
+ parent: 1
+ - uid: 17716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 17717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 17718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 22666
+ components:
+ - type: Transform
+ pos: 130.5,66.5
+ parent: 1
+ - uid: 22707
+ components:
+ - type: Transform
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 22756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 22975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,62.5
+ parent: 1
+ - uid: 23621
+ components:
+ - type: Transform
+ pos: 91.5,42.5
+ parent: 1
+ - uid: 30122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,115.5
+ parent: 1
+ - uid: 30441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,113.5
+ parent: 1
+ - uid: 30636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 32189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,80.5
+ parent: 1
+ - uid: 35750
+ components:
+ - type: Transform
+ pos: 98.5,42.5
+ parent: 1
+- proto: WoodDoor
+ entities:
+ - uid: 23411
+ components:
+ - type: Transform
+ pos: 159.5,72.5
+ parent: 1
+ - uid: 27048
+ components:
+ - type: MetaData
+ name: confession booth wooden door
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - uid: 27049
+ components:
+ - type: MetaData
+ name: confession booth wooden door
+ - type: Transform
+ pos: 78.5,78.5
+ parent: 1
+- proto: WoodenBench
+ entities:
+ - uid: 27014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 27015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 27016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,73.5
+ parent: 1
+ - uid: 27017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,72.5
+ parent: 1
+ - uid: 27018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 27019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 27020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,73.5
+ parent: 1
+ - uid: 27021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,72.5
+ parent: 1
+ - uid: 27022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,75.5
+ parent: 1
+ - uid: 27023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,76.5
+ parent: 1
+ - uid: 27024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 27025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 27026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,75.5
+ parent: 1
+ - uid: 27027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,76.5
+ parent: 1
+ - uid: 27028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 27029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,76.5
+ parent: 1
+- proto: Wrench
+ entities:
+ - uid: 20443
+ components:
+ - type: Transform
+ pos: 48.484276,113.692474
+ parent: 1
+ - uid: 23026
+ components:
+ - type: Transform
+ parent: 23025
+ - type: Physics
+ canCollide: False
+ - uid: 23776
+ components:
+ - type: Transform
+ pos: 40.477272,88.60258
+ parent: 1
+ - uid: 26702
+ components:
+ - type: Transform
+ pos: 107.49787,99.59525
+ parent: 1
+ - uid: 30693
+ components:
+ - type: Transform
+ pos: 91.5,87.5
+ parent: 1
+ - uid: 33594
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 88.563065,18.66552
+ parent: 1
+- proto: Zipties
+ entities:
+ - uid: 15351
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 153.52924,152.91687
+ parent: 1
+ - uid: 23069
+ components:
+ - type: Transform
+ pos: 123.56595,56.60654
+ parent: 1
+...
diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml
index 2ac152f22237..f863e4899167 100644
--- a/Resources/Maps/elkridge.yml
+++ b/Resources/Maps/elkridge.yml
@@ -64,11 +64,11 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAGIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAACIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD
+ tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACAwAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADfgAAAAADIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACfgAAAAADBwAAAAAGIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABfgAAAAADBwAAAAAEAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABBwAAAAABfgAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA
+ tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA
version: 6
1,0:
ind: 1,0
@@ -88,7 +88,7 @@ entities:
version: 6
2,-1:
ind: 2,-1
- tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA
+ tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA
version: 6
2,0:
ind: 2,0
@@ -124,11 +124,11 @@ entities:
version: 6
-2,-1:
ind: -2,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: AgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC
+ tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC
version: 6
1,1:
ind: 1,1
@@ -140,7 +140,7 @@ entities:
version: 6
1,-3:
ind: 1,-3
- tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
+ tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
version: 6
-1,-3:
ind: -1,-3
@@ -168,7 +168,7 @@ entities:
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
version: 6
2,-4:
ind: 2,-4
@@ -184,7 +184,7 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA
version: 6
-1,-4:
ind: -1,-4
@@ -268,7 +268,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
version: 6
-2,3:
ind: -2,3
@@ -276,7 +276,7 @@ entities:
version: 6
1,3:
ind: 1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,0:
ind: 3,0
@@ -284,11 +284,11 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,4:
ind: -2,4
@@ -412,6 +412,11 @@ entities:
10566: 56,-27
10567: 50,-27
10568: 47,-24
+ 11079: 28,-28
+ 11080: 28,-29
+ 11489: 26,-42
+ 11490: 27,-42
+ 11491: 28,-42
- node:
color: '#D4D4D496'
id: BotGreyscale
@@ -467,6 +472,7 @@ entities:
8320: -13,26
8321: -17,26
8322: -21,23
+ 11081: 28,-30
- node:
angle: 1.5707963267948966 rad
color: '#D4D4D496'
@@ -515,7 +521,6 @@ entities:
805: -25,-27
836: -22,-24
1426: -20,-14
- 6837: -5,-3
- node:
color: '#9FED5896'
id: BrickTileDarkEndN
@@ -596,7 +601,6 @@ entities:
1424: -17,-14
6735: 4,-3
6736: 5,-3
- 6836: -4,-3
7569: 1,-3
7570: 2,-3
7571: 3,-3
@@ -620,6 +624,7 @@ entities:
6720: -5,2
6833: -5,-2
7502: -22,-22
+ 11591: -5,-3
- node:
color: '#334E6DC8'
id: BrickTileSteelCornerNe
@@ -645,9 +650,9 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerNe
decals:
- 233: 6,-5
- 234: 7,-6
- 7579: 3,-5
+ 11594: 6,-5
+ 11595: 7,-6
+ 11596: 3,-5
- node:
color: '#8C347F96'
id: BrickTileSteelCornerNe
@@ -729,7 +734,7 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerNw
decals:
- 235: 5,-5
+ 11597: 5,-5
- node:
color: '#8C347F96'
id: BrickTileSteelCornerNw
@@ -808,9 +813,9 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerSe
decals:
- 239: 7,-7
- 7574: 2,-8
- 7575: 3,-7
+ 11598: 7,-7
+ 11599: 3,-7
+ 11600: 2,-8
- node:
color: '#9FED5896'
id: BrickTileSteelCornerSe
@@ -878,8 +883,7 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerSw
decals:
- 242: 5,-7
- 7572: 0,-8
+ 11601: 5,-7
- node:
color: '#8C347F96'
id: BrickTileSteelCornerSw
@@ -985,8 +989,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerNe
decals:
- 259: 6,-6
- 7576: 3,-6
+ 11607: 3,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerNe
@@ -1058,7 +1061,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerNw
decals:
- 254: 5,-6
+ 11606: 5,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerNw
@@ -1119,8 +1122,8 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerSe
decals:
- 7577: 2,-7
- 7578: 3,-6
+ 11608: 2,-7
+ 11609: 3,-6
- node:
color: '#9FED5896'
id: BrickTileSteelInnerSe
@@ -1182,7 +1185,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerSw
decals:
- 258: 5,-6
+ 11610: 5,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerSw
@@ -1382,8 +1385,8 @@ entities:
color: '#79150096'
id: BrickTileSteelLineN
decals:
- 7580: 1,-5
- 7581: 2,-5
+ 11611: 1,-5
+ 11612: 2,-5
- node:
color: '#9FED5896'
id: BrickTileSteelLineN
@@ -1509,8 +1512,10 @@ entities:
color: '#79150096'
id: BrickTileSteelLineS
decals:
- 245: 6,-7
- 7573: 1,-8
+ 11602: 6,-7
+ 11603: -1,-8
+ 11604: 0,-8
+ 11605: 1,-8
- node:
color: '#8C347F96'
id: BrickTileSteelLineS
@@ -2623,6 +2628,105 @@ entities:
10630: 57,-20
10631: 57,-21
10632: 57,-22
+ - node:
+ cleanable: True
+ color: '#D4D4D496'
+ id: Dirt
+ decals:
+ 11727: 11,-17
+ 11728: 13,-18
+ 11729: 12,-19
+ 11730: -3,-8
+ 11731: -5,-6
+ 11732: -3,-5
+ 11733: -5,-4
+ 11734: -6,-5
+ 11735: -2,6
+ 11736: 1,6
+ 11737: -1,4
+ 11738: 3,4
+ 11739: 1,3
+ 11740: 4,6
+ 11741: -1,10
+ 11742: 0,9
+ 11743: 4,8
+ 11744: 3,9
+ 11745: -18,8
+ 11746: -17,7
+ 11747: -18,6
+ 11749: -26,0
+ 11750: -28,-4
+ 11751: -29,-3
+ 11752: -28,-2
+ 11753: -26,-21
+ 11754: -24,-20
+ 11755: -24,-23
+ 11756: -26,-23
+ 11757: -21,-27
+ 11758: -19,-26
+ 11759: -20,-25
+ 11760: -37,-28
+ 11761: -36,-26
+ 11762: -37,-24
+ 11763: -36,-22
+ 11764: -34,-21
+ 11765: -33,-23
+ 11766: -34,-25
+ 11767: -33,-27
+ 11768: -29,-34
+ 11769: -28,-36
+ 11770: -32,-43
+ 11771: -31,-42
+ 11772: -29,-43
+ 11773: -28,-42
+ 11774: -26,-42
+ 11775: -25,-44
+ 11776: -13,-36
+ 11777: -11,-37
+ 11778: -13,-39
+ 11779: -12,-40
+ 11780: -11,-39
+ 11781: -1,-34
+ 11782: 1,-35
+ 11783: 0,-33
+ 11784: 2,-34
+ 11785: 3,-33
+ 11786: 4,-34
+ 11787: 3,-35
+ 11788: 41,-15
+ 11789: 42,-16
+ 11790: 41,-17
+ 11791: -2,1
+ 11792: -1,0
+ 11793: -2,-1
+ 11794: 2,-1
+ 11795: 3,0
+ 11796: 4,1
+ 11797: 4,-1
+ 11798: 0,35
+ 11799: 1,34
+ 11800: 2,35
+ 11801: 36,27
+ 11802: 38,26
+ 11803: 36,25
+ 11804: 37,26
+ 11805: 38,24
+ 11806: 30,26
+ 11807: 31,25
+ 11808: 32,26
+ 11809: 47,-2
+ 11810: 45,-1
+ 11811: 46,0
+ 11812: 55,-2
+ 11813: 56,-1
+ 11814: 56,1
+ 11815: 57,0
+ 11816: 58,1
+ 11817: 59,0
+ 11818: 59,-1
+ 11819: 58,-2
+ 11824: -28,1
+ 11825: -27,0
- node:
color: '#FFFFFFFF'
id: DirtHeavy
@@ -2661,9 +2765,7 @@ entities:
1748: 10,8
1749: 2,9
1751: -7,-8
- 1753: -4,-11
1754: -1,-10
- 1755: -5,-5
1757: 10,-8
1758: 15,-4
2087: -18,-6
@@ -2774,7 +2876,6 @@ entities:
2736: 6,22
2744: 3,38
2751: -22,55
- 2799: -5,-11
2850: -6,-38
2924: -25,-27
2926: -22,-19
@@ -2890,7 +2991,6 @@ entities:
5175: -2,20
5176: -4,19
5233: 2,-4
- 5240: -4,-10
5245: 28,-4
5246: 26,-2
5247: 29,-2
@@ -2955,9 +3055,6 @@ entities:
6159: 26,35
6161: 27,37
6214: 10,-19
- 6225: 22,-36
- 6226: 23,-38
- 6227: 24,-40
6228: 38,-40
6230: 40,-36
6266: -41,-10
@@ -2992,10 +3089,6 @@ entities:
6567: 1,-21
6568: 2,-23
6584: 30,-16
- 7585: 0,-8
- 7586: 1,-7
- 7587: 1,-5
- 7588: 3,-6
7619: 39,7
7620: 40,9
7626: 34,3
@@ -3051,7 +3144,6 @@ entities:
8801: 20,38
8802: 21,37
8821: 52,32
- 8822: -4,-3
8823: -2,-2
8824: -3,-1
8825: -4,2
@@ -3322,20 +3414,272 @@ entities:
10238: -29,-32
11070: -10,-19
11071: -7,-17
+ 11492: 26,-42
+ 11493: 28,-42
+ 11494: 37,-29
+ 11495: 38,-27
+ 11496: 40,-28
+ 11497: 40,-30
+ 11504: 9,-7
+ 11505: 11,-6
+ 11506: 12,-8
+ 11507: 16,-4
+ 11508: 13,-11
+ 11509: 12,-10
+ 11510: 6,-10
+ 11511: 4,-9
+ 11512: 7,-9
+ 11526: 6,41
+ 11527: 9,41
+ 11531: 23,43
+ 11532: 16,19
+ 11533: 17,27
+ 11534: 19,26
+ 11535: 17,31
+ 11536: 19,30
+ 11548: 26,30
+ 11549: 26,32
+ 11550: 28,31
+ 11551: 29,32
+ 11552: 33,29
+ 11553: 31,28
+ 11554: 28,27
+ 11555: 28,25
+ 11619: -1,-8
+ 11620: -1,-5
+ 11621: 1,-6
+ 11622: 3,-5
+ 11634: 5,-7
+ 11635: 7,-6
+ 11641: -6,-11
+ 11642: -4,-11
+ 11645: 24,2
+ 11646: 23,-3
+ 11647: 27,0
+ 11648: 33,1
+ 11649: 40,-1
+ 11650: 42,1
+ 11651: 43,2
+ 11652: 41,4
+ 11653: 47,2
+ 11654: 45,2
+ 11655: 45,4
+ 11656: 46,-2
+ 11657: 47,0
+ 11658: 55,-1
+ 11659: 58,-1
+ 11660: 57,-3
+ 11661: 48,6
+ 11662: 48,9
+ 11663: 50,7
+ 11664: 51,9
+ 11665: 50,8
+ 11666: 45,12
+ 11667: 48,12
+ 11668: 44,8
+ 11669: 45,16
+ 11670: 44,17
+ 11671: 43,19
+ 11672: 44,20
+ 11673: 46,18
+ 11674: 48,17
+ 11675: 46,22
+ 11676: 47,23
+ 11677: 47,28
+ 11678: 46,27
+ 11679: 47,26
+ 11680: 40,24
+ 11681: 41,25
+ 11682: 37,27
+ 11683: 37,24
+ 11684: 36,21
+ 11685: 42,22
+ 11686: 43,25
+ 11687: 42,28
+ 11688: 34,21
+ 11689: 38,31
+ 11690: 42,31
+ 11691: 43,29
+ 11692: 46,31
+ 11693: 49,30
+ 11694: 50,31
+ 11695: 51,32
+ 11696: 52,30
+ 11718: 39,-5
+ 11719: 40,-7
+ 11720: 45,-7
+ 11726: 24,-15
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1656: 5,-6
+ 11082: 19,-36
+ 11083: 20,-38
+ 11084: 21,-40
+ 11094: 38,-36
+ 11095: 39,-38
+ 11096: 39,-40
+ 11120: 27,-41
+ 11121: 29,-38
+ 11122: 30,-35
+ 11123: 27,-34
+ 11124: 33,-42
+ 11125: 34,-39
+ 11126: 30,-33
+ 11127: 30,-29
+ 11128: 31,-28
+ 11129: 29,-30
+ 11149: 23,-24
+ 11150: 25,-26
+ 11151: 25,-24
+ 11152: 24,-21
+ 11153: 23,-19
+ 11154: 28,-18
+ 11155: 29,-21
+ 11156: 27,-23
+ 11157: 29,-25
+ 11175: 22,-28
+ 11176: 23,-29
+ 11186: 42,-26
+ 11187: 44,-25
+ 11188: 44,-29
+ 11189: 43,-28
+ 11190: 47,-26
+ 11191: 50,-28
+ 11192: 47,-28
+ 11193: 51,-26
+ 11194: 54,-28
+ 11195: 55,-26
+ 11196: 50,-21
+ 11197: 53,-20
+ 11198: 54,-22
+ 11199: 46,-21
+ 11200: 47,-19
+ 11201: 45,-17
+ 11202: 46,-14
+ 11203: 48,-16
+ 11204: 47,-17
+ 11205: 49,-14
+ 11206: 53,-15
+ 11207: 55,-14
+ 11208: 56,-16
+ 11209: 58,-14
+ 11210: 60,-16
+ 11211: 58,-17
+ 11212: 58,-12
+ 11213: 50,-12
+ 11214: 47,-12
+ 11215: 59,-21
+ 11216: 60,-20
+ 11217: 60,-17
+ 11218: 58,-23
+ 11219: 60,-25
+ 11220: 58,-26
+ 11221: 59,-28
+ 11222: 62,-27
+ 11223: 62,-24
+ 11224: 62,-18
+ 11225: 62,-15
+ 11226: 50,-30
+ 11227: 49,-30
+ 11228: 58,-30
+ 11229: 53,-27
+ 11230: 58,-28
+ 11278: 43,-9
+ 11279: 39,-13
+ 11284: 33,-8
+ 11301: 21,-20
+ 11302: 18,-14
+ 11303: 20,-15
+ 11308: 12,-22
+ 11309: 16,-28
+ 11310: 17,-31
+ 11311: 19,-32
+ 11316: 14,-31
+ 11317: 12,-30
+ 11321: 9,-27
+ 11322: 10,-26
+ 11329: 5,-20
+ 11330: 13,-28
+ 11331: -9,-39
+ 11332: -7,-42
+ 11333: -11,-43
+ 11334: -13,-46
+ 11335: -12,-47
+ 11336: -13,-48
+ 11337: -10,-46
+ 11343: -16,-40
+ 11345: -20,-49
+ 11346: -19,-50
+ 11347: -16,-50
+ 11356: -27,-46
+ 11357: -23,-47
+ 11358: -34,-47
+ 11359: -35,-46
+ 11360: -38,-48
+ 11361: -37,-46
+ 11362: -38,-44
+ 11363: -40,-43
+ 11364: -39,-41
+ 11365: -36,-42
+ 11380: -38,-15
+ 11381: -36,-13
+ 11382: -32,-14
+ 11386: -27,-13
+ 11387: -25,-13
+ 11388: -25,-14
+ 11390: -23,3
+ 11391: -24,4
+ 11392: -21,6
+ 11393: -24,8
+ 11394: -20,3
+ 11395: -17,4
+ 11396: -13,5
+ 11397: -23,9
+ 11406: -22,12
+ 11408: -30,27
+ 11409: -29,29
+ 11410: -25,28
+ 11411: -21,30
+ 11412: -18,28
+ 11413: -22,33
+ 11414: -19,32
+ 11415: -14,31
+ 11416: -13,29
+ 11425: -23,36
+ 11426: -22,39
+ 11427: -24,46
+ 11428: -24,48
+ 11429: -23,47
+ 11430: -22,46
+ 11437: -23,56
+ 11438: -24,53
+ 11439: -20,55
+ 11443: -12,58
+ 11444: -11,57
+ 11445: -9,57
+ 11452: -4,50
+ 11453: -8,47
+ 11454: -4,45
+ 11461: -2,39
+ 11468: 1,32
+ 11469: 2,29
+ 11470: 3,30
+ 11475: -4,25
+ 11478: -3,32
+ 11479: -1,12
+ 11480: -2,14
+ 11484: 6,13
+ 11485: 8,14
+ 11486: 11,14
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1665: 5,-5
1668: 6,10
1679: -14,11
1680: -15,9
@@ -3748,9 +4092,6 @@ entities:
6213: 9,-19
6217: 9,-18
6224: 21,-5
- 6237: 23,-36
- 6238: 24,-38
- 6239: 23,-40
6240: 40,-38
6241: 39,-36
6272: -41,-8
@@ -3780,8 +4121,6 @@ entities:
6577: 1,-26
6578: 1,-26
6579: 0,-27
- 7593: 2,-7
- 7594: 1,-6
7622: 40,8
7623: 34,5
7624: 35,3
@@ -4046,6 +4385,114 @@ entities:
10239: -29,-31
10240: -24,-35
11074: -7,-18
+ 11501: 37,-27
+ 11502: 40,-29
+ 11522: 10,-7
+ 11523: 8,-10
+ 11525: 7,13
+ 11544: 22,31
+ 11545: 17,30
+ 11546: 18,27
+ 11547: 21,28
+ 11559: 29,31
+ 11560: 27,30
+ 11627: 0,-7
+ 11628: 2,-6
+ 11629: 2,-7
+ 11630: 0,-5
+ 11638: 5,-6
+ 11639: 6,-7
+ 11643: -5,-11
+ 11715: 30,0
+ 11716: 24,1
+ 11717: 56,-2
+ 11722: 40,-5
+ 11723: 45,-6
+ 11724: 39,-7
+ 11725: 23,-16
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 11088: 21,-36
+ 11089: 19,-38
+ 11090: 20,-40
+ 11091: 38,-38
+ 11092: 39,-36
+ 11093: 40,-40
+ 11130: 28,-34
+ 11131: 30,-36
+ 11132: 28,-37
+ 11133: 27,-39
+ 11134: 30,-40
+ 11135: 26,-41
+ 11136: 25,-36
+ 11137: 25,-33
+ 11138: 34,-33
+ 11139: 34,-37
+ 11140: 33,-39
+ 11141: 34,-41
+ 11142: 31,-42
+ 11143: 30,-39
+ 11144: 35,-31
+ 11145: 37,-32
+ 11146: 39,-31
+ 11147: 39,-29
+ 11148: 33,-28
+ 11166: 25,-25
+ 11167: 27,-24
+ 11168: 24,-23
+ 11169: 23,-21
+ 11170: 28,-21
+ 11171: 29,-24
+ 11172: 29,-26
+ 11249: 52,-21
+ 11250: 53,-18
+ 11251: 46,-16
+ 11252: 46,-23
+ 11253: 46,-27
+ 11254: 50,-26
+ 11255: 55,-28
+ 11256: 62,-26
+ 11257: 59,-23
+ 11258: 58,-20
+ 11259: 59,-16
+ 11260: 62,-16
+ 11261: 55,-15
+ 11262: 52,-14
+ 11281: 42,-9
+ 11282: 33,-14
+ 11283: 31,-11
+ 11286: 32,-8
+ 11318: 13,-31
+ 11319: 12,-26
+ 11320: 12,-23
+ 11341: -17,-39
+ 11342: -16,-41
+ 11350: -19,-49
+ 11351: -17,-49
+ 11372: -38,-39
+ 11373: -38,-47
+ 11374: -33,-47
+ 11375: -40,-36
+ 11383: -43,-16
+ 11384: -37,-15
+ 11385: -27,-14
+ 11400: -23,4
+ 11401: -23,8
+ 11421: -12,31
+ 11422: -11,32
+ 11434: -24,54
+ 11435: -23,53
+ 11436: -21,55
+ 11455: -4,46
+ 11456: -5,50
+ 11463: -2,38
+ 11464: -5,34
+ 11465: -3,33
+ 11466: -2,32
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -4261,7 +4708,6 @@ entities:
3260: 41,22
3267: -5,35
3268: 0,24
- 3295: 7,-6
4215: -9,30
4216: -7,32
4263: 12,30
@@ -4307,7 +4753,6 @@ entities:
5145: -26,31
5159: -11,24
5170: -3,21
- 5239: -5,-10
5253: 28,-2
5254: 29,-4
5323: -44,-13
@@ -4325,7 +4770,6 @@ entities:
6038: 17,0
6168: 27,36
6242: 39,-36
- 6243: 22,-40
6275: -39,-8
6304: -26,-33
6496: 44,6
@@ -4356,7 +4800,6 @@ entities:
8858: 0,-2
8859: 4,2
8860: 5,-2
- 8861: -5,-3
8895: -12,0
8896: -9,2
8897: -9,-2
@@ -4477,6 +4920,66 @@ entities:
10194: 10,23
10233: -8,-16
11075: -10,-17
+ 11503: 37,-30
+ 11561: 26,31
+ 11562: 34,29
+ 11631: 0,-6
+ 11632: -1,-7
+ 11633: 3,-6
+ 11640: 6,-6
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 11173: 26,-25
+ 11174: 22,-29
+ 11177: 27,-33
+ 11178: 29,-35
+ 11179: 33,-34
+ 11180: 28,-38
+ 11181: 31,-41
+ 11182: 25,-38
+ 11183: 22,-32
+ 11184: 33,-27
+ 11185: 37,-31
+ 11263: 54,-20
+ 11264: 56,-21
+ 11265: 48,-17
+ 11266: 47,-21
+ 11267: 43,-26
+ 11268: 55,-30
+ 11269: 54,-27
+ 11270: 60,-28
+ 11271: 59,-24
+ 11272: 60,-21
+ 11273: 49,-20
+ 11274: 41,-19
+ 11275: 33,-18
+ 11276: 31,-14
+ 11277: 40,-10
+ 11287: 32,-7
+ 11304: 20,-14
+ 11305: 16,-22
+ 11306: 17,-25
+ 11307: 12,-24
+ 11352: -18,-46
+ 11353: -18,-50
+ 11354: -24,-46
+ 11355: -28,-45
+ 11402: -24,5
+ 11403: -24,9
+ 11404: -20,6
+ 11405: -21,12
+ 11423: -14,32
+ 11424: -23,37
+ 11441: -22,54
+ 11442: -13,57
+ 11457: -5,51
+ 11458: -5,49
+ 11459: -3,49
+ 11460: -2,37
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -4508,8 +5011,6 @@ entities:
1999: -14,7
2004: -26,12
2006: -14,4
- 2019: 5,-5
- 2020: 6,-5
2024: 6,9
2025: 1,10
2028: 2,16
@@ -4672,7 +5173,6 @@ entities:
5154: -11,25
5172: -2,21
5173: -2,19
- 5229: 6,-6
5241: 5,-10
5242: 14,-4
5255: 27,-4
@@ -4726,9 +5226,6 @@ entities:
6160: 26,36
6162: 27,37
6163: 26,34
- 6231: 24,-36
- 6232: 22,-40
- 6233: 22,-38
6234: 40,-40
6235: 38,-38
6236: 38,-36
@@ -4761,10 +5258,6 @@ entities:
6571: 2,-26
6572: 0,-27
6573: 0,-21
- 7589: 2,-6
- 7590: 3,-5
- 7591: 2,-8
- 7592: 3,-7
7621: 40,7
7629: 38,4
8221: -16,20
@@ -5010,6 +5503,169 @@ entities:
10204: -9,22
11072: -10,-18
11073: -7,-19
+ 11498: 37,-28
+ 11499: 40,-27
+ 11500: 27,-42
+ 11516: -2,-10
+ 11517: 7,-10
+ 11518: 6,-9
+ 11519: 9,-6
+ 11520: 12,-7
+ 11521: 13,-10
+ 11528: 7,41
+ 11529: 10,41
+ 11530: 23,42
+ 11537: 19,27
+ 11538: 18,30
+ 11539: 16,20
+ 11540: 22,28
+ 11541: 21,31
+ 11542: 23,32
+ 11543: 24,34
+ 11556: 27,31
+ 11557: 24,31
+ 11558: 27,25
+ 11623: 0,-8
+ 11624: 2,-8
+ 11625: 3,-7
+ 11626: 0,-4
+ 11636: 5,-5
+ 11637: 7,-7
+ 11644: -6,-10
+ 11697: 48,31
+ 11698: 50,30
+ 11699: 47,27
+ 11700: 46,23
+ 11701: 40,25
+ 11702: 41,29
+ 11703: 40,31
+ 11704: 36,29
+ 11705: 36,22
+ 11706: 42,20
+ 11707: 49,17
+ 11708: 48,14
+ 11709: 46,12
+ 11710: 48,7
+ 11711: 44,7
+ 11712: 47,3
+ 11713: 42,2
+ 11714: 36,1
+ 11721: 45,-5
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 11085: 19,-40
+ 11086: 21,-38
+ 11087: 20,-36
+ 11097: 38,-40
+ 11098: 40,-38
+ 11099: 40,-36
+ 11100: 26,-33
+ 11101: 28,-36
+ 11102: 31,-34
+ 11103: 28,-33
+ 11104: 31,-37
+ 11105: 28,-39
+ 11106: 26,-38
+ 11107: 29,-42
+ 11108: 32,-41
+ 11109: 31,-40
+ 11110: 34,-38
+ 11111: 34,-27
+ 11112: 33,-29
+ 11113: 36,-32
+ 11114: 40,-31
+ 11115: 38,-29
+ 11116: 27,-28
+ 11117: 25,-29
+ 11118: 24,-32
+ 11119: 22,-31
+ 11158: 26,-26
+ 11159: 27,-25
+ 11160: 24,-25
+ 11161: 24,-22
+ 11162: 23,-20
+ 11163: 24,-18
+ 11164: 29,-18
+ 11165: 28,-22
+ 11231: 45,-26
+ 11232: 48,-27
+ 11233: 47,-23
+ 11234: 49,-21
+ 11235: 57,-20
+ 11236: 52,-22
+ 11237: 45,-15
+ 11238: 51,-16
+ 11239: 54,-15
+ 11240: 58,-15
+ 11241: 59,-19
+ 11242: 60,-27
+ 11243: 57,-30
+ 11244: 47,-30
+ 11245: 45,-28
+ 11246: 44,-26
+ 11247: 40,-23
+ 11248: 40,-19
+ 11280: 40,-12
+ 11285: 32,-6
+ 11312: 12,-31
+ 11313: 13,-30
+ 11314: 14,-32
+ 11315: 15,-31
+ 11323: 9,-31
+ 11324: 10,-32
+ 11325: 8,-29
+ 11326: 6,-32
+ 11327: 4,-31
+ 11328: 5,-26
+ 11338: -13,-47
+ 11339: -11,-46
+ 11340: -13,-43
+ 11344: -15,-40
+ 11348: -17,-50
+ 11349: -18,-49
+ 11366: -40,-42
+ 11367: -38,-41
+ 11368: -37,-44
+ 11369: -34,-39
+ 11370: -37,-38
+ 11371: -40,-39
+ 11376: -40,-35
+ 11377: -43,-17
+ 11378: -43,-15
+ 11379: -42,-16
+ 11389: -25,-12
+ 11398: -23,7
+ 11399: -24,3
+ 11407: -20,12
+ 11417: -28,29
+ 11418: -20,30
+ 11419: -11,31
+ 11420: -12,29
+ 11431: -23,46
+ 11432: -22,48
+ 11433: -22,38
+ 11440: -21,54
+ 11446: -10,57
+ 11447: -11,54
+ 11448: -15,56
+ 11449: -7,56
+ 11450: -6,57
+ 11451: -8,52
+ 11462: -2,35
+ 11471: 2,30
+ 11472: 3,27
+ 11473: 3,27
+ 11474: -1,25
+ 11476: 0,25
+ 11481: -1,14
+ 11482: 2,12
+ 11483: 3,13
+ 11487: 10,14
+ 11488: 3,13
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -5081,6 +5737,7 @@ entities:
decals:
6880: -2,1
6881: 2,1
+ 11614: -1,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerSe
@@ -5106,17 +5763,16 @@ entities:
color: '#FFFFFFFF'
id: MiniTileDarkInnerNw
decals:
- 7584: 1,-8
7816: 5,2
8292: -19,24
8293: -19,20
8361: -24,14
+ 11618: 1,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerSe
decals:
6821: 6,2
- 7796: -4,-3
8290: -21,26
8291: -22,22
8358: -28,17
@@ -5151,7 +5807,6 @@ entities:
decals:
6890: -1,1
6891: 3,1
- 7583: 0,-8
7809: -2,2
7810: -1,2
7811: 0,2
@@ -5165,6 +5820,7 @@ entities:
8348: -27,14
8349: -26,14
8350: -25,14
+ 11613: 0,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineS
@@ -5185,15 +5841,14 @@ entities:
8725: 19,36
8726: 20,36
8727: 21,36
+ 11592: -5,-3
+ 11593: -4,-3
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineW
decals:
6886: -2,0
6887: 2,0
- 7561: 1,-6
- 7562: 1,-7
- 7582: 1,-5
7808: 5,3
8299: -19,21
8300: -19,25
@@ -5206,6 +5861,9 @@ entities:
10125: 41,9
10126: 41,8
10127: 41,7
+ 11615: -1,-6
+ 11616: -1,-7
+ 11617: -1,-8
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNe
@@ -6498,10 +7156,8 @@ entities:
10982: -53,-28
10983: -55,-28
11003: -4,-12
- 11004: -5,-4
11007: 9,-12
11008: 13,-9
- 11011: 5,-4
11023: 14,-3
11024: 6,11
11025: 6,4
@@ -6513,6 +7169,7 @@ entities:
11061: 23,3
11062: 9,-28
11077: 12,-35
+ 11581: -4,-9
- node:
color: '#64646493'
id: WarnLineGreyscaleE
@@ -6864,10 +7521,7 @@ entities:
10937: -33,-14
10994: -70,-31
10995: -68,-31
- 10996: -7,-5
11001: 2,-10
- 11015: 4,-6
- 11016: 8,-6
11017: 7,-3
11018: 18,-4
11019: 22,-4
@@ -6882,6 +7536,8 @@ entities:
11053: -9,46
11054: -9,39
11055: -11,39
+ 11578: -7,-10
+ 11579: -2,-8
- node:
color: '#D4D4D496'
id: WarnLineS
@@ -7051,10 +7707,8 @@ entities:
10990: -53,-34
10991: -55,-34
11002: -4,-12
- 11005: -5,-4
11006: 9,-12
11009: 13,-9
- 11010: 5,-4
11022: 14,-3
11028: 6,4
11029: 6,11
@@ -7066,6 +7720,7 @@ entities:
11060: 23,3
11063: 9,-28
11076: 12,-35
+ 11580: -4,-9
- node:
color: '#D4D4D496'
id: WarnLineW
@@ -7221,11 +7876,8 @@ entities:
10933: -33,-14
10992: -70,-31
10993: -68,-31
- 10997: -7,-5
11000: 2,-10
11012: 7,-3
- 11013: 8,-6
- 11014: 4,-6
11020: 18,-4
11021: 22,-4
11032: 5,8
@@ -7239,6 +7891,8 @@ entities:
11057: -9,39
11058: -9,46
11059: -11,46
+ 11576: -2,-8
+ 11577: -7,-10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7257,7 +7911,6 @@ entities:
7508: 2,20
7510: 4,-33
7527: 2,-33
- 7532: 0,-4
9510: -31,-42
9511: -25,-42
9519: -28,-42
@@ -7293,13 +7946,9 @@ entities:
7507: 0,20
7511: -1,-33
7526: 1,-33
- 7533: -3,-4
- 7536: -1,-4
- 7553: -3,-6
9512: -32,-42
9513: -26,-42
9520: -29,-42
- 9525: -27,1
9534: -13,-39
9539: -13,-36
9547: 8,-22
@@ -7312,6 +7961,8 @@ entities:
10168: 36,27
10214: 45,0
10220: 56,1
+ 11563: -5,-4
+ 11820: -28,1
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
@@ -7329,7 +7980,6 @@ entities:
7480: -19,-27
7512: 4,-35
7525: 2,-35
- 7557: 0,-7
9516: -31,-44
9517: -25,-44
9523: -25,0
@@ -7360,12 +8010,9 @@ entities:
7481: -26,-24
7513: -1,-35
7524: 1,-35
- 7552: -1,-7
- 7558: -3,-7
9514: -32,-44
9515: -26,-44
9521: -29,-43
- 9526: -27,0
9533: -13,-40
9541: -13,-37
9548: 8,-23
@@ -7380,6 +8027,10 @@ entities:
10219: 56,-3
10311: -21,-27
11078: -1,8
+ 11567: -5,-8
+ 11585: -5,-5
+ 11590: -5,-7
+ 11821: -28,0
- node:
color: '#FFFFFFFF'
id: WoodTrimThinEndS
@@ -7439,8 +8090,6 @@ entities:
7515: 4,-34
7529: 2,-34
7530: -28,-3
- 7545: 0,-5
- 7546: 0,-6
9506: -31,-43
9507: -25,-43
9559: 13,-18
@@ -7466,8 +8115,6 @@ entities:
7509: 1,20
7520: 0,-33
7523: 3,-33
- 7547: -2,-4
- 7554: -2,-6
9528: -26,1
9535: -12,-39
9540: -12,-36
@@ -7477,6 +8124,9 @@ entities:
9831: 1,35
10215: 46,0
10225: 57,1
+ 11570: -4,-4
+ 11571: -3,-4
+ 11823: -27,1
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -7494,7 +8144,6 @@ entities:
7495: -24,-24
7516: 0,-35
7519: 3,-35
- 7559: -2,-7
9527: -26,0
9532: -12,-40
9543: -12,-37
@@ -7502,6 +8151,13 @@ entities:
9556: 12,-20
9572: 31,25
9830: 1,34
+ 11568: -4,-8
+ 11569: -3,-8
+ 11586: -4,-5
+ 11587: -3,-5
+ 11588: -4,-7
+ 11589: -3,-7
+ 11822: -27,0
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -7531,9 +8187,6 @@ entities:
7514: -1,-34
7528: 1,-34
7531: -29,-3
- 7537: -1,-5
- 7538: -1,-6
- 7544: -3,-5
9508: -32,-43
9509: -26,-43
9550: 11,-18
@@ -7542,6 +8195,11 @@ entities:
10171: 36,25
10173: 36,26
10213: 45,-1
+ 11565: -5,-6
+ 11572: -2,-4
+ 11573: -2,-5
+ 11574: -2,-6
+ 11575: -2,-7
- node:
cleanable: True
angle: 0.6806784082777885 rad
@@ -7594,6 +8252,16 @@ entities:
8253: -21,21
8456: -21,24
8460: -24,26
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt1
+ decals:
+ 11293: 20,-24
+ 11294: 30,-45
+ 11295: 31,-44
+ 11296: 32,-46
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7625,6 +8293,14 @@ entities:
8251: -21,25
8458: -20,26
8461: -25,25
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt2
+ decals:
+ 11291: 20,-25
+ 11292: 21,-24
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7674,6 +8350,14 @@ entities:
6561: 2,-21
8457: -19,25
8462: -24,25
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt3
+ decals:
+ 11290: 19,-26
+ 11300: 31,-46
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7684,7 +8368,6 @@ entities:
3539: 25,26
3540: 34,13
3543: 25,4
- 3549: 7,-7
3550: 4,3
3551: 6,5
3557: -13,7
@@ -7716,6 +8399,17 @@ entities:
6562: 2,-25
6692: -21,-8
8459: -23,24
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt4
+ decals:
+ 11288: 19,-24
+ 11289: 21,-26
+ 11297: 30,-46
+ 11298: 32,-45
+ 11299: 30,-44
- node:
cleanable: True
angle: 2.251474735072685 rad
@@ -7843,8 +8537,7 @@ entities:
-1,1:
0: 7645
0,2:
- 0: 2815
- 1: 1280
+ 0: 4095
-1,2:
0: 3003
0,3:
@@ -7858,8 +8551,7 @@ entities:
1,1:
0: 53237
1,2:
- 0: 19679
- 1: 256
+ 0: 19935
1,3:
0: 28924
1,-1:
@@ -7868,13 +8560,13 @@ entities:
0: 56575
2,0:
0: 1279
- 2: 57344
+ 1: 57344
2,3:
0: 4093
2,-1:
0: 65535
2,1:
- 2: 3822
+ 1: 3822
2,2:
0: 20206
2,4:
@@ -7903,7 +8595,7 @@ entities:
0: 3071
-4,-1:
0: 64272
- 3: 4
+ 2: 4
-5,0:
0: 14847
-4,1:
@@ -7945,7 +8637,7 @@ entities:
-2,4:
0: 30719
-1,-1:
- 0: 65526
+ 0: 65531
-1,4:
0: 29439
0,-4:
@@ -7957,9 +8649,11 @@ entities:
0,-3:
0: 3854
-1,-3:
- 0: 4049
+ 0: 8145
0,-2:
0: 65527
+ -1,-2:
+ 0: 48063
1,-4:
0: 65533
1,-3:
@@ -7999,41 +8693,39 @@ entities:
-5,-4:
0: 65519
-4,-3:
- 3: 80
+ 2: 80
0: 28672
-4,-2:
0: 6007
-5,-3:
0: 49152
- 3: 320
+ 2: 320
-5,-2:
0: 3310
- 3: 4096
+ 2: 4096
-5,-1:
0: 64256
- 3: 4
+ 2: 4
-3,-4:
0: 65529
-3,-3:
- 3: 256
+ 2: 256
0: 52428
-3,-2:
- 3: 4113
+ 2: 4113
0: 52428
-3,-5:
0: 56777
-2,-4:
0: 65529
-2,-3:
- 0: 40401
+ 0: 8145
-2,-2:
- 0: 63931
+ 0: 55739
-2,-5:
0: 65521
-1,-5:
0: 49073
- -1,-2:
- 0: 26214
5,0:
0: 47927
5,1:
@@ -8129,11 +8821,10 @@ entities:
-3,7:
0: 47611
-3,6:
- 0: 742
- 4: 1024
+ 0: 1766
-3,8:
0: 34947
- 3: 768
+ 2: 768
-2,5:
0: 30583
-2,6:
@@ -8203,13 +8894,14 @@ entities:
9,-5:
0: 61661
10,-4:
- 0: 61543
+ 0: 57447
+ 3: 4096
10,-3:
0: 65535
10,-2:
0: 65520
10,-1:
- 0: 65295
+ 0: 61695
10,0:
0: 24017
10,-5:
@@ -8219,7 +8911,7 @@ entities:
11,-5:
0: 65229
11,-3:
- 3: 17638
+ 2: 17638
0: 8
11,-2:
0: 61152
@@ -8231,13 +8923,13 @@ entities:
0: 32767
12,-3:
0: 15
- 3: 39408
+ 2: 39408
12,-2:
0: 4368
- 3: 51400
+ 2: 51400
12,-1:
0: 61440
- 3: 168
+ 2: 168
9,0:
0: 28912
9,1:
@@ -8264,33 +8956,33 @@ entities:
0: 61696
12,2:
0: 511
- 3: 32768
+ 2: 32768
12,3:
0: 53505
- 3: 2184
+ 2: 2184
4,-8:
0: 26222
3,-8:
0: 20477
4,-7:
0: 13095
- 5: 34816
+ 4: 34816
3,-7:
0: 21791
4,-6:
0: 3888
- 5: 8
+ 4: 8
3,-6:
0: 4049
5,-8:
0: 51663
- 3: 4096
+ 2: 4096
5,-7:
- 3: 1
- 5: 13056
+ 2: 1
+ 4: 13056
0: 34958
5,-6:
- 5: 3
+ 4: 3
0: 43912
6,-8:
0: 61183
@@ -8300,7 +8992,9 @@ entities:
0: 65535
6,-5:
0: 259
- 3: 3808
+ 2: 3808
+ 6,-9:
+ 0: 61166
7,-8:
0: 65535
7,-7:
@@ -8331,29 +9025,29 @@ entities:
0: 65520
10,-9:
0: 17984
- 5: 1
- 3: 2444
+ 4: 1
+ 2: 2444
11,-8:
0: 14336
- 3: 200
+ 2: 200
11,-7:
0: 65535
11,-6:
0: 56782
11,-9:
- 3: 35225
+ 2: 35225
12,-8:
- 3: 242
+ 2: 242
0: 32512
12,-7:
0: 16383
- 3: 49152
+ 2: 49152
12,-6:
0: 62225
- 3: 3110
+ 2: 3110
12,-5:
0: 12563
- 3: 50732
+ 2: 50732
0,-8:
0: 2032
0,-9:
@@ -8368,7 +9062,7 @@ entities:
0: 64860
1,-9:
0: 7508
- 3: 128
+ 2: 128
1,-7:
0: 26210
1,-6:
@@ -8380,81 +9074,81 @@ entities:
2,-6:
0: 10096
3,-9:
- 0: 7543
- 3: 128
+ 0: 7511
+ 2: 128
12,-9:
- 3: 29219
+ 2: 29219
13,-8:
- 3: 240
+ 2: 240
0: 2048
13,-7:
0: 32767
- 3: 32768
+ 2: 32768
13,-6:
0: 55074
- 3: 10325
+ 2: 10325
13,-5:
0: 29223
- 3: 34136
+ 2: 34136
13,-4:
0: 4095
14,-8:
- 3: 240
+ 2: 240
0: 32512
14,-7:
0: 61439
- 3: 4096
+ 2: 4096
14,-6:
- 3: 291
+ 2: 291
0: 65228
14,-5:
- 3: 4897
+ 2: 4897
0: 60622
14,-4:
0: 32767
15,-8:
- 3: 32816
+ 2: 32816
15,-7:
0: 30545
- 3: 34952
+ 2: 34952
15,-6:
0: 4439
- 3: 34952
+ 2: 34952
15,-5:
0: 30545
- 3: 34952
+ 2: 34952
15,-4:
0: 343
- 3: 34952
+ 2: 34952
13,-3:
- 3: 240
+ 2: 240
0: 8
13,-1:
0: 63488
- 3: 32
+ 2: 32
14,-3:
0: 15
- 3: 240
+ 2: 240
13,-2:
- 3: 2048
+ 2: 2048
14,-2:
- 3: 24320
+ 2: 24320
14,-1:
0: 65392
13,0:
0: 8
- 3: 32
+ 2: 32
14,0:
0: 127
- 3: 20480
+ 2: 20480
15,-3:
- 3: 248
+ 2: 248
15,-2:
- 3: 12544
+ 2: 12544
15,-1:
- 3: 52806
+ 2: 52806
15,0:
- 3: 13902
+ 2: 13902
-4,-8:
0: 48049
-4,-9:
@@ -8551,13 +9245,12 @@ entities:
0: 4095
-8,-1:
0: 2185
- 3: 4882
+ 2: 4882
-9,-1:
- 3: 3885
+ 2: 3885
0: 2
-8,0:
- 3: 18389
- 0: 2048
+ 2: 18261
-7,-3:
0: 61262
-7,-2:
@@ -8565,7 +9258,7 @@ entities:
-7,-1:
0: 20479
-7,0:
- 0: 238
+ 0: 255
-6,-3:
0: 26470
-6,-2:
@@ -8575,24 +9268,24 @@ entities:
-6,0:
0: 45294
-8,3:
- 3: 25456
+ 2: 25456
-9,3:
- 3: 34816
+ 2: 34816
-8,1:
- 3: 17988
+ 2: 17988
0: 2048
-8,2:
- 3: 1604
+ 2: 1604
0: 2048
-8,4:
- 3: 34614
+ 2: 34614
-7,3:
0: 65358
-7,2:
0: 57352
-7,4:
0: 255
- 3: 57344
+ 2: 57344
-7,1:
0: 8
-6,1:
@@ -8603,7 +9296,7 @@ entities:
0: 64781
-6,4:
0: 3295
- 3: 4096
+ 2: 4096
4,8:
0: 56732
5,4:
@@ -8632,7 +9325,7 @@ entities:
0: 61679
7,8:
0: 11779
- 3: 128
+ 2: 128
8,4:
0: 49072
8,5:
@@ -8642,117 +9335,113 @@ entities:
8,7:
0: 61687
0,-11:
- 3: 2207
+ 2: 2207
0: 45056
0,-10:
0: 65523
-1,-11:
0: 45824
- 3: 4
+ 2: 4
-1,-10:
0: 49081
1,-11:
- 3: 1863
+ 2: 1863
0: 28672
1,-10:
0: 21844
2,-9:
- 3: 49
- 0: 1996
+ 2: 49
+ 0: 1868
2,-12:
- 3: 4593
+ 2: 4593
0: 3084
2,-13:
- 3: 4593
+ 2: 4593
0: 3084
2,-11:
- 3: 4593
+ 2: 4593
0: 3084
2,-10:
- 3: 4593
+ 2: 4593
0: 3084
3,-12:
0: 1991
- 3: 4144
+ 2: 4144
3,-11:
0: 1991
- 3: 4144
+ 2: 4144
3,-10:
0: 1991
- 3: 4144
+ 2: 4144
3,-13:
- 3: 4144
+ 2: 4144
0: 1991
4,-12:
0: 4369
- 3: 17476
+ 2: 17476
4,-11:
- 0: 4369
- 3: 17484
+ 0: 14097
+ 2: 2124
4,-10:
- 0: 4369
- 3: 19532
+ 0: 4881
+ 2: 8226
+ 4: 8
+ 5: 2048
4,-9:
- 0: 3985
- 3: 108
+ 0: 1841
+ 2: 2050
+ 6: 8
4,-13:
0: 4369
- 3: 17476
+ 2: 17476
5,-11:
- 3: 1199
- 0: 6912
+ 2: 687
+ 0: 36096
5,-10:
- 3: 4113
- 0: 256
- 5: 12
- 6: 3072
+ 4: 3
+ 5: 768
+ 2: 32904
+ 0: 2048
5,-9:
- 3: 1025
- 0: 2832
- 7: 12
+ 6: 3
+ 0: 3456
+ 2: 520
5,-12:
- 3: 40960
+ 2: 40960
+ 6,-12:
+ 2: 63624
6,-11:
- 3: 495
- 0: 17920
+ 2: 31
+ 0: 60416
6,-10:
- 5: 1
- 6: 256
- 3: 16452
- 0: 1024
- 6,-9:
- 7: 1
- 3: 260
- 0: 1600
- 6,-12:
- 3: 51336
+ 0: 61166
6,-13:
- 3: 32768
+ 2: 32768
7,-12:
- 3: 4356
- 5: 52224
+ 2: 4356
+ 4: 52224
7,-11:
- 3: 1
- 0: 65024
- 5: 12
+ 2: 1
+ 0: 65280
+ 4: 12
7,-10:
0: 65535
7,-13:
- 3: 65100
+ 2: 65100
8,-12:
- 5: 4352
- 3: 52361
+ 4: 4352
+ 2: 52361
8,-11:
- 5: 1
+ 4: 1
0: 29440
- 3: 140
+ 2: 140
8,-10:
0: 30583
-4,-12:
0: 56796
-4,-13:
0: 4352
- 3: 2252
+ 2: 2252
-5,-12:
0: 3824
-4,-11:
@@ -8765,22 +9454,22 @@ entities:
0: 14193
-3,-11:
0: 36658
- 3: 8
+ 2: 8
-3,-10:
0: 14779
-3,-13:
- 3: 35057
+ 2: 35057
-2,-12:
- 3: 61713
+ 2: 61713
-2,-11:
0: 43776
- 3: 4
+ 2: 4
-2,-10:
0: 43952
-1,-12:
- 3: 28672
+ 2: 28672
-8,-12:
- 3: 10
+ 2: 10
0: 3840
-9,-12:
0: 20192
@@ -8799,47 +9488,48 @@ entities:
-7,-10:
0: 4095
-7,-13:
- 3: 12239
+ 2: 12239
0: 49152
-6,-12:
0: 20464
-6,-10:
0: 36863
-6,-13:
- 3: 6087
+ 2: 6087
-6,-11:
0: 20206
-5,-11:
0: 1911
-5,-13:
- 0: 65024
+ 7: 4096
+ 0: 60928
-12,-4:
0: 65280
-13,-4:
0: 65024
-12,-3:
0: 2063
- 3: 42752
+ 2: 42752
-13,-3:
0: 15
- 3: 3584
+ 2: 3584
-12,-2:
- 3: 26282
+ 2: 26282
0: 34816
-12,-1:
- 3: 3626
+ 2: 3626
-11,-4:
0: 61678
-11,-3:
0: 61135
-11,-1:
0: 3
- 3: 3900
+ 2: 3900
-11,-2:
0: 3822
-11,-5:
0: 25668
- 3: 1
+ 2: 1
-10,-4:
0: 29935
-10,-3:
@@ -8847,20 +9537,20 @@ entities:
-10,-2:
0: 4095
-10,-1:
- 3: 3885
+ 2: 3885
0: 2
-12,-8:
0: 4095
-13,-8:
0: 4095
-12,-7:
- 3: 12
+ 2: 12
-11,-8:
0: 20479
-11,-7:
0: 18022
-11,-6:
- 3: 1
+ 2: 1
0: 17476
-11,-9:
0: 41843
@@ -8875,118 +9565,118 @@ entities:
-10,-9:
0: 47803
-12,7:
- 3: 10098
+ 2: 10098
-13,7:
- 3: 48945
+ 2: 48945
-12,6:
- 3: 11976
+ 2: 11976
-12,8:
- 3: 8823
+ 2: 8823
-11,6:
- 3: 15
+ 2: 15
-11,7:
0: 25326
-11,8:
0: 3810
-10,6:
- 3: 19
+ 2: 19
0: 49152
-10,7:
0: 65533
-10,5:
- 3: 61440
+ 2: 61440
-10,8:
0: 52735
-9,5:
- 3: 28672
+ 2: 28672
-9,6:
0: 53248
- 3: 78
+ 2: 78
-9,7:
0: 56733
-9,8:
0: 56733
-9,4:
- 3: 136
+ 2: 136
-8,6:
- 3: 239
+ 2: 239
0: 21504
-8,7:
0: 63941
8,-13:
- 3: 62225
+ 2: 62225
9,-12:
- 3: 36864
+ 2: 36864
9,-11:
- 3: 1215
+ 2: 1215
0: 6912
9,-10:
- 3: 4113
+ 2: 4113
0: 256
- 5: 12
+ 4: 12
8: 3072
9,-9:
- 3: 1025
+ 2: 1025
0: 2832
- 5: 12
+ 4: 12
10,-11:
- 3: 295
+ 2: 295
0: 17920
10,-10:
- 5: 1
+ 4: 1
8: 256
- 3: 18508
+ 2: 18508
0: 1024
10,-12:
- 3: 8192
+ 2: 8192
11,-10:
- 3: 65529
+ 2: 65529
11,-11:
- 3: 39304
+ 2: 39304
11,-12:
- 3: 34944
+ 2: 34944
12,-12:
- 3: 8994
+ 2: 8994
12,-11:
- 3: 562
+ 2: 562
12,-10:
- 3: 8960
+ 2: 8960
4,-15:
- 3: 22272
+ 2: 22272
3,-15:
- 3: 20224
+ 2: 20224
4,-14:
0: 4369
- 3: 17476
+ 2: 17476
3,-14:
0: 1991
- 3: 6192
+ 2: 6192
6,-15:
- 3: 49152
+ 2: 49152
6,-14:
- 3: 200
+ 2: 200
7,-15:
- 3: 61440
+ 2: 61440
7,-14:
- 3: 20212
+ 2: 20212
8,-15:
- 3: 61440
+ 2: 61440
8,-14:
- 3: 5113
+ 2: 5113
9,-15:
- 3: 4096
+ 2: 4096
9,-14:
- 3: 112
+ 2: 112
-8,8:
0: 23821
- 3: 32768
+ 2: 32768
-8,5:
- 3: 34952
+ 2: 34952
-7,5:
- 3: 8240
+ 2: 8240
0: 2176
-7,6:
- 3: 273
+ 2: 273
0: 2730
-7,7:
0: 64543
@@ -9002,58 +9692,58 @@ entities:
0: 24669
-5,8:
0: 15
- 3: 256
+ 2: 256
-12,-9:
- 3: 1024
+ 2: 1024
-12,-10:
- 3: 128
+ 2: 128
-11,-10:
- 3: 112
+ 2: 112
0: 28672
-10,-11:
0: 65535
-10,-10:
0: 11252
-10,-12:
- 3: 273
+ 2: 273
0: 19652
-10,-13:
- 3: 4096
+ 2: 4096
0: 16384
-9,-11:
0: 21845
-9,-13:
- 3: 55296
+ 2: 55296
-4,-16:
- 3: 20224
+ 2: 20224
-5,-16:
- 3: 40704
+ 2: 40704
-4,-15:
- 3: 15
+ 2: 15
-5,-15:
- 3: 15
+ 2: 15
-3,-16:
- 3: 9984
+ 2: 9984
-3,-15:
- 3: 7
+ 2: 7
-8,-13:
- 3: 3976
+ 2: 3976
-8,-16:
- 3: 35840
+ 2: 35840
-8,-15:
- 3: 12
+ 2: 12
-7,-16:
- 3: 12032
+ 2: 12032
-7,-15:
- 3: 58095
+ 2: 58095
-7,-14:
- 3: 11980
+ 2: 11980
-6,-16:
- 3: 24320
+ 2: 24320
-6,-15:
- 3: 4383
+ 2: 4383
-6,-14:
- 3: 4352
+ 2: 4352
-16,-8:
0: 61439
-17,-8:
@@ -9061,13 +9751,13 @@ entities:
-16,-7:
0: 10
-17,-7:
- 3: 8
+ 2: 8
-16,-9:
0: 59904
-15,-8:
0: 4095
-15,-7:
- 3: 10
+ 2: 10
-14,-8:
0: 61439
-14,-7:
@@ -9075,55 +9765,55 @@ entities:
-14,-9:
0: 59904
-13,-7:
- 3: 2
+ 2: 2
-19,-7:
- 3: 58436
+ 2: 58436
-19,-6:
- 3: 43690
+ 2: 43690
-19,-5:
- 3: 17642
+ 2: 17642
-19,-8:
- 3: 19592
+ 2: 19592
-19,-4:
- 3: 35908
+ 2: 35908
-19,-9:
- 3: 32768
+ 2: 32768
-18,-8:
- 3: 4898
+ 2: 4898
0: 2248
-18,-7:
- 3: 4369
+ 2: 4369
-18,-5:
- 3: 4368
+ 2: 4368
-18,-4:
- 3: 28433
+ 2: 28433
-18,-9:
- 3: 12288
+ 2: 12288
-17,-9:
- 3: 2048
+ 2: 2048
-15,-9:
- 3: 2560
+ 2: 2560
-13,-9:
- 3: 512
+ 2: 512
-16,-4:
- 3: 20224
+ 2: 20224
-17,-4:
- 3: 20224
+ 2: 20224
-16,-3:
- 3: 244
+ 2: 244
-17,-3:
- 3: 244
+ 2: 244
-15,-4:
- 3: 10112
+ 2: 10112
-15,-3:
- 3: 2162
+ 2: 2162
-14,-4:
0: 64170
-14,-3:
0: 43695
8,8:
0: 1004
- 3: 11280
+ 2: 11280
9,4:
0: 65520
9,5:
@@ -9133,8 +9823,8 @@ entities:
9,7:
0: 55536
9,8:
- 0: 49
- 3: 43968
+ 0: 8753
+ 2: 35264
10,4:
0: 56784
10,5:
@@ -9145,7 +9835,7 @@ entities:
0: 55551
10,8:
0: 12
- 3: 16
+ 2: 16
11,5:
0: 64791
11,6:
@@ -9154,7 +9844,7 @@ entities:
0: 64541
11,8:
0: 1
- 3: 192
+ 2: 192
12,4:
0: 35832
12,5:
@@ -9170,7 +9860,7 @@ entities:
1,9:
0: 65535
1,10:
- 3: 16
+ 2: 16
0: 2248
2,9:
0: 65535
@@ -9179,62 +9869,65 @@ entities:
3,9:
0: 65535
3,10:
- 3: 16
+ 2: 16
4,9:
0: 57311
4,10:
- 3: 16
+ 2: 16
0: 12
5,9:
0: 64443
5,10:
0: 34959
- 3: 8704
+ 2: 8704
5,11:
- 3: 2
+ 2: 2
0: 52424
5,12:
- 3: 17476
+ 2: 17476
0: 34952
6,9:
0: 7645
6,10:
0: 13
- 3: 8896
+ 2: 8896
6,11:
0: 13104
- 3: 2
+ 2: 2
6,12:
- 3: 4369
+ 2: 4369
7,10:
- 0: 10987
- 3: 16
+ 0: 2059
+ 2: 8944
7,9:
- 0: 10986
+ 0: 10794
+ 2: 192
7,11:
- 0: 10986
+ 2: 8930
+ 0: 2056
7,12:
- 0: 10986
+ 2: 8930
+ 0: 2056
8,9:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
8,10:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
8,11:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
-3,9:
- 3: 32
+ 2: 32
0: 57480
-3,10:
- 3: 32
+ 2: 32
0: 34944
-3,11:
- 3: 2
+ 2: 2
0: 3592
-3,12:
- 3: 8194
+ 2: 8194
0: 34952
-2,9:
0: 30523
@@ -9248,240 +9941,245 @@ entities:
0: 21873
-1,10:
0: 4369
- 3: 17472
+ 2: 17472
-1,11:
0: 4913
-1,12:
0: 4403
- 3: 16384
+ 2: 16384
8,12:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
9,9:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,10:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,11:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,12:
- 3: 43770
+ 0: 8754
+ 2: 35016
12,8:
- 3: 16
+ 2: 16
0: 76
13,8:
0: 17
- 3: 76
+ 2: 76
13,7:
0: 4352
- 3: 19522
+ 2: 19522
14,8:
- 3: 34959
+ 2: 34959
14,7:
- 3: 53128
+ 2: 53128
15,8:
- 3: 8448
+ 2: 8448
14,9:
- 3: 2184
+ 2: 2184
15,9:
- 3: 8754
+ 2: 8754
13,4:
0: 13107
- 3: 52416
+ 2: 52416
13,5:
0: 19
- 3: 8800
+ 2: 8800
13,6:
0: 16
- 3: 8802
+ 2: 8802
13,3:
0: 4096
- 3: 8192
+ 2: 8192
14,4:
- 3: 65276
+ 2: 65276
14,5:
- 3: 34956
+ 2: 34956
14,3:
- 3: 34952
+ 2: 34952
15,4:
- 3: 12850
+ 2: 12850
15,5:
- 3: 8994
+ 2: 8994
14,6:
- 3: 32776
+ 2: 32776
15,7:
- 3: 12835
+ 2: 12835
15,6:
- 3: 8754
+ 2: 8754
15,3:
- 3: 8994
+ 2: 8994
-8,9:
- 3: 3840
+ 2: 3840
0: 12
-9,9:
- 3: 32320
+ 2: 32320
-7,9:
0: 1
- 3: 18368
+ 2: 18368
-7,10:
- 3: 43694
+ 2: 43694
-7,11:
- 3: 9742
+ 2: 9742
-7,12:
- 3: 34822
+ 2: 34822
-6,11:
0: 30498
- 3: 8
+ 2: 8
-6,9:
0: 26214
-6,10:
0: 8738
- 3: 128
+ 2: 128
-6,12:
0: 26119
-13,8:
- 3: 4415
+ 2: 4415
-12,9:
- 3: 2254
+ 2: 2254
-11,9:
- 3: 3840
+ 2: 3840
-10,9:
- 3: 62224
+ 2: 62224
-14,8:
- 3: 2127
+ 2: 2127
-14,7:
- 3: 24428
+ 2: 24428
-14,9:
- 3: 17600
+ 2: 17600
-14,10:
- 3: 76
+ 2: 76
-13,9:
- 3: 4369
+ 2: 4369
-13,10:
- 3: 17
+ 2: 17
-14,5:
- 3: 19520
+ 2: 19520
-14,6:
- 3: 17604
+ 2: 17604
-13,5:
- 3: 4369
+ 2: 4369
-13,6:
- 3: 4369
+ 2: 4369
-13,4:
- 3: 4096
+ 2: 4096
-4,13:
0: 61440
- 3: 64
+ 2: 64
-4,14:
0: 139
- 3: 8960
+ 2: 8960
-5,13:
0: 61696
- 3: 64
+ 2: 64
-5,14:
0: 8
- 3: 35840
+ 2: 35840
-4,15:
- 3: 63266
+ 2: 63266
-5,15:
- 3: 64648
+ 2: 64648
-4,16:
- 3: 146
+ 2: 146
-3,13:
0: 65288
- 3: 2
+ 2: 2
-3,14:
0: 2032
-3,15:
- 3: 63488
+ 2: 63488
-3,16:
- 3: 249
+ 2: 249
-2,13:
0: 19859
-2,14:
- 3: 61440
+ 2: 61440
0: 102
-2,15:
- 3: 65433
+ 2: 65433
-2,16:
- 3: 244
+ 2: 244
-1,13:
0: 273
- 3: 35020
+ 2: 35020
-1,14:
- 3: 6047
+ 2: 6047
-1,15:
- 3: 28928
+ 2: 28928
-1,16:
- 3: 2
+ 2: 2
-7,15:
- 3: 61440
+ 2: 61440
-7,13:
- 3: 8800
+ 2: 8800
-7,14:
- 3: 98
+ 2: 98
0: 32768
-7,16:
- 3: 228
+ 2: 228
-6,13:
0: 40822
-6,14:
0: 12595
- 3: 51328
+ 2: 51328
-6,15:
- 3: 61440
+ 2: 61440
-6,16:
- 3: 242
+ 2: 242
-5,16:
- 3: 249
+ 2: 249
5,13:
- 3: 8740
+ 2: 8740
0: 52424
5,14:
- 3: 12
+ 2: 12
6,13:
- 3: 8737
+ 2: 8737
0: 4368
6,14:
- 3: 1
+ 2: 1
7,13:
- 0: 2794
- 3: 40960
+ 2: 41698
+ 0: 2056
7,14:
- 3: 14
+ 2: 14
8,13:
- 0: 3855
- 3: 33008
+ 0: 3983
+ 2: 32880
8,14:
- 3: 15
+ 2: 127
12,0:
- 3: 32
+ 2: 32
13,1:
- 3: 50696
+ 2: 50696
0: 8192
13,2:
0: 34
- 3: 1740
+ 2: 1740
14,1:
- 3: 15
+ 2: 15
15,1:
- 3: 1
+ 2: 1
14,2:
- 3: 34944
+ 2: 34944
15,2:
- 3: 62064
+ 2: 62064
2,-15:
- 3: 24320
+ 2: 24320
2,-14:
- 3: 4593
+ 2: 4593
0: 3084
9,13:
- 3: 43770
+ 0: 562
+ 2: 43208
9,14:
- 3: 15
+ 2: 15
-19,-3:
- 3: 136
+ 2: 136
-18,-3:
- 3: 246
+ 2: 246
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -9498,21 +10196,6 @@ entities:
- 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: 235
moles:
@@ -9603,6 +10286,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.823984
+ - 82.09976
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -9651,6 +10349,11 @@ entities:
- 486
- 716
- 454
+ - 5993
+ - 3439
+ - 5992
+ - 3815
+ - 14702
- uid: 811
components:
- type: MetaData
@@ -9664,10 +10367,10 @@ entities:
- 2691
- 824
- 901
- - 853
- - 16330
- - 16329
- - 16331
+ - 3815
+ - 3439
+ - 5992
+ - 5993
- 1628
- 263
- 264
@@ -9680,6 +10383,7 @@ entities:
- 197
- 243
- 1619
+ - 14702
- uid: 813
components:
- type: MetaData
@@ -10462,23 +11166,6 @@ entities:
- 10886
- 11195
- 5310
- - uid: 12673
- components:
- - type: MetaData
- name: air alarm (Atmospherics)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-33.5
- parent: 2
- - type: DeviceList
- devices:
- - 9478
- - 7484
- - 9011
- - 13836
- - 13834
- - 13835
- - 13850
- uid: 12674
components:
- type: MetaData
@@ -11403,6 +12090,23 @@ entities:
- 12404
- 10840
- 10841
+ - uid: 14575
+ components:
+ - type: MetaData
+ name: air alarm (Atmospherics)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-32.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 9478
+ - 7484
+ - 9011
+ - 13836
+ - 13834
+ - 13835
+ - 13850
- uid: 14751
components:
- type: MetaData
@@ -11507,6 +12211,11 @@ entities:
- type: Transform
pos: -33.5,27.5
parent: 2
+ - uid: 6003
+ components:
+ - type: Transform
+ pos: 27.5,-41.5
+ parent: 2
- uid: 6295
components:
- type: Transform
@@ -11634,6 +12343,14 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-5.5
parent: 2
+ - uid: 5991
+ components:
+ - type: MetaData
+ name: airlock (Bar)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-7.5
+ parent: 2
- proto: AirlockBrigGlassLocked
entities:
- uid: 1939
@@ -11816,20 +12533,6 @@ entities:
- type: Transform
pos: -23.5,-7.5
parent: 2
- - uid: 4571
- components:
- - type: MetaData
- name: glass airlock (Bridge Evac)
- - type: Transform
- pos: -40.5,-10.5
- parent: 2
- - uid: 4574
- components:
- - type: MetaData
- name: glass airlock (Bridge Evac)
- - type: Transform
- pos: -41.5,-10.5
- parent: 2
- proto: AirlockCommandLocked
entities:
- uid: 50
@@ -11860,6 +12563,20 @@ entities:
- type: Transform
pos: -52.5,-10.5
parent: 2
+ - uid: 4571
+ components:
+ - type: MetaData
+ name: airlock (Bridge Evac)
+ - type: Transform
+ pos: -41.5,-10.5
+ parent: 2
+ - uid: 4574
+ components:
+ - type: MetaData
+ name: airlock (Bridge Evac)
+ - type: Transform
+ pos: -40.5,-10.5
+ parent: 2
- uid: 5451
components:
- type: MetaData
@@ -12078,6 +12795,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-41.5
parent: 2
+ - uid: 9617
+ components:
+ - type: MetaData
+ name: airlock (Station Anchor)
+ - type: Transform
+ pos: 44.5,-5.5
+ parent: 2
+ - uid: 11339
+ components:
+ - type: MetaData
+ name: airlock (Gravity Generator)
+ - type: Transform
+ pos: 38.5,-5.5
+ parent: 2
- proto: AirlockEVAGlassLocked
entities:
- uid: 1710
@@ -12099,7 +12830,7 @@ entities:
- uid: 1717
components:
- type: MetaData
- name: maintenance airlock (EVA)
+ name: maintenance access (EVA)
- type: Transform
pos: 20.5,-18.5
parent: 2
@@ -12983,11 +13714,6 @@ entities:
- type: Transform
pos: -2.5,13.5
parent: 2
- - uid: 693
- components:
- - type: Transform
- pos: -6.5,-4.5
- parent: 2
- uid: 694
components:
- type: Transform
@@ -12998,14 +13724,6 @@ entities:
- type: Transform
pos: -3.5,-11.5
parent: 2
- - uid: 858
- components:
- - type: MetaData
- name: maintenance access (Service)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-3.5
- parent: 2
- uid: 1141
components:
- type: Transform
@@ -13223,7 +13941,7 @@ entities:
pos: 47.5,5.5
parent: 2
- type: Door
- secondsUntilStateChange: -256594.28
+ secondsUntilStateChange: -282233.8
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -13264,11 +13982,24 @@ entities:
- type: Transform
pos: -10.5,-43.5
parent: 2
+ - uid: 14357
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
- uid: 14554
components:
- type: Transform
pos: -12.5,56.5
parent: 2
+ - uid: 15509
+ components:
+ - type: MetaData
+ name: maintenance access (Service)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-8.5
+ parent: 2
- proto: AirlockMaintMedLocked
entities:
- uid: 459
@@ -14118,7 +14849,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- uid: 10064
components:
- type: Transform
@@ -14868,6 +15599,36 @@ entities:
- type: Transform
pos: -34.5,-22.5
parent: 2
+- proto: AmeController
+ entities:
+ - uid: 2508
+ components:
+ - type: Transform
+ pos: 40.5,-10.5
+ parent: 2
+- proto: AmePartFlatpack
+ entities:
+ - uid: 4557
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 4558
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 4591
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: APCBasic
entities:
- uid: 45
@@ -15047,6 +15808,14 @@ entities:
- type: Transform
pos: -24.5,-40.5
parent: 2
+ - uid: 4449
+ components:
+ - type: MetaData
+ name: APC (Bar)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-7.5
+ parent: 2
- uid: 4473
components:
- type: MetaData
@@ -15387,13 +16156,13 @@ entities:
- type: Transform
pos: 40.5,-17.5
parent: 2
- - uid: 8786
+ - uid: 8945
components:
- type: MetaData
name: APC (Atmospherics)
- type: Transform
rot: 3.141592653589793 rad
- pos: 26.5,-32.5
+ pos: 35.5,-32.5
parent: 2
- uid: 9101
components:
@@ -15658,14 +16427,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-33.5
parent: 2
- - uid: 16346
- components:
- - type: MetaData
- name: APC (Bar)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-7.5
- parent: 2
- proto: APCElectronics
entities:
- uid: 2249
@@ -15719,10 +16480,10 @@ entities:
parent: 2
- proto: Ashtray
entities:
- - uid: 208
+ - uid: 195
components:
- type: Transform
- pos: -2.688402,-7.2815943
+ pos: -4.5188475,-6.370361
parent: 2
- uid: 296
components:
@@ -15747,7 +16508,7 @@ entities:
- uid: 14508
components:
- type: Transform
- pos: 33.39071,57.45458
+ pos: 33.491795,61.631714
parent: 2
- uid: 16380
components:
@@ -15895,6 +16656,11 @@ entities:
parent: 2
- proto: AtmosFixBlockerMarker
entities:
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: 20.5,-39.5
+ parent: 2
- uid: 2449
components:
- type: Transform
@@ -15910,21 +16676,6 @@ entities:
- type: Transform
pos: 40.5,-35.5
parent: 2
- - uid: 2452
- components:
- - type: Transform
- pos: 22.5,-39.5
- parent: 2
- - uid: 2453
- components:
- - type: Transform
- pos: 23.5,-39.5
- parent: 2
- - uid: 2454
- components:
- - type: Transform
- pos: 24.5,-39.5
- parent: 2
- uid: 2455
components:
- type: Transform
@@ -15940,6 +16691,16 @@ entities:
- type: Transform
pos: 40.5,-39.5
parent: 2
+ - uid: 8943
+ components:
+ - type: Transform
+ pos: 21.5,-39.5
+ parent: 2
+ - uid: 12715
+ components:
+ - type: Transform
+ pos: 19.5,-39.5
+ parent: 2
- uid: 12733
components:
- type: Transform
@@ -16094,37 +16855,37 @@ entities:
parent: 2
- proto: AtmosFixNitrogenMarker
entities:
- - uid: 2440
+ - uid: 14549
components:
- type: Transform
- pos: 22.5,-35.5
+ pos: 19.5,-35.5
parent: 2
- - uid: 2441
+ - uid: 14551
components:
- type: Transform
- pos: 23.5,-35.5
+ pos: 20.5,-35.5
parent: 2
- - uid: 2442
+ - uid: 14552
components:
- type: Transform
- pos: 24.5,-35.5
+ pos: 21.5,-35.5
parent: 2
- proto: AtmosFixOxygenMarker
entities:
- - uid: 2443
+ - uid: 2323
components:
- type: Transform
- pos: 22.5,-37.5
+ pos: 19.5,-37.5
parent: 2
- - uid: 2444
+ - uid: 8942
components:
- type: Transform
- pos: 23.5,-37.5
+ pos: 20.5,-37.5
parent: 2
- - uid: 2445
+ - uid: 14548
components:
- type: Transform
- pos: 24.5,-37.5
+ pos: 21.5,-37.5
parent: 2
- proto: AtmosFixPlasmaMarker
entities:
@@ -16800,7 +17561,7 @@ entities:
- uid: 16340
components:
- type: Transform
- pos: 1.4589906,-2.4393148
+ pos: 1.6190121,-2.3009129
parent: 2
- proto: BooksBag
entities:
@@ -16902,18 +17663,18 @@ entities:
parent: 2
- proto: BoozeDispenser
entities:
- - uid: 323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-7.5
- parent: 2
- uid: 8604
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 59.5,0.5
parent: 2
+ - uid: 13974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 2
- proto: BorgCharger
entities:
- uid: 5132
@@ -16936,6 +17697,13 @@ entities:
- type: Transform
pos: -35.5,32.5
parent: 2
+- proto: BorgChargerCircuitboard
+ entities:
+ - uid: 16400
+ components:
+ - type: Transform
+ pos: 31.979313,-18.066778
+ parent: 2
- proto: BoxBodyBag
entities:
- uid: 4064
@@ -16987,7 +17755,7 @@ entities:
- uid: 16013
components:
- type: Transform
- pos: 10.5347595,-19.391357
+ pos: 13.292512,-18.000015
parent: 2
- uid: 16014
components:
@@ -17072,7 +17840,7 @@ entities:
- uid: 16009
components:
- type: Transform
- pos: 23.632082,-10.817182
+ pos: 23.14036,-10.470763
parent: 2
- uid: 16010
components:
@@ -17461,12 +18229,6 @@ entities:
parent: 2
- proto: ButtonFrameJanitor
entities:
- - uid: 996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-3.5
- parent: 2
- uid: 6028
components:
- type: Transform
@@ -17477,6 +18239,12 @@ entities:
- type: Transform
pos: -26.5,-6.5
parent: 2
+ - uid: 15679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 2
- uid: 15854
components:
- type: Transform
@@ -17555,11 +18323,6 @@ entities:
parent: 2
- proto: CableApcExtension
entities:
- - uid: 5
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 2
- uid: 117
components:
- type: Transform
@@ -17575,21 +18338,11 @@ entities:
- type: Transform
pos: -13.5,24.5
parent: 2
- - uid: 195
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- uid: 267
components:
- type: Transform
pos: -1.5,-8.5
parent: 2
- - uid: 325
- components:
- - type: Transform
- pos: -2.5,-5.5
- parent: 2
- uid: 378
components:
- type: Transform
@@ -17615,21 +18368,6 @@ entities:
- type: Transform
pos: 23.5,37.5
parent: 2
- - uid: 495
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 496
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 497
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- uid: 504
components:
- type: Transform
@@ -18075,30 +18813,10 @@ entities:
- type: Transform
pos: -4.5,9.5
parent: 2
- - uid: 732
- components:
- - type: Transform
- pos: -1.5,-5.5
- parent: 2
- - uid: 754
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 755
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- - uid: 756
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 757
+ - uid: 721
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: 42.5,-3.5
parent: 2
- uid: 758
components:
@@ -18360,6 +19078,11 @@ entities:
- type: Transform
pos: 40.5,-5.5
parent: 2
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: 32.5,-30.5
+ parent: 2
- uid: 1817
components:
- type: Transform
@@ -18390,16 +19113,141 @@ entities:
- type: Transform
pos: -8.5,-41.5
parent: 2
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 29.5,-41.5
+ parent: 2
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: 30.5,-41.5
+ parent: 2
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 26.5,-34.5
+ parent: 2
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 26.5,-35.5
+ parent: 2
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 26.5,-36.5
+ parent: 2
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 26.5,-37.5
+ parent: 2
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 26.5,-38.5
+ parent: 2
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 26.5,-39.5
+ parent: 2
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 27.5,-39.5
+ parent: 2
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 29.5,-40.5
+ parent: 2
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 33.5,-40.5
+ parent: 2
- uid: 2271
components:
- type: Transform
pos: -2.5,-17.5
parent: 2
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: 28.5,-39.5
+ parent: 2
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 33.5,-41.5
+ parent: 2
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: 31.5,-41.5
+ parent: 2
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: 26.5,-33.5
+ parent: 2
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: 26.5,-32.5
+ parent: 2
+ - uid: 2378
+ components:
+ - type: Transform
+ pos: 24.5,-42.5
+ parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: 23.5,-42.5
+ parent: 2
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: 31.5,-30.5
+ parent: 2
+ - uid: 2417
+ components:
+ - type: Transform
+ pos: 23.5,-37.5
+ parent: 2
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: 23.5,-39.5
+ parent: 2
+ - uid: 2440
+ components:
+ - type: Transform
+ pos: 22.5,-35.5
+ parent: 2
+ - uid: 2495
+ components:
+ - type: Transform
+ pos: 23.5,-35.5
+ parent: 2
+ - uid: 2514
+ components:
+ - type: Transform
+ pos: 23.5,-36.5
+ parent: 2
- uid: 2569
components:
- type: Transform
pos: -6.5,21.5
parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ pos: 23.5,-41.5
+ parent: 2
- uid: 2674
components:
- type: Transform
@@ -18460,11 +19308,6 @@ entities:
- type: Transform
pos: 12.5,-32.5
parent: 2
- - uid: 2813
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 2
- uid: 2830
components:
- type: Transform
@@ -18500,6 +19343,21 @@ entities:
- type: Transform
pos: 3.5,-5.5
parent: 2
+ - uid: 2943
+ components:
+ - type: Transform
+ pos: 23.5,-40.5
+ parent: 2
+ - uid: 2944
+ components:
+ - type: Transform
+ pos: 32.5,-41.5
+ parent: 2
+ - uid: 2949
+ components:
+ - type: Transform
+ pos: 23.5,-38.5
+ parent: 2
- uid: 2986
components:
- type: Transform
@@ -18515,11 +19373,6 @@ entities:
- type: Transform
pos: 1.5,-5.5
parent: 2
- - uid: 3001
- components:
- - type: Transform
- pos: -0.5,-5.5
- parent: 2
- uid: 3011
components:
- type: Transform
@@ -18535,6 +19388,11 @@ entities:
- type: Transform
pos: -50.5,-12.5
parent: 2
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: 21.5,-35.5
+ parent: 2
- uid: 3239
components:
- type: Transform
@@ -22720,11 +23578,6 @@ entities:
- type: Transform
pos: 44.5,-27.5
parent: 2
- - uid: 8889
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- uid: 8890
components:
- type: Transform
@@ -22790,60 +23643,15 @@ entities:
- type: Transform
pos: 33.5,-39.5
parent: 2
- - uid: 8925
- components:
- - type: Transform
- pos: 32.5,-39.5
- parent: 2
- - uid: 8926
- components:
- - type: Transform
- pos: 31.5,-39.5
- parent: 2
- - uid: 8927
- components:
- - type: Transform
- pos: 30.5,-39.5
- parent: 2
- uid: 8928
components:
- type: Transform
pos: 29.5,-39.5
parent: 2
- - uid: 8929
- components:
- - type: Transform
- pos: 29.5,-38.5
- parent: 2
- - uid: 8930
- components:
- - type: Transform
- pos: 29.5,-37.5
- parent: 2
- - uid: 8931
- components:
- - type: Transform
- pos: 29.5,-36.5
- parent: 2
- - uid: 8932
- components:
- - type: Transform
- pos: 29.5,-35.5
- parent: 2
- - uid: 8933
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 8934
- components:
- - type: Transform
- pos: 29.5,-33.5
- parent: 2
- uid: 8935
components:
- type: Transform
- pos: 29.5,-32.5
+ pos: 29.5,-38.5
parent: 2
- uid: 8936
components:
@@ -22860,86 +23668,6 @@ entities:
- type: Transform
pos: 29.5,-44.5
parent: 2
- - uid: 8939
- components:
- - type: Transform
- pos: 31.5,-41.5
- parent: 2
- - uid: 8940
- components:
- - type: Transform
- pos: 31.5,-40.5
- parent: 2
- - uid: 8941
- components:
- - type: Transform
- pos: 23.5,-39.5
- parent: 2
- - uid: 8942
- components:
- - type: Transform
- pos: 24.5,-39.5
- parent: 2
- - uid: 8943
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - uid: 8944
- components:
- - type: Transform
- pos: 26.5,-39.5
- parent: 2
- - uid: 8945
- components:
- - type: Transform
- pos: 23.5,-37.5
- parent: 2
- - uid: 8946
- components:
- - type: Transform
- pos: 24.5,-37.5
- parent: 2
- - uid: 8947
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 8948
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - uid: 8949
- components:
- - type: Transform
- pos: 23.5,-35.5
- parent: 2
- - uid: 8950
- components:
- - type: Transform
- pos: 24.5,-35.5
- parent: 2
- - uid: 8951
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- - uid: 8952
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - uid: 8953
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - uid: 8954
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- uid: 8955
components:
- type: Transform
@@ -23070,26 +23798,6 @@ entities:
- type: Transform
pos: 36.5,-40.5
parent: 2
- - uid: 8987
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- - uid: 8988
- components:
- - type: Transform
- pos: 26.5,-41.5
- parent: 2
- - uid: 8989
- components:
- - type: Transform
- pos: 26.5,-42.5
- parent: 2
- - uid: 8990
- components:
- - type: Transform
- pos: 27.5,-42.5
- parent: 2
- uid: 8991
components:
- type: Transform
@@ -26370,20 +27078,10 @@ entities:
- type: Transform
pos: 27.5,-30.5
parent: 2
- - uid: 12625
- components:
- - type: Transform
- pos: 28.5,-30.5
- parent: 2
- - uid: 12626
- components:
- - type: Transform
- pos: 29.5,-30.5
- parent: 2
- uid: 12627
components:
- type: Transform
- pos: 29.5,-31.5
+ pos: 21.5,-39.5
parent: 2
- uid: 12628
components:
@@ -26665,6 +27363,16 @@ entities:
- type: Transform
pos: 23.5,-8.5
parent: 2
+ - uid: 12712
+ components:
+ - type: Transform
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 12716
+ components:
+ - type: Transform
+ pos: 20.5,-35.5
+ parent: 2
- uid: 12859
components:
- type: Transform
@@ -26835,6 +27543,16 @@ entities:
- type: Transform
pos: -12.5,-46.5
parent: 2
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 20.5,-39.5
+ parent: 2
+ - uid: 14229
+ components:
+ - type: Transform
+ pos: 21.5,-37.5
+ parent: 2
- uid: 14272
components:
- type: Transform
@@ -26850,11 +27568,91 @@ entities:
- type: Transform
pos: 23.5,38.5
parent: 2
+ - uid: 14406
+ components:
+ - type: Transform
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 14421
+ components:
+ - type: Transform
+ pos: 20.5,-37.5
+ parent: 2
- uid: 14486
components:
- type: Transform
pos: 12.5,-33.5
parent: 2
+ - uid: 14556
+ components:
+ - type: Transform
+ pos: 29.5,-36.5
+ parent: 2
+ - uid: 14557
+ components:
+ - type: Transform
+ pos: 29.5,-37.5
+ parent: 2
+ - uid: 14558
+ components:
+ - type: Transform
+ pos: 29.5,-35.5
+ parent: 2
+ - uid: 14559
+ components:
+ - type: Transform
+ pos: 29.5,-34.5
+ parent: 2
+ - uid: 14560
+ components:
+ - type: Transform
+ pos: 29.5,-33.5
+ parent: 2
+ - uid: 14561
+ components:
+ - type: Transform
+ pos: 29.5,-32.5
+ parent: 2
+ - uid: 14562
+ components:
+ - type: Transform
+ pos: 29.5,-31.5
+ parent: 2
+ - uid: 14563
+ components:
+ - type: Transform
+ pos: 29.5,-30.5
+ parent: 2
+ - uid: 14564
+ components:
+ - type: Transform
+ pos: 28.5,-30.5
+ parent: 2
+ - uid: 14569
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 14570
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 14571
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 14572
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 14697
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
- uid: 14737
components:
- type: Transform
@@ -26905,6 +27703,11 @@ entities:
- type: Transform
pos: -22.5,38.5
parent: 2
+ - uid: 14928
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
- uid: 14937
components:
- type: Transform
@@ -26920,6 +27723,11 @@ entities:
- type: Transform
pos: -22.5,41.5
parent: 2
+ - uid: 15111
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
- uid: 15206
components:
- type: Transform
@@ -26995,6 +27803,11 @@ entities:
- type: Transform
pos: -6.5,-41.5
parent: 2
+ - uid: 15317
+ components:
+ - type: Transform
+ pos: 42.5,-4.5
+ parent: 2
- uid: 15376
components:
- type: Transform
@@ -27160,6 +27973,31 @@ entities:
- type: Transform
pos: 47.5,-5.5
parent: 2
+ - uid: 15731
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 15736
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 15738
+ components:
+ - type: Transform
+ pos: 24.5,-43.5
+ parent: 2
+ - uid: 15739
+ components:
+ - type: Transform
+ pos: 25.5,-43.5
+ parent: 2
+ - uid: 15747
+ components:
+ - type: Transform
+ pos: 26.5,-43.5
+ parent: 2
- uid: 15767
components:
- type: Transform
@@ -27395,15 +28233,15 @@ entities:
- type: Transform
pos: -13.5,32.5
parent: 2
- - uid: 16347
+ - uid: 16416
components:
- type: Transform
- pos: 0.5,-7.5
+ pos: 35.5,-31.5
parent: 2
- - uid: 16348
+ - uid: 16417
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: 35.5,-32.5
parent: 2
- proto: CableApcStack
entities:
@@ -27446,6 +28284,11 @@ entities:
- type: Transform
pos: -9.14669,-7.357277
parent: 2
+ - uid: 16402
+ components:
+ - type: Transform
+ pos: 31.323063,-18.144903
+ parent: 2
- proto: CablecuffsBroken
entities:
- uid: 16042
@@ -27455,6 +28298,26 @@ entities:
parent: 2
- proto: CableHV
entities:
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 13.5,-59.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 14.5,-57.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 16.5,-59.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 2
- uid: 539
components:
- type: Transform
@@ -27485,11 +28348,56 @@ entities:
- type: Transform
pos: 13.5,-6.5
parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 12.5,-57.5
+ parent: 2
- uid: 696
components:
- type: Transform
pos: 9.5,-10.5
parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 11.5,-57.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 16.5,-58.5
+ parent: 2
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 14.5,-59.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 14.5,-58.5
+ parent: 2
- uid: 1062
components:
- type: Transform
@@ -27930,6 +28838,16 @@ entities:
- type: Transform
pos: 32.5,-10.5
parent: 2
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: 10.5,-57.5
+ parent: 2
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: 11.5,-59.5
+ parent: 2
- uid: 2542
components:
- type: Transform
@@ -28505,6 +29423,11 @@ entities:
- type: Transform
pos: 13.5,-35.5
parent: 2
+ - uid: 3437
+ components:
+ - type: Transform
+ pos: 32.5,58.5
+ parent: 2
- uid: 3464
components:
- type: Transform
@@ -28535,16 +29458,6 @@ entities:
- type: Transform
pos: 33.5,-12.5
parent: 2
- - uid: 3815
- components:
- - type: Transform
- pos: 16.5,-54.5
- parent: 2
- - uid: 3895
- components:
- - type: Transform
- pos: 16.5,-55.5
- parent: 2
- uid: 3907
components:
- type: Transform
@@ -30220,11 +31133,6 @@ entities:
- type: Transform
pos: 13.5,-53.5
parent: 2
- - uid: 8395
- components:
- - type: Transform
- pos: 37.5,54.5
- parent: 2
- uid: 8396
components:
- type: Transform
@@ -30233,7 +31141,7 @@ entities:
- uid: 8397
components:
- type: Transform
- pos: 37.5,53.5
+ pos: 43.5,-10.5
parent: 2
- uid: 8410
components:
@@ -30270,6 +31178,26 @@ entities:
- type: Transform
pos: 10.5,-55.5
parent: 2
+ - uid: 8939
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 2
+ - uid: 8989
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 2
+ - uid: 8990
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 2
+ - uid: 9036
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 2
- uid: 9082
components:
- type: Transform
@@ -30910,51 +31838,6 @@ entities:
- type: Transform
pos: -8.5,-4.5
parent: 2
- - uid: 9550
- components:
- - type: Transform
- pos: -7.5,-4.5
- parent: 2
- - uid: 9551
- components:
- - type: Transform
- pos: -6.5,-4.5
- parent: 2
- - uid: 9552
- components:
- - type: Transform
- pos: -5.5,-4.5
- parent: 2
- - uid: 9553
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 9554
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 9555
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 9557
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 9558
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- uid: 9559
components:
- type: Transform
@@ -31065,6 +31948,16 @@ entities:
- type: Transform
pos: -6.5,-41.5
parent: 2
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 12796
+ components:
+ - type: Transform
+ pos: 12.5,-59.5
+ parent: 2
- uid: 12808
components:
- type: Transform
@@ -31125,6 +32018,11 @@ entities:
- type: Transform
pos: 32.5,-13.5
parent: 2
+ - uid: 14503
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
- uid: 14815
components:
- type: Transform
@@ -31150,6 +32048,16 @@ entities:
- type: Transform
pos: 32.5,-6.5
parent: 2
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: 33.5,58.5
+ parent: 2
+ - uid: 15269
+ components:
+ - type: Transform
+ pos: 13.5,-57.5
+ parent: 2
- uid: 15384
components:
- type: Transform
@@ -31170,6 +32078,11 @@ entities:
- type: Transform
pos: 11.5,-53.5
parent: 2
+ - uid: 15527
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
- uid: 15618
components:
- type: Transform
@@ -31250,6 +32163,41 @@ entities:
- type: Transform
pos: 34.5,54.5
parent: 2
+ - uid: 15681
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 15978
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 2
+ - uid: 16059
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 2
+ - uid: 16061
+ components:
+ - type: Transform
+ pos: 33.5,56.5
+ parent: 2
+ - uid: 16088
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 2
+ - uid: 16220
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 2
+ - uid: 16239
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 2
- proto: CableHVStack
entities:
- uid: 5137
@@ -31291,11 +32239,6 @@ entities:
parent: 2
- proto: CableMV
entities:
- - uid: 19
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- uid: 139
components:
- type: Transform
@@ -31306,16 +32249,6 @@ entities:
- type: Transform
pos: -1.5,-8.5
parent: 2
- - uid: 310
- components:
- - type: Transform
- pos: 2.5,-5.5
- parent: 2
- - uid: 312
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 2
- uid: 356
components:
- type: Transform
@@ -31396,31 +32329,6 @@ entities:
- type: Transform
pos: 13.5,-7.5
parent: 2
- - uid: 506
- components:
- - type: Transform
- pos: 5.5,-2.5
- parent: 2
- - uid: 507
- components:
- - type: Transform
- pos: 5.5,-1.5
- parent: 2
- - uid: 508
- components:
- - type: Transform
- pos: 5.5,-0.5
- parent: 2
- - uid: 509
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 2
- - uid: 510
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 2
- uid: 511
components:
- type: Transform
@@ -31821,16 +32729,41 @@ entities:
- type: Transform
pos: 12.5,-6.5
parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 2
- uid: 803
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 5.5,1.5
parent: 2
- uid: 821
components:
- type: Transform
pos: -4.5,7.5
parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
- uid: 992
components:
- type: Transform
@@ -31981,6 +32914,11 @@ entities:
- type: Transform
pos: 48.5,-13.5
parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 32.5,-30.5
+ parent: 2
- uid: 1425
components:
- type: Transform
@@ -32141,6 +33079,11 @@ entities:
- type: Transform
pos: 11.5,-13.5
parent: 2
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 35.5,-32.5
+ parent: 2
- uid: 2011
components:
- type: Transform
@@ -32181,6 +33124,16 @@ entities:
- type: Transform
pos: -18.5,-38.5
parent: 2
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: 30.5,-30.5
+ parent: 2
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 2
- uid: 2260
components:
- type: Transform
@@ -32191,6 +33144,21 @@ entities:
- type: Transform
pos: -2.5,-16.5
parent: 2
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: 31.5,-30.5
+ parent: 2
+ - uid: 2313
+ components:
+ - type: Transform
+ pos: 29.5,-30.5
+ parent: 2
+ - uid: 2316
+ components:
+ - type: Transform
+ pos: 28.5,-30.5
+ parent: 2
- uid: 2516
components:
- type: Transform
@@ -32471,26 +33439,6 @@ entities:
- type: Transform
pos: -21.5,-40.5
parent: 2
- - uid: 3436
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 3437
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 3438
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 3439
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- uid: 3447
components:
- type: Transform
@@ -33831,71 +34779,6 @@ entities:
- type: Transform
pos: -3.5,-9.5
parent: 2
- - uid: 5993
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 5994
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 5995
- components:
- - type: Transform
- pos: -4.5,-3.5
- parent: 2
- - uid: 5996
- components:
- - type: Transform
- pos: -4.5,-2.5
- parent: 2
- - uid: 5997
- components:
- - type: Transform
- pos: 4.5,-2.5
- parent: 2
- - uid: 5998
- components:
- - type: Transform
- pos: 2.5,-2.5
- parent: 2
- - uid: 5999
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 2
- - uid: 6000
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 2
- - uid: 6001
- components:
- - type: Transform
- pos: -0.5,-2.5
- parent: 2
- - uid: 6002
- components:
- - type: Transform
- pos: -1.5,-2.5
- parent: 2
- - uid: 6003
- components:
- - type: Transform
- pos: -2.5,-2.5
- parent: 2
- - uid: 6004
- components:
- - type: Transform
- pos: 3.5,-2.5
- parent: 2
- - uid: 6005
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 2
- uid: 6006
components:
- type: Transform
@@ -34926,6 +35809,11 @@ entities:
- type: Transform
pos: 14.5,34.5
parent: 2
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 2
- uid: 7538
components:
- type: Transform
@@ -35346,21 +36234,6 @@ entities:
- type: Transform
pos: 30.5,-0.5
parent: 2
- - uid: 8787
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- - uid: 8788
- components:
- - type: Transform
- pos: 26.5,-31.5
- parent: 2
- - uid: 8789
- components:
- - type: Transform
- pos: 26.5,-30.5
- parent: 2
- uid: 8846
components:
- type: Transform
@@ -37451,6 +38324,11 @@ entities:
- type: Transform
pos: 32.5,-4.5
parent: 2
+ - uid: 12626
+ components:
+ - type: Transform
+ pos: 35.5,-31.5
+ parent: 2
- uid: 12860
components:
- type: Transform
@@ -37546,6 +38424,11 @@ entities:
- type: Transform
pos: -21.5,-41.5
parent: 2
+ - uid: 13855
+ components:
+ - type: Transform
+ pos: 35.5,-30.5
+ parent: 2
- uid: 13866
components:
- type: Transform
@@ -37676,6 +38559,11 @@ entities:
- type: Transform
pos: -15.5,-38.5
parent: 2
+ - uid: 14217
+ components:
+ - type: Transform
+ pos: 34.5,-30.5
+ parent: 2
- uid: 14303
components:
- type: Transform
@@ -37691,6 +38579,16 @@ entities:
- type: Transform
pos: 18.5,35.5
parent: 2
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
+ - uid: 14529
+ components:
+ - type: Transform
+ pos: 33.5,-30.5
+ parent: 2
- uid: 14736
components:
- type: Transform
@@ -37811,6 +38709,16 @@ entities:
- type: Transform
pos: -19.5,-38.5
parent: 2
+ - uid: 14935
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 14963
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
- uid: 15203
components:
- type: Transform
@@ -38191,16 +39099,6 @@ entities:
- type: Transform
pos: 38.5,-13.5
parent: 2
- - uid: 16349
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 2
- - uid: 16350
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 2
- proto: CableMVStack
entities:
- uid: 5135
@@ -38314,6 +39212,20 @@ entities:
- type: Transform
pos: -33.3829,-20.528595
parent: 2
+- proto: CapacitorStockPart
+ entities:
+ - uid: 16401
+ components:
+ - type: Transform
+ pos: 32.166813,-17.551153
+ parent: 2
+ - type: Stack
+ count: 2
+ - uid: 16415
+ components:
+ - type: Transform
+ pos: 27.703878,37.44894
+ parent: 2
- proto: CaptainIDCard
entities:
- uid: 11350
@@ -38328,10 +39240,10 @@ entities:
- type: Transform
pos: 40.5,-29.5
parent: 2
- - uid: 2436
+ - uid: 14218
components:
- type: Transform
- pos: 22.5,-39.5
+ pos: 19.5,-39.5
parent: 2
- proto: Carpet
entities:
@@ -38429,6 +39341,18 @@ entities:
- type: Transform
pos: 9.5,-22.5
parent: 2
+ - uid: 12718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,0.5
+ parent: 2
+ - uid: 14780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,1.5
+ parent: 2
- proto: CarpetCyan
entities:
- uid: 6593
@@ -38484,6 +39408,11 @@ entities:
parent: 2
- proto: Catwalk
entities:
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 41.5,-2.5
+ parent: 2
- uid: 171
components:
- type: Transform
@@ -38494,6 +39423,27 @@ entities:
- type: Transform
pos: 33.5,-24.5
parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 16.5,-54.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 16.5,-57.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 2
- uid: 854
components:
- type: Transform
@@ -38695,6 +39645,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,-20.5
parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 43.5,-2.5
+ parent: 2
- uid: 1175
components:
- type: Transform
@@ -38873,6 +39828,47 @@ entities:
rot: 3.141592653589793 rad
pos: 35.5,-10.5
parent: 2
+ - uid: 2331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-34.5
+ parent: 2
+ - uid: 2333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-35.5
+ parent: 2
+ - uid: 2337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-36.5
+ parent: 2
+ - uid: 2338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-37.5
+ parent: 2
+ - uid: 2339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-38.5
+ parent: 2
+ - uid: 2340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-39.5
+ parent: 2
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: 16.5,-55.5
+ parent: 2
- uid: 2522
components:
- type: Transform
@@ -38999,51 +39995,16 @@ entities:
rot: 3.141592653589793 rad
pos: -33.5,-44.5
parent: 2
- - uid: 2833
+ - uid: 2813
components:
- type: Transform
- pos: 16.5,-54.5
+ pos: 16.5,-58.5
parent: 2
- uid: 2834
components:
- type: Transform
pos: 16.5,-50.5
parent: 2
- - uid: 2943
- components:
- - type: Transform
- pos: 26.5,-34.5
- parent: 2
- - uid: 2944
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - uid: 2945
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - uid: 2946
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - uid: 2947
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- - uid: 2948
- components:
- - type: Transform
- pos: 26.5,-39.5
- parent: 2
- - uid: 2949
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- uid: 2950
components:
- type: Transform
@@ -39079,6 +40040,11 @@ entities:
- type: Transform
pos: 36.5,-37.5
parent: 2
+ - uid: 3001
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 2
- uid: 3042
components:
- type: Transform
@@ -39105,6 +40071,12 @@ entities:
- type: Transform
pos: -18.5,-46.5
parent: 2
+ - uid: 4622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-9.5
+ parent: 2
- uid: 5067
components:
- type: Transform
@@ -39157,30 +40129,6 @@ entities:
- type: Transform
pos: 41.5,-11.5
parent: 2
- - uid: 5989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-5.5
- parent: 2
- - uid: 5990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-6.5
- parent: 2
- - uid: 5991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - uid: 5992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- uid: 6040
components:
- type: Transform
@@ -39707,10 +40655,11 @@ entities:
- type: Transform
pos: -2.5,24.5
parent: 2
- - uid: 9617
+ - uid: 10426
components:
- type: Transform
- pos: 16.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-40.5
parent: 2
- uid: 10507
components:
@@ -41274,11 +42223,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-30.5
parent: 2
- - uid: 13489
- components:
- - type: Transform
- pos: 42.5,-1.5
- parent: 2
- uid: 13523
components:
- type: Transform
@@ -41291,10 +42235,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-31.5
parent: 2
- - uid: 13738
+ - uid: 13778
components:
- type: Transform
- pos: 41.5,-1.5
+ pos: 42.5,-2.5
parent: 2
- uid: 14037
components:
@@ -41771,17 +42715,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 35.5,53.5
parent: 2
- - uid: 14503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,54.5
- parent: 2
- uid: 14504
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,53.5
+ pos: 44.5,-9.5
parent: 2
- uid: 14505
components:
@@ -41789,6 +42726,21 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,52.5
parent: 2
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: 44.5,-11.5
+ parent: 2
+ - uid: 14567
+ components:
+ - type: Transform
+ pos: 44.5,-10.5
+ parent: 2
+ - uid: 14576
+ components:
+ - type: Transform
+ pos: 16.5,-59.5
+ parent: 2
- uid: 14674
components:
- type: Transform
@@ -41807,6 +42759,12 @@ entities:
rot: 3.141592653589793 rad
pos: 33.5,-10.5
parent: 2
+ - uid: 14827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-9.5
+ parent: 2
- uid: 15253
components:
- type: Transform
@@ -41912,10 +42870,10 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,36.5
parent: 2
- - uid: 15839
+ - uid: 15901
components:
- type: Transform
- pos: 43.5,-1.5
+ pos: 14.5,-58.5
parent: 2
- uid: 16027
components:
@@ -41977,6 +42935,26 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 2
+ - uid: 16254
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 2
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 2
+ - uid: 16330
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 2
+ - uid: 16331
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 2
- uid: 16375
components:
- type: Transform
@@ -42004,7 +42982,7 @@ entities:
- uid: 13785
components:
- type: Transform
- pos: 27.671509,37.939373
+ pos: 27.240135,37.852577
parent: 2
- proto: Chair
entities:
@@ -42302,12 +43280,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.55629,-20.402246
parent: 2
- - uid: 728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.4965334,-6.398676
- parent: 2
- uid: 760
components:
- type: Transform
@@ -42337,23 +43309,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.499483,-8.389568
parent: 2
- - uid: 7537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.67196,57.563953
- parent: 2
- uid: 7636
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 19.551804,39.69655
parent: 2
- - uid: 8527
+ - uid: 8940
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.39071,57.54833
+ pos: 32.254124,-38.51852
parent: 2
- uid: 9609
components:
@@ -42366,17 +43332,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -32.44567,-11.355937
parent: 2
- - uid: 14406
- components:
- - type: Transform
- pos: 32.633217,-36.41033
- parent: 2
- uid: 14407
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.445717,-37.582207
parent: 2
+ - uid: 16346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.60117,61.45984
+ parent: 2
+ - uid: 16347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.491795,61.64734
+ parent: 2
- uid: 16366
components:
- type: Transform
@@ -42950,13 +43923,6 @@ entities:
- type: Transform
pos: 27.5,10.5
parent: 2
-- proto: ChemDispenserEmpty
- entities:
- - uid: 677
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- proto: ChemistryEmptyBottle01
entities:
- uid: 8823
@@ -43033,16 +43999,6 @@ entities:
bodyType: Static
- proto: Cigar
entities:
- - uid: 734
- components:
- - type: Transform
- pos: -2.516527,-7.3284693
- parent: 2
- - uid: 905
- components:
- - type: Transform
- pos: -2.313402,-7.3128443
- parent: 2
- uid: 14033
components:
- type: Transform
@@ -43074,6 +44030,11 @@ entities:
- type: Transform
pos: -0.2998953,0.5194752
parent: 2
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: 41.132133,26.684916
+ parent: 2
- uid: 12797
components:
- type: Transform
@@ -43104,30 +44065,26 @@ entities:
- type: Transform
pos: 33.207268,-38.246517
parent: 2
- - uid: 16383
+ - uid: 14518
components:
- type: Transform
- pos: -17.450197,18.73896
+ pos: 41.486813,26.560337
parent: 2
- - uid: 16384
+ - uid: 15109
components:
- type: Transform
- pos: -17.793947,18.67646
+ pos: -4.4094725,-6.401611
parent: 2
-- proto: CigaretteSyndicate
- entities:
- - uid: 14357
+ - uid: 16383
components:
- type: Transform
- pos: 41.146534,26.828377
+ pos: -17.450197,18.73896
parent: 2
- - uid: 16061
+ - uid: 16384
components:
- type: Transform
- parent: 16055
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -17.793947,18.67646
+ parent: 2
- proto: CigarGold
entities:
- uid: 10369
@@ -43142,6 +44099,13 @@ entities:
- type: Transform
pos: -13.533066,-6.2796874
parent: 2
+- proto: CigCartonBlack
+ entities:
+ - uid: 14721
+ components:
+ - type: Transform
+ pos: 48.574272,6.341091
+ parent: 2
- proto: CircuitImprinter
entities:
- uid: 16381
@@ -43243,6 +44207,11 @@ entities:
- type: Transform
pos: -2.5,33.5
parent: 2
+ - uid: 4620
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
- uid: 4704
components:
- type: Transform
@@ -43440,6 +44409,11 @@ entities:
- type: Transform
pos: 10.5,-5.5
parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 37.5,-31.5
+ parent: 2
- uid: 1247
components:
- type: Transform
@@ -43570,6 +44544,11 @@ entities:
- type: Transform
pos: -6.5,-38.5
parent: 2
+ - uid: 15510
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
- proto: ClosetJanitorFilled
entities:
- uid: 109
@@ -43843,7 +44822,7 @@ entities:
- uid: 15840
components:
- type: Transform
- pos: 43.650375,-1.3479055
+ pos: 40.904457,-0.7000258
parent: 2
- uid: 16394
components:
@@ -43855,7 +44834,7 @@ entities:
- uid: 8493
components:
- type: Transform
- pos: 37.669296,-5.194439
+ pos: 40.67693,-4.1979237
parent: 2
- proto: ClothingEyesGlassesCheapSunglasses
entities:
@@ -43899,20 +44878,6 @@ entities:
- type: Transform
pos: -70.281,-10.984222
parent: 2
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 6640
- components:
- - type: Transform
- pos: -2.1804788,22.571062
- parent: 2
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 15842
- components:
- - type: Transform
- pos: 41.947968,-1.5498452
- parent: 2
- proto: ClothingHandsGlovesCombat
entities:
- uid: 2185
@@ -43944,7 +44909,7 @@ entities:
- uid: 13753
components:
- type: Transform
- pos: 40.554234,33.41338
+ pos: 46.43723,33.34558
parent: 2
- proto: ClothingHeadBandBotany
entities:
@@ -44077,7 +45042,7 @@ entities:
- uid: 5138
components:
- type: Transform
- pos: -27.38747,14.612673
+ pos: -26.503574,16.524607
parent: 2
- uid: 6641
components:
@@ -44089,13 +45054,6 @@ entities:
- type: Transform
pos: 26.465076,-5.4179134
parent: 2
-- proto: ClothingHeadHelmetERTJanitor
- entities:
- - uid: 15269
- components:
- - type: Transform
- pos: 26.415586,-56.37533
- parent: 2
- proto: ClothingHeadsetMining
entities:
- uid: 15264
@@ -44110,6 +45068,13 @@ entities:
- type: Transform
pos: -26.26548,11.413899
parent: 2
+- proto: ClothingMaskGas
+ entities:
+ - uid: 16429
+ components:
+ - type: Transform
+ pos: -8.569451,33.71903
+ parent: 2
- proto: ClothingMaskGasMerc
entities:
- uid: 13758
@@ -44175,6 +45140,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingOuterApron
+ entities:
+ - uid: 16428
+ components:
+ - type: Transform
+ pos: -8.397576,33.56278
+ parent: 2
- proto: ClothingOuterApronBar
entities:
- uid: 5915
@@ -44236,13 +45208,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingShoesBootsJack
- entities:
- - uid: 8243
- components:
- - type: Transform
- pos: 12.608273,19.495178
- parent: 2
- proto: ClothingShoesBootsMag
entities:
- uid: 8169
@@ -44266,6 +45231,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingShoesBootsWork
+ entities:
+ - uid: 5293
+ components:
+ - type: Transform
+ pos: 12.630562,19.620356
+ parent: 2
- proto: ClothingUnderSocksCoder
entities:
- uid: 15213
@@ -44327,6 +45299,12 @@ entities:
parent: 2
- proto: ComfyChair
entities:
+ - uid: 496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 2
- uid: 2136
components:
- type: Transform
@@ -44354,6 +45332,12 @@ entities:
- type: Transform
pos: -28.5,-33.5
parent: 2
+ - uid: 5994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 2
- uid: 7114
components:
- type: Transform
@@ -44487,6 +45471,12 @@ entities:
parent: 2
- proto: ComputerBroken
entities:
+ - uid: 2506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-0.5
+ parent: 2
- uid: 6712
components:
- type: Transform
@@ -44508,11 +45498,6 @@ entities:
- type: Transform
pos: 44.5,32.5
parent: 2
- - uid: 10426
- components:
- - type: Transform
- pos: 42.5,-0.5
- parent: 2
- uid: 14048
components:
- type: Transform
@@ -44656,13 +45641,6 @@ entities:
- type: Transform
pos: -12.5,-32.5
parent: 2
-- proto: ComputerFrame
- entities:
- - uid: 13778
- components:
- - type: Transform
- pos: 43.5,-0.5
- parent: 2
- proto: ComputerId
entities:
- uid: 1774
@@ -44908,6 +45886,11 @@ entities:
- type: Transform
pos: 2.5,15.5
parent: 2
+ - uid: 14291
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
- uid: 15254
components:
- type: Transform
@@ -44923,11 +45906,6 @@ entities:
- type: Transform
pos: 36.5,-22.5
parent: 2
- - uid: 16345
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 2
- proto: CondenserMachineCircuitBoard
entities:
- uid: 7473
@@ -45188,13 +46166,6 @@ entities:
- type: Transform
pos: 6.5,37.5
parent: 2
-- proto: CrateEngineeringAMEControl
- entities:
- - uid: 367
- components:
- - type: Transform
- pos: 39.5,-8.5
- parent: 2
- proto: CrateEngineeringAMEJar
entities:
- uid: 2634
@@ -45209,6 +46180,37 @@ entities:
- type: Transform
pos: 40.5,-12.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:
+ - 4557
+ - 4558
+ - 4591
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateEngineeringCableBulk
entities:
- uid: 11345
@@ -45295,11 +46297,6 @@ entities:
- type: Transform
pos: 5.5,-8.5
parent: 2
- - uid: 720
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 2
- uid: 5308
components:
- type: Transform
@@ -45505,13 +46502,6 @@ entities:
- type: Transform
pos: -4.5,5.5
parent: 2
-- proto: CrateVendingMachineRestockChemVendFilled
- entities:
- - uid: 13724
- components:
- - type: Transform
- pos: 27.5,34.5
- parent: 2
- proto: CrayonBox
entities:
- uid: 12927
@@ -45714,6 +46704,13 @@ entities:
- type: Transform
pos: -3.5,21.5
parent: 2
+- proto: CyborgEndoskeleton
+ entities:
+ - uid: 14513
+ components:
+ - type: Transform
+ pos: -27.066074,16.227732
+ parent: 2
- proto: d6Dice
entities:
- uid: 9394
@@ -45791,10 +46788,10 @@ entities:
parent: 2
- proto: DefaultStationBeaconBar
entities:
- - uid: 14291
+ - uid: 4621
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: -0.5,-5.5
parent: 2
- proto: DefaultStationBeaconBotany
entities:
@@ -46308,23 +47305,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -32.5,-8.5
parent: 2
- - uid: 479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-7.5
- parent: 2
- uid: 480
components:
- type: Transform
pos: -3.5,3.5
parent: 2
- - uid: 482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 2
- uid: 609
components:
- type: Transform
@@ -46336,6 +47321,18 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,9.5
parent: 2
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-16.5
+ parent: 2
+ - uid: 2368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 2
- uid: 2558
components:
- type: Transform
@@ -46663,6 +47660,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-30.5
parent: 2
+ - uid: 4997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-2.5
+ parent: 2
- uid: 6116
components:
- type: Transform
@@ -46836,11 +47839,11 @@ entities:
- type: Transform
pos: 7.5,24.5
parent: 2
- - uid: 16338
+ - uid: 16423
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
+ pos: 12.5,-13.5
parent: 2
- proto: DisposalPipe
entities:
@@ -46943,17 +47946,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
- - uid: 610
+ - uid: 495
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
parent: 2
- - uid: 846
+ - uid: 610
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-2.5
parent: 2
- uid: 988
components:
@@ -47020,12 +48023,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 15.5,9.5
parent: 2
+ - uid: 5341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 2
- uid: 5646
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -11.5,-30.5
parent: 2
+ - uid: 5996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-3.5
+ parent: 2
- uid: 10532
components:
- type: Transform
@@ -47283,12 +48298,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,-13.5
parent: 2
- - uid: 12981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-13.5
- parent: 2
- uid: 12982
components:
- type: Transform
@@ -49495,23 +50504,15 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,-35.5
parent: 2
- - uid: 16333
+ - uid: 16421
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-4.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-5.5
+ pos: 12.5,-14.5
parent: 2
- - uid: 16336
+ - uid: 16422
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-6.5
+ pos: 12.5,-15.5
parent: 2
- proto: DisposalTrunk
entities:
@@ -49702,6 +50703,12 @@ entities:
- type: Transform
pos: -63.5,-29.5
parent: 2
+ - uid: 13530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 2
- uid: 14166
components:
- type: Transform
@@ -49732,11 +50739,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-36.5
parent: 2
- - uid: 16337
+ - uid: 16420
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-16.5
parent: 2
- proto: DisposalUnit
entities:
@@ -49755,14 +50762,6 @@ entities:
- type: Transform
pos: -3.5,12.5
parent: 2
- - uid: 812
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 2
- - type: DisposalUnit
- recentlyEjected:
- - 328
- uid: 1701
components:
- type: Transform
@@ -49788,6 +50787,16 @@ entities:
- type: Transform
pos: -6.5,-16.5
parent: 2
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: -5.5,-4.5
+ parent: 2
+ - uid: 3990
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
- uid: 4029
components:
- type: Transform
@@ -50025,11 +51034,6 @@ entities:
- type: Transform
pos: -4.5,-38.5
parent: 2
- - uid: 4693
- components:
- - type: Transform
- pos: -30.5,-41.5
- parent: 2
- uid: 6037
components:
- type: Transform
@@ -50092,7 +51096,7 @@ entities:
- uid: 14507
components:
- type: Transform
- pos: 33.79696,57.563953
+ pos: 33.741795,61.58484
parent: 2
- proto: DrinkBeerGrowler
entities:
@@ -50109,7 +51113,7 @@ entities:
- uid: 14450
components:
- type: Transform
- pos: 33.343834,57.98583
+ pos: 33.304295,61.881714
parent: 2
- proto: DrinkBottleOfNothingFull
entities:
@@ -50151,11 +51155,6 @@ entities:
- type: Transform
pos: 6.653341,-6.3584204
parent: 2
- - uid: 427
- components:
- - type: Transform
- pos: 0.3676461,-7.2802954
- parent: 2
- uid: 3228
components:
- type: Transform
@@ -50253,16 +51252,6 @@ entities:
- type: Transform
pos: 6.418966,-6.4365454
parent: 2
- - uid: 328
- components:
- - type: Transform
- pos: 0.6238045,-7.432267
- parent: 2
- - uid: 341
- components:
- - type: Transform
- pos: 0.7113961,-7.2646704
- parent: 2
- uid: 9391
components:
- type: Transform
@@ -50273,6 +51262,11 @@ entities:
- type: Transform
pos: 37.292343,26.40349
parent: 2
+ - uid: 9550
+ components:
+ - type: Transform
+ pos: 26.36362,-56.31381
+ parent: 2
- uid: 11095
components:
- type: Transform
@@ -50288,11 +51282,26 @@ entities:
- type: Transform
pos: -27.343176,-1.5369649
parent: 2
+ - uid: 15734
+ components:
+ - type: Transform
+ pos: -0.052975893,-3.6016946
+ parent: 2
+ - uid: 15735
+ components:
+ - type: Transform
+ pos: -0.1311009,-3.3360696
+ parent: 2
- uid: 16341
components:
- type: Transform
pos: 3.6412609,-0.07137632
parent: 2
+ - uid: 16349
+ components:
+ - type: Transform
+ pos: 26.58237,-56.735683
+ parent: 2
- proto: DrinkTeapot
entities:
- uid: 908
@@ -50300,6 +51309,13 @@ entities:
- type: Transform
pos: 1.912011,-4.3345895
parent: 2
+- proto: DrinkTequilaBottleFull
+ entities:
+ - uid: 3991
+ components:
+ - type: Transform
+ pos: 26.754246,-56.12631
+ parent: 2
- proto: DrinkVodkaBottleFull
entities:
- uid: 13769
@@ -50333,7 +51349,7 @@ entities:
- uid: 13784
components:
- type: Transform
- pos: 27.642355,37.74729
+ pos: 27.72451,34.243202
parent: 2
- proto: EmergencyFunnyOxygenTankFilled
entities:
@@ -50344,6 +51360,18 @@ entities:
parent: 2
- proto: EmergencyLight
entities:
+ - uid: 2515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-32.5
+ parent: 2
+ - uid: 5998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 2
- uid: 7773
components:
- type: Transform
@@ -50361,6 +51389,12 @@ entities:
- type: Transform
pos: 16.5,2.5
parent: 2
+ - uid: 15338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-41.5
+ parent: 2
- uid: 15477
components:
- type: Transform
@@ -50537,18 +51571,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 25.5,-28.5
parent: 2
- - uid: 15509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-33.5
- parent: 2
- - uid: 15510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-41.5
- parent: 2
- uid: 15511
components:
- type: Transform
@@ -51021,12 +52043,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-7.5
parent: 2
- - uid: 16361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 2
- proto: EmergencyRollerBed
entities:
- uid: 4100
@@ -51108,6 +52124,11 @@ entities:
parent: 2
- proto: ExtinguisherCabinetFilled
entities:
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 25.5,-41.5
+ parent: 2
- uid: 4487
components:
- type: Transform
@@ -51355,11 +52376,6 @@ entities:
destinationAddress: Captain's Office
- proto: filingCabinetDrawerRandom
entities:
- - uid: 1792
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- uid: 2032
components:
- type: Transform
@@ -51415,6 +52431,11 @@ entities:
- type: Transform
pos: 11.5,30.5
parent: 2
+ - uid: 12981
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 2
- proto: filingCabinetRandom
entities:
- uid: 1045
@@ -51768,10 +52789,10 @@ entities:
devices:
- 243
- 197
- - 853
- - 16329
- - 16330
- - 16331
+ - 3815
+ - 5992
+ - 3439
+ - 5993
- 1620
- 1621
- 1622
@@ -51781,6 +52802,7 @@ entities:
- 266
- 1628
- 1629
+ - 14702
- uid: 14651
components:
- type: MetaData
@@ -52233,10 +53255,12 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 16331
- - 16330
- - 16329
- - 853
+ - 5993
+ - 3439
+ - 5992
+ - 3815
+ - 14702
+ - 1628
- proto: FireAlarmElectronics
entities:
- uid: 2284
@@ -52259,6 +53283,11 @@ entities:
parent: 2
- proto: FireExtinguisher
entities:
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 29.351881,-29.496101
+ parent: 2
- uid: 8474
components:
- type: Transform
@@ -52291,6 +53320,7 @@ entities:
- 813
- 811
- 14641
+ - 16327
- uid: 2595
components:
- type: Transform
@@ -52435,6 +53465,18 @@ entities:
- 12732
- 8138
- 14665
+ - uid: 14702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
- uid: 15853
components:
- type: Transform
@@ -52610,17 +53652,54 @@ entities:
- 811
- 14641
- 14651
- - uid: 853
+ - uid: 3439
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
+ pos: -1.5,-5.5
parent: 2
- type: DeviceNetwork
deviceLists:
+ - 488
+ - 811
+ - 14641
- 16327
+ - uid: 3815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
- 811
- 14641
+ - 16327
+ - uid: 5992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
+ - uid: 5993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
- uid: 6141
components:
- type: Transform
@@ -52823,10 +53902,10 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
- 12724
- 14667
- 14665
+ - 14575
- uid: 13853
components:
- type: Transform
@@ -52847,39 +53926,6 @@ entities:
deviceLists:
- 14671
- 14673
- - uid: 16329
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- - uid: 16330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- - uid: 16331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- proto: FirelockElectronics
entities:
- uid: 2286
@@ -53830,9 +54876,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12724
- - 12673
- 14665
- 14667
+ - 14575
- uid: 13835
components:
- type: Transform
@@ -53841,9 +54887,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12724
- - 12673
- 14665
- 14667
+ - 14575
- uid: 13836
components:
- type: Transform
@@ -53851,10 +54897,10 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
- 12708
- 14666
- 14667
+ - 14575
- uid: 14136
components:
- type: Transform
@@ -54229,10 +55275,10 @@ entities:
parent: 2
- proto: GasCanisterBrokenBase
entities:
- - uid: 14421
+ - uid: 11340
components:
- type: Transform
- pos: 34.5,-40.5
+ pos: 26.5,-41.5
parent: 2
- proto: GasFilterFlipped
entities:
@@ -54250,17 +55296,23 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,-37.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2330
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-39.5
parent: 2
- - uid: 2331
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2429
components:
- type: Transform
- pos: 28.5,-39.5
+ pos: 25.5,-39.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7803
components:
- type: Transform
@@ -54273,24 +55325,24 @@ entities:
color: '#03FCDFFF'
- proto: GasMinerCarbonDioxide
entities:
- - uid: 2340
+ - uid: 1766
components:
- type: Transform
- pos: 23.5,-39.5
+ pos: 20.5,-39.5
parent: 2
- proto: GasMinerNitrogenStation
entities:
- - uid: 2341
+ - uid: 1763
components:
- type: Transform
- pos: 23.5,-35.5
+ pos: 20.5,-35.5
parent: 2
- proto: GasMinerOxygenStation
entities:
- - uid: 2342
+ - uid: 1762
components:
- type: Transform
- pos: 23.5,-37.5
+ pos: 20.5,-37.5
parent: 2
- proto: GasMinerWaterVapor
entities:
@@ -54301,55 +55353,55 @@ entities:
parent: 2
- proto: GasMixerFlipped
entities:
- - uid: 2504
+ - uid: 2413
components:
- type: Transform
- pos: 29.5,-34.5
+ pos: 32.5,-35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2582
+ - uid: 2430
components:
- type: Transform
- pos: 30.5,-35.5
+ pos: 27.5,-34.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasOutletInjector
entities:
- - uid: 2334
+ - uid: 2231
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-37.5
parent: 2
- - uid: 2335
+ - uid: 2232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-39.5
parent: 2
- - uid: 2336
+ - uid: 2247
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-35.5
parent: 2
- - uid: 2337
+ - uid: 2334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-35.5
parent: 2
- - uid: 2338
+ - uid: 2335
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-37.5
parent: 2
- - uid: 2339
+ - uid: 2336
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-39.5
parent: 2
- uid: 2622
components:
@@ -54365,24 +55417,14 @@ entities:
parent: 2
- proto: GasPassiveVent
entities:
- - uid: 2428
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-35.5
- parent: 2
- - uid: 2429
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-37.5
- parent: 2
- - uid: 2430
+ - uid: 2415
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-33.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2431
components:
- type: Transform
@@ -54401,12 +55443,6 @@ entities:
rot: 3.141592653589793 rad
pos: 40.5,-39.5
parent: 2
- - uid: 2497
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-33.5
- parent: 2
- uid: 2709
components:
- type: Transform
@@ -54424,6 +55460,24 @@ entities:
- type: Transform
pos: 20.5,-24.5
parent: 2
+ - uid: 8933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-35.5
+ parent: 2
+ - uid: 8934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-39.5
+ parent: 2
+ - uid: 8944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-37.5
+ parent: 2
- uid: 11240
components:
- type: Transform
@@ -54567,23 +55621,26 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2422
+ - uid: 2375
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-40.5
parent: 2
- - uid: 2423
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2412
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-36.5
+ pos: 27.5,-30.5
parent: 2
- - uid: 2424
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-38.5
+ pos: 32.5,-31.5
parent: 2
- uid: 2425
components:
@@ -54629,17 +55686,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 34.5,-40.5
parent: 2
- - uid: 2492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-40.5
- parent: 2
- - uid: 2496
- components:
- - type: Transform
- pos: 28.5,-33.5
- parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2510
components:
- type: Transform
@@ -54662,6 +55710,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-36.5
+ parent: 2
- uid: 3903
components:
- type: Transform
@@ -54751,6 +55805,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 25.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6096
components:
- type: Transform
@@ -54797,11 +55858,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 24.5,-17.5
parent: 2
- - uid: 8236
- components:
- - type: Transform
- pos: 30.5,-31.5
- parent: 2
- uid: 8525
components:
- type: Transform
@@ -54981,6 +56037,24 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-36.5
+ parent: 2
+ - uid: 8952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-38.5
+ parent: 2
+ - uid: 8953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-34.5
+ parent: 2
- uid: 8973
components:
- type: Transform
@@ -56611,6 +57685,11 @@ entities:
- type: Transform
pos: 28.5,-21.5
parent: 2
+ - uid: 2513
+ components:
+ - type: Transform
+ pos: 32.5,-33.5
+ parent: 2
- uid: 2549
components:
- type: Transform
@@ -56632,20 +57711,14 @@ entities:
- uid: 2696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-30.5
parent: 2
- uid: 2699
components:
- type: Transform
pos: 34.5,-31.5
parent: 2
- - uid: 2748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-30.5
- parent: 2
- uid: 3733
components:
- type: Transform
@@ -56788,11 +57861,11 @@ entities:
color: '#0055CCFF'
- proto: GasPipeHalf
entities:
- - uid: 2333
+ - uid: 2310
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-35.5
parent: 2
- uid: 2482
components:
@@ -56843,17 +57916,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
- - uid: 14696
+ - uid: 16407
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-37.5
+ pos: 25.5,-35.5
parent: 2
- - uid: 14697
+ - uid: 16408
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-37.5
parent: 2
- proto: GasPipeSensorDistribution
entities:
@@ -56890,6 +57963,12 @@ entities:
color: '#990000FF'
- proto: GasPipeStraight
entities:
+ - uid: 140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-36.5
+ parent: 2
- uid: 215
components:
- type: Transform
@@ -57703,78 +58782,57 @@ entities:
- type: Transform
pos: 23.5,-30.5
parent: 2
- - uid: 2374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-34.5
- parent: 2
- - uid: 2375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-35.5
- parent: 2
- - uid: 2376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-36.5
- parent: 2
- - uid: 2377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-37.5
- parent: 2
- - uid: 2378
+ - uid: 2242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-38.5
parent: 2
- - uid: 2379
+ - uid: 2245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-38.5
parent: 2
- - uid: 2380
+ - uid: 2281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-38.5
parent: 2
- - uid: 2381
+ - uid: 2282
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-34.5
parent: 2
- - uid: 2382
+ - uid: 2283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
parent: 2
- - uid: 2383
+ - uid: 2287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-38.5
parent: 2
- - uid: 2384
+ - uid: 2307
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-38.5
+ pos: 30.5,-30.5
parent: 2
- - uid: 2385
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-39.5
+ pos: 25.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2386
components:
- type: Transform
@@ -57901,153 +58959,178 @@ entities:
rot: -1.5707963267948966 rad
pos: 38.5,-38.5
parent: 2
- - uid: 2407
+ - uid: 2411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-40.5
parent: 2
- - uid: 2408
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2416
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-38.5
+ pos: 32.5,-34.5
parent: 2
- - uid: 2409
+ - uid: 2419
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-37.5
+ pos: 39.5,-34.5
parent: 2
- - uid: 2410
+ - uid: 2420
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-36.5
+ pos: 39.5,-36.5
parent: 2
- - uid: 2411
+ - uid: 2421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-35.5
+ pos: 39.5,-38.5
parent: 2
- - uid: 2412
+ - uid: 2422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-39.5
parent: 2
- - uid: 2413
+ - uid: 2423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-36.5
parent: 2
- - uid: 2414
+ - uid: 2424
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
parent: 2
- - uid: 2415
+ - uid: 2428
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-40.5
parent: 2
- - uid: 2416
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2434
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,-38.5
+ pos: 24.5,-33.5
parent: 2
- - uid: 2417
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-36.5
parent: 2
- - uid: 2418
+ - uid: 2441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-40.5
parent: 2
- - uid: 2419
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-34.5
parent: 2
- - uid: 2420
+ - uid: 2443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-35.5
parent: 2
- - uid: 2421
+ - uid: 2444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-36.5
parent: 2
- - uid: 2469
+ - uid: 2445
components:
- type: Transform
- pos: 28.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
parent: 2
- - uid: 2470
+ - uid: 2452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-37.5
parent: 2
- - uid: 2473
+ - uid: 2453
components:
- type: Transform
- pos: 28.5,-34.5
+ pos: 25.5,-34.5
parent: 2
- - uid: 2474
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2470
components:
- type: Transform
- pos: 28.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2475
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2476
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 31.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2477
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 32.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2478
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2479
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2480
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-36.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2481
components:
- type: Transform
@@ -58063,33 +59146,25 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-33.5
- parent: 2
- - uid: 2505
+ - uid: 2492
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-25.5
+ pos: 25.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2507
+ color: '#990000FF'
+ - uid: 2496
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-33.5
+ pos: 27.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2508
+ - uid: 2505
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,-32.5
+ pos: -7.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -58101,28 +59176,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2513
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-36.5
- parent: 2
- - uid: 2514
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-36.5
- parent: 2
- - uid: 2515
+ - uid: 2559
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-35.5
parent: 2
- - uid: 2559
+ - uid: 2563
components:
- type: Transform
- pos: 30.5,-34.5
+ pos: 32.5,-32.5
parent: 2
- uid: 2571
components:
@@ -58131,11 +59194,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2581
- components:
- - type: Transform
- pos: 30.5,-32.5
- parent: 2
- uid: 2621
components:
- type: Transform
@@ -58187,6 +59245,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2945
+ components:
+ - type: Transform
+ pos: 27.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2975
components:
- type: Transform
@@ -58443,7 +59516,15 @@ entities:
- uid: 5207
components:
- type: Transform
- pos: 28.5,-37.5
+ pos: 25.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
parent: 2
- uid: 5300
components:
@@ -58631,6 +59712,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 6640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
+ parent: 2
- uid: 6653
components:
- type: Transform
@@ -59662,6 +60749,18 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-36.5
+ parent: 2
+ - uid: 8789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-34.5
+ parent: 2
- uid: 8793
components:
- type: Transform
@@ -59883,6 +60982,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-34.5
+ parent: 2
- uid: 8896
components:
- type: Transform
@@ -59969,6 +61074,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8949
+ components:
+ - type: Transform
+ pos: 25.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-36.5
+ parent: 2
+ - uid: 8951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-35.5
+ parent: 2
+ - uid: 8954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-34.5
+ parent: 2
+ - uid: 8987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-38.5
+ parent: 2
- uid: 8998
components:
- type: Transform
@@ -60220,11 +61356,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9630
- components:
- - type: Transform
- pos: 28.5,-35.5
- parent: 2
- uid: 9653
components:
- type: Transform
@@ -67848,17 +68979,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2471
+ - uid: 2418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-18.5
+ pos: 26.5,-34.5
parent: 2
- - uid: 2472
+ - uid: 2471
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-36.5
+ pos: 28.5,-18.5
parent: 2
- uid: 2485
components:
@@ -67890,11 +69020,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2506
+ - uid: 2498
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-35.5
+ pos: 27.5,-35.5
+ parent: 2
+ - uid: 2499
+ components:
+ - type: Transform
+ pos: 33.5,-36.5
parent: 2
- uid: 2511
components:
@@ -67904,12 +69039,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-36.5
- parent: 2
- uid: 3490
components:
- type: Transform
@@ -69441,6 +70570,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-36.5
+ parent: 2
- uid: 13879
components:
- type: Transform
@@ -69598,23 +70733,23 @@ entities:
rot: 3.141592653589793 rad
pos: 23.5,-28.5
parent: 2
- - uid: 2498
+ - uid: 2384
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-34.5
+ pos: 25.5,-34.5
parent: 2
- - uid: 2499
+ - uid: 2409
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-36.5
+ pos: 25.5,-38.5
parent: 2
- - uid: 2500
+ - uid: 2410
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-38.5
+ pos: 25.5,-36.5
parent: 2
- uid: 2501
components:
@@ -69732,12 +70867,14 @@ entities:
rot: 3.141592653589793 rad
pos: 23.5,-21.5
parent: 2
- - uid: 2494
+ - uid: 2497
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-33.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- uid: 368
@@ -69935,7 +71072,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 7554
@@ -71542,7 +72679,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- type: AtmosPipeColor
color: '#990000FF'
- uid: 9015
@@ -72616,6 +73753,11 @@ entities:
parent: 2
- proto: Grille
entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
- uid: 172
components:
- type: Transform
@@ -72626,6 +73768,21 @@ entities:
- type: Transform
pos: -5.5,2.5
parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 8.5,-59.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 8.5,-61.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 11.5,-61.5
+ parent: 2
- uid: 383
components:
- type: Transform
@@ -72646,31 +73803,51 @@ entities:
- type: Transform
pos: 18.5,4.5
parent: 2
- - uid: 871
+ - uid: 507
components:
- type: Transform
- pos: 61.5,-23.5
+ pos: 39.5,60.5
parent: 2
- - uid: 1108
+ - uid: 510
components:
- type: Transform
- pos: 47.5,-10.5
+ pos: -5.5,-6.5
parent: 2
- - uid: 1116
+ - uid: 827
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-11.5
+ pos: -28.5,1.5
parent: 2
- - uid: 1150
+ - uid: 846
components:
- type: Transform
- pos: 36.5,-17.5
+ pos: 8.5,-60.5
parent: 2
- - uid: 1157
+ - uid: 852
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: 12.5,-61.5
+ parent: 2
+ - uid: 858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,56.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 61.5,-23.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 47.5,-10.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 36.5,-17.5
parent: 2
- uid: 1161
components:
@@ -73078,21 +74255,6 @@ entities:
- type: Transform
pos: 35.5,-36.5
parent: 2
- - uid: 2205
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- - uid: 2207
- components:
- - type: Transform
- pos: 27.5,-40.5
- parent: 2
- - uid: 2210
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- uid: 2216
components:
- type: Transform
@@ -73108,10 +74270,17 @@ entities:
- type: Transform
pos: 35.5,-39.5
parent: 2
+ - uid: 2236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
+ parent: 2
- uid: 2238
components:
- type: Transform
- pos: 25.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-36.5
parent: 2
- uid: 2239
components:
@@ -73128,26 +74297,11 @@ entities:
- type: Transform
pos: 37.5,-37.5
parent: 2
- - uid: 2247
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- - uid: 2287
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- uid: 2306
components:
- type: Transform
pos: 35.5,-38.5
parent: 2
- - uid: 2307
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- uid: 2308
components:
- type: Transform
@@ -73158,21 +74312,6 @@ entities:
- type: Transform
pos: 37.5,-39.5
parent: 2
- - uid: 2311
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 2312
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 2313
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- uid: 2321
components:
- type: Transform
@@ -73253,21 +74392,6 @@ entities:
- type: Transform
pos: 44.5,-33.5
parent: 2
- - uid: 2367
- components:
- - type: Transform
- pos: 26.5,-43.5
- parent: 2
- - uid: 2368
- components:
- - type: Transform
- pos: 25.5,-43.5
- parent: 2
- - uid: 2369
- components:
- - type: Transform
- pos: 24.5,-43.5
- parent: 2
- uid: 2370
components:
- type: Transform
@@ -73283,6 +74407,12 @@ entities:
- type: Transform
pos: 20.5,-43.5
parent: 2
+ - uid: 2408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
+ parent: 2
- uid: 2460
components:
- type: Transform
@@ -73303,6 +74433,18 @@ entities:
- type: Transform
pos: 22.5,-25.5
parent: 2
+ - uid: 2474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-38.5
+ parent: 2
+ - uid: 2494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-40.5
+ parent: 2
- uid: 2576
components:
- type: Transform
@@ -73413,6 +74555,11 @@ entities:
- type: Transform
pos: -6.5,63.5
parent: 2
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 2
- uid: 2847
components:
- type: Transform
@@ -73909,29 +75056,11 @@ entities:
- type: Transform
pos: -27.5,-8.5
parent: 2
- - uid: 4591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,0.5
- parent: 2
- uid: 4592
components:
- type: Transform
pos: -29.5,-2.5
parent: 2
- - uid: 4621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,0.5
- parent: 2
- - uid: 4622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,1.5
- parent: 2
- uid: 4633
components:
- type: Transform
@@ -74278,6 +75407,26 @@ entities:
- type: Transform
pos: 26.5,-26.5
parent: 2
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: 45.5,-11.5
+ parent: 2
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: 45.5,-9.5
+ parent: 2
+ - uid: 6014
+ components:
+ - type: Transform
+ pos: 25.5,-44.5
+ parent: 2
+ - uid: 6079
+ components:
+ - type: Transform
+ pos: 24.5,-44.5
+ parent: 2
- uid: 6118
components:
- type: Transform
@@ -74644,11 +75793,6 @@ entities:
- type: Transform
pos: -28.5,-61.5
parent: 2
- - uid: 6467
- components:
- - type: Transform
- pos: 29.5,55.5
- parent: 2
- uid: 6481
components:
- type: Transform
@@ -74958,11 +76102,6 @@ entities:
- type: Transform
pos: 25.5,53.5
parent: 2
- - uid: 7893
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- uid: 7909
components:
- type: Transform
@@ -75796,6 +76935,11 @@ entities:
- type: Transform
pos: 29.5,54.5
parent: 2
+ - uid: 8527
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
- uid: 8687
components:
- type: Transform
@@ -75807,10 +76951,23 @@ entities:
- type: Transform
pos: 29.5,51.5
parent: 2
- - uid: 9036
+ - uid: 8946
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 8947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 8948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
parent: 2
- uid: 9043
components:
@@ -75839,6 +76996,41 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-45.5
parent: 2
+ - uid: 9551
+ components:
+ - type: Transform
+ pos: 13.5,-61.5
+ parent: 2
+ - uid: 9552
+ components:
+ - type: Transform
+ pos: 14.5,-61.5
+ parent: 2
+ - uid: 9553
+ components:
+ - type: Transform
+ pos: 17.5,-61.5
+ parent: 2
+ - uid: 9554
+ components:
+ - type: Transform
+ pos: 18.5,-61.5
+ parent: 2
+ - uid: 9555
+ components:
+ - type: Transform
+ pos: 18.5,-60.5
+ parent: 2
+ - uid: 9556
+ components:
+ - type: Transform
+ pos: 18.5,-58.5
+ parent: 2
+ - uid: 9558
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 2
- uid: 9997
components:
- type: Transform
@@ -75894,11 +77086,11 @@ entities:
- type: Transform
pos: -29.5,-35.5
parent: 2
- - uid: 11340
+ - uid: 12673
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,-43.5
+ pos: 24.5,-34.5
parent: 2
- uid: 12839
components:
@@ -75928,48 +77120,12 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 2
- - uid: 14217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-41.5
- parent: 2
- - uid: 14218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-40.5
- parent: 2
- - uid: 14219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-37.5
- parent: 2
- uid: 14222
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -13.5,-48.5
parent: 2
- - uid: 14227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-39.5
- parent: 2
- - uid: 14228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-36.5
- parent: 2
- - uid: 14229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-35.5
- parent: 2
- uid: 14230
components:
- type: Transform
@@ -76134,6 +77290,12 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
+ - uid: 14534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-35.5
+ parent: 2
- uid: 14796
components:
- type: Transform
@@ -76145,6 +77307,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-6.5
parent: 2
+ - uid: 15271
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
- uid: 15355
components:
- type: Transform
@@ -76179,31 +77346,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-47.5
parent: 2
- - uid: 15677
- components:
- - type: Transform
- pos: 31.5,56.5
- parent: 2
- - uid: 15678
- components:
- - type: Transform
- pos: 32.5,56.5
- parent: 2
- - uid: 15679
- components:
- - type: Transform
- pos: 33.5,56.5
- parent: 2
- - uid: 15680
- components:
- - type: Transform
- pos: 34.5,56.5
- parent: 2
- - uid: 15681
- components:
- - type: Transform
- pos: 35.5,56.5
- parent: 2
- uid: 15682
components:
- type: Transform
@@ -76219,12 +77361,6 @@ entities:
- type: Transform
pos: 39.5,52.5
parent: 2
- - uid: 15731
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-51.5
- parent: 2
- uid: 15732
components:
- type: Transform
@@ -76237,42 +77373,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-53.5
parent: 2
- - uid: 15734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-57.5
- parent: 2
- - uid: 15735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-57.5
- parent: 2
- - uid: 15736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-57.5
- parent: 2
- - uid: 15737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-57.5
- parent: 2
- - uid: 15738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-57.5
- parent: 2
- - uid: 15739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-57.5
- parent: 2
- uid: 15740
components:
- type: Transform
@@ -76315,12 +77415,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-48.5
parent: 2
- - uid: 15747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-47.5
- parent: 2
- uid: 15748
components:
- type: Transform
@@ -76351,12 +77445,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-39.5
parent: 2
- - uid: 15753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,56.5
- parent: 2
- uid: 15754
components:
- type: Transform
@@ -76466,8 +77554,73 @@ entities:
- type: Transform
pos: -26.5,41.5
parent: 2
+ - uid: 16332
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 2
+ - uid: 16333
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 2
+ - uid: 16334
+ components:
+ - type: Transform
+ pos: 33.5,60.5
+ parent: 2
+ - uid: 16336
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 2
+ - uid: 16337
+ components:
+ - type: Transform
+ pos: 29.5,60.5
+ parent: 2
+ - uid: 16338
+ components:
+ - type: Transform
+ pos: 29.5,59.5
+ parent: 2
+ - uid: 16344
+ components:
+ - type: Transform
+ pos: 29.5,58.5
+ parent: 2
+ - uid: 16403
+ components:
+ - type: Transform
+ pos: -44.5,-39.5
+ parent: 2
+ - uid: 16404
+ components:
+ - type: Transform
+ pos: -43.5,-39.5
+ parent: 2
+ - uid: 16405
+ components:
+ - type: Transform
+ pos: -42.5,-39.5
+ parent: 2
+ - uid: 16406
+ components:
+ - type: Transform
+ pos: -41.5,-39.5
+ parent: 2
- proto: GrilleSpawner
entities:
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 10.5,-61.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 8.5,-57.5
+ parent: 2
- uid: 1755
components:
- type: Transform
@@ -76493,6 +77646,11 @@ entities:
- type: Transform
pos: -0.5,55.5
parent: 2
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 2
- uid: 3450
components:
- type: Transform
@@ -76608,6 +77766,11 @@ entities:
- type: Transform
pos: 49.5,-37.5
parent: 2
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: 23.5,-44.5
+ parent: 2
- uid: 7113
components:
- type: Transform
@@ -76708,6 +77871,11 @@ entities:
- type: Transform
pos: -24.5,63.5
parent: 2
+ - uid: 8395
+ components:
+ - type: Transform
+ pos: 29.5,55.5
+ parent: 2
- uid: 8406
components:
- type: Transform
@@ -76728,6 +77896,16 @@ entities:
- type: Transform
pos: -30.5,17.5
parent: 2
+ - uid: 8528
+ components:
+ - type: Transform
+ pos: 18.5,-43.5
+ parent: 2
+ - uid: 9557
+ components:
+ - type: Transform
+ pos: 8.5,-47.5
+ parent: 2
- uid: 10230
components:
- type: Transform
@@ -76763,11 +77941,21 @@ entities:
- type: Transform
pos: 30.5,-48.5
parent: 2
+ - uid: 14696
+ components:
+ - type: Transform
+ pos: 18.5,-51.5
+ parent: 2
- uid: 16145
components:
- type: Transform
pos: -26.5,40.5
parent: 2
+ - uid: 16335
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 2
- proto: GunSafeDisabler
entities:
- uid: 3427
@@ -76855,20 +78043,6 @@ entities:
- type: Transform
pos: 36.5,-2.5
parent: 2
- - uid: 4997
- components:
- - type: MetaData
- name: high security door (Gravity Generator)
- - type: Transform
- pos: 38.5,-5.5
- parent: 2
- - uid: 15433
- components:
- - type: MetaData
- name: high security door (Station Anchor)
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- proto: HolopadAiCore
entities:
- uid: 14774
@@ -77004,10 +78178,10 @@ entities:
parent: 2
- proto: HolopadEngineeringAtmosMain
entities:
- - uid: 14766
+ - uid: 5
components:
- type: Transform
- pos: 31.5,-37.5
+ pos: 29.5,-41.5
parent: 2
- proto: HolopadEngineeringAtmosTeg
entities:
@@ -77198,13 +78372,6 @@ entities:
- type: Transform
pos: -19.5,15.5
parent: 2
-- proto: HolopadScienceFront
- entities:
- - uid: 14721
- components:
- - type: Transform
- pos: -11.5,21.5
- parent: 2
- proto: HolopadScienceRnd
entities:
- uid: 16391
@@ -77694,11 +78861,13 @@ entities:
rot: 3.141592653589793 rad
pos: -41.5,30.5
parent: 2
- - uid: 14449
+- proto: IntercomCommand
+ entities:
+ - uid: 4421
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,-5.5
+ pos: -23.5,-6.5
parent: 2
- uid: 14474
components:
@@ -77709,16 +78878,14 @@ entities:
- uid: 14475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-5.5
parent: 2
-- proto: IntercomCommand
- entities:
- - uid: 4421
+ - uid: 16409
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-5.5
parent: 2
- proto: IntercomCommon
entities:
@@ -77990,13 +79157,6 @@ entities:
- type: Transform
pos: 0.46948135,19.865473
parent: 2
-- proto: LampInterrogator
- entities:
- - uid: 16075
- components:
- - type: Transform
- pos: -9.509186,58.65886
- parent: 2
- proto: LargeBeaker
entities:
- uid: 6738
@@ -78018,6 +79178,20 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: LeftArmBorg
+ entities:
+ - uid: 14514
+ components:
+ - type: Transform
+ pos: -27.534824,16.087107
+ parent: 2
+- proto: Lighter
+ entities:
+ - uid: 14933
+ components:
+ - type: Transform
+ pos: -4.7553344,-6.4766946
+ parent: 2
- proto: LightReplacer
entities:
- uid: 808
@@ -78098,13 +79272,13 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 16351:
+ 6001:
- Pressed: Toggle
- 16352:
+ 6000:
- Pressed: Toggle
- 230:
+ 6002:
- Pressed: Toggle
- 226:
+ 3436:
- Pressed: Toggle
- proto: LockableButtonCaptain
entities:
@@ -78119,12 +79293,14 @@ entities:
linkedPorts:
4881:
- Pressed: Toggle
- 13974:
+ 996:
- Pressed: Toggle
13978:
- Pressed: Toggle
13977:
- Pressed: Toggle
+ 755:
+ - Pressed: Toggle
- proto: LockableButtonCargo
entities:
- uid: 6557
@@ -78479,10 +79655,10 @@ entities:
parent: 2
- proto: LockerCaptainFilledNoLaser
entities:
- - uid: 4620
+ - uid: 14573
components:
- type: Transform
- pos: -26.5,1.5
+ pos: -27.5,1.5
parent: 2
- proto: LockerChemistryFilled
entities:
@@ -78683,6 +79859,11 @@ entities:
- type: Transform
pos: 35.5,17.5
parent: 2
+ - uid: 16348
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 2
- proto: LockerMime
entities:
- uid: 273
@@ -78860,8 +80041,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8977377
+ - 7.139109
- 0
- 0
- 0
@@ -78878,12 +80059,10 @@ entities:
showEnts: False
occludes: True
ents:
- - 16061
- - 16060
- - 16059
- - 16058
- - 16057
- 16056
+ - 16057
+ - 16058
+ - 16060
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -78916,6 +80095,11 @@ entities:
- type: Transform
pos: 25.5,-29.5
parent: 2
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: 39.5,-8.5
+ parent: 2
- uid: 2754
components:
- type: Transform
@@ -79025,11 +80209,6 @@ entities:
- type: Transform
pos: 43.5,2.5
parent: 2
- - uid: 15251
- components:
- - type: Transform
- pos: 29.5,32.5
- parent: 2
- uid: 15252
components:
- type: Transform
@@ -79084,7 +80263,7 @@ entities:
- uid: 16204
components:
- type: Transform
- pos: 10.9722595,-19.469482
+ pos: 11.323762,-19.48439
parent: 2
- proto: MachineAnomalyGenerator
entities:
@@ -79150,6 +80329,11 @@ entities:
parent: 2
- proto: MachineFrame
entities:
+ - uid: 2507
+ components:
+ - type: Transform
+ pos: 43.5,-0.5
+ parent: 2
- uid: 3423
components:
- type: Transform
@@ -79167,10 +80351,11 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,-40.5
parent: 2
- - uid: 12382
+ - uid: 13489
components:
- type: Transform
- pos: 41.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-2.5
parent: 2
- uid: 13683
components:
@@ -79201,6 +80386,11 @@ entities:
parent: 2
- proto: MachineFrameDestroyed
entities:
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 2
- uid: 5167
components:
- type: Transform
@@ -79248,6 +80438,11 @@ entities:
- type: Transform
pos: -11.473943,-33.730816
parent: 2
+ - uid: 14449
+ components:
+ - type: Transform
+ pos: -11.508567,-33.919952
+ parent: 2
- proto: MaintenanceFluffSpawner
entities:
- uid: 13636
@@ -79320,15 +80515,15 @@ entities:
- type: Transform
pos: 38.5,31.5
parent: 2
- - uid: 13741
+ - uid: 13742
components:
- type: Transform
- pos: 31.5,1.5
+ pos: 8.5,-24.5
parent: 2
- - uid: 13742
+ - uid: 14521
components:
- type: Transform
- pos: 8.5,-24.5
+ pos: 41.5,5.5
parent: 2
- uid: 15449
components:
@@ -79345,6 +80540,23 @@ entities:
- type: Transform
pos: -19.5,54.5
parent: 2
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 2472
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 41.5,-0.5
+ parent: 2
+ - uid: 14524
+ components:
+ - type: Transform
+ pos: -39.5,-43.5
+ parent: 2
- proto: MaintenancePlantSpawner
entities:
- uid: 372
@@ -79432,11 +80644,6 @@ entities:
- type: Transform
pos: 42.5,1.5
parent: 2
- - uid: 15838
- components:
- - type: Transform
- pos: 40.5,-1.5
- parent: 2
- uid: 15848
components:
- type: Transform
@@ -79459,10 +80666,10 @@ entities:
- type: Transform
pos: 12.5,-7.5
parent: 2
- - uid: 727
+ - uid: 1835
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: 3.5,27.5
parent: 2
- uid: 10233
components:
@@ -79564,11 +80771,6 @@ entities:
- type: Transform
pos: -23.5,46.5
parent: 2
- - uid: 16124
- components:
- - type: Transform
- pos: -23.5,47.5
- parent: 2
- proto: MaintenanceWeaponSpawner
entities:
- uid: 725
@@ -79586,11 +80788,6 @@ entities:
- type: Transform
pos: -22.5,5.5
parent: 2
- - uid: 13706
- components:
- - type: Transform
- pos: -16.5,30.5
- parent: 2
- uid: 13733
components:
- type: Transform
@@ -79814,11 +81011,6 @@ entities:
- type: Transform
pos: -5.576272,7.5283756
parent: 2
- - uid: 15271
- components:
- - type: Transform
- pos: 26.634336,-56.68783
- parent: 2
- proto: Morgue
entities:
- uid: 3117
@@ -79905,11 +81097,6 @@ entities:
- type: Transform
pos: 37.5,-28.5
parent: 2
- - uid: 2434
- components:
- - type: Transform
- pos: 22.5,-35.5
- parent: 2
- uid: 5305
components:
- type: Transform
@@ -79935,6 +81122,11 @@ entities:
- type: Transform
pos: 44.5,29.5
parent: 2
+ - uid: 12625
+ components:
+ - type: Transform
+ pos: 19.5,-35.5
+ parent: 2
- uid: 14206
components:
- type: Transform
@@ -80064,11 +81256,6 @@ entities:
- type: Transform
pos: 37.5,-27.5
parent: 2
- - uid: 2435
- components:
- - type: Transform
- pos: 22.5,-37.5
- parent: 2
- uid: 5306
components:
- type: Transform
@@ -80099,6 +81286,11 @@ entities:
- type: Transform
pos: 22.5,32.5
parent: 2
+ - uid: 12382
+ components:
+ - type: Transform
+ pos: 19.5,-37.5
+ parent: 2
- uid: 14215
components:
- type: Transform
@@ -80155,12 +81347,12 @@ entities:
- uid: 16200
components:
- type: Transform
- pos: 11.2066345,-19.266357
+ pos: 11.417512,-19.312515
parent: 2
- uid: 16201
components:
- type: Transform
- pos: 11.4566345,-19.516357
+ pos: 11.605012,-19.468765
parent: 2
- uid: 16202
components:
@@ -80464,6 +81656,16 @@ entities:
- type: Transform
pos: 26.557302,37.30886
parent: 2
+ - uid: 16418
+ components:
+ - type: Transform
+ pos: 32.716835,13.709434
+ parent: 2
+ - uid: 16419
+ components:
+ - type: Transform
+ pos: 32.484386,13.476587
+ parent: 2
- proto: PlaqueAtmos
entities:
- uid: 15273
@@ -81001,6 +82203,21 @@ entities:
- type: Transform
pos: 3.5,-2.5
parent: 2
+ - uid: 14523
+ components:
+ - type: Transform
+ pos: -4.5,-37.5
+ parent: 2
+ - uid: 14525
+ components:
+ - type: Transform
+ pos: -0.5,-34.5
+ parent: 2
+ - uid: 14526
+ components:
+ - type: Transform
+ pos: -0.5,-38.5
+ parent: 2
- uid: 14717
components:
- type: Transform
@@ -81358,12 +82575,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,-6.5
parent: 2
- - uid: 13530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- uid: 13532
components:
- type: Transform
@@ -81801,6 +83012,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,-27.5
parent: 2
+ - uid: 2204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-33.5
+ parent: 2
+ - uid: 2342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-33.5
+ parent: 2
+ - uid: 2947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-40.5
+ parent: 2
- uid: 3612
components:
- type: Transform
@@ -81865,36 +83094,12 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-31.5
parent: 2
- - uid: 12712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-31.5
- parent: 2
- - uid: 12713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-40.5
- parent: 2
- uid: 12714
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-40.5
parent: 2
- - uid: 12715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-32.5
- parent: 2
- - uid: 12716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-32.5
- parent: 2
- uid: 12720
components:
- type: Transform
@@ -82640,24 +83845,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-34.5
parent: 2
- - uid: 13854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-39.5
- parent: 2
- - uid: 13855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-37.5
- parent: 2
- - uid: 13856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-35.5
- parent: 2
- uid: 13857
components:
- type: Transform
@@ -82688,6 +83875,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-26.5
parent: 2
+ - uid: 14545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-39.5
+ parent: 2
+ - uid: 14546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-37.5
+ parent: 2
+ - uid: 14547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-35.5
+ parent: 2
- uid: 15256
components:
- type: Transform
@@ -82714,6 +83919,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 42.5,-15.5
parent: 2
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 39.5,-26.5
+ parent: 2
- uid: 4498
components:
- type: Transform
@@ -82749,6 +83959,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 40.5,13.5
parent: 2
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-31.5
+ parent: 2
- uid: 10621
components:
- type: Transform
@@ -82771,18 +83987,6 @@ entities:
- type: Transform
pos: -24.5,-19.5
parent: 2
- - uid: 12718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 2
- - uid: 12719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-7.5
- parent: 2
- uid: 12737
components:
- type: Transform
@@ -82807,12 +84011,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.5,-4.5
parent: 2
- - uid: 12804
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 2
- uid: 12834
components:
- type: Transform
@@ -82944,12 +84142,30 @@ entities:
- type: Transform
pos: -25.5,1.5
parent: 2
+ - uid: 14724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 14766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 2
- uid: 15594
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,-6.5
parent: 2
+ - uid: 15724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 2
- uid: 15730
components:
- type: Transform
@@ -83023,15 +84239,15 @@ entities:
parent: 2
- proto: Rack
entities:
- - uid: 207
+ - uid: 337
components:
- type: Transform
- pos: 0.5,-7.5
+ pos: 6.5,-4.5
parent: 2
- - uid: 337
+ - uid: 367
components:
- type: Transform
- pos: 6.5,-4.5
+ pos: 41.5,5.5
parent: 2
- uid: 436
components:
@@ -83044,11 +84260,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,8.5
parent: 2
- - uid: 721
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 2
- uid: 723
components:
- type: Transform
@@ -83089,6 +84300,11 @@ entities:
- type: Transform
pos: 40.5,-31.5
parent: 2
+ - uid: 2581
+ components:
+ - type: Transform
+ pos: 39.5,-8.5
+ parent: 2
- uid: 2632
components:
- type: Transform
@@ -83326,6 +84542,11 @@ entities:
- type: Transform
pos: -2.5,25.5
parent: 2
+ - uid: 13738
+ components:
+ - type: Transform
+ pos: 42.5,5.5
+ parent: 2
- uid: 15266
components:
- type: Transform
@@ -83361,7 +84582,7 @@ entities:
- uid: 9125
components:
- type: Transform
- pos: 23.819582,-10.707807
+ pos: 23.843485,-10.439513
parent: 2
- proto: RagItem
entities:
@@ -83738,13 +84959,13 @@ entities:
- type: Transform
pos: 40.5,-0.5
parent: 2
- - uid: 16088
+- proto: RandomDrinkBottle
+ entities:
+ - uid: 5999
components:
- type: Transform
- pos: 42.5,-1.5
+ pos: -0.5,-3.5
parent: 2
-- proto: RandomDrinkBottle
- entities:
- uid: 8606
components:
- type: Transform
@@ -83799,6 +85020,46 @@ entities:
- type: Transform
pos: -3.5,-38.5
parent: 2
+ - uid: 9390
+ components:
+ - type: Transform
+ pos: -23.5,47.5
+ parent: 2
+ - uid: 13706
+ components:
+ - type: Transform
+ pos: -16.5,30.5
+ parent: 2
+ - uid: 15236
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 16124
+ components:
+ - type: Transform
+ pos: 57.5,-1.5
+ parent: 2
+ - uid: 16410
+ components:
+ - type: Transform
+ pos: 36.5,27.5
+ parent: 2
+ - uid: 16412
+ components:
+ - type: Transform
+ pos: -39.5,-32.5
+ parent: 2
+ - uid: 16413
+ components:
+ - type: Transform
+ pos: 18.5,11.5
+ parent: 2
+ - uid: 16414
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
- proto: RandomPainting
entities:
- uid: 2752
@@ -84142,11 +85403,6 @@ entities:
- type: Transform
pos: -2.5,-8.5
parent: 2
- - uid: 872
- components:
- - type: Transform
- pos: -3.5,-5.5
- parent: 2
- uid: 1315
components:
- type: Transform
@@ -84632,11 +85888,6 @@ entities:
- type: Transform
pos: 24.5,-28.5
parent: 2
- - uid: 14928
- components:
- - type: Transform
- pos: 24.5,-32.5
- parent: 2
- uid: 14929
components:
- type: Transform
@@ -85123,21 +86374,6 @@ entities:
- type: Transform
pos: 37.5,-35.5
parent: 2
- - uid: 2202
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 2204
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - uid: 2206
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- uid: 2291
components:
- type: Transform
@@ -85168,6 +86404,24 @@ entities:
- type: Transform
pos: 31.5,-42.5
parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 2469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 2473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
+ parent: 2
- uid: 5153
components:
- type: Transform
@@ -85185,6 +86439,11 @@ entities:
parent: 2
- proto: ReinforcedWindow
entities:
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
- uid: 1122
components:
- type: Transform
@@ -85346,11 +86605,6 @@ entities:
- type: Transform
pos: 35.5,-38.5
parent: 2
- - uid: 2209
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- uid: 2218
components:
- type: Transform
@@ -85361,11 +86615,6 @@ entities:
- type: Transform
pos: 35.5,-39.5
parent: 2
- - uid: 2220
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- uid: 2222
components:
- type: Transform
@@ -85376,30 +86625,10 @@ entities:
- type: Transform
pos: 35.5,-37.5
parent: 2
- - uid: 2224
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- - uid: 2281
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- - uid: 2282
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 2283
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 2310
+ - uid: 2298
components:
- type: Transform
- pos: 27.5,-40.5
+ pos: 45.5,-9.5
parent: 2
- uid: 2517
components:
@@ -85439,8 +86668,7 @@ entities:
- uid: 2727
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-11.5
+ pos: 45.5,-11.5
parent: 2
- uid: 2892
components:
@@ -85695,12 +86923,6 @@ entities:
- type: Transform
pos: -27.5,-8.5
parent: 2
- - uid: 4557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,0.5
- parent: 2
- uid: 4563
components:
- type: Transform
@@ -85997,6 +87219,11 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,-0.5
parent: 2
+ - uid: 7893
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
- uid: 7904
components:
- type: Transform
@@ -86082,7 +87309,7 @@ entities:
- uid: 8092
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: -28.5,1.5
parent: 2
- uid: 8095
components:
@@ -86094,15 +87321,28 @@ entities:
- type: Transform
pos: 34.5,-4.5
parent: 2
+ - uid: 8236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-34.5
+ parent: 2
- uid: 8249
components:
- type: Transform
pos: 28.5,-26.5
parent: 2
- - uid: 9081
+ - uid: 8786
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-40.5
+ parent: 2
+ - uid: 8788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
parent: 2
- uid: 10528
components:
@@ -86110,6 +87350,12 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
+ - uid: 12713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
+ parent: 2
- uid: 12879
components:
- type: Transform
@@ -86128,6 +87374,12 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-48.5
parent: 2
+ - uid: 13854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-36.5
+ parent: 2
- uid: 14139
components:
- type: Transform
@@ -86168,6 +87420,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -31.5,-4.5
parent: 2
+ - uid: 14533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-35.5
+ parent: 2
+ - uid: 14535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-38.5
+ parent: 2
- uid: 14627
components:
- type: Transform
@@ -86327,7 +87591,7 @@ entities:
- uid: 6737
components:
- type: Transform
- pos: -27.7082,14.599499
+ pos: -26.98795,15.337107
parent: 2
- proto: ScrapCamera
entities:
@@ -86453,10 +87717,15 @@ entities:
- type: Transform
pos: 35.523155,-18.499912
parent: 2
+ - uid: 14515
+ components:
+ - type: Transform
+ pos: -26.507914,15.899607
+ parent: 2
- uid: 15841
components:
- type: Transform
- pos: 41.432343,-1.0810952
+ pos: 41.654457,-0.7625258
parent: 2
- proto: SecurityTechFab
entities:
@@ -86474,6 +87743,11 @@ entities:
parent: 2
- proto: ShardGlass
entities:
+ - uid: 8243
+ components:
+ - type: Transform
+ pos: -9.270074,58.717693
+ parent: 2
- uid: 13739
components:
- type: Transform
@@ -86563,7 +87837,7 @@ entities:
- uid: 6741
components:
- type: Transform
- pos: -21.485023,14.577084
+ pos: -15.388418,25.607353
parent: 2
- proto: SheetPlastic10
entities:
@@ -86654,17 +87928,11 @@ entities:
parent: 2
- proto: ShuttersNormal
entities:
- - uid: 226
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
- parent: 2
- - uid: 230
+ - uid: 3436
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
+ pos: -1.5,-3.5
parent: 2
- uid: 4706
components:
@@ -86676,6 +87944,24 @@ entities:
- type: Transform
pos: 21.5,16.5
parent: 2
+ - uid: 6000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 6001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 6002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
- uid: 14372
components:
- type: Transform
@@ -86700,20 +87986,20 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,1.5
parent: 2
- - uid: 16351
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 755
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-5.5
+ pos: -28.5,1.5
parent: 2
- - uid: 16352
+ - uid: 996
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
+ pos: -28.5,0.5
parent: 2
-- proto: ShuttersNormalOpen
- entities:
- uid: 2332
components:
- type: Transform
@@ -86846,12 +88132,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,38.5
parent: 2
- - uid: 13974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,0.5
- parent: 2
- uid: 13977
components:
- type: Transform
@@ -86990,6 +88270,14 @@ entities:
parent: 2
- proto: SignalButtonDirectional
entities:
+ - uid: 841
+ components:
+ - type: MetaData
+ name: signal button (Janitor)
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 2
- uid: 2643
components:
- type: MetaData
@@ -87393,18 +88681,6 @@ entities:
linkedPorts:
15896:
- Pressed: Toggle
- - uid: 15901
- components:
- - type: MetaData
- name: signal button (Janitor)
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-3.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6281:
- - Pressed: Toggle
- proto: SignalSwitchDirectional
entities:
- uid: 9640
@@ -88341,10 +89617,10 @@ entities:
- type: Transform
pos: 22.5,-26.5
parent: 2
- - uid: 12775
+ - uid: 15260
components:
- type: Transform
- pos: 28.5,-41.5
+ pos: 28.5,-42.5
parent: 2
- proto: SignGravity
entities:
@@ -88979,6 +90255,11 @@ entities:
parent: 2
- proto: SolarPanel
entities:
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 10.5,-57.5
+ parent: 2
- uid: 1296
components:
- type: Transform
@@ -89259,6 +90540,56 @@ entities:
- type: Transform
pos: 11.5,-53.5
parent: 2
+ - uid: 15759
+ components:
+ - type: Transform
+ pos: 12.5,-57.5
+ parent: 2
+ - uid: 15763
+ components:
+ - type: Transform
+ pos: 13.5,-57.5
+ parent: 2
+ - uid: 15838
+ components:
+ - type: Transform
+ pos: 14.5,-57.5
+ parent: 2
+ - uid: 15839
+ components:
+ - type: Transform
+ pos: 14.5,-59.5
+ parent: 2
+ - uid: 15842
+ components:
+ - type: Transform
+ pos: 12.5,-59.5
+ parent: 2
+ - uid: 16350
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 2
+ - uid: 16351
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 2
+ - uid: 16352
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 2
+ - uid: 16353
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 2
+ - uid: 16354
+ components:
+ - type: Transform
+ pos: 32.5,58.5
+ parent: 2
- proto: SolarPanelBroken
entities:
- uid: 1299
@@ -89396,17 +90727,47 @@ entities:
- type: Transform
pos: 31.5,52.5
parent: 2
+ - uid: 15753
+ components:
+ - type: Transform
+ pos: 11.5,-57.5
+ parent: 2
+ - uid: 15843
+ components:
+ - type: Transform
+ pos: 13.5,-59.5
+ parent: 2
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: 10.5,-59.5
+ parent: 2
+ - uid: 16361
+ components:
+ - type: Transform
+ pos: 33.5,56.5
+ parent: 2
+ - uid: 16398
+ components:
+ - type: Transform
+ pos: 33.5,58.5
+ parent: 2
+ - uid: 16399
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 2
- proto: SolarTracker
entities:
- - uid: 11339
+ - uid: 9081
components:
- type: Transform
- pos: 16.5,-55.5
+ pos: 37.5,58.5
parent: 2
- - uid: 14506
+ - uid: 15737
components:
- type: Transform
- pos: 37.5,54.5
+ pos: 16.5,-59.5
parent: 2
- proto: SolidSecretDoor
entities:
@@ -89427,6 +90788,11 @@ entities:
- type: Transform
pos: 37.323593,25.80974
parent: 2
+ - uid: 13724
+ components:
+ - type: Transform
+ pos: 37.55199,26.713161
+ parent: 2
- uid: 13861
components:
- type: Transform
@@ -89442,13 +90808,6 @@ entities:
- type: Transform
pos: 1.5077801,39.89814
parent: 2
-- proto: SpaceCash1000
- entities:
- - uid: 9390
- components:
- - type: Transform
- pos: 37.667343,26.62224
- parent: 2
- proto: SpaceHeaterAnchored
entities:
- uid: 8075
@@ -89523,11 +90882,6 @@ entities:
- type: Transform
pos: 13.5,-18.5
parent: 2
- - uid: 15236
- components:
- - type: Transform
- pos: 3.5,10.5
- parent: 2
- uid: 15237
components:
- type: Transform
@@ -89573,6 +90927,11 @@ entities:
- type: Transform
pos: 24.5,4.5
parent: 2
+ - uid: 16411
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
- proto: SpaceVillainArcadeFilled
entities:
- uid: 13998
@@ -89677,13 +91036,6 @@ entities:
- type: Transform
pos: 25.5,25.5
parent: 2
-- proto: SpawnMobMonkeyPunpun
- entities:
- - uid: 2812
- components:
- - type: Transform
- pos: 2.5,-5.5
- parent: 2
- proto: SpawnMobParrot
entities:
- uid: 16182
@@ -90726,6 +92078,12 @@ entities:
parent: 2
- proto: StoolBar
entities:
+ - uid: 213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 2
- uid: 218
components:
- type: Transform
@@ -90744,23 +92102,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-1.5
parent: 2
- - uid: 269
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-3.5
- parent: 2
- - uid: 320
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-4.5
- parent: 2
- - uid: 841
+ - uid: 734
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-5.5
+ pos: -2.5,-5.5
parent: 2
- uid: 1688
components:
@@ -90774,6 +92120,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 17.5,1.5
parent: 2
+ - uid: 2367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 2
- uid: 8608
components:
- type: Transform
@@ -90798,6 +92150,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 17.5,-0.5
parent: 2
+ - uid: 15678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 2
- proto: StorageCanister
entities:
- uid: 1399
@@ -90943,10 +92301,10 @@ entities:
parent: 2
- proto: SuitStorageCaptain
entities:
- - uid: 4449
+ - uid: 1116
components:
- type: Transform
- pos: -26.5,0.5
+ pos: -27.5,0.5
parent: 2
- proto: SuitStorageCE
entities:
@@ -91533,6 +92891,31 @@ entities:
id: C12 - HoP's Bedroom
- proto: SurveillanceCameraEngineering
entities:
+ - uid: 8941
+ components:
+ - type: MetaData
+ name: camera (E14 - Atmos South)
+ - type: Transform
+ pos: 29.5,-41.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: E14 - Atmos South
+ - uid: 8988
+ components:
+ - type: MetaData
+ name: camera (E12 - Atmos West)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-32.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: E12 - Atmos West
- uid: 15096
components:
- type: MetaData
@@ -91696,18 +93079,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: E10 - TEG
- - uid: 15109
- components:
- - type: MetaData
- name: camera (E12 - Atmos West)
- - type: Transform
- pos: 27.5,-31.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: E12 - Atmos West
- uid: 15110
components:
- type: MetaData
@@ -91720,18 +93091,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: E13 - Atmos East
- - uid: 15111
- components:
- - type: MetaData
- name: camera (E14 - Atmos South)
- - type: Transform
- pos: 33.5,-41.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: E14 - Atmos South
- uid: 15112
components:
- type: MetaData
@@ -92849,12 +94208,13 @@ entities:
- SurveillanceCameraService
nameSet: True
id: V12 - Spacebucks
- - uid: 16334
+ - uid: 15246
components:
- type: MetaData
name: camera (V02 - Bar)
- type: Transform
- pos: -2.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-5.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
@@ -92959,20 +94319,6 @@ entities:
- SurveillanceCameraEntertainment
nameSet: True
id: Reporter's Field Camera
-- proto: SyndicateBusinessCard
- entities:
- - uid: 3232
- components:
- - type: Transform
- pos: 41.29652,26.466743
- parent: 2
- - uid: 16059
- components:
- - type: Transform
- parent: 16055
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: SyndieFlag
entities:
- uid: 16077
@@ -93047,11 +94393,11 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,-20.5
parent: 2
- - uid: 8528
+ - uid: 9401
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,18.5
parent: 2
- uid: 9618
components:
@@ -93135,6 +94481,12 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,23.5
parent: 2
+ - uid: 13471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,14.5
+ parent: 2
- uid: 13682
components:
- type: Transform
@@ -93208,6 +94560,22 @@ entities:
- type: Transform
pos: -64.5,-31.5
parent: 2
+ - uid: 16075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,18.5
+ parent: 2
+ - uid: 16345
+ components:
+ - type: Transform
+ pos: 33.5,61.5
+ parent: 2
+ - uid: 16427
+ components:
+ - type: Transform
+ pos: -8.5,33.5
+ parent: 2
- proto: TableCarpet
entities:
- uid: 8613
@@ -93479,12 +94847,6 @@ entities:
- type: Transform
pos: -31.5,-5.5
parent: 2
- - uid: 5293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,18.5
- parent: 2
- uid: 5303
components:
- type: Transform
@@ -93551,12 +94913,6 @@ entities:
- type: Transform
pos: -1.5,22.5
parent: 2
- - uid: 6735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,14.5
- parent: 2
- uid: 6736
components:
- type: Transform
@@ -93584,11 +94940,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,19.5
parent: 2
- - uid: 9401
- components:
- - type: Transform
- pos: -18.5,14.5
- parent: 2
- uid: 9504
components:
- type: Transform
@@ -93624,11 +94975,6 @@ entities:
- type: Transform
pos: -30.5,-5.5
parent: 2
- - uid: 13471
- components:
- - type: Transform
- pos: -17.5,18.5
- parent: 2
- uid: 13531
components:
- type: Transform
@@ -93730,6 +95076,16 @@ entities:
parent: 2
- proto: TableCounterWood
entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
- uid: 256
components:
- type: Transform
@@ -93753,28 +95109,21 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,10.5
parent: 2
- - uid: 802
+ - uid: 312
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: -1.5,-3.5
parent: 2
- - uid: 827
+ - uid: 341
components:
- type: Transform
pos: 0.5,-3.5
parent: 2
- - uid: 856
+ - uid: 427
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-3.5
parent: 2
- - uid: 977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 2
- uid: 982
components:
- type: Transform
@@ -93883,10 +95232,10 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,-35.5
parent: 2
- - uid: 12796
+ - uid: 12804
components:
- type: Transform
- pos: -2.5,-7.5
+ pos: -1.5,-5.5
parent: 2
- uid: 13765
components:
@@ -93894,11 +95243,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,19.5
parent: 2
- - uid: 14933
+ - uid: 14574
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
+ pos: 0.5,-7.5
parent: 2
- uid: 15421
components:
@@ -93911,11 +95259,6 @@ entities:
- type: Transform
pos: -25.5,-5.5
parent: 2
- - uid: 15978
- components:
- - type: Transform
- pos: 2.5,-7.5
- parent: 2
- proto: TableFancyBlue
entities:
- uid: 4662
@@ -94319,12 +95662,6 @@ entities:
- type: Transform
pos: 28.5,14.5
parent: 2
- - uid: 3990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-19.5
- parent: 2
- uid: 4054
components:
- type: Transform
@@ -94391,11 +95728,6 @@ entities:
- type: Transform
pos: -13.5,10.5
parent: 2
- - uid: 5128
- components:
- - type: Transform
- pos: -27.5,14.5
- parent: 2
- uid: 5129
components:
- type: Transform
@@ -94658,6 +95990,12 @@ entities:
- type: Transform
pos: -15.5,2.5
parent: 2
+ - uid: 5995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 2
- uid: 6256
components:
- type: Transform
@@ -94938,9 +96276,16 @@ entities:
parent: 2
- uid: 14361
components:
+ - type: MetaData
+ desc: A toolbox typically stocked with electrical gear. It is covered in dried blood.
+ name: bloodied electrical toolbox
- type: Transform
pos: -37.43985,-19.687504
parent: 2
+ - type: Contraband
+ allowedDepartments:
+ - Security
+ severity: Minor
- uid: 14380
components:
- type: Transform
@@ -94951,7 +96296,7 @@ entities:
- uid: 8494
components:
- type: Transform
- pos: 37.66633,-5.694439
+ pos: 40.14568,-4.1666737
parent: 2
- proto: ToolboxGoldFilled
entities:
@@ -95321,15 +96666,15 @@ entities:
parent: 2
- proto: VendingMachineBooze
entities:
- - uid: 213
+ - uid: 8593
components:
- type: Transform
- pos: 3.5,-6.5
+ pos: 58.5,1.5
parent: 2
- - uid: 8593
+ - uid: 15150
components:
- type: Transform
- pos: 58.5,1.5
+ pos: 2.5,-7.5
parent: 2
- proto: VendingMachineCargoDrobe
entities:
@@ -95409,6 +96754,11 @@ entities:
- type: Transform
pos: 14.5,20.5
parent: 2
+ - uid: 16424
+ components:
+ - type: Transform
+ pos: -8.5,34.5
+ parent: 2
- proto: VendingMachineCoffee
entities:
- uid: 5904
@@ -95527,6 +96877,13 @@ entities:
- type: Transform
pos: -9.5,-46.5
parent: 2
+- proto: VendingMachineRoboDrobe
+ entities:
+ - uid: 6735
+ components:
+ - type: Transform
+ pos: -27.5,14.5
+ parent: 2
- proto: VendingMachineRobotics
entities:
- uid: 5124
@@ -95541,6 +96898,13 @@ entities:
- type: Transform
pos: 21.5,34.5
parent: 2
+- proto: VendingMachineSciDrobe
+ entities:
+ - uid: 5128
+ components:
+ - type: Transform
+ pos: -21.5,14.5
+ parent: 2
- proto: VendingMachineSec
entities:
- uid: 2051
@@ -95658,6 +97022,11 @@ entities:
- type: Transform
pos: 14.5,19.5
parent: 2
+ - uid: 16426
+ components:
+ - type: Transform
+ pos: -8.5,35.5
+ parent: 2
- proto: VendingMachineYouTool
entities:
- uid: 6353
@@ -95721,6 +97090,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,-8.5
parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 27.5,-42.5
+ parent: 2
- uid: 1027
components:
- type: Transform
@@ -95817,11 +97191,6 @@ entities:
- type: Transform
pos: 22.5,-15.5
parent: 2
- - uid: 1154
- components:
- - type: Transform
- pos: 40.5,-2.5
- parent: 2
- uid: 1158
components:
- type: Transform
@@ -95884,12 +97253,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 47.5,-12.5
parent: 2
- - uid: 1257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-12.5
- parent: 2
- uid: 1316
components:
- type: Transform
@@ -95967,11 +97330,6 @@ entities:
- type: Transform
pos: 37.5,-32.5
parent: 2
- - uid: 1402
- components:
- - type: Transform
- pos: 25.5,-40.5
- parent: 2
- uid: 1413
components:
- type: Transform
@@ -96739,91 +98097,22 @@ entities:
- type: Transform
pos: 19.5,-30.5
parent: 2
- - uid: 2212
- components:
- - type: Transform
- pos: 21.5,-35.5
- parent: 2
- uid: 2213
components:
- type: Transform
pos: 21.5,-36.5
parent: 2
- - uid: 2214
- components:
- - type: Transform
- pos: 21.5,-37.5
- parent: 2
- - uid: 2225
- components:
- - type: Transform
- pos: 22.5,-34.5
- parent: 2
- - uid: 2227
- components:
- - type: Transform
- pos: 24.5,-34.5
- parent: 2
- - uid: 2228
- components:
- - type: Transform
- pos: 25.5,-34.5
- parent: 2
- - uid: 2231
- components:
- - type: Transform
- pos: 24.5,-36.5
- parent: 2
- - uid: 2232
- components:
- - type: Transform
- pos: 25.5,-36.5
- parent: 2
- - uid: 2233
- components:
- - type: Transform
- pos: 22.5,-38.5
- parent: 2
- uid: 2235
components:
- type: Transform
- pos: 24.5,-38.5
- parent: 2
- - uid: 2236
- components:
- - type: Transform
- pos: 25.5,-38.5
- parent: 2
- - uid: 2237
- components:
- - type: Transform
- pos: 28.5,-41.5
- parent: 2
- - uid: 2242
- components:
- - type: Transform
- pos: 27.5,-32.5
- parent: 2
- - uid: 2245
- components:
- - type: Transform
- pos: 27.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-41.5
parent: 2
- uid: 2246
components:
- type: Transform
pos: 38.5,-32.5
parent: 2
- - uid: 2250
- components:
- - type: Transform
- pos: 27.5,-41.5
- parent: 2
- - uid: 2254
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- uid: 2255
components:
- type: Transform
@@ -96909,16 +98198,6 @@ entities:
- type: Transform
pos: 34.5,-42.5
parent: 2
- - uid: 2295
- components:
- - type: Transform
- pos: 21.5,-39.5
- parent: 2
- - uid: 2298
- components:
- - type: Transform
- pos: 22.5,-40.5
- parent: 2
- uid: 2299
components:
- type: Transform
@@ -96959,6 +98238,12 @@ entities:
- type: Transform
pos: 29.5,-43.5
parent: 2
+ - uid: 2382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-34.5
+ parent: 2
- uid: 2518
components:
- type: Transform
@@ -98024,11 +99309,6 @@ entities:
- type: Transform
pos: -29.5,-4.5
parent: 2
- - uid: 4558
- components:
- - type: Transform
- pos: -27.5,1.5
- parent: 2
- uid: 4560
components:
- type: Transform
@@ -98894,6 +100174,12 @@ entities:
- type: Transform
pos: 40.5,-7.5
parent: 2
+ - uid: 5997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-42.5
+ parent: 2
- uid: 6128
components:
- type: Transform
@@ -99880,6 +101166,26 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,47.5
parent: 2
+ - uid: 8927
+ components:
+ - type: Transform
+ pos: 18.5,-37.5
+ parent: 2
+ - uid: 8929
+ components:
+ - type: Transform
+ pos: 19.5,-40.5
+ parent: 2
+ - uid: 8930
+ components:
+ - type: Transform
+ pos: 18.5,-38.5
+ parent: 2
+ - uid: 8932
+ components:
+ - type: Transform
+ pos: 18.5,-40.5
+ parent: 2
- uid: 9041
components:
- type: Transform
@@ -99958,6 +101264,12 @@ entities:
rot: 3.141592653589793 rad
pos: -9.5,-44.5
parent: 2
+ - uid: 14227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-38.5
+ parent: 2
- uid: 14232
components:
- type: Transform
@@ -99982,6 +101294,36 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,55.5
parent: 2
+ - uid: 14520
+ components:
+ - type: Transform
+ pos: 41.5,-1.5
+ parent: 2
+ - uid: 14537
+ components:
+ - type: Transform
+ pos: 18.5,-34.5
+ parent: 2
+ - uid: 14538
+ components:
+ - type: Transform
+ pos: 19.5,-34.5
+ parent: 2
+ - uid: 14539
+ components:
+ - type: Transform
+ pos: 20.5,-34.5
+ parent: 2
+ - uid: 14541
+ components:
+ - type: Transform
+ pos: 20.5,-36.5
+ parent: 2
+ - uid: 14543
+ components:
+ - type: Transform
+ pos: 20.5,-38.5
+ parent: 2
- uid: 14890
components:
- type: Transform
@@ -100237,11 +101579,6 @@ entities:
- type: Transform
pos: 34.5,-13.5
parent: 2
- - uid: 88
- components:
- - type: Transform
- pos: 42.5,-2.5
- parent: 2
- uid: 89
components:
- type: Transform
@@ -100337,11 +101674,6 @@ entities:
- type: Transform
pos: 40.5,-25.5
parent: 2
- - uid: 140
- components:
- - type: Transform
- pos: 24.5,-40.5
- parent: 2
- uid: 147
components:
- type: Transform
@@ -100442,6 +101774,11 @@ entities:
- type: Transform
pos: 44.5,-29.5
parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 25.5,-42.5
+ parent: 2
- uid: 555
components:
- type: Transform
@@ -100478,6 +101815,11 @@ entities:
- type: Transform
pos: 43.5,-14.5
parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -28.5,2.5
+ parent: 2
- uid: 921
components:
- type: Transform
@@ -101039,36 +102381,11 @@ entities:
- type: Transform
pos: 21.5,-38.5
parent: 2
- - uid: 1762
- components:
- - type: Transform
- pos: 23.5,-34.5
- parent: 2
- - uid: 1763
- components:
- - type: Transform
- pos: 22.5,-36.5
- parent: 2
- - uid: 1766
- components:
- - type: Transform
- pos: 23.5,-36.5
- parent: 2
- - uid: 1795
- components:
- - type: Transform
- pos: 23.5,-38.5
- parent: 2
- uid: 1796
components:
- type: Transform
pos: 23.5,-32.5
parent: 2
- - uid: 1799
- components:
- - type: Transform
- pos: 25.5,-32.5
- parent: 2
- uid: 1800
components:
- type: Transform
@@ -101129,11 +102446,6 @@ entities:
- type: Transform
pos: 41.5,-40.5
parent: 2
- - uid: 1835
- components:
- - type: Transform
- pos: 23.5,-40.5
- parent: 2
- uid: 1843
components:
- type: Transform
@@ -101224,11 +102536,6 @@ entities:
- type: Transform
pos: 37.5,-13.5
parent: 2
- - uid: 1914
- components:
- - type: Transform
- pos: 44.5,-8.5
- parent: 2
- uid: 1916
components:
- type: Transform
@@ -101474,11 +102781,22 @@ entities:
- type: Transform
pos: -28.5,-46.5
parent: 2
+ - uid: 2233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-33.5
+ parent: 2
- uid: 2234
components:
- type: Transform
pos: -27.5,-47.5
parent: 2
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: 45.5,-8.5
+ parent: 2
- uid: 2244
components:
- type: Transform
@@ -101524,6 +102842,12 @@ entities:
- type: Transform
pos: -61.5,-33.5
parent: 2
+ - uid: 2295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-41.5
+ parent: 2
- uid: 2297
components:
- type: Transform
@@ -103394,16 +104718,6 @@ entities:
- type: Transform
pos: 34.5,-6.5
parent: 2
- - uid: 5198
- components:
- - type: Transform
- pos: 41.5,-2.5
- parent: 2
- - uid: 5209
- components:
- - type: Transform
- pos: 43.5,-2.5
- parent: 2
- uid: 5215
components:
- type: Transform
@@ -103522,6 +104836,16 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,44.5
parent: 2
+ - uid: 8926
+ components:
+ - type: Transform
+ pos: 18.5,-36.5
+ parent: 2
+ - uid: 8931
+ components:
+ - type: Transform
+ pos: 18.5,-39.5
+ parent: 2
- uid: 9032
components:
- type: Transform
@@ -103582,6 +104906,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-0.5
parent: 2
+ - uid: 13741
+ components:
+ - type: Transform
+ pos: 40.5,-1.5
+ parent: 2
- uid: 13764
components:
- type: Transform
@@ -103603,6 +104932,12 @@ entities:
- type: Transform
pos: 48.5,-2.5
parent: 2
+ - uid: 14219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-40.5
+ parent: 2
- uid: 14231
components:
- type: Transform
@@ -103662,6 +104997,42 @@ entities:
- type: Transform
pos: -7.5,-42.5
parent: 2
+ - uid: 14519
+ components:
+ - type: Transform
+ pos: 42.5,-1.5
+ parent: 2
+ - uid: 14522
+ components:
+ - type: Transform
+ pos: 43.5,-1.5
+ parent: 2
+ - uid: 14531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-36.5
+ parent: 2
+ - uid: 14536
+ components:
+ - type: Transform
+ pos: 18.5,-35.5
+ parent: 2
+ - uid: 14540
+ components:
+ - type: Transform
+ pos: 19.5,-36.5
+ parent: 2
+ - uid: 14542
+ components:
+ - type: Transform
+ pos: 19.5,-38.5
+ parent: 2
+ - uid: 14544
+ components:
+ - type: Transform
+ pos: 20.5,-40.5
+ parent: 2
- uid: 14830
components:
- type: Transform
@@ -103672,6 +105043,11 @@ entities:
- type: Transform
pos: -16.5,18.5
parent: 2
+ - uid: 15251
+ components:
+ - type: Transform
+ pos: 45.5,-13.5
+ parent: 2
- uid: 15340
components:
- type: Transform
@@ -104178,12 +105554,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-8.5
parent: 2
- - uid: 161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-6.5
- parent: 2
- uid: 162
components:
- type: Transform
@@ -104261,11 +105631,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -6.5,10.5
parent: 2
- - uid: 210
- components:
- - type: Transform
- pos: -3.5,-8.5
- parent: 2
- uid: 251
components:
- type: Transform
@@ -104309,11 +105674,6 @@ entities:
- type: Transform
pos: -6.5,-8.5
parent: 2
- - uid: 700
- components:
- - type: Transform
- pos: -6.5,-9.5
- parent: 2
- uid: 701
components:
- type: Transform
@@ -104345,11 +105705,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,-6.5
parent: 2
- - uid: 852
- components:
- - type: Transform
- pos: -3.5,-6.5
- parent: 2
- uid: 903
components:
- type: Transform
@@ -106189,6 +107544,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,-34.5
parent: 2
+ - uid: 12719
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 2
- uid: 13481
components:
- type: Transform
@@ -106225,11 +107585,6 @@ entities:
- type: Transform
pos: -23.5,-13.5
parent: 2
- - uid: 15150
- components:
- - type: Transform
- pos: -3.5,-4.5
- parent: 2
- uid: 15926
components:
- type: Transform
@@ -106294,11 +107649,6 @@ entities:
- type: Transform
pos: -16.5,3.5
parent: 2
- - uid: 3991
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- uid: 4502
components:
- type: Transform
@@ -106480,11 +107830,6 @@ entities:
- type: Transform
pos: -6.5,6.5
parent: 2
- - uid: 5428
- components:
- - type: Transform
- pos: -3.5,-3.5
- parent: 2
- uid: 5429
components:
- type: Transform
@@ -106565,11 +107910,6 @@ entities:
- type: Transform
pos: -4.5,-11.5
parent: 2
- - uid: 6079
- components:
- - type: Transform
- pos: -5.5,-7.5
- parent: 2
- uid: 6080
components:
- type: Transform
@@ -108091,17 +109431,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-32.5
parent: 2
- - uid: 14935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-7.5
- parent: 2
- - uid: 15900
+ - uid: 15677
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-5.5
+ pos: -4.5,-8.5
parent: 2
- uid: 16217
components:
@@ -108159,6 +109492,18 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: WardrobeMixedFilled
+ entities:
+ - uid: 4693
+ components:
+ - type: Transform
+ pos: -30.5,-41.5
+ parent: 2
+ - uid: 16425
+ components:
+ - type: Transform
+ pos: -8.5,36.5
+ parent: 2
- proto: WardrobePrisonFilled
entities:
- uid: 2144
@@ -108190,24 +109535,27 @@ entities:
parent: 2
- proto: WarningCO2
entities:
- - uid: 2324
+ - uid: 2380
components:
- type: Transform
- pos: 25.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-38.5
parent: 2
- proto: WarningN2
entities:
- - uid: 2323
+ - uid: 2254
components:
- type: Transform
- pos: 25.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-34.5
parent: 2
- proto: WarningO2
entities:
- - uid: 2316
+ - uid: 2454
components:
- type: Transform
- pos: 25.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-36.5
parent: 2
- proto: WarningPlasma
entities:
@@ -108540,12 +109888,6 @@ entities:
parent: 2
- proto: Windoor
entities:
- - uid: 314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-3.5
- parent: 2
- uid: 4263
components:
- type: Transform
@@ -109033,6 +110375,16 @@ entities:
- type: Transform
pos: 9.5,28.5
parent: 2
+ - uid: 15433
+ components:
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 15680
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
- uid: 15795
components:
- type: Transform
@@ -109105,11 +110457,16 @@ entities:
parent: 2
- proto: WindowFrostedDirectional
entities:
- - uid: 30
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 208
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-3.5
+ pos: -2.5,-3.5
parent: 2
- uid: 2172
components:
@@ -109147,18 +110504,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,11.5
parent: 2
- - uid: 5341
+ - uid: 5428
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,-3.5
+ pos: 0.5,-3.5
parent: 2
- - uid: 6014
+ - uid: 5989
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-3.5
parent: 2
+ - uid: 5990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 2
- uid: 15929
components:
- type: Transform
diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml
index 3e413f0a2d78..b46b44b7040e 100644
--- a/Resources/Maps/fland.yml
+++ b/Resources/Maps/fland.yml
@@ -128,7 +128,7 @@ entities:
version: 6
1,-1:
ind: 1,-1
- tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA
+ tiles: HwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACHwAAAAABHwAAAAAANAAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA
version: 6
-1,-2:
ind: -1,-2
@@ -17582,6 +17582,11 @@ entities:
- type: Transform
pos: -37.5,24.5
parent: 13329
+ - uid: 9569
+ components:
+ - type: Transform
+ pos: 28.5,-3.5
+ parent: 13329
- uid: 10193
components:
- type: Transform
@@ -17612,11 +17617,6 @@ entities:
- type: Transform
pos: 29.5,-38.5
parent: 13329
- - uid: 26338
- components:
- - type: Transform
- pos: 28.5,-3.5
- parent: 13329
- uid: 26339
components:
- type: Transform
@@ -19486,7 +19486,7 @@ entities:
pos: -15.5,-4.5
parent: 13329
- type: Door
- secondsUntilStateChange: -3804.5127
+ secondsUntilStateChange: -4273.221
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -155048,11 +155048,6 @@ entities:
- type: Transform
pos: 13.5,28.5
parent: 13329
- - uid: 31762
- components:
- - type: Transform
- pos: 31.5,-12.5
- parent: 13329
- uid: 31819
components:
- type: Transform
@@ -157467,24 +157462,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 36.5,-25.5
parent: 13329
- - uid: 14373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-9.5
- parent: 13329
- - uid: 14374
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-5.5
- parent: 13329
- - uid: 14375
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-14.5
- parent: 13329
- uid: 14377
components:
- type: Transform
@@ -183041,21 +183018,6 @@ entities:
- type: Transform
pos: 109.5,44.5
parent: 13329
- - uid: 32363
- components:
- - type: Transform
- pos: 27.5,-14.5
- parent: 13329
- - uid: 32364
- components:
- - type: Transform
- pos: 26.5,-5.5
- parent: 13329
- - uid: 32366
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 13329
- uid: 33241
components:
- type: Transform
@@ -204837,141 +204799,6 @@ entities:
- type: Transform
pos: 7.5,19.5
parent: 13329
- - uid: 9565
- components:
- - type: Transform
- pos: 26.5,-3.5
- parent: 13329
- - uid: 9566
- components:
- - type: Transform
- pos: 26.5,-4.5
- parent: 13329
- - uid: 9567
- components:
- - type: Transform
- pos: 27.5,-3.5
- parent: 13329
- - uid: 9568
- components:
- - type: Transform
- pos: 29.5,-3.5
- parent: 13329
- - uid: 9569
- components:
- - type: Transform
- pos: 30.5,-3.5
- parent: 13329
- - uid: 9570
- components:
- - type: Transform
- pos: 31.5,-3.5
- parent: 13329
- - uid: 9571
- components:
- - type: Transform
- pos: 31.5,-4.5
- parent: 13329
- - uid: 9572
- components:
- - type: Transform
- pos: 26.5,-6.5
- parent: 13329
- - uid: 9573
- components:
- - type: Transform
- pos: 26.5,-7.5
- parent: 13329
- - uid: 9574
- components:
- - type: Transform
- pos: 26.5,-8.5
- parent: 13329
- - uid: 9575
- components:
- - type: Transform
- pos: 26.5,-10.5
- parent: 13329
- - uid: 9576
- components:
- - type: Transform
- pos: 26.5,-11.5
- parent: 13329
- - uid: 9577
- components:
- - type: Transform
- pos: 26.5,-12.5
- parent: 13329
- - uid: 9578
- components:
- - type: Transform
- pos: 26.5,-13.5
- parent: 13329
- - uid: 9579
- components:
- - type: Transform
- pos: 26.5,-14.5
- parent: 13329
- - uid: 9580
- components:
- - type: Transform
- pos: 28.5,-14.5
- parent: 13329
- - uid: 9581
- components:
- - type: Transform
- pos: 30.5,-14.5
- parent: 13329
- - uid: 9582
- components:
- - type: Transform
- pos: 30.5,-13.5
- parent: 13329
- - uid: 9583
- components:
- - type: Transform
- pos: 30.5,-12.5
- parent: 13329
- - uid: 9584
- components:
- - type: Transform
- pos: 30.5,-11.5
- parent: 13329
- - uid: 9585
- components:
- - type: Transform
- pos: 31.5,-11.5
- parent: 13329
- - uid: 9586
- components:
- - type: Transform
- pos: 31.5,-10.5
- parent: 13329
- - uid: 9587
- components:
- - type: Transform
- pos: 31.5,-9.5
- parent: 13329
- - uid: 9588
- components:
- - type: Transform
- pos: 31.5,-8.5
- parent: 13329
- - uid: 9589
- components:
- - type: Transform
- pos: 31.5,-7.5
- parent: 13329
- - uid: 9590
- components:
- - type: Transform
- pos: 31.5,-6.5
- parent: 13329
- - uid: 9591
- components:
- - type: Transform
- pos: 31.5,-5.5
- parent: 13329
- uid: 9614
components:
- type: Transform
@@ -218786,6 +218613,136 @@ entities:
- type: Transform
pos: 22.5,-3.5
parent: 13329
+ - uid: 9565
+ components:
+ - type: Transform
+ pos: 26.5,-4.5
+ parent: 13329
+ - uid: 9566
+ components:
+ - type: Transform
+ pos: 31.5,-11.5
+ parent: 13329
+ - uid: 9567
+ components:
+ - type: Transform
+ pos: 26.5,-6.5
+ parent: 13329
+ - uid: 9568
+ components:
+ - type: Transform
+ pos: 27.5,-3.5
+ parent: 13329
+ - uid: 9570
+ components:
+ - type: Transform
+ pos: 27.5,-14.5
+ parent: 13329
+ - uid: 9571
+ components:
+ - type: Transform
+ pos: 26.5,-7.5
+ parent: 13329
+ - uid: 9572
+ components:
+ - type: Transform
+ pos: 26.5,-5.5
+ parent: 13329
+ - uid: 9573
+ components:
+ - type: Transform
+ pos: 26.5,-8.5
+ parent: 13329
+ - uid: 9574
+ components:
+ - type: Transform
+ pos: 31.5,-14.5
+ parent: 13329
+ - uid: 9575
+ components:
+ - type: Transform
+ pos: 26.5,-9.5
+ parent: 13329
+ - uid: 9576
+ components:
+ - type: Transform
+ pos: 26.5,-3.5
+ parent: 13329
+ - uid: 9577
+ components:
+ - type: Transform
+ pos: 26.5,-10.5
+ parent: 13329
+ - uid: 9578
+ components:
+ - type: Transform
+ pos: 26.5,-11.5
+ parent: 13329
+ - uid: 9579
+ components:
+ - type: Transform
+ pos: 26.5,-12.5
+ parent: 13329
+ - uid: 9580
+ components:
+ - type: Transform
+ pos: 26.5,-13.5
+ parent: 13329
+ - uid: 9581
+ components:
+ - type: Transform
+ pos: 26.5,-14.5
+ parent: 13329
+ - uid: 9582
+ components:
+ - type: Transform
+ pos: 28.5,-14.5
+ parent: 13329
+ - uid: 9583
+ components:
+ - type: Transform
+ pos: 30.5,-14.5
+ parent: 13329
+ - uid: 9584
+ components:
+ - type: Transform
+ pos: 31.5,-12.5
+ parent: 13329
+ - uid: 9585
+ components:
+ - type: Transform
+ pos: 31.5,-10.5
+ parent: 13329
+ - uid: 9586
+ components:
+ - type: Transform
+ pos: 31.5,-9.5
+ parent: 13329
+ - uid: 9587
+ components:
+ - type: Transform
+ pos: 31.5,-8.5
+ parent: 13329
+ - uid: 9588
+ components:
+ - type: Transform
+ pos: 31.5,-6.5
+ parent: 13329
+ - uid: 9589
+ components:
+ - type: Transform
+ pos: 31.5,-5.5
+ parent: 13329
+ - uid: 9590
+ components:
+ - type: Transform
+ pos: 31.5,-7.5
+ parent: 13329
+ - uid: 9591
+ components:
+ - type: Transform
+ pos: 31.5,-4.5
+ parent: 13329
- uid: 9592
components:
- type: Transform
@@ -219331,6 +219288,21 @@ entities:
- type: Transform
pos: 41.5,-36.5
parent: 13329
+ - uid: 14373
+ components:
+ - type: Transform
+ pos: 31.5,-3.5
+ parent: 13329
+ - uid: 14374
+ components:
+ - type: Transform
+ pos: 30.5,-3.5
+ parent: 13329
+ - uid: 14375
+ components:
+ - type: Transform
+ pos: 29.5,-3.5
+ parent: 13329
- uid: 14454
components:
- type: Transform
diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml
index 39ee85fc5835..493a5dfc6728 100644
--- a/Resources/Maps/loop.yml
+++ b/Resources/Maps/loop.yml
@@ -105,11 +105,11 @@ entities:
version: 6
-2,1:
ind: -2,1
- tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAJwAAAAABAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA
+ tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAHQAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAB
+ tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACAgAAAAAAJwAAAAADJQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAA
version: 6
-3,0:
ind: -3,0
@@ -153,7 +153,7 @@ entities:
version: 6
-3,2:
ind: -3,2
- tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAADKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC
+ tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC
version: 6
-5,1:
ind: -5,1
@@ -476,7 +476,6 @@ entities:
2049: -45,55
2050: -44,55
2051: -46,71
- 2089: -44,31
2098: -46,46
2207: -3,65
2208: -3,64
@@ -778,7 +777,6 @@ entities:
id: BrickLineOverlayE
decals:
989: -44,25
- 991: -44,27
- node:
color: '#D381C996'
id: BrickLineOverlayE
@@ -822,12 +820,6 @@ entities:
1664: -19,9
1665: -19,10
1666: -19,11
- - node:
- color: '#FA750096'
- id: BrickLineOverlayE
- decals:
- 1012: -44,29
- 1016: -44,33
- node:
color: '#334E6DC8'
id: BrickLineOverlayN
@@ -1142,6 +1134,12 @@ entities:
1676: -17,10
1677: -17,11
1678: -17,12
+ - node:
+ color: '#FA750096'
+ id: BrickTileWhiteBox
+ decals:
+ 2333: -40,30
+ 2334: -40,31
- node:
color: '#43990996'
id: BrickTileWhiteCornerNe
@@ -1157,6 +1155,7 @@ entities:
785: -13,25
806: -11,33
1622: -23,34
+ 2296: -33,26
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNe
@@ -1192,8 +1191,7 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerNe
decals:
- 627: -33,26
- 638: -33,33
+ 2313: -37,33
- node:
color: '#43990996'
id: BrickTileWhiteCornerNw
@@ -1241,8 +1239,8 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerNw
decals:
- 628: -42,26
- 637: -42,33
+ 2311: -42,26
+ 2312: -42,33
- node:
color: '#43990996'
id: BrickTileWhiteCornerSe
@@ -1289,7 +1287,7 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerSe
decals:
- 640: -33,28
+ 2316: -37,28
- node:
color: '#43990996'
id: BrickTileWhiteCornerSw
@@ -1332,7 +1330,7 @@ entities:
color: '#FA750096'
id: BrickTileWhiteCornerSw
decals:
- 639: -42,28
+ 2315: -42,28
- node:
color: '#DE3A3A96'
id: BrickTileWhiteEndE
@@ -1381,7 +1379,6 @@ entities:
518: -13,41
519: -13,42
618: -33,24
- 619: -33,25
686: -29,24
735: -22,29
741: -18,31
@@ -1391,6 +1388,7 @@ entities:
803: -11,32
2074: -44,23
2075: -44,24
+ 2297: -33,25
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
@@ -1470,11 +1468,14 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineE
decals:
- 666: -33,29
- 667: -33,30
- 668: -33,31
- 669: -33,32
- 2088: -44,31
+ 2325: -37,32
+ 2326: -37,31
+ 2327: -37,30
+ 2328: -37,29
+ 2335: -44,26
+ 2337: -44,28
+ 2339: -44,30
+ 2341: -44,32
- node:
color: '#43990996'
id: BrickTileWhiteLineN
@@ -1531,6 +1532,9 @@ entities:
2083: -23,21
2084: -21,21
2085: -19,21
+ 2298: -34,26
+ 2299: -35,26
+ 2300: -36,26
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
@@ -1608,22 +1612,15 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineN
decals:
- 629: -41,26
- 630: -40,26
- 631: -39,26
- 632: -38,26
- 633: -37,26
- 634: -36,26
- 635: -35,26
- 636: -34,26
- 653: -41,33
- 655: -40,33
- 656: -39,33
- 657: -38,33
- 658: -37,33
- 659: -36,33
- 660: -35,33
- 661: -34,33
+ 2306: -37,26
+ 2307: -38,26
+ 2308: -39,26
+ 2309: -40,26
+ 2310: -41,26
+ 2321: -41,33
+ 2322: -40,33
+ 2323: -39,33
+ 2324: -38,33
- node:
color: '#43990996'
id: BrickTileWhiteLineS
@@ -1774,14 +1771,10 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineS
decals:
- 641: -41,28
- 642: -40,28
- 643: -39,28
- 644: -38,28
- 647: -36,28
- 648: -37,28
- 649: -35,28
- 650: -34,28
+ 2317: -41,28
+ 2318: -39,28
+ 2319: -40,28
+ 2320: -38,28
- node:
color: '#43990996'
id: BrickTileWhiteLineW
@@ -1801,6 +1794,11 @@ entities:
783: -18,24
804: -16,31
805: -16,32
+ 2301: -31,28
+ 2302: -31,29
+ 2303: -31,30
+ 2304: -31,31
+ 2305: -31,32
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
@@ -1872,15 +1870,10 @@ entities:
color: '#FA750096'
id: BrickTileWhiteLineW
decals:
- 662: -42,32
- 663: -42,31
- 664: -42,30
- 665: -42,29
- 670: -31,28
- 671: -31,30
- 672: -31,29
- 673: -31,31
- 674: -31,32
+ 2329: -42,29
+ 2330: -42,30
+ 2331: -42,31
+ 2332: -42,32
- node:
color: '#FFFFFFFF'
id: Busha1
@@ -2004,7 +1997,6 @@ entities:
1917: -40,20
1918: -46,34
1919: -45,34
- 1920: -44,34
1921: -46,37
1922: -45,37
1923: -44,37
@@ -2144,16 +2136,6 @@ entities:
574: -52,41
575: -51,41
576: -50,41
- - node:
- color: '#FA750096'
- id: FullTileOverlayGreyscale
- decals:
- 675: -39,30
- 676: -38,30
- 677: -37,30
- 678: -35,29
- 679: -35,30
- 680: -35,31
- node:
color: '#FFFFFFFF'
id: Grassa2
@@ -2491,8 +2473,6 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
2072: -44,22
- 2073: -44,26
- 2076: -44,28
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale90
@@ -2524,8 +2504,10 @@ entities:
color: '#FA750096'
id: HalfTileOverlayGreyscale90
decals:
- 2077: -44,30
- 2078: -44,32
+ 2343: -44,27
+ 2344: -44,29
+ 2345: -44,31
+ 2346: -44,33
- node:
color: '#FED83DFF'
id: HalfTileOverlayGreyscale90
@@ -3027,6 +3009,11 @@ entities:
decals:
1896: -28,41
1897: -25,41
+ - node:
+ color: '#FFFFFFFF'
+ id: ampersand
+ decals:
+ 2284: -45.4301,24.93363
- node:
cleanable: True
color: '#FF0000FF'
@@ -3630,7 +3617,8 @@ entities:
-11,6:
0: 7679
-11,7:
- 0: 64989
+ 0: 64925
+ 6: 64
-11,3:
0: 65311
-11,8:
@@ -3988,7 +3976,7 @@ entities:
0: 65532
-13,12:
0: 4351
- 6: 57344
+ 7: 57344
-12,9:
0: 56783
-12,10:
@@ -3997,7 +3985,7 @@ entities:
0: 65500
-12,12:
0: 60639
- 6: 4096
+ 7: 4096
-11,9:
0: 56605
-11,10:
@@ -4023,7 +4011,8 @@ entities:
-9,12:
0: 36319
-8,9:
- 0: 53535
+ 0: 37151
+ 8: 16384
-8,10:
0: 7645
-8,11:
@@ -4049,9 +4038,11 @@ entities:
-19,7:
2: 3618
-18,4:
- 0: 65327
+ 0: 64303
+ 8: 1024
-18,5:
- 0: 65524
+ 0: 63476
+ 6: 2048
-18,6:
0: 4082
-18,7:
@@ -4182,7 +4173,8 @@ entities:
-8,12:
0: 21845
-7,9:
- 0: 61455
+ 0: 57359
+ 6: 4096
-7,10:
0: 8191
-7,11:
@@ -4221,10 +4213,10 @@ entities:
0: 143
2: 57856
-12,13:
- 6: 1
+ 7: 1
0: 65484
-13,13:
- 6: 14
+ 7: 14
0: 65280
-12,14:
0: 65535
@@ -5079,6 +5071,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 235
moles:
@@ -5094,6 +5101,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -6271,15 +6293,10 @@ entities:
- 11510
- 10825
- 10826
- - 2214
- - 10827
- - 10828
- - 6173
- 11544
- 11511
- 11543
- 12356
- - 12783
- uid: 11532
components:
- type: Transform
@@ -6290,9 +6307,6 @@ entities:
devices:
- 507
- 955
- - 2214
- - 10827
- - 10828
- 10826
- 2975
- 3009
@@ -6834,14 +6848,12 @@ entities:
- 1151
- 1140
- 480
- - 6173
- 6178
- 11516
- 11515
- 11514
- 11530
- 12383
- - 12783
- uid: 17247
components:
- type: Transform
@@ -7074,20 +7086,13 @@ entities:
- type: Transform
pos: -63.5,11.5
parent: 2
-- proto: AirlockChemistryGlassLocked
- entities:
- - uid: 13927
- components:
- - type: Transform
- pos: -36.5,27.5
- parent: 2
- proto: AirlockChemistryLocked
entities:
- - uid: 4859
+ - uid: 6720
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,31.5
+ pos: -36.5,27.5
parent: 2
- proto: AirlockChiefEngineerGlassLocked
entities:
@@ -7199,7 +7204,7 @@ entities:
pos: -30.5,13.5
parent: 2
- type: Door
- secondsUntilStateChange: -46417.484
+ secondsUntilStateChange: -48828.195
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -8379,10 +8384,11 @@ entities:
parent: 2
- proto: AirlockMaintChemLocked
entities:
- - uid: 13931
+ - uid: 6580
components:
- type: Transform
- pos: -33.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,34.5
parent: 2
- proto: AirlockMaintEngiLocked
entities:
@@ -8598,6 +8604,12 @@ entities:
parent: 2
- proto: AirlockMaintMedLocked
entities:
+ - uid: 2060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,34.5
+ parent: 2
- uid: 3636
components:
- type: Transform
@@ -8682,12 +8694,24 @@ entities:
parent: 2
- proto: AirlockMedicalLocked
entities:
+ - uid: 4256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,27.5
+ parent: 2
- uid: 5047
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -21.5,26.5
parent: 2
+ - uid: 6716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,31.5
+ parent: 2
- proto: AirlockMedicalMorgueLocked
entities:
- uid: 5936
@@ -10087,6 +10111,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,26.5
parent: 2
+ - uid: 4247
+ components:
+ - type: Transform
+ pos: -38.5,34.5
+ parent: 2
- uid: 4972
components:
- type: Transform
@@ -11599,10 +11628,9 @@ entities:
parent: 2
- proto: BlockGameArcade
entities:
- - uid: 5097
+ - uid: 6618
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,50.5
parent: 2
- proto: Bloodpack
@@ -11651,10 +11679,10 @@ entities:
parent: 2
- proto: BookChemicalCompendium
entities:
- - uid: 15199
+ - uid: 9091
components:
- type: Transform
- pos: -34.52333,30.327538
+ pos: -36.426804,31.247963
parent: 2
- uid: 17238
components:
@@ -11972,8 +12000,10 @@ entities:
- uid: 4246
components:
- type: Transform
- pos: -37.880226,30.640572
- parent: 2
+ parent: 17718
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxBodyBag
entities:
- uid: 5167
@@ -12039,6 +12069,11 @@ entities:
- type: Transform
pos: -37.641014,40.39001
parent: 2
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: -34.502663,32.658154
+ parent: 2
- proto: BoxFolderBlack
entities:
- uid: 3967
@@ -12205,6 +12240,13 @@ entities:
- type: Transform
pos: -5.3227916,30.564062
parent: 2
+- proto: BoxPillCanister
+ entities:
+ - uid: 17703
+ components:
+ - type: Transform
+ pos: -33.393288,32.64253
+ parent: 2
- proto: BoxShotgunFlare
entities:
- uid: 3447
@@ -18596,11 +18638,6 @@ entities:
- type: Transform
pos: -33.5,32.5
parent: 2
- - uid: 9076
- components:
- - type: Transform
- pos: -35.5,32.5
- parent: 2
- uid: 9077
components:
- type: Transform
@@ -18671,11 +18708,6 @@ entities:
- type: Transform
pos: -38.5,28.5
parent: 2
- - uid: 9091
- components:
- - type: Transform
- pos: -35.5,28.5
- parent: 2
- uid: 9092
components:
- type: Transform
@@ -24131,6 +24163,16 @@ entities:
- type: Transform
pos: -17.5,-7.5
parent: 2
+ - uid: 17711
+ components:
+ - type: Transform
+ pos: -38.5,33.5
+ parent: 2
+ - uid: 17712
+ components:
+ - type: Transform
+ pos: -38.5,34.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 5976
@@ -30458,6 +30500,11 @@ entities:
- type: Transform
pos: -13.5,15.5
parent: 2
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: -34.5,35.5
+ parent: 2
- uid: 1429
components:
- type: Transform
@@ -30868,6 +30915,11 @@ entities:
- type: Transform
pos: -71.5,15.5
parent: 2
+ - uid: 4244
+ components:
+ - type: Transform
+ pos: -37.5,35.5
+ parent: 2
- uid: 4572
components:
- type: Transform
@@ -33388,6 +33440,11 @@ entities:
- type: Transform
pos: 28.5,42.5
parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ pos: -36.5,35.5
+ parent: 2
- uid: 9899
components:
- type: Transform
@@ -33623,6 +33680,11 @@ entities:
- type: Transform
pos: -63.5,17.5
parent: 2
+ - uid: 13927
+ components:
+ - type: Transform
+ pos: -35.5,35.5
+ parent: 2
- uid: 13934
components:
- type: Transform
@@ -33688,11 +33750,21 @@ entities:
- type: Transform
pos: -3.5,35.5
parent: 2
+ - uid: 15199
+ components:
+ - type: Transform
+ pos: -38.5,35.5
+ parent: 2
- uid: 15235
components:
- type: Transform
pos: -50.5,50.5
parent: 2
+ - uid: 15265
+ components:
+ - type: Transform
+ pos: -38.5,34.5
+ parent: 2
- uid: 15351
components:
- type: Transform
@@ -34618,6 +34690,36 @@ entities:
- type: Transform
pos: -3.5,48.5
parent: 2
+ - uid: 17704
+ components:
+ - type: Transform
+ pos: -34.5,30.5
+ parent: 2
+ - uid: 17705
+ components:
+ - type: Transform
+ pos: -34.5,29.5
+ parent: 2
+ - uid: 17706
+ components:
+ - type: Transform
+ pos: -33.5,30.5
+ parent: 2
+ - uid: 17707
+ components:
+ - type: Transform
+ pos: -32.5,29.5
+ parent: 2
+ - uid: 17708
+ components:
+ - type: Transform
+ pos: -32.5,30.5
+ parent: 2
+ - uid: 17709
+ components:
+ - type: Transform
+ pos: -33.5,29.5
+ parent: 2
- proto: CarpetChapel
entities:
- uid: 10789
@@ -39105,6 +39207,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.563465,72.61863
parent: 2
+ - uid: 4245
+ components:
+ - type: Transform
+ pos: -33.955788,33.54878
+ parent: 2
- uid: 4920
components:
- type: Transform
@@ -39215,25 +39322,21 @@ entities:
parent: 2
- proto: ChairOfficeLight
entities:
- - uid: 4745
- components:
- - type: Transform
- pos: -41.450005,66.61128
- parent: 2
- - uid: 4747
+ - uid: 4243
components:
- type: Transform
- pos: -39.33168,28.640572
+ rot: -1.5707963267948966 rad
+ pos: -41.383293,32.597347
parent: 2
- - uid: 4748
+ - uid: 4254
components:
- type: Transform
- pos: -36.45098,32.69692
+ pos: -40.523834,29.63628
parent: 2
- - uid: 4749
+ - uid: 4745
components:
- type: Transform
- pos: -41.51348,32.48598
+ pos: -41.450005,66.61128
parent: 2
- uid: 5570
components:
@@ -39246,6 +39349,12 @@ entities:
rot: 3.141592653589793 rad
pos: -3.381362,32.744434
parent: 2
+ - uid: 9076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.36523,33.172977
+ parent: 2
- uid: 9720
components:
- type: Transform
@@ -39584,20 +39693,20 @@ entities:
parent: 2
- proto: ChemDispenser
entities:
- - uid: 4229
+ - uid: 4230
components:
- type: Transform
- pos: -40.5,33.5
+ pos: -36.5,32.5
parent: 2
- - uid: 4231
+ - uid: 4252
components:
- type: Transform
- pos: -41.5,29.5
+ pos: -40.5,33.5
parent: 2
- - uid: 4235
+ - uid: 6733
components:
- type: Transform
- pos: -36.5,33.5
+ pos: -40.5,28.5
parent: 2
- proto: ChemDispenserEmpty
entities:
@@ -39630,15 +39739,15 @@ entities:
parent: 2
- proto: ChemistryHotplate
entities:
- - uid: 4241
+ - uid: 4232
components:
- type: Transform
- pos: -34.5,31.5
+ pos: -36.5,30.5
parent: 2
- - uid: 4245
+ - uid: 4269
components:
- type: Transform
- pos: -38.5,30.5
+ pos: -39.5,30.5
parent: 2
- uid: 17239
components:
@@ -39647,20 +39756,20 @@ entities:
parent: 2
- proto: ChemMaster
entities:
- - uid: 1126
+ - uid: 3693
components:
- type: Transform
- pos: -41.5,28.5
+ pos: -36.5,33.5
parent: 2
- - uid: 4226
+ - uid: 5193
components:
- type: Transform
- pos: -37.5,33.5
+ pos: -41.5,33.5
parent: 2
- - uid: 4227
+ - uid: 12785
components:
- type: Transform
- pos: -41.5,33.5
+ pos: -41.5,28.5
parent: 2
- proto: ChemMasterMachineCircuitboard
entities:
@@ -39722,12 +39831,6 @@ entities:
parent: 2
- proto: CigarCase
entities:
- - uid: 4945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.453514,38.42126
- parent: 2
- uid: 5417
components:
- type: Transform
@@ -39753,6 +39856,11 @@ entities:
parent: 2
- proto: CigarGoldCase
entities:
+ - uid: 4946
+ components:
+ - type: Transform
+ pos: -40.49395,38.58963
+ parent: 2
- uid: 6138
components:
- type: Transform
@@ -40562,6 +40670,24 @@ entities:
- type: Transform
pos: -68.57034,22.27171
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
- uid: 17174
components:
- type: Transform
@@ -40783,16 +40909,6 @@ entities:
- type: Transform
pos: -40.52346,17.380651
parent: 2
- - uid: 5997
- components:
- - type: Transform
- pos: 10.514629,65.73175
- parent: 2
- - uid: 6580
- components:
- - type: Transform
- pos: -32.45865,38.48124
- parent: 2
- proto: ClothingHandsGlovesColorYellowBudget
entities:
- uid: 5531
@@ -41053,6 +41169,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingMaskBlushingMime
+ entities:
+ - uid: 4701
+ components:
+ - type: Transform
+ pos: -55.759308,65.51617
+ parent: 2
- proto: ClothingMaskBreath
entities:
- uid: 5894
@@ -41128,13 +41251,6 @@ entities:
- type: Transform
pos: -55.415558,65.73492
parent: 2
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 4701
- components:
- - type: Transform
- pos: -55.759308,65.51617
- parent: 2
- proto: ClothingNeckBling
entities:
- uid: 6137
@@ -41485,6 +41601,12 @@ entities:
- type: Transform
pos: -15.5,65.5
parent: 2
+ - uid: 4859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,30.5
+ parent: 2
- uid: 4942
components:
- type: Transform
@@ -42979,8 +43101,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -42997,11 +43119,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 17180
- - 17179
- - 17178
- - 17177
- 17176
+ - 17177
+ - 17178
+ - 17179
+ - 17180
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -43275,13 +43397,19 @@ entities:
parent: 2
- proto: CurtainsWhite
entities:
+ - uid: 4234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,30.5
+ parent: 2
- uid: 6746
components:
- type: Transform
pos: -9.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -294173.03
+ secondsUntilStateChange: -296583.75
state: Opening
- uid: 6747
components:
@@ -43289,7 +43417,7 @@ entities:
pos: -8.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -294173.75
+ secondsUntilStateChange: -296584.47
state: Opening
- uid: 6749
components:
@@ -43297,7 +43425,7 @@ entities:
pos: -6.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -294172.3
+ secondsUntilStateChange: -296583.03
state: Opening
- uid: 6750
components:
@@ -43305,8 +43433,14 @@ entities:
pos: -5.5,51.5
parent: 2
- type: Door
- secondsUntilStateChange: -294171.7
+ secondsUntilStateChange: -296582.4
state: Opening
+ - uid: 9721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,29.5
+ parent: 2
- proto: CyberPen
entities:
- uid: 12866
@@ -43675,6 +43809,14 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,48.5
parent: 2
+- proto: DefaultStationBeaconPsychology
+ entities:
+ - uid: 4258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,30.5
+ parent: 2
- proto: DefaultStationBeaconQMRoom
entities:
- uid: 5460
@@ -43971,12 +44113,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,20.5
parent: 2
- - uid: 1413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,32.5
- parent: 2
- uid: 2241
components:
- type: Transform
@@ -44634,12 +44770,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -21.5,36.5
parent: 2
- - uid: 2060
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,33.5
- parent: 2
- uid: 2144
components:
- type: Transform
@@ -47757,12 +47887,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -59.5,43.5
parent: 2
- - uid: 9014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,32.5
- parent: 2
- uid: 9685
components:
- type: Transform
@@ -48024,11 +48148,6 @@ entities:
- type: Transform
pos: 3.5,9.5
parent: 2
- - uid: 9721
- components:
- - type: Transform
- pos: -32.5,32.5
- parent: 2
- uid: 9722
components:
- type: Transform
@@ -48160,10 +48279,10 @@ entities:
- type: Transform
pos: -33.5,64.5
parent: 2
- - uid: 4232
+ - uid: 4229
components:
- type: Transform
- pos: -41.5,30.5
+ pos: -40.5,31.5
parent: 2
- uid: 4902
components:
@@ -49050,13 +49169,6 @@ entities:
parent: 2
- type: FaxMachine
name: Library
- - uid: 6618
- components:
- - type: Transform
- pos: -12.5,70.5
- parent: 2
- - type: FaxMachine
- name: Captain's Office
- uid: 6677
components:
- type: Transform
@@ -49106,6 +49218,13 @@ entities:
parent: 2
- type: FaxMachine
name: CE's Office
+- proto: FaxMachineCaptain
+ entities:
+ - uid: 5098
+ components:
+ - type: Transform
+ pos: -12.5,70.5
+ parent: 2
- proto: filingCabinetDrawerRandom
entities:
- uid: 3640
@@ -49150,6 +49269,11 @@ entities:
- type: Transform
pos: 18.5,35.5
parent: 2
+ - uid: 15657
+ components:
+ - type: Transform
+ pos: -34.5,33.5
+ parent: 2
- proto: FireAxeCabinetFilled
entities:
- uid: 1049
@@ -49197,16 +49321,6 @@ entities:
- type: Transform
pos: -42.5,10.5
parent: 2
- - uid: 12783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,29.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11531
- - 17106
- proto: FirelockGlass
entities:
- uid: 28
@@ -49735,16 +49849,6 @@ entities:
deviceLists:
- 11427
- 15346
- - uid: 2214
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11532
- - 11531
- uid: 2307
components:
- type: Transform
@@ -50422,16 +50526,6 @@ entities:
deviceLists:
- 13611
- 15383
- - uid: 6173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11531
- - 17106
- uid: 6174
components:
- type: Transform
@@ -51720,24 +51814,6 @@ entities:
deviceLists:
- 11532
- 11531
- - uid: 10827
- components:
- - type: Transform
- pos: -34.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11532
- - 11531
- - uid: 10828
- components:
- - type: Transform
- pos: -33.5,27.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11532
- - 11531
- uid: 10978
components:
- type: Transform
@@ -52054,6 +52130,11 @@ entities:
- type: Transform
pos: -32.5,64.5
parent: 2
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: -34.5,28.5
+ parent: 2
- uid: 14475
components:
- type: Transform
@@ -52111,19 +52192,6 @@ entities:
ents:
- 6717
- type: ActionsContainer
-- proto: FlippoEngravedLighter
- entities:
- - uid: 4946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.31289,38.79626
- parent: 2
- - uid: 5418
- components:
- - type: Transform
- pos: -2.1807637,39.543873
- parent: 2
- proto: Floodlight
entities:
- uid: 16953
@@ -52141,10 +52209,19 @@ entities:
parent: 2
- proto: FloorDrain
entities:
- - uid: 4269
+ - uid: 4231
components:
- type: Transform
- pos: -37.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,30.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -70380,21 +70457,6 @@ entities:
- type: Transform
pos: -37.5,27.5
parent: 2
- - uid: 4233
- components:
- - type: Transform
- pos: -32.5,27.5
- parent: 2
- - uid: 4249
- components:
- - type: Transform
- pos: -35.5,27.5
- parent: 2
- - uid: 4250
- components:
- - type: Transform
- pos: -31.5,28.5
- parent: 2
- uid: 4263
components:
- type: Transform
@@ -70647,6 +70709,12 @@ entities:
- type: Transform
pos: -39.5,50.5
parent: 2
+ - uid: 4679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,29.5
+ parent: 2
- uid: 4737
components:
- type: Transform
@@ -71974,6 +72042,12 @@ entities:
- type: Transform
pos: -36.5,61.5
parent: 2
+ - uid: 12779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,30.5
+ parent: 2
- uid: 12825
components:
- type: Transform
@@ -74895,6 +74969,43 @@ entities:
- type: Transform
pos: -27.5,39.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:
+ - 4255
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: Gyroscope
+ entities:
+ - uid: 9862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,52.5
+ parent: 2
- proto: Handcuffs
entities:
- uid: 6126
@@ -75176,10 +75287,10 @@ entities:
parent: 2
- proto: HolopadMedicalChemistry
entities:
- - uid: 16823
+ - uid: 14738
components:
- type: Transform
- pos: -35.5,31.5
+ pos: -38.5,29.5
parent: 2
- proto: HolopadMedicalFront
entities:
@@ -75781,10 +75892,10 @@ entities:
parent: 2
- proto: KitchenReagentGrinder
entities:
- - uid: 4251
+ - uid: 4267
components:
- type: Transform
- pos: -36.5,30.5
+ pos: -39.5,31.5
parent: 2
- uid: 4633
components:
@@ -75947,6 +76058,11 @@ entities:
- type: Transform
pos: -63.448486,-5.236081
parent: 2
+ - uid: 17720
+ components:
+ - type: Transform
+ pos: -7.3975163,48.7118
+ parent: 2
- proto: LauncherCreamPie
entities:
- uid: 4712
@@ -76341,13 +76457,42 @@ entities:
- uid: 4236
components:
- type: Transform
- pos: -35.5,33.5
+ pos: -38.5,30.5
parent: 2
- - uid: 4247
+ - uid: 17718
components:
- type: Transform
- pos: -34.5,33.5
+ pos: -41.5,29.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:
+ - 4246
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerChiefEngineerFilled
entities:
- uid: 2921
@@ -76857,17 +77002,10 @@ entities:
parent: 2
- proto: MachineCentrifuge
entities:
- - uid: 4268
- components:
- - type: Transform
- pos: -34.5,29.5
- parent: 2
-- proto: MachineElectrolysisUnit
- entities:
- - uid: 4258
+ - uid: 5957
components:
- type: Transform
- pos: -34.5,30.5
+ pos: -36.5,31.5
parent: 2
- proto: MachineFrame
entities:
@@ -78159,13 +78297,6 @@ entities:
- type: Transform
pos: 2.5573368,6.61458
parent: 2
-- proto: PenCentcom
- entities:
- - uid: 7125
- components:
- - type: Transform
- pos: -16.047073,68.645805
- parent: 2
- proto: PersonalAI
entities:
- uid: 4307
@@ -78827,11 +78958,10 @@ entities:
parent: 2
- proto: PosterContrabandAmbrosiaVulgaris
entities:
- - uid: 14738
+ - uid: 4239
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,34.5
+ pos: -40.5,34.5
parent: 2
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
@@ -80901,6 +81031,33 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,1.5
parent: 2
+ - uid: 17710
+ components:
+ - type: Transform
+ pos: -32.5,33.5
+ parent: 2
+ - uid: 17713
+ components:
+ - type: Transform
+ pos: -41.5,33.5
+ parent: 2
+ - uid: 17714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,28.5
+ parent: 2
+ - uid: 17716
+ components:
+ - type: Transform
+ pos: -24.5,34.5
+ parent: 2
+ - uid: 17717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,28.5
+ parent: 2
- proto: PoweredlightEmpty
entities:
- uid: 8250
@@ -81310,12 +81467,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,38.5
parent: 2
- - uid: 13159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,48.5
- parent: 2
- uid: 13160
components:
- type: Transform
@@ -81776,6 +81927,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,74.5
parent: 2
+ - uid: 17715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,70.5
+ parent: 2
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 4747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,48.5
+ parent: 2
- proto: PrefilledSyringe
entities:
- uid: 17244
@@ -81790,6 +81955,13 @@ entities:
- type: Transform
pos: 10.5,37.5
parent: 2
+- proto: PsychBed
+ entities:
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: -32.5,30.5
+ parent: 2
- proto: Rack
entities:
- uid: 117
@@ -84460,16 +84632,6 @@ entities:
- type: Transform
pos: -38.5,24.5
parent: 2
- - uid: 15657
- components:
- - type: Transform
- pos: -33.5,30.5
- parent: 2
- - uid: 15658
- components:
- - type: Transform
- pos: -40.5,32.5
- parent: 2
- uid: 15659
components:
- type: Transform
@@ -85488,21 +85650,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,12.5
parent: 2
- - uid: 4254
- components:
- - type: Transform
- pos: -35.5,27.5
- parent: 2
- - uid: 4255
- components:
- - type: Transform
- pos: -32.5,27.5
- parent: 2
- - uid: 4256
- components:
- - type: Transform
- pos: -31.5,28.5
- parent: 2
- uid: 4399
components:
- type: Transform
@@ -87816,7 +87963,7 @@ entities:
- uid: 4264
components:
- type: Transform
- pos: -37.059914,30.546822
+ pos: -39.583054,31.169838
parent: 2
- proto: SheetPlasteel
entities:
@@ -88399,12 +88546,6 @@ entities:
- type: Transform
pos: -40.5,27.5
parent: 2
- - uid: 12779
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,30.5
- parent: 2
- proto: SignDirectionalBridge
entities:
- uid: 14994
@@ -89270,6 +89411,20 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,51.5
parent: 2
+- proto: SignPsychology
+ entities:
+ - uid: 7125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,27.5
+ parent: 2
+ - uid: 9829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,33.5
+ parent: 2
- proto: SignRadiation
entities:
- uid: 232
@@ -89521,15 +89676,11 @@ entities:
parent: 2
- proto: SinkWide
entities:
- - uid: 4266
- components:
- - type: Transform
- pos: -38.5,33.5
- parent: 2
- - uid: 4267
+ - uid: 4250
components:
- type: Transform
- pos: -38.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,30.5
parent: 2
- uid: 4575
components:
@@ -89659,6 +89810,11 @@ entities:
- type: Transform
pos: -53.899773,72.64173
parent: 2
+ - uid: 16823
+ components:
+ - type: Transform
+ pos: -33.940163,32.533154
+ parent: 2
- proto: SmokingPipeFilledCannabis
entities:
- uid: 17178
@@ -91416,12 +91572,11 @@ entities:
- type: Transform
pos: -8.43362,72.6124
parent: 2
-- proto: SpaceVillainArcadeFilled
+- proto: SpaceVillainArcade
entities:
- - uid: 5098
+ - uid: 5097
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,50.5
parent: 2
- proto: SpawnMechRipley
@@ -91667,11 +91822,11 @@ entities:
parent: 2
- proto: SpawnMobWalter
entities:
- - uid: 4240
+ - uid: 4749
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,31.5
parent: 2
- proto: SpawnPointAtmos
entities:
@@ -91788,20 +91943,20 @@ entities:
parent: 2
- proto: SpawnPointChemist
entities:
- - uid: 15263
+ - uid: 5997
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -39.5,29.5
parent: 2
- - uid: 15264
+ - uid: 15263
components:
- type: Transform
pos: -37.5,29.5
parent: 2
- - uid: 15265
+ - uid: 15264
components:
- type: Transform
- pos: -36.5,29.5
+ pos: -38.5,29.5
parent: 2
- proto: SpawnPointChiefEngineer
entities:
@@ -91990,6 +92145,13 @@ entities:
- type: Transform
pos: -43.5,15.5
parent: 2
+- proto: SpawnPointPsychologist
+ entities:
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: -33.5,31.5
+ parent: 2
- proto: SpawnPointQuartermaster
entities:
- uid: 1910
@@ -92918,8 +93080,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -93656,27 +93818,38 @@ entities:
id: Entrance hall
- proto: SurveillanceCameraMedical
entities:
- - uid: 13791
+ - uid: 6173
components:
- type: Transform
- pos: -37.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,33.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraMedical
nameSet: True
- id: Waiting room
- - uid: 13792
+ id: chemistry
+ - uid: 10828
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,33.5
+ pos: -34.5,33.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraMedical
nameSet: True
- id: Chemestry
+ id: Psychology
+ - uid: 13791
+ components:
+ - type: Transform
+ pos: -37.5,23.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Waiting room
- uid: 13793
components:
- type: Transform
@@ -95371,56 +95544,28 @@ entities:
- type: Transform
pos: -42.5,31.5
parent: 2
- - uid: 4216
- components:
- - type: Transform
- pos: -34.5,27.5
- parent: 2
- uid: 4221
components:
- type: Transform
pos: -39.5,27.5
parent: 2
- - uid: 4228
+ - uid: 4233
components:
- type: Transform
- pos: -33.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,30.5
parent: 2
- - uid: 4230
+ - uid: 4266
components:
- type: Transform
- rot: -1.5707963267948966 rad
+ rot: 3.141592653589793 rad
pos: -36.5,30.5
parent: 2
- - uid: 4234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,31.5
- parent: 2
- - uid: 4238
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,30.5
- parent: 2
- - uid: 4239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,30.5
- parent: 2
- - uid: 4243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,30.5
- parent: 2
- - uid: 4244
+ - uid: 4268
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,31.5
parent: 2
- uid: 4336
components:
@@ -95469,6 +95614,12 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,88.5
parent: 2
+ - uid: 5418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,31.5
+ parent: 2
- uid: 5735
components:
- type: Transform
@@ -95565,12 +95716,6 @@ entities:
- type: Transform
pos: -49.5,49.5
parent: 2
- - uid: 12754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,29.5
- parent: 2
- uid: 12796
components:
- type: Transform
@@ -95828,6 +95973,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -60.5,45.5
parent: 2
+ - uid: 4249
+ components:
+ - type: Transform
+ pos: -33.5,32.5
+ parent: 2
- uid: 4387
components:
- type: Transform
@@ -96262,6 +96412,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,61.5
parent: 2
+ - uid: 13931
+ components:
+ - type: Transform
+ pos: -34.5,32.5
+ parent: 2
- uid: 14014
components:
- type: Transform
@@ -96629,11 +96784,6 @@ entities:
- type: Transform
pos: 8.5,52.5
parent: 2
- - uid: 5957
- components:
- - type: Transform
- pos: 9.5,52.5
- parent: 2
- proto: TintedWindow
entities:
- uid: 2691
@@ -96709,6 +96859,11 @@ entities:
- type: Transform
pos: -2.4271321,27.577143
parent: 2
+ - uid: 4945
+ components:
+ - type: Transform
+ pos: -32.50167,38.605255
+ parent: 2
- uid: 5526
components:
- type: Transform
@@ -96828,7 +96983,7 @@ entities:
- uid: 5794
components:
- type: Transform
- pos: -37.451065,30.925117
+ pos: -36.770554,31.294838
parent: 2
- proto: ToyFigurineChiefEngineer
entities:
@@ -97338,22 +97493,17 @@ entities:
parent: 2
- proto: VendingMachineChemDrobe
entities:
- - uid: 9829
- components:
- - type: Transform
- pos: -32.5,33.5
- parent: 2
- - uid: 9862
+ - uid: 4237
components:
- type: Transform
- pos: -32.5,33.5
+ pos: -36.5,29.5
parent: 2
- proto: VendingMachineChemicals
entities:
- - uid: 6720
+ - uid: 9014
components:
- type: Transform
- pos: -32.5,28.5
+ pos: -38.5,31.5
parent: 2
- proto: VendingMachineCigs
entities:
@@ -97401,6 +97551,13 @@ entities:
- type: Transform
pos: -33.5,50.5
parent: 2
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 17719
+ components:
+ - type: Transform
+ pos: -51.5,49.5
+ parent: 2
- proto: VendingMachineCuraDrobe
entities:
- uid: 10007
@@ -101243,11 +101400,6 @@ entities:
- type: Transform
pos: -39.5,34.5
parent: 2
- - uid: 3693
- components:
- - type: Transform
- pos: -37.5,34.5
- parent: 2
- uid: 3699
components:
- type: Transform
@@ -101389,6 +101541,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,72.5
parent: 2
+ - uid: 4216
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,31.5
+ parent: 2
- uid: 4218
components:
- type: Transform
@@ -101399,20 +101557,23 @@ entities:
- type: Transform
pos: -41.5,27.5
parent: 2
- - uid: 4237
+ - uid: 4226
components:
- type: Transform
- pos: -31.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,32.5
parent: 2
- - uid: 4252
+ - uid: 4227
components:
- type: Transform
- pos: -31.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,27.5
parent: 2
- - uid: 4253
+ - uid: 4228
components:
- type: Transform
- pos: -31.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,29.5
parent: 2
- uid: 4261
components:
@@ -101879,11 +102040,6 @@ entities:
- type: Transform
pos: -42.5,28.5
parent: 2
- - uid: 4679
- components:
- - type: Transform
- pos: -34.5,34.5
- parent: 2
- uid: 4680
components:
- type: Transform
@@ -101894,6 +102050,12 @@ entities:
- type: Transform
pos: -35.5,65.5
parent: 2
+ - uid: 4748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,28.5
+ parent: 2
- uid: 4768
components:
- type: Transform
@@ -102037,6 +102199,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,60.5
parent: 2
+ - uid: 5194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,33.5
+ parent: 2
- uid: 5201
components:
- type: Transform
@@ -103294,12 +103462,6 @@ entities:
- type: Transform
pos: 12.5,81.5
parent: 2
- - uid: 9834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,34.5
- parent: 2
- uid: 9892
components:
- type: Transform
@@ -103515,6 +103677,12 @@ entities:
rot: 3.141592653589793 rad
pos: -74.5,35.5
parent: 2
+ - uid: 12754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,30.5
+ parent: 2
- uid: 12763
components:
- type: Transform
@@ -103525,12 +103693,6 @@ entities:
- type: Transform
pos: -35.5,59.5
parent: 2
- - uid: 12781
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,30.5
- parent: 2
- uid: 12787
components:
- type: Transform
@@ -107590,6 +107752,24 @@ entities:
rot: 3.141592653589793 rad
pos: -56.5,44.5
parent: 2
+ - uid: 4238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,28.5
+ parent: 2
+ - uid: 4240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,27.5
+ parent: 2
+ - uid: 4241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,27.5
+ parent: 2
- uid: 4260
components:
- type: Transform
@@ -108606,6 +108786,12 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,53.5
parent: 2
+ - uid: 10827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,27.5
+ parent: 2
- uid: 11358
components:
- type: Transform
@@ -108702,6 +108888,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,46.5
parent: 2
+ - uid: 12781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,32.5
+ parent: 2
+ - uid: 12783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,33.5
+ parent: 2
- uid: 12795
components:
- type: Transform
@@ -108754,6 +108952,12 @@ entities:
- type: Transform
pos: -55.5,18.5
parent: 2
+ - uid: 13159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,34.5
+ parent: 2
- uid: 13198
components:
- type: Transform
@@ -108908,6 +109112,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,47.5
parent: 2
+ - uid: 13792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,34.5
+ parent: 2
- uid: 13814
components:
- type: Transform
@@ -109773,6 +109983,15 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: WeaponSubMachineGunDrozd
+ entities:
+ - uid: 4255
+ components:
+ - type: Transform
+ parent: 11260
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: WeaponSubMachineGunWt550
entities:
- uid: 1941
@@ -109939,22 +110158,6 @@ entities:
- type: Transform
pos: -39.5,27.5
parent: 2
- - uid: 6732
- components:
- - type: Transform
- pos: -34.5,27.5
- parent: 2
- - uid: 6733
- components:
- - type: Transform
- pos: -33.5,27.5
- parent: 2
- - uid: 12785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,29.5
- parent: 2
- uid: 13823
components:
- type: Transform
@@ -110192,30 +110395,12 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,27.5
parent: 2
- - uid: 5193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,27.5
- parent: 2
- - uid: 5194
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,27.5
- parent: 2
- uid: 5195
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -39.5,27.5
parent: 2
- - uid: 6716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,29.5
- parent: 2
- uid: 6729
components:
- type: Transform
@@ -110384,6 +110569,12 @@ entities:
- type: Transform
pos: -41.5,18.5
parent: 2
+ - uid: 2214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,30.5
+ parent: 2
- uid: 2961
components:
- type: Transform
@@ -110417,6 +110608,12 @@ entities:
- type: Transform
pos: -30.5,22.5
parent: 2
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,29.5
+ parent: 2
- uid: 4284
components:
- type: Transform
diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml
index ed726368b00b..1b0abd79bee8 100644
--- a/Resources/Maps/marathon.yml
+++ b/Resources/Maps/marathon.yml
@@ -150,11 +150,11 @@ entities:
version: 6
-3,3:
ind: -3,3
- tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,4:
ind: -3,4
@@ -561,7 +561,6 @@ entities:
1721: 33,17
1722: 32,17
1723: 31,17
- 2042: -40,54
2104: 1,-7
2105: -1,-7
2225: -13,38
@@ -612,6 +611,14 @@ entities:
3010: 12,14
3015: 2,-51
3114: -21,-15
+ 3176: -35,56
+ 3177: -34,56
+ 3178: -33,56
+ 3179: -32,56
+ 3180: -35,60
+ 3181: -34,60
+ 3182: -33,60
+ 3183: -32,60
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -628,12 +635,14 @@ entities:
id: BotGreyscale
decals:
2133: -22,-1
+ 3191: -46,54
+ 3194: -46,51
+ 3195: -46,52
+ 3196: -46,53
- node:
color: '#FFFFFFFF'
id: BotLeft
decals:
- 2040: -39,56
- 2041: -41,56
2151: -57,-22
2207: -42,42
2208: -46,42
@@ -644,13 +653,6 @@ entities:
2446: -44,19
2447: -42,19
2448: -40,19
- - node:
- color: '#FFFFFFFF'
- id: BotRight
- decals:
- 2204: -45,51
- 2205: -45,52
- 2206: -45,53
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
@@ -1884,15 +1886,7 @@ entities:
color: '#FFFFFFFF'
id: Delivery
decals:
- 99: -39,50
- 100: -41,50
107: -31,56
- 108: -35,56
- 109: -35,60
- 110: -34,60
- 111: -33,60
- 112: -32,60
- 113: -31,60
222: -40,41
223: -44,41
224: -48,41
@@ -1932,6 +1926,7 @@ entities:
2810: 14,-25
2811: 10,-31
2812: 11,-31
+ 3184: -30,56
- node:
color: '#FFFFFFFF'
id: DiagonalCheckerAOverlay
@@ -1981,19 +1976,13 @@ entities:
232: -49,40
245: -34,57
246: -31,59
- 697: 53,19
- 698: 53,20
- - node:
- cleanable: True
- zIndex: 1
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
401: -26,29
402: -33,32
403: -28,32
404: -28,31
405: -31,30
+ 697: 53,19
+ 698: 53,20
828: -76,-57
829: -76,-56
830: -77,-55
@@ -2050,22 +2039,6 @@ entities:
260: -40,42
262: -48,42
263: -37,40
- 641: -19,-44
- 642: -17,-42
- 643: -19,-42
- 644: -23,-43
- 645: -4,-41
- 646: 1,-40
- 647: 0,-39
- 648: 2,-39
- 649: 1,-34
- 650: 1,-31
- 693: 43,22
- 694: 45,22
- 695: 52,19
- 696: 51,20
- 699: 50,19
- 705: 45,23
411: -32,30
412: -27,30
413: -26,31
@@ -2077,11 +2050,27 @@ entities:
419: -32,27
420: -26,28
421: -33,27
+ 641: -19,-44
+ 642: -17,-42
+ 643: -19,-42
+ 644: -23,-43
+ 645: -4,-41
+ 646: 1,-40
+ 647: 0,-39
+ 648: 2,-39
+ 649: 1,-34
+ 650: 1,-31
682: 20,-11
683: 21,-10
684: 17,-11
685: 17,-12
686: 19,-8
+ 693: 43,22
+ 694: 45,22
+ 695: 52,19
+ 696: 51,20
+ 699: 50,19
+ 705: 45,23
838: -78,-53
839: -76,-53
840: -78,-56
@@ -2186,10 +2175,16 @@ entities:
244: -35,58
253: -36,54
261: -48,41
+ 406: -27,29
+ 407: -26,30
+ 408: -30,30
+ 409: -32,29
+ 410: -31,32
637: 1,-39
638: -23,-44
639: -18,-42
640: -16,-41
+ 681: 21,-11
691: 46,23
692: 43,21
700: 52,19
@@ -2197,12 +2192,6 @@ entities:
702: 46,23
703: 46,22
704: 44,23
- 406: -27,29
- 407: -26,30
- 408: -30,30
- 409: -32,29
- 410: -31,32
- 681: 21,-11
832: -78,-54
833: -79,-55
834: -79,-53
@@ -2932,7 +2921,6 @@ entities:
302: -52,56
303: -53,56
304: -46,56
- 305: -45,56
427: 13,20
428: 12,20
429: 14,20
@@ -4167,7 +4155,6 @@ entities:
178: -38,46
206: -46,44
264: -47,45
- 328: -45,56
347: -35,37
431: 14,20
476: -20,-1
@@ -4336,6 +4323,7 @@ entities:
2817: -8,-51
2938: -17,-53
3172: 29,43
+ 3189: -43,52
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
@@ -4345,6 +4333,7 @@ entities:
2937: -19,-53
3111: -6,-12
3168: 33,43
+ 3188: -38,52
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -4494,6 +4483,7 @@ entities:
3145: -1,-41
3146: -1,-42
3170: 29,42
+ 3190: -43,51
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
@@ -4723,6 +4713,7 @@ entities:
3142: -1,-41
3143: -1,-42
3169: 33,42
+ 3187: -38,51
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -4806,11 +4797,6 @@ entities:
color: '#FFFFFFFF'
id: WarningLine
decals:
- 101: -38,51
- 102: -39,51
- 103: -40,51
- 104: -41,51
- 105: -42,51
386: 11,42
387: 10,42
388: 9,42
@@ -4836,11 +4822,6 @@ entities:
color: '#FFFFFFFF'
id: WarningLine
decals:
- 94: -38,53
- 95: -39,53
- 96: -40,53
- 97: -41,53
- 98: -42,53
614: 7,-21
615: 6,-21
616: 5,-21
@@ -5742,7 +5723,7 @@ entities:
-13,11:
0: 43707
-12,12:
- 0: 62395
+ 0: 29627
-11,9:
0: 45311
-11,10:
@@ -5750,7 +5731,7 @@ entities:
-11,11:
0: 65327
-11,12:
- 0: 51455
+ 0: 58623
-10,9:
0: 47359
-10,10:
@@ -5865,23 +5846,23 @@ entities:
-13,16:
0: 65535
-12,13:
- 0: 16383
+ 0: 14199
-12,14:
- 0: 12287
+ 0: 12279
-12,15:
0: 62071
-12,16:
0: 65407
-11,15:
0: 7453
- -11,16:
- 0: 4545
-11,13:
- 0: 52424
+ 0: 61166
-11,14:
- 0: 52236
+ 0: 52238
+ -11,16:
+ 0: 4545
-10,13:
- 0: 30578
+ 0: 30583
-10,14:
0: 63239
-10,15:
@@ -5900,7 +5881,7 @@ entities:
-9,16:
2: 241
-8,13:
- 0: 18303
+ 0: 1919
-8,14:
0: 65535
-8,15:
@@ -5916,7 +5897,7 @@ entities:
2: 17476
-7,15:
0: 1
- 2: 12804
+ 2: 29764
-6,13:
0: 119
2: 28672
@@ -6433,18 +6414,18 @@ entities:
2: 34952
6,-6:
2: 61440
- 6: 224
+ 4: 224
6,-5:
0: 112
2: 2184
6,-8:
3: 224
- 4: 57344
- 6,-7:
- 4: 224
5: 57344
+ 6,-7:
+ 5: 224
+ 6: 57344
6,-9:
- 4: 57568
+ 5: 57568
7,-5:
2: 4080
7,-8:
@@ -6603,14 +6584,12 @@ entities:
0: 53201
-6,-12:
0: 61815
- 2: 136
-6,-11:
0: 65535
-6,-10:
0: 30479
-6,-13:
0: 30576
- 2: 34944
-5,-13:
0: 62719
-8,-14:
@@ -6629,15 +6608,15 @@ entities:
-8,-15:
2: 76
-7,-16:
- 2: 65527
+ 2: 56788
0: 8
-7,-15:
- 2: 28987
+ 2: 28953
0: 196
-7,-14:
2: 870
-7,-17:
- 2: 65535
+ 2: 56797
-6,-16:
2: 13387
0: 49156
@@ -6646,7 +6625,7 @@ entities:
0: 45552
-6,-14:
0: 16527
- 2: 8720
+ 2: 8704
-6,-17:
2: 17487
-5,-16:
@@ -6671,17 +6650,17 @@ entities:
-4,-17:
2: 17487
-3,-16:
- 2: 48877
+ 2: 13925
0: 16386
-3,-15:
- 2: 11
+ 2: 3
0: 61812
-3,-14:
0: 61695
-3,-17:
- 2: 61167
+ 2: 58983
-2,-16:
- 2: 64887
+ 2: 64886
-2,-15:
2: 31
0: 56320
@@ -6724,14 +6703,14 @@ entities:
-8,-20:
2: 34944
-7,-20:
- 2: 65336
+ 2: 40760
-7,-19:
- 2: 65535
+ 2: 56797
-7,-18:
- 2: 65527
+ 2: 56820
0: 8
-6,-20:
- 2: 65519
+ 2: 3055
-6,-19:
2: 17599
0: 64
@@ -6739,13 +6718,13 @@ entities:
2: 17483
0: 4
-5,-20:
- 2: 65358
+ 2: 3918
-5,-19:
2: 17663
-5,-18:
2: 17487
-4,-20:
- 2: 65518
+ 2: 7150
-4,-19:
2: 17599
0: 64
@@ -6753,18 +6732,18 @@ entities:
2: 17483
0: 4
-3,-20:
- 2: 65411
+ 2: 3971
-3,-19:
- 2: 61183
+ 2: 58999
-3,-18:
- 2: 61165
+ 2: 58981
0: 2
-2,-20:
2: 13104
-2,-19:
2: 30033
-2,-18:
- 2: 20855
+ 2: 20854
9,1:
0: 61693
9,2:
@@ -6876,7 +6855,7 @@ entities:
3,16:
2: 242
12,11:
- 4: 2
+ 5: 2
14,9:
2: 39304
0: 17476
@@ -7548,7 +7527,7 @@ entities:
temperature: 293.15
moles:
- 0
- - 0
+ - 6666.982
- 0
- 0
- 0
@@ -7562,7 +7541,7 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
+ - 0
- 0
- 0
- 0
@@ -7577,7 +7556,6 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- 6666.982
- 0
- 0
@@ -7589,6 +7567,7 @@ entities:
- 0
- 0
- 0
+ - 0
chunkSize: 4
- type: BecomesStation
id: Marathon
@@ -7630,31 +7609,35 @@ entities:
container: 20092
- proto: AirAlarm
entities:
- - uid: 2454
+ - uid: 682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,54.5
parent: 30
- type: DeviceList
devices:
- - 3228
- - 3229
- - uid: 2541
+ - 474
+ - 22778
+ - 23140
+ - 23142
+ - 2099
+ - 2029
+ - uid: 1990
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,55.5
+ pos: -43.5,50.5
+ parent: 30
+ - uid: 2454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,5.5
parent: 30
- type: DeviceList
devices:
- - 22783
- - 22782
- - 12595
- - 13767
- - 22776
- - 2006
- - 2005
+ - 3228
+ - 3229
- uid: 2851
components:
- type: Transform
@@ -8569,19 +8552,6 @@ entities:
- 21895
- 2523
- 2525
- - uid: 21906
- components:
- - type: Transform
- pos: -43.5,50.5
- parent: 30
- - type: DeviceList
- devices:
- - 2005
- - 2006
- - 1443
- - 21908
- - 2544
- - 2545
- uid: 21913
components:
- type: Transform
@@ -8611,10 +8581,10 @@ entities:
- 20387
- 20388
- 21919
- - 2594
- 2595
- 2526
- 2524
+ - 2030
- uid: 21921
components:
- type: Transform
@@ -8622,7 +8592,6 @@ entities:
parent: 30
- type: DeviceList
devices:
- - 2592
- 21920
- 2593
- uid: 21922
@@ -9684,15 +9653,17 @@ entities:
- type: Transform
pos: -36.5,47.5
parent: 30
- - uid: 1926
+ - uid: 2544
components:
- type: Transform
- pos: -40.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,50.5
parent: 30
- - uid: 6584
+ - uid: 5052
components:
- type: Transform
- pos: -38.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,50.5
parent: 30
- proto: AirlockAtmosphericsGlassLocked
entities:
@@ -10135,6 +10106,11 @@ entities:
- type: Transform
pos: -54.5,-60.5
parent: 30
+ - uid: 782
+ components:
+ - type: Transform
+ pos: -50.5,46.5
+ parent: 30
- uid: 914
components:
- type: Transform
@@ -10155,11 +10131,6 @@ entities:
- type: Transform
pos: -46.5,10.5
parent: 30
- - uid: 3527
- components:
- - type: Transform
- pos: -50.5,46.5
- parent: 30
- uid: 6384
components:
- type: Transform
@@ -11565,7 +11536,7 @@ entities:
pos: 34.5,45.5
parent: 30
- type: Door
- secondsUntilStateChange: -3847.4316
+ secondsUntilStateChange: -8197.5205
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -12067,11 +12038,6 @@ entities:
- type: Transform
pos: -28.5,46.5
parent: 30
- - uid: 1828
- components:
- - type: Transform
- pos: -29.5,55.5
- parent: 30
- uid: 1829
components:
- type: Transform
@@ -12137,6 +12103,14 @@ entities:
parent: 30
- proto: AirSensor
entities:
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: -41.5,48.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
- uid: 2547
components:
- type: Transform
@@ -12482,14 +12456,6 @@ entities:
- type: Transform
pos: -31.5,43.5
parent: 30
- - uid: 21908
- components:
- - type: Transform
- pos: -39.5,47.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- uid: 21911
components:
- type: Transform
@@ -12775,15 +12741,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21801
- - uid: 22776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,51.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 2541
- uid: 22789
components:
- type: Transform
@@ -12855,6 +12812,14 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22862
+ - uid: 23142
+ components:
+ - type: Transform
+ pos: -40.5,52.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
- proto: AltarConvertRed
entities:
- uid: 17468
@@ -12965,6 +12930,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,51.5
parent: 30
+ - uid: 1894
+ components:
+ - type: MetaData
+ name: Armory APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,50.5
+ parent: 30
- uid: 3119
components:
- type: MetaData
@@ -15082,10 +15055,10 @@ entities:
- type: Transform
pos: -37.5,61.5
parent: 30
- - uid: 2313
+ - uid: 2584
components:
- type: Transform
- pos: -26.5,58.5
+ pos: -26.5,59.5
parent: 30
- uid: 5078
components:
@@ -15107,6 +15080,11 @@ entities:
- type: Transform
pos: -20.5,49.5
parent: 30
+ - uid: 8060
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 30
- uid: 9188
components:
- type: Transform
@@ -15122,20 +15100,15 @@ entities:
- type: Transform
pos: 7.5,-21.5
parent: 30
- - uid: 15174
- components:
- - type: Transform
- pos: -20.5,48.5
- parent: 30
- - uid: 17473
+ - uid: 9292
components:
- type: Transform
- pos: -26.5,59.5
+ pos: -26.5,57.5
parent: 30
- - uid: 18838
+ - uid: 15174
components:
- type: Transform
- pos: -26.5,60.5
+ pos: -20.5,48.5
parent: 30
- uid: 18840
components:
@@ -15459,13 +15432,6 @@ entities:
parent: 30
- type: BallisticAmmoProvider
unspawnedCount: 12
- - uid: 1956
- components:
- - type: Transform
- pos: -41.476646,54.757214
- parent: 30
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxBodyBag
entities:
- uid: 2245
@@ -15488,7 +15454,7 @@ entities:
- uid: 2002
components:
- type: Transform
- pos: -37.719124,55.411057
+ pos: -39.603897,53.49992
parent: 30
- uid: 2110
components:
@@ -15624,11 +15590,6 @@ entities:
parent: 30
- proto: BoxHandcuff
entities:
- - uid: 2096
- components:
- - type: Transform
- pos: -32.040676,56.600285
- parent: 30
- uid: 2169
components:
- type: Transform
@@ -15648,6 +15609,15 @@ entities:
- type: Transform
pos: -15.496401,-18.280874
parent: 30
+- proto: BoxLethalshot
+ entities:
+ - uid: 16932
+ components:
+ - type: Transform
+ parent: 16251
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoxLightbulb
entities:
- uid: 18788
@@ -15684,15 +15654,6 @@ entities:
- type: Transform
pos: -15.855776,-18.39025
parent: 30
-- proto: BoxShotgunIncendiary
- entities:
- - uid: 1953
- components:
- - type: Transform
- pos: -41.476646,54.61659
- parent: 30
- - type: BallisticAmmoProvider
- unspawnedCount: 12
- proto: BoxSterileMask
entities:
- uid: 7201
@@ -15717,13 +15678,6 @@ entities:
- type: Transform
pos: -15.996401,-18.280874
parent: 30
-- proto: BoxZiptie
- entities:
- - uid: 2095
- components:
- - type: Transform
- pos: -31.462551,56.600285
- parent: 30
- proto: BrbSign
entities:
- uid: 21503
@@ -15847,6 +15801,12 @@ entities:
parent: 30
- proto: ButtonFrameCautionSecurity
entities:
+ - uid: 3527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,50.5
+ parent: 30
- uid: 9062
components:
- type: Transform
@@ -15859,6 +15819,12 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-54.5
parent: 30
+ - uid: 23167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,50.5
+ parent: 30
- proto: ButtonFrameExit
entities:
- uid: 348
@@ -15881,8 +15847,19 @@ entities:
rot: -1.5707963267948966 rad
pos: -15.5,-38.5
parent: 30
+ - uid: 13767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,56.5
+ parent: 30
- proto: ButtonFrameJanitor
entities:
+ - uid: 4597
+ components:
+ - type: Transform
+ pos: -36.5,45.5
+ parent: 30
- uid: 9401
components:
- type: Transform
@@ -16021,6 +15998,31 @@ entities:
- type: Transform
pos: -27.5,51.5
parent: 30
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: -37.5,48.5
+ parent: 30
+ - uid: 1896
+ components:
+ - type: Transform
+ pos: -40.5,52.5
+ parent: 30
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: -41.5,54.5
+ parent: 30
+ - uid: 1898
+ components:
+ - type: Transform
+ pos: -41.5,55.5
+ parent: 30
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: -46.5,68.5
+ parent: 30
- uid: 1909
components:
- type: Transform
@@ -16041,6 +16043,21 @@ entities:
- type: Transform
pos: -40.5,59.5
parent: 30
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: -27.5,57.5
+ parent: 30
+ - uid: 1915
+ components:
+ - type: Transform
+ pos: -28.5,57.5
+ parent: 30
+ - uid: 1921
+ components:
+ - type: Transform
+ pos: -26.5,57.5
+ parent: 30
- uid: 1951
components:
- type: Transform
@@ -16051,6 +16068,11 @@ entities:
- type: Transform
pos: -15.5,-19.5
parent: 30
+ - uid: 2033
+ components:
+ - type: Transform
+ pos: -38.5,52.5
+ parent: 30
- uid: 2047
components:
- type: Transform
@@ -16061,6 +16083,26 @@ entities:
- type: Transform
pos: -37.5,61.5
parent: 30
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: -38.5,51.5
+ parent: 30
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: -41.5,53.5
+ parent: 30
+ - uid: 2531
+ components:
+ - type: Transform
+ pos: -37.5,51.5
+ parent: 30
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 30
- uid: 3126
components:
- type: Transform
@@ -18946,46 +18988,11 @@ entities:
- type: Transform
pos: -39.5,46.5
parent: 30
- - uid: 4595
- components:
- - type: Transform
- pos: -39.5,48.5
- parent: 30
- - uid: 4596
- components:
- - type: Transform
- pos: -39.5,49.5
- parent: 30
- - uid: 4597
- components:
- - type: Transform
- pos: -39.5,50.5
- parent: 30
- - uid: 4598
- components:
- - type: Transform
- pos: -39.5,51.5
- parent: 30
- uid: 4599
components:
- type: Transform
pos: -39.5,52.5
parent: 30
- - uid: 4600
- components:
- - type: Transform
- pos: -39.5,53.5
- parent: 30
- - uid: 4601
- components:
- - type: Transform
- pos: -40.5,53.5
- parent: 30
- - uid: 4602
- components:
- - type: Transform
- pos: -40.5,54.5
- parent: 30
- uid: 4603
components:
- type: Transform
@@ -19346,21 +19353,11 @@ entities:
- type: Transform
pos: -46.5,67.5
parent: 30
- - uid: 4675
- components:
- - type: Transform
- pos: -47.5,67.5
- parent: 30
- uid: 4676
components:
- type: Transform
pos: -47.5,68.5
parent: 30
- - uid: 4677
- components:
- - type: Transform
- pos: -47.5,69.5
- parent: 30
- uid: 4678
components:
- type: Transform
@@ -19376,11 +19373,6 @@ entities:
- type: Transform
pos: -50.5,68.5
parent: 30
- - uid: 4681
- components:
- - type: Transform
- pos: -51.5,68.5
- parent: 30
- uid: 4682
components:
- type: Transform
@@ -19461,11 +19453,6 @@ entities:
- type: Transform
pos: -43.5,60.5
parent: 30
- - uid: 4698
- components:
- - type: Transform
- pos: -45.5,65.5
- parent: 30
- uid: 4699
components:
- type: Transform
@@ -19716,16 +19703,6 @@ entities:
- type: Transform
pos: -29.5,54.5
parent: 30
- - uid: 4751
- components:
- - type: Transform
- pos: -29.5,55.5
- parent: 30
- - uid: 4752
- components:
- - type: Transform
- pos: -29.5,56.5
- parent: 30
- uid: 4753
components:
- type: Transform
@@ -19741,11 +19718,6 @@ entities:
- type: Transform
pos: -29.5,59.5
parent: 30
- - uid: 4756
- components:
- - type: Transform
- pos: -28.5,58.5
- parent: 30
- uid: 4757
components:
- type: Transform
@@ -19856,15 +19828,10 @@ entities:
- type: Transform
pos: -50.5,53.5
parent: 30
- - uid: 4781
- components:
- - type: Transform
- pos: -51.5,56.5
- parent: 30
- - uid: 4782
+ - uid: 4785
components:
- type: Transform
- pos: -51.5,55.5
+ pos: -37.5,50.5
parent: 30
- uid: 4829
components:
@@ -21831,6 +21798,11 @@ entities:
- type: Transform
pos: -25.5,-21.5
parent: 30
+ - uid: 8042
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 30
- uid: 8043
components:
- type: Transform
@@ -25761,6 +25733,11 @@ entities:
- type: Transform
pos: 31.5,31.5
parent: 30
+ - uid: 12595
+ components:
+ - type: Transform
+ pos: -46.5,70.5
+ parent: 30
- uid: 12668
components:
- type: Transform
@@ -31386,26 +31363,6 @@ entities:
- type: Transform
pos: -20.5,48.5
parent: 30
- - uid: 21012
- components:
- - type: Transform
- pos: -27.5,58.5
- parent: 30
- - uid: 21013
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- - uid: 21014
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 30
- - uid: 21015
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 30
- uid: 21016
components:
- type: Transform
@@ -31961,6 +31918,46 @@ entities:
- type: Transform
pos: -7.5,-44.5
parent: 30
+ - uid: 22777
+ components:
+ - type: Transform
+ pos: -37.5,49.5
+ parent: 30
+ - uid: 22781
+ components:
+ - type: Transform
+ pos: -46.5,69.5
+ parent: 30
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: -40.5,50.5
+ parent: 30
+ - uid: 23130
+ components:
+ - type: Transform
+ pos: -41.5,52.5
+ parent: 30
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: -48.5,70.5
+ parent: 30
+ - uid: 23170
+ components:
+ - type: Transform
+ pos: -48.5,69.5
+ parent: 30
+ - uid: 23171
+ components:
+ - type: Transform
+ pos: -50.5,70.5
+ parent: 30
+ - uid: 23172
+ components:
+ - type: Transform
+ pos: -50.5,69.5
+ parent: 30
- proto: CableApcStack
entities:
- uid: 1637
@@ -38674,6 +38671,11 @@ entities:
parent: 30
- proto: CableMV
entities:
+ - uid: 774
+ components:
+ - type: Transform
+ pos: -35.5,47.5
+ parent: 30
- uid: 845
components:
- type: Transform
@@ -38709,11 +38711,31 @@ entities:
- type: Transform
pos: -27.5,-19.5
parent: 30
+ - uid: 1846
+ components:
+ - type: Transform
+ pos: -34.5,47.5
+ parent: 30
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: -36.5,47.5
+ parent: 30
- uid: 2032
components:
- type: Transform
pos: -28.5,-19.5
parent: 30
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: -33.5,47.5
+ parent: 30
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: -38.5,48.5
+ parent: 30
- uid: 2170
components:
- type: Transform
@@ -44214,6 +44236,46 @@ entities:
- type: Transform
pos: -17.5,-60.5
parent: 30
+ - uid: 22937
+ components:
+ - type: Transform
+ pos: -37.5,48.5
+ parent: 30
+ - uid: 23126
+ components:
+ - type: Transform
+ pos: -37.5,50.5
+ parent: 30
+ - uid: 23127
+ components:
+ - type: Transform
+ pos: -37.5,49.5
+ parent: 30
+ - uid: 23128
+ components:
+ - type: Transform
+ pos: -37.5,47.5
+ parent: 30
+ - uid: 23136
+ components:
+ - type: Transform
+ pos: -39.5,48.5
+ parent: 30
+ - uid: 23137
+ components:
+ - type: Transform
+ pos: -39.5,49.5
+ parent: 30
+ - uid: 23138
+ components:
+ - type: Transform
+ pos: -39.5,50.5
+ parent: 30
+ - uid: 23139
+ components:
+ - type: Transform
+ pos: -40.5,50.5
+ parent: 30
- proto: CableMVStack
entities:
- uid: 1638
@@ -49426,18 +49488,6 @@ entities:
- type: Transform
pos: -51.5,61.5
parent: 30
- - uid: 2425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,55.5
- parent: 30
- - uid: 2426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,55.5
- parent: 30
- uid: 4366
components:
- type: Transform
@@ -50162,6 +50212,12 @@ entities:
- type: Transform
pos: -33.5,53.5
parent: 30
+ - uid: 4756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.498543,49.16341
+ parent: 30
- uid: 5024
components:
- type: Transform
@@ -52109,29 +52165,11 @@ entities:
- 0
- proto: ClosetL3SecurityFilled
entities:
- - uid: 2073
+ - uid: 2041
components:
- type: Transform
- pos: -34.5,56.5
+ pos: -29.5,56.5
parent: 30
- - 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: 6753
components:
- type: Transform
@@ -52847,10 +52885,10 @@ entities:
parent: 30
- proto: ClothingHeadHatBeretWarden
entities:
- - uid: 2033
+ - uid: 4783
components:
- type: Transform
- pos: -44.77555,47.437355
+ pos: -44.66638,47.438354
parent: 30
- proto: ClothingHeadHatBowlerHat
entities:
@@ -53035,13 +53073,6 @@ entities:
- type: Transform
pos: -21.586058,-27.491894
parent: 30
-- proto: ClothingHeadHatWarden
- entities:
- - uid: 865
- components:
- - type: Transform
- pos: -44.478676,46.781105
- parent: 30
- proto: ClothingHeadHatWelding
entities:
- uid: 1632
@@ -53092,34 +53123,39 @@ entities:
- type: Transform
pos: 35.44555,43.82996
parent: 30
-- proto: ClothingHeadHelmetBasic
+- proto: ClothingHeadHelmetEVALarge
entities:
- - uid: 1986
+ - uid: 17784
components:
- type: Transform
- pos: -39.575058,56.668564
+ pos: -44.636612,58.69058
parent: 30
- - uid: 1987
+ - uid: 17786
components:
- type: Transform
- pos: -39.575058,56.668564
+ pos: -44.478813,58.559113
parent: 30
- - uid: 1988
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 2542
components:
- type: Transform
- pos: -39.575058,56.668564
+ pos: -39.70404,56.724342
parent: 30
-- proto: ClothingHeadHelmetEVALarge
- entities:
- - uid: 17784
+ - uid: 23149
components:
- type: Transform
- pos: -44.636612,58.69058
+ pos: -39.690155,56.61323
parent: 30
- - uid: 17786
+ - uid: 23150
components:
- type: Transform
- pos: -44.478813,58.559113
+ pos: -39.690155,56.509064
+ parent: 30
+ - uid: 23151
+ components:
+ - type: Transform
+ pos: -39.67626,56.39101
parent: 30
- proto: ClothingHeadHelmetTemplar
entities:
@@ -53296,63 +53332,61 @@ entities:
- type: Transform
pos: -0.49387097,-7.362574
parent: 30
-- proto: ClothingOuterArmorBasic
+- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 12131
+ - uid: 1942
components:
- type: Transform
- pos: -39.48033,56.411068
+ pos: -38.336784,56.662075
parent: 30
- - uid: 14249
+ - uid: 1956
components:
- type: Transform
- pos: -39.48033,56.411068
+ pos: -38.336784,56.773186
parent: 30
- - uid: 14435
+ - uid: 23143
components:
- type: Transform
- pos: -39.48033,56.411068
+ pos: -38.336784,56.564854
parent: 30
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 16243
+ - uid: 23144
components:
- type: Transform
- pos: -39.286102,56.736275
+ pos: -38.336784,56.460686
parent: 30
- - uid: 16244
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 23145
components:
- type: Transform
- pos: -39.286102,56.736275
+ pos: -38.74173,56.6933
parent: 30
- - uid: 16251
+ - uid: 23146
components:
- type: Transform
- pos: -39.286102,56.736275
+ pos: -38.74173,56.512745
parent: 30
-- proto: ClothingOuterArmorReflective
+- proto: ClothingOuterArmorRiot
entities:
- - uid: 16932
+ - uid: 2017
components:
- type: Transform
- pos: -39.730423,56.32322
+ pos: -39.245705,56.45351
parent: 30
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 1936
+ - uid: 21014
components:
- type: Transform
- pos: -39.387558,56.481064
+ pos: -39.245705,56.55768
parent: 30
- - uid: 1984
+ - uid: 23147
components:
- type: Transform
- pos: -39.387558,56.481064
+ pos: -39.252655,56.66879
parent: 30
- - uid: 1985
+ - uid: 23148
components:
- type: Transform
- pos: -39.387558,56.481064
+ pos: -39.245705,56.37018
parent: 30
- proto: ClothingOuterCoatBomber
entities:
@@ -54309,10 +54343,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -53.5,30.5
parent: 30
- - uid: 2017
+ - uid: 2023
components:
- type: Transform
- pos: -42.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,49.5
parent: 30
- uid: 2160
components:
@@ -54515,11 +54550,6 @@ entities:
rot: 3.141592653589793 rad
pos: -41.5,29.5
parent: 30
- - uid: 2022
- components:
- - type: Transform
- pos: -43.5,49.5
- parent: 30
- uid: 4355
components:
- type: Transform
@@ -54537,6 +54567,12 @@ entities:
- type: Transform
pos: -30.5,49.5
parent: 30
+ - uid: 12815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,48.5
+ parent: 30
- proto: ComputerSurveillanceCameraMonitor
entities:
- uid: 1073
@@ -54551,7 +54587,7 @@ entities:
rot: -1.5707963267948966 rad
pos: -30.5,39.5
parent: 30
- - uid: 2121
+ - uid: 1991
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -54902,6 +54938,13 @@ entities:
- type: Transform
pos: -80.5,-42.5
parent: 30
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: -39.5,49.5
+ parent: 30
- proto: CrateEmptySpawner
entities:
- uid: 757
@@ -55207,10 +55250,10 @@ entities:
parent: 30
- proto: CrateSecurityTrackingMindshieldImplants
entities:
- - uid: 682
+ - uid: 2011
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -40.5,49.5
parent: 30
- proto: CrateServiceJanitorialSupplies
entities:
@@ -55394,6 +55437,11 @@ entities:
- type: Transform
pos: 0.44135857,19.519009
parent: 30
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: -27.424818,58.12078
+ parent: 30
- uid: 4886
components:
- type: Transform
@@ -55583,10 +55631,10 @@ entities:
parent: 30
- proto: DefaultStationBeaconArmory
entities:
- - uid: 20531
+ - uid: 23141
components:
- type: Transform
- pos: -39.5,53.5
+ pos: -40.5,53.5
parent: 30
- proto: DefaultStationBeaconArrivals
entities:
@@ -55981,10 +56029,10 @@ entities:
parent: 30
- proto: DefaultStationBeaconWardensOffice
entities:
- - uid: 20573
+ - uid: 4596
components:
- type: Transform
- pos: -42.5,47.5
+ pos: -40.5,47.5
parent: 30
- proto: DefibrillatorCabinetFilled
entities:
@@ -56018,10 +56066,15 @@ entities:
parent: 30
- proto: DeployableBarrier
entities:
- - uid: 474
+ - uid: 1926
components:
- type: Transform
- pos: -37.5,46.5
+ pos: -45.5,52.5
+ parent: 30
+ - uid: 4601
+ components:
+ - type: Transform
+ pos: -45.5,51.5
parent: 30
- uid: 6585
components:
@@ -56644,6 +56697,59 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,64.5
parent: 30
+ - uid: 22602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,6.5
+ parent: 30
+ - uid: 22633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-23.5
+ parent: 30
+ - uid: 22650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-23.5
+ parent: 30
+ - uid: 23081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-51.5
+ parent: 30
+ - uid: 23109
+ components:
+ - type: Transform
+ pos: -55.5,-49.5
+ parent: 30
+ - uid: 23112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-45.5
+ parent: 30
+ - uid: 23114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-45.5
+ parent: 30
+ - uid: 23124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,-38.5
+ parent: 30
+ - uid: 23125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-38.5
+ parent: 30
- proto: DisposalJunction
entities:
- uid: 6948
@@ -56722,6 +56828,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,2.5
parent: 30
+ - uid: 14108
+ components:
+ - type: Transform
+ pos: -35.5,6.5
+ parent: 30
- uid: 14151
components:
- type: Transform
@@ -56743,6 +56854,18 @@ entities:
- type: Transform
pos: -32.5,46.5
parent: 30
+ - uid: 23079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-49.5
+ parent: 30
+ - uid: 23113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-45.5
+ parent: 30
- proto: DisposalJunctionFlipped
entities:
- uid: 7252
@@ -56875,6 +56998,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,-39.5
parent: 30
+ - uid: 23068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-37.5
+ parent: 30
- proto: DisposalPipe
entities:
- uid: 925
@@ -58502,12 +58631,6 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,5.5
parent: 30
- - uid: 14108
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,6.5
- parent: 30
- uid: 14109
components:
- type: Transform
@@ -60188,6 +60311,30 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-41.5
parent: 30
+ - uid: 21387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,6.5
+ parent: 30
+ - uid: 21389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,6.5
+ parent: 30
+ - uid: 21390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,6.5
+ parent: 30
+ - uid: 21438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,6.5
+ parent: 30
- uid: 21694
components:
- type: Transform
@@ -60846,6 +60993,575 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,64.5
parent: 30
+ - uid: 22556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,6.5
+ parent: 30
+ - uid: 22598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,6.5
+ parent: 30
+ - uid: 22599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,6.5
+ parent: 30
+ - uid: 22600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,6.5
+ parent: 30
+ - uid: 22601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,6.5
+ parent: 30
+ - uid: 22603
+ components:
+ - type: Transform
+ pos: -45.5,5.5
+ parent: 30
+ - uid: 22604
+ components:
+ - type: Transform
+ pos: -45.5,4.5
+ parent: 30
+ - uid: 22605
+ components:
+ - type: Transform
+ pos: -45.5,3.5
+ parent: 30
+ - uid: 22606
+ components:
+ - type: Transform
+ pos: -45.5,2.5
+ parent: 30
+ - uid: 22607
+ components:
+ - type: Transform
+ pos: -45.5,1.5
+ parent: 30
+ - uid: 22608
+ components:
+ - type: Transform
+ pos: -45.5,0.5
+ parent: 30
+ - uid: 22609
+ components:
+ - type: Transform
+ pos: -45.5,-0.5
+ parent: 30
+ - uid: 22610
+ components:
+ - type: Transform
+ pos: -45.5,-1.5
+ parent: 30
+ - uid: 22611
+ components:
+ - type: Transform
+ pos: -45.5,-2.5
+ parent: 30
+ - uid: 22612
+ components:
+ - type: Transform
+ pos: -45.5,-3.5
+ parent: 30
+ - uid: 22613
+ components:
+ - type: Transform
+ pos: -45.5,-4.5
+ parent: 30
+ - uid: 22614
+ components:
+ - type: Transform
+ pos: -45.5,-5.5
+ parent: 30
+ - uid: 22615
+ components:
+ - type: Transform
+ pos: -45.5,-6.5
+ parent: 30
+ - uid: 22616
+ components:
+ - type: Transform
+ pos: -45.5,-7.5
+ parent: 30
+ - uid: 22618
+ components:
+ - type: Transform
+ pos: -45.5,-8.5
+ parent: 30
+ - uid: 22619
+ components:
+ - type: Transform
+ pos: -45.5,-9.5
+ parent: 30
+ - uid: 22620
+ components:
+ - type: Transform
+ pos: -45.5,-10.5
+ parent: 30
+ - uid: 22621
+ components:
+ - type: Transform
+ pos: -45.5,-11.5
+ parent: 30
+ - uid: 22622
+ components:
+ - type: Transform
+ pos: -45.5,-12.5
+ parent: 30
+ - uid: 22623
+ components:
+ - type: Transform
+ pos: -45.5,-13.5
+ parent: 30
+ - uid: 22624
+ components:
+ - type: Transform
+ pos: -45.5,-14.5
+ parent: 30
+ - uid: 22625
+ components:
+ - type: Transform
+ pos: -45.5,-15.5
+ parent: 30
+ - uid: 22626
+ components:
+ - type: Transform
+ pos: -45.5,-16.5
+ parent: 30
+ - uid: 22627
+ components:
+ - type: Transform
+ pos: -45.5,-17.5
+ parent: 30
+ - uid: 22628
+ components:
+ - type: Transform
+ pos: -45.5,-18.5
+ parent: 30
+ - uid: 22629
+ components:
+ - type: Transform
+ pos: -45.5,-19.5
+ parent: 30
+ - uid: 22630
+ components:
+ - type: Transform
+ pos: -45.5,-20.5
+ parent: 30
+ - uid: 22631
+ components:
+ - type: Transform
+ pos: -45.5,-21.5
+ parent: 30
+ - uid: 22632
+ components:
+ - type: Transform
+ pos: -45.5,-22.5
+ parent: 30
+ - uid: 22634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-23.5
+ parent: 30
+ - uid: 22635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-23.5
+ parent: 30
+ - uid: 22636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-23.5
+ parent: 30
+ - uid: 22637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-23.5
+ parent: 30
+ - uid: 22638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-23.5
+ parent: 30
+ - uid: 22639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-23.5
+ parent: 30
+ - uid: 22640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-23.5
+ parent: 30
+ - uid: 22641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-23.5
+ parent: 30
+ - uid: 22642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-23.5
+ parent: 30
+ - uid: 22643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-23.5
+ parent: 30
+ - uid: 22644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-23.5
+ parent: 30
+ - uid: 22645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-23.5
+ parent: 30
+ - uid: 22646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-23.5
+ parent: 30
+ - uid: 22647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-23.5
+ parent: 30
+ - uid: 22648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-23.5
+ parent: 30
+ - uid: 22649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-23.5
+ parent: 30
+ - uid: 22651
+ components:
+ - type: Transform
+ pos: -62.5,-24.5
+ parent: 30
+ - uid: 22652
+ components:
+ - type: Transform
+ pos: -62.5,-25.5
+ parent: 30
+ - uid: 22653
+ components:
+ - type: Transform
+ pos: -62.5,-26.5
+ parent: 30
+ - uid: 22654
+ components:
+ - type: Transform
+ pos: -62.5,-27.5
+ parent: 30
+ - uid: 22655
+ components:
+ - type: Transform
+ pos: -62.5,-28.5
+ parent: 30
+ - uid: 22656
+ components:
+ - type: Transform
+ pos: -62.5,-29.5
+ parent: 30
+ - uid: 22657
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 30
+ - uid: 22658
+ components:
+ - type: Transform
+ pos: -62.5,-31.5
+ parent: 30
+ - uid: 22659
+ components:
+ - type: Transform
+ pos: -62.5,-32.5
+ parent: 30
+ - uid: 22660
+ components:
+ - type: Transform
+ pos: -62.5,-33.5
+ parent: 30
+ - uid: 22661
+ components:
+ - type: Transform
+ pos: -62.5,-34.5
+ parent: 30
+ - uid: 22662
+ components:
+ - type: Transform
+ pos: -62.5,-35.5
+ parent: 30
+ - uid: 23067
+ components:
+ - type: Transform
+ pos: -62.5,-36.5
+ parent: 30
+ - uid: 23077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,-51.5
+ parent: 30
+ - uid: 23078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -68.5,-51.5
+ parent: 30
+ - uid: 23080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-50.5
+ parent: 30
+ - uid: 23082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-48.5
+ parent: 30
+ - uid: 23083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-47.5
+ parent: 30
+ - uid: 23084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-46.5
+ parent: 30
+ - uid: 23085
+ components:
+ - type: Transform
+ pos: -76.5,-46.5
+ parent: 30
+ - uid: 23086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-45.5
+ parent: 30
+ - uid: 23087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-45.5
+ parent: 30
+ - uid: 23088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-45.5
+ parent: 30
+ - uid: 23089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-45.5
+ parent: 30
+ - uid: 23090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-45.5
+ parent: 30
+ - uid: 23091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-45.5
+ parent: 30
+ - uid: 23092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-45.5
+ parent: 30
+ - uid: 23093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-45.5
+ parent: 30
+ - uid: 23094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-49.5
+ parent: 30
+ - uid: 23095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-49.5
+ parent: 30
+ - uid: 23096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-49.5
+ parent: 30
+ - uid: 23097
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-49.5
+ parent: 30
+ - uid: 23098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-49.5
+ parent: 30
+ - uid: 23099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-49.5
+ parent: 30
+ - uid: 23100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-49.5
+ parent: 30
+ - uid: 23101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-49.5
+ parent: 30
+ - uid: 23102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-49.5
+ parent: 30
+ - uid: 23103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-49.5
+ parent: 30
+ - uid: 23104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-49.5
+ parent: 30
+ - uid: 23105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-50.5
+ parent: 30
+ - uid: 23106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-51.5
+ parent: 30
+ - uid: 23107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-52.5
+ parent: 30
+ - uid: 23108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-53.5
+ parent: 30
+ - uid: 23115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-45.5
+ parent: 30
+ - uid: 23116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-44.5
+ parent: 30
+ - uid: 23117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-43.5
+ parent: 30
+ - uid: 23118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-42.5
+ parent: 30
+ - uid: 23119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-41.5
+ parent: 30
+ - uid: 23120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-40.5
+ parent: 30
+ - uid: 23121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-39.5
+ parent: 30
+ - uid: 23122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -64.5,-38.5
+ parent: 30
+ - uid: 23123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-38.5
+ parent: 30
- proto: DisposalTrunk
entities:
- uid: 356
@@ -61147,6 +61863,36 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,64.5
parent: 30
+ - uid: 23069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,-37.5
+ parent: 30
+ - uid: 23075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-54.5
+ parent: 30
+ - uid: 23076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-51.5
+ parent: 30
+ - uid: 23110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-54.5
+ parent: 30
+ - uid: 23111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-47.5
+ parent: 30
- proto: DisposalUnit
entities:
- uid: 343
@@ -61389,6 +62135,31 @@ entities:
- type: Transform
pos: 2.5,64.5
parent: 30
+ - uid: 23070
+ components:
+ - type: Transform
+ pos: -63.5,-37.5
+ parent: 30
+ - uid: 23071
+ components:
+ - type: Transform
+ pos: -70.5,-51.5
+ parent: 30
+ - uid: 23072
+ components:
+ - type: Transform
+ pos: -53.5,-46.5
+ parent: 30
+ - uid: 23073
+ components:
+ - type: Transform
+ pos: -76.5,-47.5
+ parent: 30
+ - uid: 23074
+ components:
+ - type: Transform
+ pos: -55.5,-54.5
+ parent: 30
- proto: DisposalYJunction
entities:
- uid: 6965
@@ -61417,7 +62188,7 @@ entities:
parent: 30
- proto: DogBed
entities:
- - uid: 2007
+ - uid: 1937
components:
- type: Transform
pos: -44.5,47.5
@@ -61968,14 +62739,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 19841
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 30
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 19843
components:
- type: Transform
@@ -62750,11 +63513,6 @@ entities:
- type: Transform
pos: -32.5,-35.5
parent: 30
- - uid: 20525
- components:
- - type: Transform
- pos: -30.5,54.5
- parent: 30
- uid: 20526
components:
- type: Transform
@@ -62765,6 +63523,11 @@ entities:
- type: Transform
pos: 43.5,37.5
parent: 30
+ - uid: 23132
+ components:
+ - type: Transform
+ pos: -29.5,54.5
+ parent: 30
- proto: filingCabinetDrawer
entities:
- uid: 12856
@@ -63376,17 +64139,6 @@ entities:
- 21893
- 21894
- 21895
- - uid: 21907
- components:
- - type: Transform
- pos: -44.5,50.5
- parent: 30
- - type: DeviceList
- devices:
- - 21908
- - 2005
- - 2006
- - 1443
- uid: 21912
components:
- type: Transform
@@ -64231,6 +64983,15 @@ entities:
- type: Transform
pos: -20.5,8.5
parent: 30
+ - uid: 474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,50.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
- uid: 645
components:
- type: Transform
@@ -64339,9 +65100,6 @@ entities:
- type: Transform
pos: -42.5,45.5
parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- uid: 1538
components:
- type: Transform
@@ -64350,24 +65108,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22035
- - uid: 2005
- components:
- - type: Transform
- pos: -40.5,50.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- - 2541
- - uid: 2006
- components:
- - type: Transform
- pos: -38.5,50.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- - 2541
- uid: 2221
components:
- type: Transform
@@ -65480,6 +66220,15 @@ entities:
deviceLists:
- 22775
- 21888
+ - uid: 22778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,50.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
- proto: Fireplace
entities:
- uid: 4984
@@ -65571,11 +66320,6 @@ entities:
- type: Transform
pos: -27.468573,58.960808
parent: 30
- - uid: 22430
- components:
- - type: Transform
- pos: -37.504288,48.94012
- parent: 30
- uid: 22431
components:
- type: Transform
@@ -66267,7 +67011,7 @@ entities:
pos: -32.5,-11.5
parent: 30
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- proto: GasMinerCarbonDioxide
entities:
- uid: 8691
@@ -66501,45 +67245,51 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2474
+ - uid: 2248
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,37.5
+ pos: -31.5,59.5
parent: 30
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2475
+ color: '#0055CCFF'
+ - uid: 2376
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,35.5
+ pos: -31.5,54.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2576
+ - uid: 2426
components:
- type: Transform
- pos: -33.5,53.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,54.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,37.5
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2577
+ - uid: 2475
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,53.5
+ pos: -49.5,35.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2578
+ - uid: 2576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,53.5
+ pos: -33.5,53.5
parent: 30
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 2579
components:
- type: Transform
@@ -67914,20 +68664,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22781
- components:
- - type: Transform
- pos: -39.5,53.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22788
- components:
- - type: Transform
- pos: -37.5,53.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22799
components:
- type: Transform
@@ -67935,13 +68671,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22811
- components:
- - type: Transform
- pos: -29.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasPipeFourway
entities:
- uid: 2101
@@ -68304,6 +69033,14 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,56.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 874
components:
- type: Transform
@@ -68412,6 +69149,27 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: -41.5,51.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: -41.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: -41.5,49.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 1929
components:
- type: Transform
@@ -68420,6 +69178,58 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,54.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: -38.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,54.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: -38.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: -38.5,49.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: -38.5,50.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2100
components:
- type: Transform
@@ -68427,6 +69237,43 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: -31.5,58.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,48.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2424
+ components:
+ - type: Transform
+ pos: -38.5,51.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2431
+ components:
+ - type: Transform
+ pos: -31.5,53.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2432
components:
- type: Transform
@@ -68912,11 +69759,10 @@ entities:
- uid: 2533
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,47.5
+ pos: -41.5,50.5
parent: 30
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 2534
components:
- type: Transform
@@ -68973,22 +69819,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2542
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2555
components:
- type: Transform
@@ -69024,13 +69854,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2560
- components:
- - type: Transform
- pos: -31.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2561
components:
- type: Transform
@@ -69135,14 +69958,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2584
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,54.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2585
components:
- type: Transform
@@ -69167,30 +69982,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,56.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2589
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,55.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,57.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2591
components:
- type: Transform
@@ -75797,14 +76588,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8042
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 8049
components:
- type: Transform
@@ -75829,14 +76612,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 8061
components:
- type: Transform
@@ -85169,54 +85944,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,49.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22778
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,50.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22784
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,49.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,50.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22800
components:
- type: Transform
@@ -85257,14 +85984,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 22806
components:
- type: Transform
@@ -85281,30 +86000,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22808
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22809
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,59.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,58.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 22832
components:
- type: Transform
@@ -85459,6 +86154,30 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,55.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,57.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,58.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeTJunction
entities:
- uid: 336
@@ -85483,6 +86202,29 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,52.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2121
+ components:
+ - type: Transform
+ pos: -34.5,59.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2324
components:
- type: Transform
@@ -85491,11 +86233,11 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2431
+ - uid: 2425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,48.5
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -85645,22 +86387,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2531
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,47.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2532
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,48.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2549
components:
- type: Transform
@@ -85730,13 +86456,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2583
- components:
- - type: Transform
- pos: -30.5,53.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2596
components:
- type: Transform
@@ -88417,22 +89136,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22779
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,51.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,51.5
- parent: 30
- - type: AtmosPipeColor
- color: '#990000FF'
- proto: GasPort
entities:
- uid: 6757
@@ -88593,7 +89296,7 @@ entities:
pos: -30.5,-10.5
parent: 30
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 8781
components:
- type: Transform
@@ -88786,6 +89489,33 @@ entities:
color: '#990000FF'
- proto: GasVentPump
entities:
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,52.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 21917
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,57.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2451
components:
- type: Transform
@@ -88846,17 +89576,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2544
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,48.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2573
components:
- type: Transform
@@ -88865,22 +89584,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,57.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2594
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,52.5
- parent: 30
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2638
components:
- type: Transform
@@ -90004,17 +90707,6 @@ entities:
- 22028
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,51.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 2541
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 12611
components:
- type: Transform
@@ -90572,17 +91264,6 @@ entities:
- 21888
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22782
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,53.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 2541
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 22797
components:
- type: Transform
@@ -90658,8 +91339,36 @@ entities:
- 22868
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23140
+ components:
+ - type: Transform
+ pos: -41.5,53.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
+ - uid: 2083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,47.5
+ parent: 30
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: -38.5,53.5
+ parent: 30
+ - type: DeviceNetwork
+ deviceLists:
+ - 682
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2452
components:
- type: Transform
@@ -90733,17 +91442,6 @@ entities:
parent: 30
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2545
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,47.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 21906
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 2574
components:
- type: Transform
@@ -91904,17 +92602,6 @@ entities:
- 22062
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,51.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 2541
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 13782
components:
- type: Transform
@@ -92280,17 +92967,6 @@ entities:
- 21888
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22783
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,53.5
- parent: 30
- - type: DeviceNetwork
- deviceLists:
- - 2541
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22792
components:
- type: Transform
@@ -93287,35 +93963,30 @@ entities:
- type: Transform
pos: -20.5,52.5
parent: 30
- - uid: 1856
- components:
- - type: Transform
- pos: -38.5,45.5
- parent: 30
- - uid: 1857
+ - uid: 1828
components:
- type: Transform
- pos: -36.5,46.5
+ pos: -26.5,58.5
parent: 30
- - uid: 1858
+ - uid: 1844
components:
- type: Transform
- pos: -36.5,48.5
+ pos: -26.5,57.5
parent: 30
- - uid: 1859
+ - uid: 1856
components:
- type: Transform
- pos: -37.5,50.5
+ pos: -38.5,45.5
parent: 30
- - uid: 1860
+ - uid: 1857
components:
- type: Transform
- pos: -39.5,50.5
+ pos: -36.5,46.5
parent: 30
- - uid: 1861
+ - uid: 1858
components:
- type: Transform
- pos: -41.5,50.5
+ pos: -36.5,48.5
parent: 30
- uid: 1862
components:
@@ -93367,23 +94038,6 @@ entities:
- type: Transform
pos: -27.5,52.5
parent: 30
- - uid: 1921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,52.5
- parent: 30
- - uid: 1922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,52.5
- parent: 30
- - uid: 1925
- components:
- - type: Transform
- pos: -39.5,52.5
- parent: 30
- uid: 1930
components:
- type: Transform
@@ -93454,6 +94108,12 @@ entities:
- type: Transform
pos: 46.5,49.5
parent: 30
+ - uid: 2024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,50.5
+ parent: 30
- uid: 2052
components:
- type: Transform
@@ -93489,32 +94149,12 @@ entities:
- type: Transform
pos: -28.5,61.5
parent: 30
- - uid: 2059
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- - uid: 2060
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 30
- - uid: 2061
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 30
- uid: 2064
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -36.5,60.5
parent: 30
- - uid: 2091
- components:
- - type: Transform
- pos: -29.5,63.5
- parent: 30
- uid: 2093
components:
- type: Transform
@@ -93590,6 +94230,18 @@ entities:
- type: Transform
pos: -53.5,72.5
parent: 30
+ - uid: 2589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,63.5
+ parent: 30
+ - uid: 2590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,63.5
+ parent: 30
- uid: 2933
components:
- type: Transform
@@ -93692,6 +94344,12 @@ entities:
- type: Transform
pos: -23.5,36.5
parent: 30
+ - uid: 5025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,50.5
+ parent: 30
- uid: 5075
components:
- type: Transform
@@ -96261,12 +96919,6 @@ entities:
- type: Transform
pos: 17.5,63.5
parent: 30
- - uid: 15280
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,63.5
- parent: 30
- uid: 15336
components:
- type: Transform
@@ -99088,6 +99740,11 @@ entities:
- type: Transform
pos: -11.5,54.5
parent: 30
+ - uid: 22788
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 30
- uid: 22823
components:
- type: Transform
@@ -99474,6 +100131,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-70.5
parent: 30
+ - uid: 23168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,63.5
+ parent: 30
- proto: GrilleBroken
entities:
- uid: 695
@@ -99815,6 +100478,15 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,-31.5
parent: 30
+ - uid: 20891
+ components:
+ - type: Transform
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: -25.5,63.5
+ parent: 30
+ - type: Physics
+ bodyType: Dynamic
- uid: 21113
components:
- type: Transform
@@ -99945,32 +100617,98 @@ entities:
parent: 30
- proto: GunSafeDisabler
entities:
- - uid: 726
+ - uid: 4698
components:
- type: Transform
- pos: -41.5,55.5
+ anchored: True
+ pos: -37.5,53.5
parent: 30
-- proto: GunSafeLaserCarbine
+ - type: Physics
+ bodyType: Static
+- proto: GunSafePistolMk58
entities:
- - uid: 1942
+ - uid: 2594
components:
- type: Transform
+ anchored: True
pos: -37.5,54.5
parent: 30
+ - type: Physics
+ bodyType: Static
- proto: GunSafeRifleLecter
entities:
- - uid: 1940
+ - uid: 21165
components:
+ - type: MetaData
+ desc: A standard-issue Nanotrasen storage unit, containing 3 Lecter submachine guns.
- type: Transform
- pos: -41.5,53.5
+ anchored: True
+ pos: -42.5,53.5
parent: 30
+ - type: Physics
+ bodyType: Static
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 21283
+ - 21906
+ - 21907
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: GunSafeShotgunKammerer
+ entities:
+ - uid: 16251
+ components:
+ - type: MetaData
+ desc: A standard-issue Nanotrasen storage unit, containing 3 Kammerer shotguns.
+ - type: Transform
+ anchored: True
+ pos: -42.5,55.5
+ parent: 30
+ - type: Physics
+ bodyType: Static
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 16932
+ - 17473
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 20778
+ - uid: 18838
components:
+ - type: MetaData
+ desc: A standard-issue Nanotrasen storage unit, containing 3 Drozd submachine guns.
- type: Transform
- pos: -37.5,53.5
+ anchored: True
+ pos: -42.5,54.5
parent: 30
+ - type: Physics
+ bodyType: Static
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19841
+ - 20432
+ - 20525
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: Handcuffs
entities:
- uid: 5839
@@ -100490,10 +101228,10 @@ entities:
parent: 30
- proto: HolopadSecurityArmory
entities:
- - uid: 22935
+ - uid: 20798
components:
- type: Transform
- pos: -39.5,53.5
+ pos: -39.5,52.5
parent: 30
- uid: 22944
components:
@@ -100564,10 +101302,10 @@ entities:
parent: 30
- proto: HolopadSecurityWarden
entities:
- - uid: 22937
+ - uid: 2541
components:
- type: Transform
- pos: -40.5,47.5
+ pos: -39.5,48.5
parent: 30
- proto: HolopadServiceBar
entities:
@@ -102582,17 +103320,17 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,-7.5
parent: 30
- - uid: 1753
- components:
- - type: Transform
- pos: -33.5,37.5
- parent: 30
- uid: 7609
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -8.5,-0.5
parent: 30
+ - uid: 14249
+ components:
+ - type: Transform
+ pos: -35.5,37.5
+ parent: 30
- proto: JetpackBlueFilled
entities:
- uid: 5722
@@ -102614,15 +103352,15 @@ entities:
parent: 30
- proto: JetpackSecurityFilled
entities:
- - uid: 12815
+ - uid: 1984
components:
- type: Transform
- pos: -39.62777,56.71206
+ pos: -41.5765,56.69822
parent: 30
- - uid: 12859
+ - uid: 23165
components:
- type: Transform
- pos: -39.62777,56.71206
+ pos: -41.377563,56.522953
parent: 30
- proto: KitchenElectricGrill
entities:
@@ -102939,6 +103677,68 @@ entities:
- type: Transform
pos: -3.5786777,63.79637
parent: 30
+- proto: LockableButtonArmory
+ entities:
+ - uid: 1988
+ components:
+ - type: MetaData
+ name: Close Armory
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,50.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1943:
+ - Pressed: Close
+ 1986:
+ - Pressed: Close
+ 4788:
+ - Pressed: Close
+ 2407:
+ - Pressed: Close
+ 2006:
+ - Pressed: Close
+ 2216:
+ - Pressed: Close
+ 1753:
+ - Pressed: Close
+ 3180:
+ - Pressed: Close
+ - uid: 2578
+ components:
+ - type: MetaData
+ name: Open Armory
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,50.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1986:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 1943:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 4788:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 2407:
+ - Pressed: AutoClose
+ - Pressed: Open
+ 3180:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 1753:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 2216:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 2006:
+ - Pressed: Open
+ - Pressed: AutoClose
- proto: LockerAtmosphericsFilled
entities:
- uid: 9079
@@ -103306,98 +104106,21 @@ entities:
parent: 30
- proto: LockerEvidence
entities:
- - uid: 2248
- components:
- - type: Transform
- pos: -44.5,51.5
- parent: 30
- - 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: 2249
+ - uid: 1917
components:
- type: Transform
- pos: -44.5,52.5
+ pos: -50.5,55.5
parent: 30
- - 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: 2250
+ - uid: 1918
components:
- type: Transform
- pos: -44.5,53.5
+ pos: -52.5,55.5
parent: 30
- - 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: 2376
+ - uid: 1935
components:
- type: Transform
- pos: -44.5,56.5
+ pos: -51.5,55.5
parent: 30
- - 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: 3500
components:
- type: Transform
@@ -104055,6 +104778,16 @@ entities:
- 0
- 0
- 0
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: -31.5,56.5
+ parent: 30
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: -33.5,56.5
+ parent: 30
- uid: 2079
components:
- type: Transform
@@ -104147,31 +104880,23 @@ entities:
- 0
- 0
- 0
+ - uid: 22430
+ components:
+ - type: Transform
+ pos: -32.5,56.5
+ parent: 30
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: -34.5,56.5
+ parent: 30
- proto: LockerWardenFilled
entities:
- - uid: 2010
+ - uid: 21012
components:
- type: Transform
- pos: -44.5,49.5
+ pos: -38.5,46.5
parent: 30
- - 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: LockerWeldingSuppliesFilled
entities:
- uid: 4773
@@ -104284,6 +105009,22 @@ entities:
- type: Transform
pos: -6.5,-12.5
parent: 30
+- proto: MagazinePistolSubMachineGun
+ entities:
+ - uid: 19841
+ components:
+ - type: Transform
+ parent: 18838
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 20525
+ components:
+ - type: Transform
+ parent: 18838
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- uid: 1999
@@ -104296,6 +105037,22 @@ entities:
- type: Transform
pos: -22.54349,53.796127
parent: 30
+- proto: MagazineRifle
+ entities:
+ - uid: 21283
+ components:
+ - type: Transform
+ parent: 21165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 21906
+ components:
+ - type: Transform
+ parent: 21165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: MaintenanceFluffSpawner
entities:
- uid: 9199
@@ -106068,6 +106825,78 @@ entities:
- type: Transform
pos: 27.5,-30.5
parent: 30
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 2028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,53.5
+ parent: 30
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: -40.5,54.5
+ parent: 30
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: -39.5,54.5
+ parent: 30
+ - uid: 2592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,54.5
+ parent: 30
+ - uid: 4595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,53.5
+ parent: 30
+ - uid: 4600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,53.5
+ parent: 30
+ - uid: 4781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,54.5
+ parent: 30
+ - uid: 21013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,53.5
+ parent: 30
+- proto: PlasmaWindoorSecureArmoryLocked
+ entities:
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: -39.5,53.5
+ parent: 30
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: -40.5,53.5
+ parent: 30
+ - uid: 2407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,54.5
+ parent: 30
+ - uid: 4788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,54.5
+ parent: 30
- proto: PlasticFlapsAirtightClear
entities:
- uid: 11228
@@ -106212,16 +107041,26 @@ entities:
parent: 30
- proto: PortableFlasher
entities:
- - uid: 1917
+ - uid: 4675
components:
- type: Transform
- pos: -39.5,51.5
+ anchored: False
+ pos: -45.5,54.5
parent: 30
- - uid: 1920
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 22776
components:
- type: Transform
- pos: -39.5,49.5
+ anchored: False
+ pos: -45.5,53.5
parent: 30
+ - type: TriggerOnProximity
+ enabled: False
+ - type: Physics
+ bodyType: Dynamic
- proto: PortableGeneratorJrPacman
entities:
- uid: 11157
@@ -107414,13 +108253,6 @@ entities:
- type: Transform
pos: 12.5,-25.5
parent: 30
- - uid: 2024
- components:
- - type: Transform
- pos: -37.5,48.5
- parent: 30
- - type: Physics
- canCollide: False
- uid: 7470
components:
- type: Transform
@@ -107577,6 +108409,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -25.5,-43.5
parent: 30
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,47.5
+ parent: 30
+ - uid: 1985
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,52.5
+ parent: 30
- uid: 3203
components:
- type: Transform
@@ -107938,13 +108782,6 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4783
- components:
- - type: Transform
- pos: -43.5,49.5
- parent: 30
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4784
components:
- type: Transform
@@ -107953,14 +108790,6 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4785
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,55.5
- parent: 30
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4786
components:
- type: Transform
@@ -107969,22 +108798,6 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4787
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,51.5
- parent: 30
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 4788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,51.5
- parent: 30
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4790
components:
- type: Transform
@@ -109679,12 +110492,24 @@ entities:
parent: 30
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 22935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,55.5
+ parent: 30
- uid: 22991
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,42.5
parent: 30
+ - uid: 23164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,52.5
+ parent: 30
- proto: PoweredlightExterior
entities:
- uid: 833
@@ -111281,6 +112106,11 @@ entities:
- type: Transform
pos: -16.5,20.5
parent: 30
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -40.5,53.5
+ parent: 30
- uid: 789
components:
- type: Transform
@@ -111306,15 +112136,30 @@ entities:
- type: Transform
pos: -32.5,29.5
parent: 30
- - uid: 1939
+ - uid: 1946
components:
- type: Transform
- pos: -41.5,54.5
+ pos: -41.5,56.5
parent: 30
- - uid: 1943
+ - uid: 1978
components:
- type: Transform
- pos: -37.5,55.5
+ pos: -38.5,56.5
+ parent: 30
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 30
+ - uid: 4598
+ components:
+ - type: Transform
+ pos: -40.5,56.5
+ parent: 30
+ - uid: 5417
+ components:
+ - type: Transform
+ pos: -39.5,53.5
parent: 30
- uid: 6276
components:
@@ -111589,6 +112434,16 @@ entities:
- type: Transform
pos: 33.5,28.5
parent: 30
+ - uid: 22783
+ components:
+ - type: Transform
+ pos: -39.5,54.5
+ parent: 30
+ - uid: 22784
+ components:
+ - type: Transform
+ pos: -40.5,54.5
+ parent: 30
- proto: RadiationCollectorFullTank
entities:
- uid: 9419
@@ -113482,37 +114337,20 @@ entities:
- type: Transform
pos: -45.5,48.5
parent: 30
- - uid: 1844
- components:
- - type: Transform
- pos: -37.5,50.5
- parent: 30
- - uid: 1845
- components:
- - type: Transform
- pos: -39.5,50.5
- parent: 30
- - uid: 1846
- components:
- - type: Transform
- pos: -41.5,50.5
- parent: 30
- uid: 1879
components:
- type: Transform
pos: -34.5,55.5
parent: 30
- - uid: 1916
+ - uid: 1922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,52.5
+ pos: -26.5,59.5
parent: 30
- - uid: 1918
+ - uid: 1925
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,52.5
+ pos: -26.5,58.5
parent: 30
- uid: 1928
components:
@@ -113544,21 +114382,6 @@ entities:
- type: Transform
pos: 36.5,36.5
parent: 30
- - uid: 2041
- components:
- - type: Transform
- pos: -26.5,58.5
- parent: 30
- - uid: 2042
- components:
- - type: Transform
- pos: -26.5,59.5
- parent: 30
- - uid: 2043
- components:
- - type: Transform
- pos: -26.5,60.5
- parent: 30
- uid: 2044
components:
- type: Transform
@@ -113615,6 +114438,17 @@ entities:
- type: Transform
pos: -55.5,-10.5
parent: 30
+ - uid: 2545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,50.5
+ parent: 30
+ - uid: 2588
+ components:
+ - type: Transform
+ pos: -26.5,57.5
+ parent: 30
- uid: 3168
components:
- type: Transform
@@ -113685,11 +114519,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,28.5
parent: 30
- - uid: 5025
- components:
- - type: Transform
- pos: -39.5,52.5
- parent: 30
- uid: 5071
components:
- type: Transform
@@ -116281,6 +117110,12 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 30
+ - uid: 21015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,50.5
+ parent: 30
- uid: 21052
components:
- type: Transform
@@ -116469,6 +117304,72 @@ entities:
- type: Transform
pos: 33.5,15.5
parent: 30
+- proto: RiotBulletShield
+ entities:
+ - uid: 23152
+ components:
+ - type: Transform
+ pos: -40.217842,56.710453
+ parent: 30
+ - uid: 23153
+ components:
+ - type: Transform
+ pos: -40.2109,56.599342
+ parent: 30
+ - uid: 23154
+ components:
+ - type: Transform
+ pos: -40.20395,56.50212
+ parent: 30
+ - uid: 23155
+ components:
+ - type: Transform
+ pos: -40.20395,56.411842
+ parent: 30
+- proto: RiotLaserShield
+ entities:
+ - uid: 23156
+ components:
+ - type: Transform
+ pos: -40.731728,56.710453
+ parent: 30
+ - uid: 23157
+ components:
+ - type: Transform
+ pos: -40.731728,56.61323
+ parent: 30
+ - uid: 23158
+ components:
+ - type: Transform
+ pos: -40.731728,56.51601
+ parent: 30
+ - uid: 23159
+ components:
+ - type: Transform
+ pos: -40.731728,56.43268
+ parent: 30
+- proto: RiotShield
+ entities:
+ - uid: 23160
+ components:
+ - type: Transform
+ pos: -40.45395,56.7174
+ parent: 30
+ - uid: 23161
+ components:
+ - type: Transform
+ pos: -40.45395,56.61323
+ parent: 30
+ - uid: 23162
+ components:
+ - type: Transform
+ pos: -40.45395,56.5299
+ parent: 30
+ - uid: 23163
+ components:
+ - type: Transform
+ pos: -40.45395,56.45351
+ parent: 30
- proto: RobocopCircuitBoard
entities:
- uid: 21675
@@ -116624,16 +117525,11 @@ entities:
parent: 30
- proto: SecurityTechFab
entities:
- - uid: 1937
+ - uid: 12131
components:
- type: Transform
- pos: -39.5,54.5
+ pos: -37.5,55.5
parent: 30
- - type: MaterialStorage
- materialWhiteList:
- - Glass
- - Plastic
- - Steel
- proto: SeedExtractor
entities:
- uid: 2345
@@ -116844,7 +117740,7 @@ entities:
- uid: 1349
components:
- type: Transform
- pos: -37.50003,55.530113
+ pos: -40.438583,53.480904
parent: 30
- uid: 5030
components:
@@ -117721,31 +118617,6 @@ entities:
- Pressed: Open
988:
- Pressed: Open
- - uid: 3180
- components:
- - type: Transform
- pos: -37.5,45.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 5700:
- - Pressed: Toggle
- 5698:
- - Pressed: Toggle
- 3177:
- - Pressed: Toggle
- 3176:
- - Pressed: Toggle
- 3185:
- - Pressed: Toggle
- 3184:
- - Pressed: Toggle
- 3183:
- - Pressed: Toggle
- 3182:
- - Pressed: Toggle
- 3181:
- - Pressed: Toggle
- uid: 3189
components:
- type: MetaData
@@ -117804,18 +118675,6 @@ entities:
- Pressed: Toggle
5078:
- Pressed: Toggle
- - uid: 5417
- components:
- - type: MetaData
- name: Janitorial Service Light
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,40.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 1753:
- - Pressed: Toggle
- uid: 6868
components:
- type: Transform
@@ -117944,6 +118803,17 @@ entities:
- Pressed: Toggle
9188:
- Pressed: Toggle
+ - uid: 12859
+ components:
+ - type: MetaData
+ name: Custodial Service
+ - type: Transform
+ pos: -36.5,45.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14249:
+ - Pressed: Toggle
- uid: 16041
components:
- type: Transform
@@ -117974,34 +118844,6 @@ entities:
linkedPorts:
6415:
- Pressed: DoorBolt
- - uid: 20432
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,56.5
- parent: 30
- - type: DeviceLinkSource
- linkedPorts:
- 2189:
- - Pressed: Toggle
- 20391:
- - Pressed: Toggle
- 20401:
- - Pressed: Toggle
- 20402:
- - Pressed: Toggle
- 18840:
- - Pressed: Toggle
- 20360:
- - Pressed: Toggle
- 20389:
- - Pressed: Toggle
- 18838:
- - Pressed: Toggle
- 17473:
- - Pressed: Toggle
- 2313:
- - Pressed: Toggle
- proto: SignalSwitch
entities:
- uid: 11021
@@ -118021,8 +118863,87 @@ entities:
11015:
- On: Open
- Off: Close
+ - uid: 23173
+ components:
+ - type: MetaData
+ name: Lockdown Cells
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,46.5
+ parent: 30
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3181:
+ - On: Open
+ - Off: Close
+ 3182:
+ - On: Open
+ - Off: Close
+ 3183:
+ - On: Open
+ - Off: Close
+ 3184:
+ - On: Open
+ - Off: Close
+ 3185:
+ - On: Open
+ - Off: Close
+ 3176:
+ - On: Open
+ - Off: Close
+ 3177:
+ - On: Open
+ - Off: Close
+ 5698:
+ - On: Open
+ - Off: Close
+ 5700:
+ - On: Open
+ - Off: Close
- proto: SignalSwitchDirectional
entities:
+ - uid: 1845
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,56.5
+ parent: 30
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20391:
+ - On: Open
+ - Off: Close
+ 20401:
+ - On: Open
+ - Off: Close
+ 20402:
+ - On: Open
+ - Off: Close
+ 18840:
+ - On: Open
+ - Off: Close
+ 20360:
+ - On: Open
+ - Off: Close
+ 20389:
+ - On: Open
+ - Off: Close
+ 2584:
+ - On: Open
+ - Off: Close
+ 8060:
+ - On: Open
+ - Off: Close
+ 9292:
+ - On: Open
+ - Off: Close
+ 2189:
+ - On: Open
+ - Off: Close
- uid: 3131
components:
- type: Transform
@@ -119151,11 +120072,6 @@ entities:
parent: 30
- proto: SignSecureMedRed
entities:
- - uid: 2407
- components:
- - type: Transform
- pos: -36.5,45.5
- parent: 30
- uid: 2408
components:
- type: Transform
@@ -121479,26 +122395,46 @@ entities:
parent: 30
- proto: SpawnPointSecurityCadet
entities:
- - uid: 20798
+ - uid: 1936
components:
- type: Transform
pos: -31.5,57.5
parent: 30
- - uid: 20799
+ - uid: 14435
components:
- type: Transform
- pos: -34.5,57.5
+ pos: -31.5,59.5
parent: 30
- - uid: 20891
+ - uid: 20531
components:
- type: Transform
pos: -32.5,57.5
parent: 30
- - uid: 20892
+ - uid: 20573
components:
- type: Transform
pos: -33.5,57.5
parent: 30
+ - uid: 20778
+ components:
+ - type: Transform
+ pos: -34.5,57.5
+ parent: 30
+ - uid: 21908
+ components:
+ - type: Transform
+ pos: -34.5,59.5
+ parent: 30
+ - uid: 22809
+ components:
+ - type: Transform
+ pos: -32.5,59.5
+ parent: 30
+ - uid: 22811
+ components:
+ - type: Transform
+ pos: -33.5,59.5
+ parent: 30
- proto: SpawnPointSecurityOfficer
entities:
- uid: 2224
@@ -121521,6 +122457,26 @@ entities:
- type: Transform
pos: -31.5,59.5
parent: 30
+ - uid: 15280
+ components:
+ - type: Transform
+ pos: -34.5,57.5
+ parent: 30
+ - uid: 16243
+ components:
+ - type: Transform
+ pos: -32.5,57.5
+ parent: 30
+ - uid: 16244
+ components:
+ - type: Transform
+ pos: -33.5,57.5
+ parent: 30
+ - uid: 22810
+ components:
+ - type: Transform
+ pos: -31.5,57.5
+ parent: 30
- proto: SpawnPointServiceWorker
entities:
- uid: 20889
@@ -122202,48 +123158,6 @@ entities:
- type: Transform
pos: 36.5,7.5
parent: 30
-- proto: Stunbaton
- entities:
- - uid: 2030
- components:
- - type: Transform
- pos: -41.61499,49.505306
- parent: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot {}
- - uid: 2031
- components:
- - type: Transform
- pos: -41.39624,49.48968
- parent: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot {}
- - uid: 2097
- components:
- - type: Transform
- pos: -33.61344,56.52216
- parent: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot {}
- - uid: 2098
- components:
- - type: Transform
- pos: -33.472816,56.52216
- parent: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot {}
- - uid: 2099
- components:
- - type: Transform
- pos: -33.30094,56.506535
- parent: 30
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot {}
- proto: SubstationBasic
entities:
- uid: 1414
@@ -122483,68 +123397,32 @@ entities:
parent: 30
- proto: SuitStorageSec
entities:
- - uid: 774
+ - uid: 20799
components:
- type: Transform
- pos: -38.5,56.5
+ pos: -37.5,51.5
parent: 30
- - 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
- - uid: 782
+ - uid: 22785
components:
- type: Transform
- pos: -40.5,56.5
+ pos: -42.5,51.5
parent: 30
- - 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
- - uid: 1990
+ - uid: 22786
components:
- type: Transform
- pos: -37.5,51.5
+ pos: -42.5,52.5
parent: 30
- - uid: 2028
+ - uid: 23133
components:
- type: Transform
- pos: -41.5,51.5
+ pos: -37.5,52.5
parent: 30
- proto: SuitStorageWarden
entities:
- - uid: 5052
+ - uid: 2010
components:
- type: Transform
- pos: -38.5,46.5
+ pos: -37.5,46.5
parent: 30
- proto: SurveillanceCameraCommand
entities:
@@ -123922,7 +124800,7 @@ entities:
parent: 30
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 1946
+ - uid: 1940
components:
- type: Transform
pos: -37.5,56.5
@@ -124061,28 +124939,39 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Sec Perma Corridor
- - uid: 10190
+ - uid: 4681
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,56.5
parent: 30
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory Space View
- - uid: 21165
+ id: Armory
+ - uid: 4752
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -39.5,56.5
+ pos: -42.5,49.5
parent: 30
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory
+ id: Warden's Office
+ - uid: 10190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,65.5
+ parent: 30
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory Space View
- uid: 21166
components:
- type: Transform
@@ -124212,17 +125101,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Sec Med Office
- - uid: 21283
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,49.5
- parent: 30
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- uid: 21284
components:
- type: Transform
@@ -124731,31 +125609,11 @@ entities:
- type: Transform
pos: -37.5,49.5
parent: 30
- - uid: 2023
- components:
- - type: Transform
- pos: -41.5,49.5
- parent: 30
- uid: 2065
components:
- type: Transform
pos: -38.5,60.5
parent: 30
- - uid: 2074
- components:
- - type: Transform
- pos: -33.5,56.5
- parent: 30
- - uid: 2075
- components:
- - type: Transform
- pos: -32.5,56.5
- parent: 30
- - uid: 2076
- components:
- - type: Transform
- pos: -31.5,56.5
- parent: 30
- uid: 2103
components:
- type: Transform
@@ -124856,11 +125714,6 @@ entities:
- type: Transform
pos: -44.5,58.5
parent: 30
- - uid: 2424
- components:
- - type: Transform
- pos: -51.5,55.5
- parent: 30
- uid: 3130
components:
- type: Transform
@@ -126097,14 +126950,10 @@ entities:
- type: Transform
pos: -42.5,45.5
parent: 30
- - uid: 1935
- components:
- - type: Transform
- pos: -39.5,56.5
- parent: 30
- - uid: 2011
+ - uid: 1989
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -44.5,46.5
parent: 30
- uid: 4357
@@ -126382,11 +127231,6 @@ entities:
- type: Transform
pos: -33.5,58.5
parent: 30
- - uid: 2251
- components:
- - type: Transform
- pos: -44.5,54.5
- parent: 30
- uid: 21467
components:
- type: Transform
@@ -127133,6 +127977,8 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,59.5
parent: 30
+ - type: DamagePopup
+ damagePopupType: Total
- proto: TegCenter
entities:
- uid: 9817
@@ -127158,6 +128004,13 @@ entities:
parent: 30
- type: PointLight
color: '#FF3300FF'
+- proto: TelecomServer
+ entities:
+ - uid: 20892
+ components:
+ - type: Transform
+ pos: -42.5,56.5
+ parent: 30
- proto: TelecomServerFilledCargo
entities:
- uid: 10551
@@ -128177,6 +129030,13 @@ entities:
- type: Transform
pos: -38.5,-5.5
parent: 30
+- proto: VendingMachineDonut
+ entities:
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: -30.5,54.5
+ parent: 30
- proto: VendingMachineEngiDrobe
entities:
- uid: 19406
@@ -128311,6 +129171,11 @@ entities:
- type: Transform
pos: -29.5,60.5
parent: 30
+ - uid: 22808
+ components:
+ - type: Transform
+ pos: -30.5,60.5
+ parent: 30
- proto: VendingMachineSecDrobe
entities:
- uid: 2078
@@ -129601,11 +130466,6 @@ entities:
- type: Transform
pos: -42.5,50.5
parent: 30
- - uid: 1854
- components:
- - type: Transform
- pos: -36.5,49.5
- parent: 30
- uid: 1855
components:
- type: Transform
@@ -129676,36 +130536,6 @@ entities:
- type: Transform
pos: -42.5,57.5
parent: 30
- - uid: 1893
- components:
- - type: Transform
- pos: -42.5,56.5
- parent: 30
- - uid: 1894
- components:
- - type: Transform
- pos: -42.5,55.5
- parent: 30
- - uid: 1895
- components:
- - type: Transform
- pos: -42.5,54.5
- parent: 30
- - uid: 1896
- components:
- - type: Transform
- pos: -42.5,53.5
- parent: 30
- - uid: 1897
- components:
- - type: Transform
- pos: -42.5,52.5
- parent: 30
- - uid: 1898
- components:
- - type: Transform
- pos: -42.5,51.5
- parent: 30
- uid: 1899
components:
- type: Transform
@@ -129716,11 +130546,6 @@ entities:
- type: Transform
pos: -43.5,52.5
parent: 30
- - uid: 1901
- components:
- - type: Transform
- pos: -43.5,53.5
- parent: 30
- uid: 1902
components:
- type: Transform
@@ -129751,11 +130576,21 @@ entities:
- type: Transform
pos: -42.5,58.5
parent: 30
+ - uid: 1916
+ components:
+ - type: Transform
+ pos: -26.5,60.5
+ parent: 30
- uid: 1952
components:
- type: Transform
pos: -51.5,-65.5
parent: 30
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: -44.5,54.5
+ parent: 30
- uid: 2034
components:
- type: Transform
@@ -129781,11 +130616,6 @@ entities:
- type: Transform
pos: -26.5,61.5
parent: 30
- - uid: 2039
- components:
- - type: Transform
- pos: -26.5,57.5
- parent: 30
- uid: 2067
components:
- type: Transform
@@ -130156,6 +130986,12 @@ entities:
- type: Transform
pos: -51.5,6.5
parent: 30
+ - uid: 2543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,50.5
+ parent: 30
- uid: 3153
components:
- type: Transform
@@ -130227,6 +131063,16 @@ entities:
- type: Transform
pos: 41.5,20.5
parent: 30
+ - uid: 4602
+ components:
+ - type: Transform
+ pos: -44.5,51.5
+ parent: 30
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: -44.5,56.5
+ parent: 30
- uid: 4730
components:
- type: Transform
@@ -137560,6 +138406,33 @@ entities:
- type: Transform
pos: -44.5,73.5
parent: 30
+ - uid: 22779
+ components:
+ - type: Transform
+ pos: -44.5,52.5
+ parent: 30
+ - uid: 22780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,49.5
+ parent: 30
+ - uid: 22787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,53.5
+ parent: 30
+ - uid: 22805
+ components:
+ - type: Transform
+ pos: -44.5,55.5
+ parent: 30
+ - uid: 23169
+ components:
+ - type: Transform
+ pos: -44.5,53.5
+ parent: 30
- proto: WallSolid
entities:
- uid: 3
@@ -139362,6 +140235,12 @@ entities:
- type: Transform
pos: -12.5,0.5
parent: 30
+ - uid: 2075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,55.5
+ parent: 30
- uid: 2211
components:
- type: Transform
@@ -139387,11 +140266,6 @@ entities:
- type: Transform
pos: -49.5,55.5
parent: 30
- - uid: 2216
- components:
- - type: Transform
- pos: -44.5,55.5
- parent: 30
- uid: 2217
components:
- type: Transform
@@ -143671,29 +144545,6 @@ entities:
- 0
- proto: WardrobeSecurityFilled
entities:
- - uid: 2083
- components:
- - type: Transform
- pos: -30.5,60.5
- parent: 30
- - 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: 6754
components:
- type: Transform
@@ -143803,6 +144654,11 @@ entities:
- type: Transform
pos: -23.5,15.5
parent: 30
+ - uid: 4782
+ components:
+ - type: Transform
+ pos: -28.5,48.5
+ parent: 30
- uid: 11611
components:
- type: Transform
@@ -143991,34 +144847,44 @@ entities:
parent: 30
- type: Physics
canCollide: False
-- proto: WeaponDisabler
+- proto: WeaponDisablerPractice
entities:
- - uid: 1563
+ - uid: 19811
components:
- type: Transform
- pos: -32.77784,56.587643
+ pos: -38.42729,60.595303
parent: 30
- - uid: 1989
+- proto: WeaponLaserCarbine
+ entities:
+ - uid: 2560
components:
- type: Transform
- pos: -32.762215,56.697018
+ pos: -39.548477,54.613476
parent: 30
- - uid: 1991
+ - uid: 2577
components:
- type: Transform
- pos: -32.77784,56.462643
+ pos: -40.451256,54.49542
parent: 30
- - uid: 2029
+ - uid: 4751
components:
- type: Transform
- pos: -41.54827,49.578175
+ pos: -39.53459,54.377365
parent: 30
-- proto: WeaponDisablerPractice
- entities:
- - uid: 19811
+ - uid: 4787
components:
- type: Transform
- pos: -38.42729,60.595303
+ pos: -40.4582,54.60653
+ parent: 30
+ - uid: 6584
+ components:
+ - type: Transform
+ pos: -40.43737,54.377365
+ parent: 30
+ - uid: 22782
+ components:
+ - type: Transform
+ pos: -39.541534,54.49542
parent: 30
- proto: WeaponLaserCarbinePractice
entities:
@@ -144027,32 +144893,33 @@ entities:
- type: Transform
pos: -38.316597,60.345554
parent: 30
-- proto: WeaponShotgunKammerer
+- proto: WeaponRifleLecter
entities:
- - uid: 1978
- components:
- - type: Transform
- pos: -41.42977,54.350964
- parent: 30
- - type: BallisticAmmoProvider
- unspawnedCount: 4
- - uid: 1979
+ - uid: 21907
components:
- type: Transform
- pos: -41.42977,54.507214
- parent: 30
- - type: BallisticAmmoProvider
- unspawnedCount: 4
- - uid: 9292
+ parent: 21165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponShotgunKammerer
+ entities:
+ - uid: 17473
components:
- type: Transform
- pos: -41.445473,54.20003
- parent: 30
- - uid: 22538
+ parent: 16251
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponSubMachineGunDrozd
+ entities:
+ - uid: 20432
components:
- type: Transform
- pos: -41.445473,54.621906
- parent: 30
+ parent: 18838
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: WeaponSubMachineGunWt550
entities:
- uid: 2000
@@ -144260,15 +145127,25 @@ entities:
parent: 30
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 1914
+ - uid: 1753
components:
- type: Transform
- pos: -40.5,50.5
+ pos: -40.5,56.5
parent: 30
- - uid: 1915
+ - uid: 2006
components:
- type: Transform
- pos: -38.5,50.5
+ pos: -38.5,56.5
+ parent: 30
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: -39.5,56.5
+ parent: 30
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: -41.5,56.5
parent: 30
- uid: 4450
components:
@@ -145115,12 +145992,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,58.5
parent: 30
+ - uid: 1953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,56.5
+ parent: 30
- uid: 1977
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 43.5,40.5
parent: 30
+ - uid: 1987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,56.5
+ parent: 30
- uid: 2063
components:
- type: Transform
diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml
index 321ccf8ea7aa..8751b9c70488 100644
--- a/Resources/Maps/meta.yml
+++ b/Resources/Maps/meta.yml
@@ -131,7 +131,7 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: HQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAADTQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACHQAAAAACTQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAWQAAAAADWQAAAAACFAAAAAAAdgAAAAABWQAAAAACWQAAAAADdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAYgAAAAACYgAAAAABYgAAAAAAeQAAAAAAWQAAAAAAWQAAAAABFAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAWQAAAAACWQAAAAAB
+ tiles: HQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAADTQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACHQAAAAACTQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACFAAAAAAAdgAAAAABWQAAAAACWQAAAAADdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABFAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAB
version: 6
2,-2:
ind: 2,-2
@@ -187,7 +187,7 @@ entities:
version: 6
3,0:
ind: 3,0
- tiles: eQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYgAAAAABYgAAAAABYgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA
+ tiles: eQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAACYgAAAAADeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAYgAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAYgAAAAAAYgAAAAAAaQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAYgAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAACTAAAAAAATAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAABWQAAAAABTAAAAAAATAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAA
version: 6
-3,-2:
ind: -3,-2
@@ -207,7 +207,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,1:
ind: 1,1
@@ -235,7 +235,7 @@ entities:
version: 6
1,3:
ind: 1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABLwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABCQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
@@ -243,23 +243,23 @@ entities:
version: 6
2,1:
ind: 2,1
- tiles: eQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAYgAAAAABYgAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAYgAAAAADYgAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAYgAAAAACYgAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABdgAAAAAAdgAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAdgAAAAAAdgAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: WQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAADWQAAAAACTAAAAAAATAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADTAAAAAAATAAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACHQAAAAAAHQAAAAACeQAAAAAADAAAAAACeQAAAAAAeQAAAAAAeQAAAAAADAAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -271,11 +271,11 @@ entities:
version: 6
0,-3:
ind: 0,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: HQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,4:
ind: -3,4
@@ -291,7 +291,7 @@ entities:
version: 6
4,-2:
ind: 4,-2
- tiles: eAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADYAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAADWQAAAAADYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACYAAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACaAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
version: 6
3,-3:
ind: 3,-3
@@ -311,19 +311,19 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
4,1:
ind: 4,1
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: eAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-3:
ind: -2,-3
@@ -331,11 +331,11 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA
+ tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA
version: 6
-1,-4:
ind: -1,-4
@@ -347,15 +347,15 @@ entities:
version: 6
-3,-4:
ind: -3,-4
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-3:
ind: -5,-3
@@ -363,7 +363,7 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-5:
ind: -2,-5
@@ -371,15 +371,15 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACaQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-5:
ind: -1,-5
@@ -387,7 +387,7 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
2,-4:
ind: 2,-4
@@ -395,19 +395,15 @@ entities:
version: 6
2,-5:
ind: 2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
- version: 6
- 1,-6:
- ind: 1,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
5,-1:
ind: 5,-1
@@ -447,7 +443,7 @@ entities:
version: 6
5,1:
ind: 5,1
- tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-2:
ind: 5,-2
@@ -517,6 +513,10 @@ entities:
4322: -36,35
4323: -34.550133,34.999542
4334: -28,7
+ 6416: 62,6
+ 6417: 62,5
+ 6418: 62,4
+ 6548: 71,20
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -526,6 +526,16 @@ entities:
4324: -33.008163,30.019304
4339: -28.994226,4.423004
6060: 71,-35
+ 6545: 70,21
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 6413: 64,6
+ 6414: 64,5
+ 6415: 64,4
+ 6546: 69,20
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -534,6 +544,7 @@ entities:
4325: -32,33
5105: -42,6
6061: 69,-37
+ 6547: 70,19
- node:
color: '#FFFFFFFF'
id: Bot
@@ -592,11 +603,6 @@ entities:
1789: -12,-71
1790: -10,-71
1791: -4,-71
- 3200: 53,19
- 3203: 56,24
- 3252: 48,18
- 3258: 45,16
- 3259: 45,17
3261: 49,9
3515: 62,-1
3708: 61,6
@@ -606,9 +612,6 @@ entities:
3741: 61,5
3742: 61,4
3746: 65,5
- 3858: 55,7
- 3859: 54,7
- 3860: 53,7
3861: 49,7
3986: -14,-39
3998: -29,-44
@@ -639,6 +642,7 @@ entities:
5056: -17,48
5128: -21,27
5129: -27,28
+ 5271: -10,36
5272: -10,37
5273: -6,39
5274: -7,36
@@ -654,6 +658,7 @@ entities:
5376: 0,37
5377: 0,38
5378: 0,39
+ 5379: 0,40
5387: -4,39
5444: -38,11
5445: -39,10
@@ -673,7 +678,29 @@ entities:
5996: 11,-35
5997: 13,-35
5999: 11,-36
- 6173: -8,36
+ 6339: 48,18
+ 6410: 57,9
+ 6411: 61,9
+ 6412: 65,9
+ 6481: 53,7
+ 6482: 54,7
+ 6483: 55,7
+ 6492: 49,11
+ 6493: -4,42
+ 6516: 74,3
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 6443: 53,21
+ 6444: 53,19
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 6387: 46,12
- node:
color: '#FFFFFFFF'
id: BotGreyscale
@@ -711,6 +738,10 @@ entities:
6134: 6,-52
6135: 6,-51
6136: 6,-50
+ 6381: 69,-26
+ 6382: 70,-26
+ 6383: 72,-26
+ 6384: 73,-26
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -747,6 +778,14 @@ entities:
3985: -15,-39
4531: 22,-31
5744: 24,-33
+ 6549: -19,-16
+ 6550: -19,-17
+ 6551: -19,-11
+ 6552: -19,-12
+ 6553: -15,-11
+ 6554: -15,-12
+ 6556: -15,-15
+ 6557: -15,-13
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
@@ -772,22 +811,19 @@ entities:
4382: 66,12
5012: -47,-8
5749: 23,-32
- 6055: 72,-27
- 6056: 71,-27
- 6057: 70,-27
6059: 77,-31
- 6180: 69,28
- 6181: 71,28
- 6182: 71,12
- 6183: 69,12
- 6184: 66,24
- 6185: 74,24
- 6186: 74,16
- 6187: 66,16
- 6188: 69,19
- 6189: 69,21
- 6190: 71,21
- 6191: 71,19
+ 6222: 47,19
+ 6223: 46,19
+ 6404: 56,30
+ 6405: 55,30
+ 6527: 69,28
+ 6528: 71,28
+ 6529: 71,12
+ 6530: 69,12
+ 6532: 66,16
+ 6533: 66,24
+ 6534: 74,24
+ 6535: 74,16
- node:
color: '#DE3A3A96'
id: BrickCornerOverlayNE
@@ -844,6 +880,26 @@ entities:
id: BrickLineOverlayW
decals:
5397: -19,28
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 6489: 59,5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 6486: 57,5
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 6484: 59,3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 6485: 57,3
- node:
color: '#FFFFFFFF'
id: BrickTileDarkEndE
@@ -902,8 +958,8 @@ entities:
decals:
5292: -10,45
5305: -4,45
+ 5366: 0,40
5382: -4,40
- 6172: 0,40
- node:
color: '#DE3A3A96'
id: BrickTileSteelCornerSe
@@ -1041,6 +1097,16 @@ entities:
id: BrickTileWhiteCornerNe
decals:
3483: 55,5
+ - node:
+ color: '#EFDF4193'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 6403: 56,30
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 6292: 56,16
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerNe
@@ -1077,6 +1143,11 @@ entities:
id: BrickTileWhiteCornerNw
decals:
3479: 49,5
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 6361: 49,25
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerNw
@@ -1104,6 +1175,17 @@ entities:
id: BrickTileWhiteCornerSe
decals:
5416: -6,31
+ - node:
+ zIndex: 1
+ color: '#EFDF4193'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 6390: 56,24
+ - node:
+ color: '#EFE94193'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 6450: 67,7
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerSe
@@ -1143,6 +1225,18 @@ entities:
id: BrickTileWhiteCornerSw
decals:
3470: 49,-4
+ - node:
+ zIndex: 1
+ color: '#EFE74193'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 6491: 49,11
+ - node:
+ zIndex: 1
+ color: '#EFE94193'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 6437: 53,7
- node:
color: '#FFFF0085'
id: BrickTileWhiteCornerSw
@@ -1178,6 +1272,11 @@ entities:
4855: -12,34
5407: -2,34
5415: 2,33
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 6272: 50,8
- node:
color: '#52B4E996'
id: BrickTileWhiteInnerNw
@@ -1197,6 +1296,11 @@ entities:
decals:
4860: -14,35
5406: -4,34
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 6325: 54,25
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSe
@@ -1209,6 +1313,11 @@ entities:
decals:
2969: -2,-67
5417: -6,32
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 6273: 50,8
- node:
color: '#D381C996'
id: BrickTileWhiteInnerSw
@@ -1314,6 +1423,29 @@ entities:
3487: 55,1
3488: 55,0
3489: 55,-1
+ 6270: 50,7
+ 6271: 50,9
+ - node:
+ color: '#EFDF4193'
+ id: BrickTileWhiteLineE
+ decals:
+ 6402: 56,28
+ - node:
+ zIndex: 1
+ color: '#EFDF4193'
+ id: BrickTileWhiteLineE
+ decals:
+ 6391: 56,25
+ 6392: 56,26
+ 6393: 56,27
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteLineE
+ decals:
+ 6288: 56,12
+ 6289: 56,13
+ 6290: 56,14
+ 6291: 56,15
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineE
@@ -1412,6 +1544,30 @@ entities:
3481: 52,5
3482: 53,5
3714: 54,5
+ 6275: 51,8
+ - node:
+ zIndex: 1
+ color: '#EFDF4193'
+ id: BrickTileWhiteLineN
+ decals:
+ 6396: 55,30
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteLineN
+ decals:
+ 6293: 55,16
+ 6294: 54,16
+ 6322: 51,25
+ 6323: 52,25
+ 6324: 53,25
+ 6336: 48,18
+ 6337: 47,18
+ 6338: 46,18
+ - node:
+ color: '#EFEE4193'
+ id: BrickTileWhiteLineN
+ decals:
+ 6407: 56,22
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineN
@@ -1483,7 +1639,6 @@ entities:
5841: 6,-41
5842: 5,-41
5843: 4,-41
- 5844: 2,-41
5845: 1,-41
5846: 0,-41
5859: 28,-41
@@ -1500,6 +1655,7 @@ entities:
5945: 24,-44
5946: 25,-44
5975: 17,-32
+ 6517: 3,-41
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
@@ -1527,6 +1683,53 @@ entities:
id: BrickTileWhiteLineS
decals:
3471: 50,-4
+ 6274: 51,8
+ - node:
+ zIndex: 1
+ color: '#EFDF4193'
+ id: BrickTileWhiteLineS
+ decals:
+ 6388: 54,24
+ 6389: 55,24
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteLineS
+ decals:
+ 6284: 52,11
+ 6285: 53,11
+ 6286: 54,11
+ 6287: 55,11
+ 6314: 48,13
+ 6330: 56,11
+ 6334: 47,13
+ 6335: 46,13
+ 6490: 51,11
+ - node:
+ color: '#EFE94193'
+ id: BrickTileWhiteLineS
+ decals:
+ 6424: 56,7
+ 6425: 57,7
+ 6426: 59,7
+ 6427: 60,7
+ 6428: 61,7
+ 6429: 62,7
+ 6430: 63,7
+ 6431: 64,7
+ 6432: 65,7
+ 6433: 66,7
+ - node:
+ zIndex: 1
+ color: '#EFE94193'
+ id: BrickTileWhiteLineS
+ decals:
+ 6435: 55,7
+ 6436: 54,7
+ - node:
+ color: '#EFEE4193'
+ id: BrickTileWhiteLineS
+ decals:
+ 6408: 56,18
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineS
@@ -1644,6 +1847,22 @@ entities:
3476: 49,1
3477: 49,2
3478: 49,4
+ 6267: 50,7
+ 6268: 50,8
+ 6269: 50,9
+ - node:
+ color: '#EFE74193'
+ id: BrickTileWhiteLineW
+ decals:
+ 6313: 49,12
+ 6318: 49,19
+ 6319: 49,20
+ 6326: 54,26
+ 6327: 54,27
+ 6328: 54,28
+ 6329: 54,29
+ 6342: 54,30
+ 6355: 49,21
- node:
color: '#FFFF0085'
id: BrickTileWhiteLineW
@@ -1749,6 +1968,12 @@ entities:
5054: -17,47
5098: -38,5
5279: -7,34
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 6171: 46,16
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -1784,36 +2009,22 @@ entities:
color: '#D4D4D428'
id: CheckerNESW
decals:
- 3291: 50,15
- 3292: 50,16
- 3293: 50,17
- 3294: 51,15
- 3295: 51,16
- 3296: 51,17
3297: 51,18
3298: 50,18
3299: 50,19
3300: 51,19
3301: 50,20
3302: 51,20
- 3303: 51,21
3304: 50,21
- 3305: 51,22
3306: 50,22
- 3307: 50,23
3308: 51,23
3309: 51,24
3310: 50,24
3311: 50,25
3312: 51,25
- 3313: 50,14
- 3314: 51,14
3315: 51,13
3316: 50,13
3317: 50,12
- 3318: 51,12
- 3319: 51,11
- 3320: 50,11
3321: 52,15
3322: 53,15
3323: 54,15
@@ -1822,8 +2033,6 @@ entities:
3326: 56,14
3327: 56,13
3328: 56,12
- 3329: 56,11
- 3333: 52,11
3334: 52,25
3335: 53,25
3336: 54,25
@@ -1831,7 +2040,6 @@ entities:
3338: 54,27
3339: 54,28
3340: 54,29
- 3341: 54,30
3342: 55,25
3343: 55,26
3344: 55,27
@@ -2001,14 +2209,6 @@ entities:
3196: 57,24
3197: 57,25
3198: 57,26
- 3207: 53,17
- 3208: 53,18
- 3209: 53,22
- 3210: 53,23
- 3253: 47,18
- 3254: 46,18
- 3256: 45,15
- 3257: 45,18
3451: 54,-4
3452: 55,-4
3453: 53,-4
@@ -2051,6 +2251,10 @@ entities:
5266: -6,36
5267: -6,37
5268: -6,38
+ 5269: -6,40
+ 5270: -7,40
+ 5277: -9,36
+ 5278: -8,36
5283: -7,42
5284: -6,42
5285: -6,46
@@ -2077,10 +2281,15 @@ entities:
6142: 35,-12
6143: 19,-8
6144: 29,0
- 6174: -7,40
- 6175: -6,40
- 6176: -9,36
- 6177: -10,36
+ 6172: 45,17
+ 6173: 45,16
+ 6174: 45,15
+ 6197: 48,24
+ 6198: 48,23
+ 6199: 48,22
+ 6367: 72,-29
+ 6368: 71,-29
+ 6369: 70,-29
- node:
color: '#52B4E996'
id: DeliveryGreyscale
@@ -2094,6 +2303,8 @@ entities:
decals:
6094: 42,-28
6095: 42,-29
+ 6379: 73,-28
+ 6380: 69,-28
- node:
cleanable: True
color: '#A4610696'
@@ -2104,12 +2315,6 @@ entities:
1362: -13,-50
1363: -15,-49
1364: -15,-47
- - node:
- cleanable: True
- color: '#FFFFFFFF'
- id: Dirt
- decals:
- 3419: 58,3
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -2166,6 +2371,7 @@ entities:
5626: 11,-24
5627: 12,-26
5628: 13,-27
+ 6353: 48,14
- node:
color: '#FFFFFFFF'
id: DirtHeavyMonotile
@@ -2268,24 +2474,15 @@ entities:
1357: -15,-50
1359: -13,-51
3362: 51,18
- 3363: 52,17
3364: 50,18
3365: 50,19
3366: 50,20
3367: 51,20
3368: 50,21
3369: 50,22
- 3370: 51,22
- 3371: 52,20
- 3372: 52,19
- 3374: 52,21
- 3375: 52,21
- 3376: 56,19
- 3377: 56,18
3378: 54,20
3379: 55,19
3380: 55,20
- 3381: 56,19
3382: 55,25
3383: 54,26
3384: 55,27
@@ -2295,27 +2492,14 @@ entities:
3388: 55,27
3389: 56,26
3390: 49,16
- 3391: 50,15
- 3392: 50,16
- 3393: 51,15
- 3394: 51,17
- 3395: 52,16
3396: 52,15
- 3397: 50,14
- 3398: 48,15
3399: 49,12
3400: 50,12
- 3401: 51,11
3402: 48,8
3403: 49,8
- 3404: 50,9
3406: 47,9
3407: 46,10
- 3408: 45,16
- 3409: 45,17
- 3410: 44,15
3411: 43,14
- 3412: 51,14
3718: 57,8
3722: 53,9
3723: 63,8
@@ -2363,6 +2547,9 @@ entities:
5638: 12,-27
5639: 11,-27
5640: 10,-27
+ 6346: 48,16
+ 6347: 47,16
+ 6348: 47,14
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -2400,21 +2587,15 @@ entities:
595: -26,22
613: -19,12
1358: -9,-51
- 3348: 50,11
3349: 49,15
- 3350: 51,16
3351: 52,14
3352: 53,12
3353: 54,13
- 3354: 51,16
3355: 51,19
- 3356: 51,21
- 3357: 52,18
3358: 49,22
3359: 51,24
3360: 54,25
3361: 55,26
- 3719: 55,7
3890: -16,5
3893: -43,-7
3897: -40,-9
@@ -2445,6 +2626,11 @@ entities:
5629: 13,-26
5630: 12,-24
5631: 10,-25
+ 6349: 46,17
+ 6350: 46,16
+ 6351: 46,14
+ 6352: 47,13
+ 6354: 47,15
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
@@ -2588,14 +2774,8 @@ entities:
color: '#D4D4D409'
id: FullTileOverlayGreyscale
decals:
- 3420: 48,14
3421: 47,16
- 3422: 49,18
- 3423: 49,21
- 3424: 49,21
- 3425: 52,24
3426: 56,26
- 3427: 56,28
3428: 56,29
3429: 55,12
3430: 54,12
@@ -2604,7 +2784,6 @@ entities:
3433: 52,14
3434: 52,14
3435: 52,12
- 3436: 48,14
3437: 47,14
3438: 47,13
- node:
@@ -3384,6 +3563,16 @@ entities:
id: MiniTileSteelLineW
decals:
3059: 32,-19
+ - node:
+ color: '#EFE74193'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 6317: 49,18
+ - node:
+ color: '#EFE74193'
+ id: MiniTileWhiteInnerSw
+ decals:
+ 6315: 49,13
- node:
color: '#D4D4D412'
id: PavementCheckerAOverlay
@@ -4750,14 +4939,14 @@ entities:
3544: 74,-33
3824: 101,4
5264: -7,39
- 6195: 75,6
+ 6513: 73,6
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
3825: 107,4
5265: -9,39
- 6194: 70,6
+ 6509: 69,6
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -4766,7 +4955,7 @@ entities:
3822: 101,12
3826: 102,2
5263: -7,37
- 6193: 75,3
+ 6512: 73,3
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
@@ -4774,32 +4963,52 @@ entities:
3823: 107,12
3827: 106,2
5258: -9,37
- 6192: 70,3
+ 6508: 69,3
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
900: -13,10
- 3276: 42,15
3557: 74,-38
5096: -39,5
- 6048: 69,-28
+ 6214: 47,21
+ 6423: 61,9
+ 6441: 53,19
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 6400: 56,28
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
899: -9,10
1446: -65,-42
- 3275: 44,15
- 3450: 46,14
- 6047: 73,-28
+ 6332: 55,30
+ 6422: 65,9
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 6357: 49,21
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
1798: -5,-72
- 3445: 49,11
- 6049: 69,-26
+ 6442: 53,21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 6359: 47,25
+ 6378: 69,-28
+ 6401: 56,30
+ 6452: 66,7
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -4807,8 +5016,13 @@ entities:
1796: -9,-72
1797: -3,-72
1800: 0,-73
- 3442: 51,11
- 6046: 73,-26
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 6360: 49,25
+ 6377: 73,-28
- node:
color: '#334E6DC8'
id: WarnFullGreyscale
@@ -4832,7 +5046,6 @@ entities:
color: '#D381C996'
id: WarnFullGreyscale
decals:
- 5754: 23,-37
5978: 15,-31
- node:
color: '#DE3A3A96'
@@ -4860,9 +5073,6 @@ entities:
1755: 34,-56
1756: 34,-55
1757: 34,-54
- 3269: 42,16
- 3270: 42,17
- 3271: 42,18
3540: 74,-37
3542: 74,-35
3543: 74,-34
@@ -4900,11 +5110,21 @@ entities:
5953: 16,-62
5954: 16,-61
5955: 16,-60
- 6050: 69,-27
6080: 64,-24
6081: 64,-25
- 6202: 75,5
- 6203: 75,4
+ 6182: 42,18
+ 6183: 42,17
+ 6184: 42,16
+ 6185: 42,15
+ 6186: 42,14
+ 6211: 47,24
+ 6212: 47,23
+ 6213: 47,22
+ 6341: 56,11
+ 6397: 56,29
+ 6438: 53,20
+ 6514: 73,5
+ 6515: 73,4
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
@@ -4955,6 +5175,12 @@ entities:
5302: -6,44
5335: 2,38
5351: 14,37
+ - node:
+ zIndex: 1
+ color: '#EFE74193'
+ id: WarnLineGreyscaleE
+ decals:
+ 6459: 67,8
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleE
@@ -5000,10 +5226,10 @@ entities:
5365: 6,33
5402: -18,25
- node:
- color: '#FFFF0085'
+ color: '#EFE74193'
id: WarnLineGreyscaleN
decals:
- 3249: 56,22
+ 6362: 50,25
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
@@ -5038,12 +5264,12 @@ entities:
decals:
4530: 14,-46
5664: 6,-27
- 5871: 3,-41
5875: 24,-41
5876: 29,-41
5877: 16,-41
5878: 10,-41
5879: 8,-41
+ 6518: 2,-41
- node:
color: '#DE3A3A96'
id: WarnLineGreyscaleS
@@ -5060,12 +5286,23 @@ entities:
5434: 2,31
5435: 0,31
5436: -3,32
+ - node:
+ zIndex: 1
+ color: '#EFE74193'
+ id: WarnLineGreyscaleS
+ decals:
+ 6456: 58,7
+ - node:
+ zIndex: 1
+ color: '#EFE941FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 6454: 50,11
- node:
color: '#FFFF0085'
id: WarnLineGreyscaleS
decals:
3231: 50,27
- 3247: 56,18
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleW
@@ -5105,6 +5342,12 @@ entities:
4870: -14,45
5304: -4,44
5334: 4,38
+ - node:
+ zIndex: 1
+ color: '#EFE74193'
+ id: WarnLineGreyscaleW
+ decals:
+ 6457: 53,8
- node:
color: '#FFFF0085'
id: WarnLineGreyscaleW
@@ -5137,7 +5380,6 @@ entities:
2744: -30,-26
2745: -29,-26
2746: -28,-26
- 3440: 50,11
3635: -28,1
3636: -27,1
4384: -54,2
@@ -5164,16 +5406,28 @@ entities:
5990: 12,-33
5991: 13,-33
5992: 14,-33
- 6043: 72,-26
- 6044: 71,-26
- 6045: 70,-26
6076: 47,-29
6077: 46,-29
6100: 45,-29
6165: 71,3
6166: 72,3
- 6167: 73,3
- 6168: 74,3
+ 6252: 44,19
+ 6253: 43,19
+ 6254: 42,19
+ 6370: 72,-28
+ 6371: 71,-28
+ 6372: 70,-28
+ 6511: 70,3
+ 6521: -43,-46
+ 6522: -42,-46
+ 6523: 40,48
+ 6524: 39,48
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 6451: 67,7
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -5187,13 +5441,6 @@ entities:
3266: 54,-17
3267: 54,-16
3268: 54,-15
- 3272: 44,16
- 3273: 44,17
- 3274: 44,18
- 3446: 46,18
- 3447: 46,17
- 3448: 46,16
- 3449: 46,15
3516: 33,6
3517: 33,7
3518: 33,8
@@ -5226,11 +5473,18 @@ entities:
5993: 15,-37
5994: 15,-36
5995: 15,-35
- 6051: 73,-27
6082: 64,-24
6083: 64,-25
- 6200: 70,5
- 6201: 70,4
+ 6177: 44,14
+ 6178: 44,15
+ 6179: 44,16
+ 6180: 44,17
+ 6181: 44,18
+ 6208: 49,22
+ 6209: 49,23
+ 6210: 49,24
+ 6506: 69,4
+ 6507: 69,5
- node:
color: '#DE3A3A96'
id: WarnLineW
@@ -5265,7 +5519,6 @@ entities:
1938: 109,1
1939: 110,1
1940: 111,1
- 3255: 43,15
3545: 73,-33
3546: 72,-33
3547: 71,-33
@@ -5304,13 +5557,20 @@ entities:
5437: -1,34
5440: -11,52
5898: 18,-39
- 6052: 72,-28
- 6053: 71,-28
- 6054: 70,-28
- 6196: 71,6
- 6197: 72,6
- 6198: 73,6
- 6199: 74,6
+ 6248: 44,13
+ 6249: 43,13
+ 6250: 42,13
+ 6343: 54,30
+ 6419: 64,9
+ 6420: 63,9
+ 6421: 62,9
+ 6498: 71,6
+ 6499: 72,6
+ 6510: 70,6
+ 6519: -43,-48
+ 6520: -42,-48
+ 6525: 40,46
+ 6526: 39,46
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -5652,21 +5912,22 @@ entities:
4,-1:
0: 48127
-4,-4:
- 0: 47545
+ 0: 39321
2: 2
+ 3: 8224
-4,-5:
0: 39167
2: 8192
-5,-4:
- 2: 2
0: 61164
+ 2: 2
-4,-3:
0: 63897
2: 34
-5,-3:
0: 62668
- 3: 2
- 2: 32
+ 4: 2
+ 5: 32
-4,-2:
0: 36863
-5,-2:
@@ -5735,8 +5996,8 @@ entities:
-6,-5:
0: 61167
-5,-5:
- 0: 51455
2: 8192
+ 0: 51455
-9,0:
0: 60943
-8,1:
@@ -5961,7 +6222,7 @@ entities:
0: 7677
4,-9:
0: 20599
- 2: 8192
+ 3: 8192
5,-7:
0: 58621
5,-6:
@@ -5994,19 +6255,19 @@ entities:
0: 65263
8,-5:
0: 1279
- 4: 57344
+ 6: 57344
8,-4:
- 4: 3822
+ 6: 3822
0: 16384
9,-4:
- 4: 7
+ 6: 7
0: 58888
9,-2:
0: 30711
9,-1:
0: 61559
9,-5:
- 4: 28672
+ 6: 28672
0: 239
9,-3:
0: 12014
@@ -6059,7 +6320,7 @@ entities:
10,3:
0: 57297
10,4:
- 0: 7645
+ 0: 56797
11,1:
0: 65295
11,2:
@@ -6067,7 +6328,7 @@ entities:
11,3:
0: 64988
11,4:
- 0: 4095
+ 0: 56831
12,0:
0: 65262
12,3:
@@ -6093,13 +6354,13 @@ entities:
1: 2184
11,-8:
0: 61440
- 5: 238
+ 7: 238
11,-7:
0: 65535
11,-6:
0: 65520
11,-9:
- 5: 57344
+ 7: 57344
1: 31
12,-6:
0: 65262
@@ -6109,8 +6370,7 @@ entities:
0: 61440
1: 128
-4,6:
- 0: 37119
- 2: 16384
+ 0: 53503
-5,5:
0: 63344
-5,6:
@@ -6137,8 +6397,7 @@ entities:
-2,7:
0: 29371
-2,8:
- 0: 12031
- 3: 256
+ 0: 4095
-1,5:
0: 63351
-1,6:
@@ -6184,20 +6443,18 @@ entities:
-6,6:
0: 63279
-6,7:
- 0: 20207
- 2: 16
+ 0: 20223
-6,8:
0: 8191
-5,8:
- 0: 65290
- 2: 4
+ 0: 65294
-12,7:
0: 61552
-12,8:
0: 57471
-13,7:
0: 32768
- 5: 30576
+ 7: 30576
1: 7
-12,4:
0: 35852
@@ -6221,8 +6478,7 @@ entities:
-10,4:
0: 65535
-10,5:
- 0: 35583
- 2: 1024
+ 0: 36607
-10,6:
0: 61182
-10,7:
@@ -6245,10 +6501,8 @@ entities:
0: 35824
-12,2:
0: 15
- 1: 1792
-13,2:
0: 15
- 1: 3840
-11,0:
0: 60943
-11,1:
@@ -6303,7 +6557,7 @@ entities:
0: 10239
1,5:
0: 25855
- 6: 32768
+ 8: 32768
1,6:
0: 65262
1,7:
@@ -6379,23 +6633,21 @@ entities:
-16,1:
0: 64785
-16,2:
- 0: 4383
- 1: 3072
+ 0: 15
+ 1: 256
-17,1:
0: 63351
-17,2:
0: 15
- 1: 1792
+ 1: 3840
-15,1:
0: 65416
-15,2:
0: 15
- 1: 3840
-14,1:
0: 15283
-14,2:
0: 15
- 1: 2816
-20,-3:
0: 3584
-19,-3:
@@ -6416,19 +6668,19 @@ entities:
-18,1:
0: 64170
-18,2:
- 0: 8751
- 1: 2048
+ 0: 15
+ 1: 3840
12,-8:
1: 8738
- 7: 34944
+ 9: 34944
12,-7:
1: 226
0: 57344
12,-9:
1: 58103
13,-8:
- 7: 13104
- 8: 34944
+ 9: 13104
+ 10: 34944
13,-7:
1: 240
0: 61440
@@ -6441,8 +6693,8 @@ entities:
13,-4:
0: 62327
14,-8:
- 8: 13104
- 5: 34944
+ 10: 13104
+ 7: 34944
14,-7:
1: 240
0: 61440
@@ -6455,7 +6707,7 @@ entities:
14,-4:
0: 65279
15,-8:
- 5: 13104
+ 7: 13104
1: 34952
15,-7:
1: 248
@@ -6502,7 +6754,7 @@ entities:
15,0:
0: 57463
16,-1:
- 5: 240
+ 7: 240
1: 62222
12,1:
0: 58606
@@ -6530,12 +6782,12 @@ entities:
0: 65262
15,2:
0: 4335
- 5: 57344
+ 7: 57344
15,3:
- 5: 9838
+ 7: 9838
1: 34944
15,4:
- 5: 2
+ 7: 2
1: 34952
0: 4352
16,0:
@@ -6545,9 +6797,9 @@ entities:
0: 64443
16,2:
0: 63
- 5: 63488
+ 7: 63488
16,3:
- 5: 287
+ 7: 287
1: 3584
-12,-8:
0: 62583
@@ -6622,8 +6874,7 @@ entities:
0,10:
0: 30503
-1,10:
- 9: 1
- 0: 65318
+ 0: 65319
0,11:
0: 887
1: 32768
@@ -6631,8 +6882,7 @@ entities:
0: 4095
0,12:
1: 207
- 6: 256
- 0: 4096
+ 0: 4352
1,9:
0: 65535
1,10:
@@ -6684,23 +6934,19 @@ entities:
-3,10:
0: 56605
-3,11:
- 0: 6621
- 2: 1024
+ 0: 7645
-3,12:
1: 12
0: 64784
-2,9:
- 0: 62259
- 10: 68
- 2: 1024
+ 0: 63351
-2,10:
- 0: 28929
- 11: 6
- 2: 1536
+ 0: 29953
+ 3: 512
+ 2: 6
-2,11:
- 0: 383
- 2: 512
- 12: 1024
+ 0: 895
+ 8: 1024
-2,12:
1: 207
0: 61696
@@ -6708,9 +6954,7 @@ entities:
0: 30578
-1,12:
1: 31
- 0: 61440
- 2: 1024
- 6: 2048
+ 0: 64512
5,5:
0: 62258
1: 128
@@ -6862,30 +7106,30 @@ entities:
1: 36761
-8,13:
1: 240
- 5: 3598
+ 7: 3598
-9,13:
1: 35064
- 5: 771
+ 7: 771
-8,14:
1: 240
- 5: 3598
+ 7: 3598
-9,14:
1: 35064
- 5: 771
+ 7: 771
-8,15:
1: 240
- 5: 3598
+ 7: 3598
-9,15:
1: 35064
- 5: 771
+ 7: 771
-7,13:
- 5: 1799
+ 7: 1799
1: 240
-7,14:
- 5: 1799
+ 7: 1799
1: 240
-7,15:
- 5: 1799
+ 7: 1799
1: 240
-6,13:
1: 4369
@@ -6915,18 +7159,18 @@ entities:
1: 3857
-10,13:
1: 240
- 5: 3855
+ 7: 3855
-10,14:
1: 240
- 5: 3855
+ 7: 3855
-10,15:
1: 240
- 5: 3855
+ 7: 3855
-10,11:
1: 4369
-9,16:
1: 35064
- 5: 771
+ 7: 771
5,13:
1: 17600
5,14:
@@ -6977,17 +7221,21 @@ entities:
9,7:
0: 26383
10,5:
- 0: 55773
- 12: 1024
+ 0: 39377
+ 3: 1024
+ 11: 16384
10,6:
0: 7645
10,7:
0: 65535
11,5:
- 0: 65535
+ 0: 65328
+ 12: 192
11,6:
- 0: 3839
- 2: 256
+ 0: 831
+ 3: 192
+ 13: 1024
+ 12: 2048
11,7:
0: 30549
11,8:
@@ -7021,19 +7269,19 @@ entities:
1: 34956
15,7:
0: 32784
- 5: 750
+ 7: 750
15,6:
- 5: 26210
+ 7: 26210
1: 34952
15,8:
0: 51711
16,5:
1: 17487
16,6:
- 5: 256
+ 7: 256
1: 3596
16,7:
- 5: 2303
+ 7: 2303
0: 12288
9,8:
0: 48048
@@ -7086,17 +7334,17 @@ entities:
1: 61441
17,0:
1: 223
- 5: 32
+ 7: 32
0: 57344
17,2:
0: 15
- 5: 65280
+ 7: 65280
17,3:
- 5: 15
+ 7: 15
1: 20288
17,-1:
1: 53389
- 5: 11826
+ 7: 11826
17,1:
0: 61166
17,4:
@@ -7107,47 +7355,48 @@ entities:
18,1:
0: 65535
18,2:
- 2: 1
+ 14: 1
+ 7: 65280
0: 14
- 5: 65280
18,3:
- 5: 15
+ 7: 15
1: 3840
18,-1:
1: 61610
- 5: 3840
+ 7: 3840
19,0:
1: 255
0: 4096
- 5: 3072
+ 7: 3072
19,1:
- 0: 4369
+ 11: 1
+ 3: 16
+ 0: 4352
19,2:
0: 1
- 5: 4352
+ 7: 4352
1: 3276
19,3:
- 5: 1011
+ 7: 1011
1: 8192
19,-1:
1: 61474
- 5: 3840
+ 7: 3840
19,4:
1: 8738
- 5: 51328
+ 7: 51328
20,0:
1: 255
- 5: 3840
+ 7: 3840
20,2:
1: 7951
20,3:
1: 261
- 5: 46320
+ 7: 46320
-13,8:
0: 8
1: 12032
- 5: 7
- 13: 112
+ 7: 119
-12,9:
0: 2
1: 65408
@@ -7211,27 +7460,30 @@ entities:
-1,-13:
0: 30583
0,-12:
- 0: 65535
+ 0: 65528
0,-11:
- 0: 63743
+ 0: 62719
0,-10:
0: 61695
+ 0,-13:
+ 0: 65535
1,-12:
- 0: 30583
+ 0: 64976
1,-11:
- 0: 61559
+ 0: 62493
1,-10:
0: 56575
+ 1,-13:
+ 0: 30583
2,-12:
0: 63344
2,-11:
- 0: 62471
- 2: 256
+ 0: 62727
2,-10:
0: 53759
2,-13:
0: 61952
- 5: 119
+ 7: 119
3,-12:
0: 65359
3,-11:
@@ -7256,7 +7508,7 @@ entities:
0: 36863
5,-13:
0: 63761
- 5: 204
+ 7: 204
6,-12:
0: 32628
6,-11:
@@ -7265,7 +7517,7 @@ entities:
0: 33791
6,-13:
0: 56512
- 5: 17
+ 7: 17
7,-12:
0: 1904
7,-11:
@@ -7284,7 +7536,7 @@ entities:
1: 127
-10,16:
1: 240
- 5: 3855
+ 7: 3855
-10,17:
1: 15
-9,17:
@@ -7293,13 +7545,13 @@ entities:
1: 14
-8,16:
1: 240
- 5: 3598
+ 7: 3598
-8,17:
1: 9006
-8,18:
1: 3
-7,16:
- 5: 1799
+ 7: 1799
1: 240
-7,17:
1: 15
@@ -7309,58 +7561,58 @@ entities:
1: 61440
16,-4:
1: 8738
- 14: 2184
+ 15: 2184
16,-3:
1: 8738
- 5: 2184
+ 7: 2184
16,-2:
1: 8738
- 5: 2184
+ 7: 2184
16,-5:
1: 8738
- 5: 2184
+ 7: 2184
17,-4:
- 14: 819
- 5: 2176
+ 15: 819
+ 7: 2176
1: 32768
17,-3:
- 5: 819
+ 7: 819
1: 34952
17,-2:
- 5: 819
+ 7: 819
1: 34952
17,-5:
- 5: 35635
+ 7: 35635
1: 136
18,-4:
- 5: 3975
+ 7: 3975
1: 40992
18,-3:
1: 43770
18,-5:
1: 8362
- 5: 36608
+ 7: 36608
18,-2:
1: 43690
19,-4:
- 5: 3975
+ 7: 3975
1: 40992
19,-3:
1: 57906
19,-5:
1: 8354
- 5: 36608
+ 7: 36608
19,-2:
1: 8930
20,-4:
- 5: 3975
+ 7: 3975
1: 32768
20,-3:
1: 61440
20,-2:
1: 240
20,-1:
- 5: 3840
+ 7: 3840
1: 61440
16,-9:
1: 4369
@@ -7400,7 +7652,7 @@ entities:
20,-6:
1: 1879
20,-5:
- 5: 36608
+ 7: 36608
1: 128
12,-10:
1: 62192
@@ -7422,32 +7674,32 @@ entities:
1: 65023
16,-11:
1: 4353
- 5: 52416
+ 7: 52416
16,-10:
1: 4353
0: 52416
20,4:
1: 5377
- 5: 244
+ 7: 244
21,0:
1: 33023
- 5: 3840
+ 7: 3840
21,2:
1: 3887
21,3:
- 5: 46320
+ 7: 46320
1: 4
21,-1:
1: 61440
- 5: 3840
+ 7: 3840
21,1:
1: 17608
21,4:
- 5: 244
+ 7: 244
1: 1024
22,0:
1: 2167
- 5: 58112
+ 7: 58112
0: 136
22,1:
1: 3634
@@ -7455,19 +7707,19 @@ entities:
22,2:
1: 3855
22,3:
- 5: 46320
+ 7: 46320
1: 4
22,-1:
1: 28704
0: 32768
- 5: 3840
+ 7: 3840
22,4:
- 5: 180
+ 7: 180
1: 1088
23,0:
0: 17663
1: 35328
- 5: 8192
+ 7: 8192
23,1:
0: 35959
1: 29320
@@ -7475,16 +7727,16 @@ entities:
1: 26471
0: 34952
23,3:
- 5: 61552
+ 7: 61552
1: 3590
0: 136
23,-1:
0: 62532
1: 2235
- 5: 512
+ 7: 512
23,4:
1: 19468
- 5: 240
+ 7: 240
24,0:
0: 3295
1: 256
@@ -7495,13 +7747,13 @@ entities:
24,3:
1: 609
0: 4368
- 5: 59392
+ 7: 59392
16,-13:
1: 12032
17,-12:
1: 65023
17,-11:
- 5: 13104
+ 7: 13104
1: 34952
17,-10:
0: 65520
@@ -7570,7 +7822,7 @@ entities:
15,10:
1: 30481
0: 8
- 5: 34944
+ 7: 34944
14,11:
1: 34952
14,12:
@@ -7582,18 +7834,18 @@ entities:
0: 17
1: 34952
15,11:
- 5: 34952
+ 7: 34952
16,10:
1: 63630
15,12:
- 5: 34952
+ 7: 34952
1: 28672
16,11:
- 5: 26112
+ 7: 26112
1: 34952
16,12:
1: 34959
- 5: 1632
+ 7: 1632
17,8:
0: 17
1: 19532
@@ -7601,12 +7853,12 @@ entities:
1: 244
17,10:
1: 45056
- 5: 16384
+ 7: 16384
17,11:
- 5: 65348
+ 7: 65348
17,12:
1: 17487
- 5: 2992
+ 7: 2992
18,8:
1: 8495
18,9:
@@ -7614,13 +7866,13 @@ entities:
18,10:
1: 61440
18,11:
- 5: 56576
+ 7: 56576
1: 8738
18,12:
1: 8751
- 5: 3536
+ 7: 3536
18,7:
- 5: 36863
+ 7: 36863
19,8:
1: 1
19,10:
@@ -7628,7 +7880,7 @@ entities:
19,11:
1: 21845
19,7:
- 5: 4371
+ 7: 4371
19,12:
1: 21847
16,4:
@@ -7638,19 +7890,19 @@ entities:
17,6:
1: 20303
17,7:
- 5: 4095
+ 7: 4095
18,4:
1: 17479
18,5:
1: 17487
18,6:
1: 3847
- 5: 32768
+ 7: 32768
19,5:
1: 8739
- 5: 34824
+ 7: 34824
19,6:
- 5: 61804
+ 7: 61804
1: 2
20,5:
1: 4371
@@ -7666,17 +7918,17 @@ entities:
1: 34952
15,14:
1: 28672
- 5: 34952
+ 7: 34952
15,15:
1: 3754
15,13:
- 5: 34952
+ 7: 34952
16,13:
1: 36744
- 5: 24678
+ 7: 24678
16,14:
1: 63624
- 5: 6
+ 7: 6
16,15:
1: 1860
-8,-12:
@@ -7734,25 +7986,23 @@ entities:
-10,-13:
0: 9830
0,-16:
- 0: 36850
+ 0: 4082
0,-17:
0: 65295
-1,-16:
0: 30711
0,-15:
0: 65535
+ -1,-15:
+ 0: 32631
0,-14:
- 0: 65535
- 0,-13:
- 0: 4095
+ 0: 65295
1,-16:
- 0: 36862
+ 0: 4094
1,-15:
- 0: 15291
+ 0: 8055
1,-14:
- 0: 30583
- 1,-13:
- 0: 1911
+ 0: 30471
1,-17:
0: 57890
1: 8
@@ -7762,13 +8012,12 @@ entities:
0: 65399
2,-14:
1: 240
- 5: 28672
+ 7: 28672
2,-17:
0: 4096
- 5: 1
+ 7: 1
1: 30
3,-16:
- 5: 16
0: 28672
1: 68
3,-15:
@@ -7777,7 +8026,7 @@ entities:
0: 65166
3,-17:
1: 17475
- 5: 4
+ 7: 4
4,-16:
0: 30496
4,-15:
@@ -7814,8 +8063,6 @@ entities:
0: 11195
-2,-17:
0: 56797
- -1,-15:
- 0: 30583
-1,-14:
0: 30583
-1,-17:
@@ -7856,16 +8103,16 @@ entities:
0: 65535
-12,-16:
1: 17231
- 5: 1184
+ 7: 1184
-13,-16:
1: 2895
- 5: 1184
+ 7: 1184
-12,-15:
1: 3908
-13,-15:
1: 3840
-12,-17:
- 5: 43690
+ 7: 43690
1: 17476
-11,-16:
1: 1
@@ -7897,7 +8144,7 @@ entities:
0: 19648
1: 4368
-16,-10:
- 5: 16
+ 7: 16
1: 44
-15,-11:
1: 65280
@@ -7912,53 +8159,53 @@ entities:
0: 26212
-16,-16:
1: 39321
- 5: 4
+ 7: 4
-16,-17:
1: 7953
-16,-15:
1: 3869
-15,-16:
1: 18511
- 5: 1184
+ 7: 1184
-15,-15:
1: 3911
-15,-17:
- 5: 43690
+ 7: 43690
1: 17732
-14,-16:
1: 2895
- 5: 1184
+ 7: 1184
-14,-15:
1: 3840
-14,-17:
- 5: 43690
+ 7: 43690
1: 17476
-13,-17:
- 5: 43690
+ 7: 43690
1: 17476
-18,-10:
1: 4
- 5: 8
+ 7: 8
-17,-10:
- 5: 7
+ 7: 7
-12,-19:
1: 43947
- 5: 1092
+ 7: 1092
-13,-19:
1: 44590
- 5: 273
+ 7: 273
-12,-18:
1: 17498
- 5: 43684
+ 7: 43684
-13,-18:
- 5: 43684
+ 7: 43684
1: 17498
-12,-20:
1: 17408
-11,-19:
1: 3983
-10,-19:
- 5: 4369
+ 7: 4369
1: 57568
-10,-20:
1: 4352
@@ -8004,30 +8251,30 @@ entities:
1: 5905
-15,-19:
1: 43963
- 5: 1092
+ 7: 1092
-15,-18:
1: 17738
- 5: 43684
+ 7: 43684
-15,-20:
1: 17408
-14,-19:
1: 44943
-14,-18:
1: 17498
- 5: 43684
+ 7: 43684
-13,-20:
1: 4352
17,13:
- 5: 45243
+ 7: 45243
1: 20292
17,14:
- 5: 11
+ 7: 11
1: 62532
18,13:
- 5: 53469
+ 7: 53469
1: 12066
18,14:
- 5: 13
+ 7: 13
1: 61986
19,13:
1: 22357
@@ -8041,10 +8288,10 @@ entities:
5,-14:
0: 4096
1: 224
- 5: 49152
+ 7: 49152
5,-17:
1: 4382
- 5: 1
+ 7: 1
6,-16:
1: 3186
0: 4096
@@ -8052,11 +8299,11 @@ entities:
0: 61917
6,-14:
1: 16
- 5: 4096
+ 7: 4096
0: 52428
6,-17:
1: 8749
- 5: 2
+ 7: 2
7,-16:
1: 3976
7,-15:
@@ -8092,11 +8339,11 @@ entities:
1,-18:
1: 60962
2,-18:
- 5: 4352
+ 7: 4352
1: 60945
3,-18:
1: 13124
- 5: 17408
+ 7: 17408
9,-13:
0: 1911
9,-16:
@@ -8107,7 +8354,7 @@ entities:
0: 26342
9,-17:
0: 16384
- 5: 1
+ 7: 1
1: 1092
10,-14:
0: 48
@@ -8120,41 +8367,41 @@ entities:
1: 17476
8,-20:
1: 53248
- 5: 11264
+ 7: 11264
7,-20:
1: 32768
8,-18:
1: 53248
- 5: 11276
+ 7: 11276
7,-18:
1: 65416
8,-19:
- 5: 11276
+ 7: 11276
1: 49152
8,-17:
- 5: 12
+ 7: 12
9,-20:
- 5: 260
+ 7: 260
1: 62538
9,-19:
- 5: 257
+ 7: 257
1: 62532
9,-18:
- 5: 257
+ 7: 257
1: 62532
9,-21:
1: 17412
10,-20:
1: 28672
- 5: 34560
+ 7: 34560
10,-19:
1: 28672
- 5: 34567
+ 7: 34567
10,-18:
1: 28672
- 5: 34567
+ 7: 34567
10,-17:
- 5: 7
+ 7: 7
11,-20:
1: 29764
11,-18:
@@ -8175,30 +8422,30 @@ entities:
1: 12288
5,-18:
1: 60945
- 5: 4352
+ 7: 4352
6,-18:
1: 56576
- 5: 8704
+ 7: 8704
7,-19:
1: 34952
21,-4:
- 5: 3975
+ 7: 3975
1: 32768
21,-3:
1: 61440
21,-2:
1: 240
21,-5:
- 5: 36608
+ 7: 36608
1: 128
22,-4:
- 5: 3855
+ 7: 3855
22,-3:
1: 61440
22,-2:
1: 240
23,-4:
- 5: 3855
+ 7: 3855
1: 49344
23,-3:
1: 64716
@@ -8207,10 +8454,10 @@ entities:
0: 49152
23,-5:
1: 49348
- 5: 3840
+ 7: 3840
24,-4:
0: 4369
- 5: 142
+ 7: 142
1: 8736
24,-3:
0: 4369
@@ -8224,7 +8471,7 @@ entities:
24,4:
0: 3857
1: 61538
- 5: 136
+ 7: 136
25,0:
0: 3551
25,2:
@@ -8273,7 +8520,7 @@ entities:
24,-5:
0: 4592
1: 9743
- 5: 34816
+ 7: 34816
25,-3:
0: 32766
25,-2:
@@ -8366,7 +8613,7 @@ entities:
1: 34800
0: 28672
22,-5:
- 5: 3840
+ 7: 3840
20,-13:
1: 22272
-16,8:
@@ -8379,21 +8626,21 @@ entities:
0: 546
-15,8:
0: 256
- 5: 238
+ 7: 238
1: 36352
-15,7:
0: 4096
- 5: 61152
+ 7: 61152
1: 15
-15,9:
1: 12
-14,8:
- 5: 255
+ 7: 255
1: 20224
-14,9:
1: 15
-14,7:
- 5: 65520
+ 7: 65520
1: 15
-17,7:
0: 34816
@@ -8440,6 +8687,21 @@ entities:
- 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.14975
moles:
@@ -8458,8 +8720,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.813705
- - 82.06108
+ - 21.823984
+ - 82.09976
- 0
- 0
- 0
@@ -8471,10 +8733,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ temperature: 293.14975
moles:
- - 21.824879
- - 82.10312
+ - 21.6852
+ - 81.57766
- 0
- 0
- 0
@@ -8486,10 +8748,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ temperature: 235
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -8503,8 +8765,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.6852
- - 81.57766
+ - 0
+ - 0
- 0
- 0
- 0
@@ -8518,8 +8780,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- - 6666.982
+ - 21.813705
+ - 82.06108
- 0
- 0
- 0
@@ -8533,8 +8795,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -8548,8 +8810,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 21.66546
- - 81.50341
+ - 6666.982
+ - 0
- 0
- 0
- 0
@@ -8563,8 +8825,8 @@ entities:
- volume: 2500
temperature: 293.14948
moles:
- - 20.078888
- - 75.53487
+ - 18.472576
+ - 69.49208
- 0
- 0
- 0
@@ -8606,10 +8868,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 147.92499
+ temperature: 293.15
moles:
- - 0
- - 0
+ - 23.57087
+ - 88.67137
- 0
- 0
- 0
@@ -8646,30 +8908,30 @@ entities:
- type: GridPathfinding
- type: Joint
joints:
- docking434: !type:WeldJoint
- bodyB: 28202
- bodyA: 5350
- id: docking434
+ docking31405: !type:WeldJoint
+ bodyB: 5350
+ bodyA: 28213
+ id: docking31405
localAnchorB: 0.49999997,0
localAnchorA: -62.5,39
- damping: 51.53661
- stiffness: 462.59152
- - uid: 28202
+ damping: 77.5519
+ stiffness: 696.1043
+ - uid: 28213
components:
- type: MetaData
name: grid
- type: Transform
- pos: -60.629192,37.789837
+ pos: -60.740906,38.52563
parent: 951
- type: MapGrid
chunks:
0,0:
ind: 0,0
- tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -8692,16 +8954,21 @@ entities:
version: 2
nodes: []
- type: RadiationGridResistance
+ - type: GridAtmosphere
+ version: 2
+ data:
+ chunkSize: 4
+ - type: GasTileOverlay
- type: Joint
joints:
- docking434: !type:WeldJoint
- bodyB: 28202
- bodyA: 5350
- id: docking434
- localAnchorB: 0.49999997,0
- localAnchorA: -62.5,39
- damping: 51.53661
- stiffness: 462.59152
+ docking31405: !type:WeldJoint
+ bodyB: 5350
+ bodyA: 28213
+ id: docking31405
+ localAnchorB: -62.5,39
+ localAnchorA: 0.49999997,0
+ damping: 77.55168
+ stiffness: 696.10236
- proto: AcousticGuitarInstrument
entities:
- uid: 3945
@@ -8748,6 +9015,20 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 9284
+ - uid: 15198
+ components:
+ - type: Transform
+ parent: 15120
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 15120
+ - uid: 15592
+ components:
+ - type: Transform
+ parent: 15483
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 15483
- uid: 16296
components:
- type: Transform
@@ -8762,13 +9043,13 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 16297
- - uid: 23604
+ - uid: 18711
components:
- type: Transform
- parent: 23603
+ parent: 18691
- type: InstantAction
originalIconColor: '#FFFFFFFF'
- container: 23603
+ container: 18691
- proto: ActionToggleJetpack
entities:
- uid: 7200
@@ -8778,6 +9059,27 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 7614
+ - uid: 15196
+ components:
+ - type: Transform
+ parent: 15120
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 15120
+ - uid: 15521
+ components:
+ - type: Transform
+ parent: 15483
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 15483
+ - uid: 18692
+ components:
+ - type: Transform
+ parent: 18691
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 18691
- proto: ActionToggleLight
entities:
- uid: 7435
@@ -8882,6 +9184,19 @@ entities:
- 9292
- 9239
- 24322
+ - uid: 872
+ components:
+ - type: MetaData
+ name: Restrooms East Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 5350
+ - type: DeviceList
+ devices:
+ - 21141
+ - 12104
+ - 21143
- uid: 928
components:
- type: Transform
@@ -8896,7 +9211,7 @@ entities:
- uid: 1072
components:
- type: MetaData
- name: SE Loop Air Alarm
+ name: Main Loop - SE Air Alarm
- type: Transform
pos: 14.5,-17.5
parent: 5350
@@ -8973,19 +9288,6 @@ entities:
- 9676
- 21638
- 23103
- - uid: 1913
- components:
- - type: MetaData
- name: Washroom Air Alarm
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,6.5
- parent: 5350
- - type: DeviceList
- devices:
- - 21141
- - 21143
- - 12104
- uid: 2004
components:
- type: Transform
@@ -9000,7 +9302,7 @@ entities:
- uid: 3141
components:
- type: MetaData
- name: SW Loop Air Alarm
+ name: Main Loop SW Air Alarm
- type: Transform
pos: -19.5,-17.5
parent: 5350
@@ -9193,7 +9495,6 @@ entities:
- 9640
- 22391
- 22390
- - 28218
- uid: 6405
components:
- type: MetaData
@@ -9243,7 +9544,6 @@ entities:
- type: DeviceList
devices:
- 6946
- - 28218
- 6806
- 7773
- 7791
@@ -9265,6 +9565,8 @@ entities:
- 7075
- uid: 7196
components:
+ - type: MetaData
+ name: North Corridor Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: -0.5,18.5
@@ -9285,8 +9587,6 @@ entities:
- 15169
- uid: 7315
components:
- - type: MetaData
- name: North Security Lockers Air Alarm
- type: Transform
pos: 2.5,46.5
parent: 5350
@@ -9309,8 +9609,6 @@ entities:
parent: 5350
- uid: 8409
components:
- - type: MetaData
- name: South Security Lockers Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,40.5
@@ -9324,6 +9622,18 @@ entities:
- 7106
- 7345
- 22373
+ - uid: 9130
+ components:
+ - type: MetaData
+ name: Engi Suit Room Air Alarm
+ - type: Transform
+ pos: 50.5,31.5
+ parent: 5350
+ - type: DeviceList
+ devices:
+ - 23179
+ - 24003
+ - 11361
- uid: 9586
components:
- type: MetaData
@@ -9583,12 +9893,10 @@ entities:
parent: 5350
- type: DeviceList
devices:
- - 23908
- - 23372
- - 23383
- - 23384
- - 23385
- - 23379
+ - 239
+ - 28373
+ - 22149
+ - 16292
- 11440
- 989
- 15357
@@ -9727,7 +10035,7 @@ entities:
- uid: 16587
components:
- type: MetaData
- name: South Loop Air Alarm
+ name: Main Loop South Air Alarm
- type: Transform
pos: -0.5,-17.5
parent: 5350
@@ -10283,6 +10591,8 @@ entities:
- 27078
- uid: 23602
components:
+ - type: MetaData
+ name: AME Air Alarm
- type: Transform
pos: 74.5,9.5
parent: 5350
@@ -10293,19 +10603,19 @@ entities:
- 12383
- 12382
- 12371
- - uid: 23906
+ - uid: 23651
components:
- type: MetaData
name: Secure Storage Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
- pos: 41.5,21.5
+ pos: 41.5,25.5
parent: 5350
- type: DeviceList
devices:
- - 23381
- - 23909
- - 23380
+ - 23613
+ - 19405
+ - 16670
- uid: 23907
components:
- type: MetaData
@@ -10385,6 +10695,8 @@ entities:
- 8379
- uid: 24340
components:
+ - type: MetaData
+ name: Main Loop - North Air Alarm
- type: Transform
pos: -7.5,12.5
parent: 5350
@@ -10583,8 +10895,6 @@ entities:
- 4207
- uid: 24431
components:
- - type: MetaData
- name: HoS's Office Air Alarm
- type: Transform
pos: 12.5,48.5
parent: 5350
@@ -10657,6 +10967,8 @@ entities:
- 11218
- uid: 24451
components:
+ - type: MetaData
+ name: Captain's Office Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 12.5,-2.5
@@ -10681,7 +10993,7 @@ entities:
- uid: 24458
components:
- type: MetaData
- name: Loop East Air Alarm
+ name: Main Loop - East Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 14.5,-5.5
@@ -10839,7 +11151,6 @@ entities:
- 11440
- 19001
- 989
- - 23908
- uid: 24510
components:
- type: MetaData
@@ -11163,7 +11474,7 @@ entities:
- uid: 25987
components:
- type: MetaData
- name: NW Loop Air Alarm
+ name: Main Loop - NW Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: -17.5,7.5
@@ -11280,24 +11591,6 @@ entities:
- type: DeviceList
devices:
- 27127
- - uid: 27662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,7.5
- parent: 5350
- - type: DeviceList
- devices:
- - 2125
- - 2127
- - 2126
- - 15021
- - 15179
- - 21875
- - 15169
- - 5667
- - 5666
- - 5665
- uid: 28012
components:
- type: MetaData
@@ -11346,6 +11639,22 @@ entities:
- 15591
- 28347
- 19500
+ - uid: 28423
+ components:
+ - type: MetaData
+ name: SMES Bank Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,17.5
+ parent: 5350
+ - type: DeviceList
+ devices:
+ - 24302
+ - 23567
+ - 28424
+ - 28425
+ - 28426
+ - 28427
- proto: AirCanister
entities:
- uid: 2431
@@ -11353,11 +11662,16 @@ entities:
- type: Transform
pos: 45.5,0.5
parent: 5350
- - uid: 4235
+ - uid: 21247
components:
- type: Transform
+ anchored: True
pos: -41.5,41.5
parent: 5350
+ - type: GasCanister
+ releasePressure: 100
+ - type: Physics
+ bodyType: Static
- uid: 22860
components:
- type: Transform
@@ -11407,7 +11721,6 @@ entities:
- uid: 562
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 30.5,33.5
parent: 5350
- uid: 788
@@ -11466,8 +11779,9 @@ entities:
parent: 5350
- uid: 10406
components:
+ - type: MetaData
+ name: Restroom
- type: Transform
- rot: 1.5707963267948966 rad
pos: 5.5,-55.5
parent: 5350
- uid: 12890
@@ -11563,11 +11877,12 @@ entities:
parent: 5350
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 4742
+ - uid: 17516
components:
- type: MetaData
name: Warden's Office
- type: Transform
+ rot: 3.141592653589793 rad
pos: -4.5,39.5
parent: 5350
- proto: AirlockArmoryLocked
@@ -12104,6 +12419,12 @@ entities:
parent: 5350
- proto: AirlockEngineeringGlassLocked
entities:
+ - uid: 1598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,20.5
+ parent: 5350
- uid: 4938
components:
- type: MetaData
@@ -12297,13 +12618,6 @@ entities:
- type: Transform
pos: 54.5,31.5
parent: 5350
- - uid: 15430
- components:
- - type: MetaData
- name: PA
- - type: Transform
- pos: 54.5,20.5
- parent: 5350
- uid: 15788
components:
- type: MetaData
@@ -12342,7 +12656,7 @@ entities:
- uid: 22414
components:
- type: MetaData
- name: South East Solars
+ name: SE Solars
- type: Transform
pos: 38.5,-57.5
parent: 5350
@@ -12455,6 +12769,14 @@ entities:
- DoorStatus: DoorBolt
- proto: AirlockExternalGlass
entities:
+ - uid: 1485
+ components:
+ - type: MetaData
+ name: SW Escape Pod
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-46.5
+ parent: 5350
- uid: 5079
components:
- type: MetaData
@@ -12525,6 +12847,14 @@ entities:
- type: Transform
pos: -0.5,-73.5
parent: 5350
+ - uid: 22350
+ components:
+ - type: MetaData
+ name: Escape Pod
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-58.5
+ parent: 5350
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
- uid: 11257
@@ -12829,7 +13159,7 @@ entities:
- uid: 13922
components:
- type: MetaData
- name: North East Airlock
+ name: NE Airlock
- type: Transform
pos: 48.5,38.5
parent: 5350
@@ -12894,7 +13224,7 @@ entities:
- uid: 20029
components:
- type: MetaData
- name: South East Solars Airlock
+ name: SE Solars Airlock
- type: Transform
pos: 38.5,-64.5
parent: 5350
@@ -12907,7 +13237,7 @@ entities:
- uid: 20030
components:
- type: MetaData
- name: South East Solars Airlock
+ name: SE Solars Airlock
- type: Transform
pos: 38.5,-61.5
parent: 5350
@@ -12991,14 +13321,10 @@ entities:
radarColor: '#990000FF'
- proto: AirlockExternalGlassShuttleEscape
entities:
- - uid: 504
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-46.5
- parent: 5350
- uid: 5080
components:
+ - type: MetaData
+ name: North Escape Pod
- type: Transform
rot: 1.5707963267948966 rad
pos: 41.5,47.5
@@ -13009,8 +13335,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -64.5,-13.5
parent: 5350
+ - uid: 7048
+ components:
+ - type: MetaData
+ name: SW Escape Pod
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-46.5
+ parent: 5350
- uid: 22330
components:
+ - type: MetaData
+ name: Escape Pod
- type: Transform
pos: 17.5,-62.5
parent: 5350
@@ -13071,7 +13407,7 @@ entities:
- uid: 13921
components:
- type: MetaData
- name: North East Airlock
+ name: NE Airlock
- type: Transform
pos: 49.5,39.5
parent: 5350
@@ -13133,6 +13469,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,20.5
parent: 5350
+ - uid: 1486
+ components:
+ - type: MetaData
+ name: North Corridor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 5350
- uid: 1554
components:
- type: Transform
@@ -13253,14 +13597,11 @@ entities:
parent: 5350
- uid: 5870
components:
+ - type: MetaData
+ name: North Corridor
- type: Transform
pos: -3.5,12.5
parent: 5350
- - uid: 5872
- components:
- - type: Transform
- pos: -1.5,12.5
- parent: 5350
- uid: 6710
components:
- type: MetaData
@@ -13380,6 +13721,8 @@ entities:
parent: 5350
- uid: 12601
components:
+ - type: MetaData
+ name: North Corridor
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,12.5
@@ -13519,21 +13862,21 @@ entities:
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking434
- dockedWith: 28203
+ dockJointId: docking31405
+ dockedWith: 28214
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
DockStatus: True
- - uid: 28203
+ - uid: 28214
components:
- type: Transform
pos: 0.5,0.5
- parent: 28202
+ parent: 28213
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking434
+ dockJointId: docking31405
dockedWith: 1455
- type: DeviceLinkSource
lastSignals:
@@ -14301,6 +14644,13 @@ entities:
- - Security
- proto: AirlockMedicalLocked
entities:
+ - uid: 1517
+ components:
+ - type: MetaData
+ name: Morgue
+ - type: Transform
+ pos: -18.5,-48.5
+ parent: 5350
- uid: 15278
components:
- type: MetaData
@@ -14338,13 +14688,6 @@ entities:
- type: Transform
pos: -17.5,26.5
parent: 5350
- - uid: 1749
- components:
- - type: MetaData
- name: Morgue
- - type: Transform
- pos: -18.5,-48.5
- parent: 5350
- proto: AirlockQuartermasterGlassLocked
entities:
- uid: 4309
@@ -14364,7 +14707,7 @@ entities:
pos: -29.5,15.5
parent: 5350
- type: Door
- secondsUntilStateChange: -232830.38
+ secondsUntilStateChange: -252063.2
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14428,6 +14771,13 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-38.5
parent: 5350
+ - uid: 1488
+ components:
+ - type: MetaData
+ name: Breakroom
+ - type: Transform
+ pos: 2.5,-41.5
+ parent: 5350
- uid: 4708
components:
- type: MetaData
@@ -14456,13 +14806,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-40.5
parent: 5350
- - uid: 15601
- components:
- - type: MetaData
- name: Anomaly Lab
- - type: Transform
- pos: 23.5,-36.5
- parent: 5350
- uid: 16470
components:
- type: Transform
@@ -14483,6 +14826,8 @@ entities:
- - Security
- uid: 17554
components:
+ - type: MetaData
+ name: R&D
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,-34.5
@@ -14495,35 +14840,15 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,-46.5
parent: 5350
-- proto: AirlockScienceLocked
- entities:
- - uid: 1598
- components:
- - type: MetaData
- name: Server Room
- - type: Transform
- pos: 28.5,-37.5
- parent: 5350
- - uid: 2187
- components:
- - type: MetaData
- name: Breakroom
- - type: Transform
- pos: 2.5,-41.5
- parent: 5350
- - uid: 14149
+ - uid: 23758
components:
- type: MetaData
- name: Chamber 2
+ name: Anomaly Lab
- type: Transform
- pos: 21.5,-48.5
+ pos: 23.5,-36.5
parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 14186:
- - DoorStatus: DoorBolt
+- proto: AirlockScienceLocked
+ entities:
- uid: 14186
components:
- type: MetaData
@@ -14533,10 +14858,6 @@ entities:
parent: 5350
- type: DeviceLinkSink
invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 14149:
- - DoorStatus: DoorBolt
- uid: 14850
components:
- type: MetaData
@@ -14550,6 +14871,25 @@ entities:
linkedPorts:
19185:
- DoorStatus: DoorBolt
+ - uid: 15115
+ components:
+ - type: MetaData
+ name: Server Room
+ - type: Transform
+ pos: 28.5,-37.5
+ parent: 5350
+ - uid: 15430
+ components:
+ - type: Transform
+ pos: 21.5,-48.5
+ parent: 5350
+ - uid: 18714
+ components:
+ - type: MetaData
+ name: XenoArch
+ - type: Transform
+ pos: 16.5,-41.5
+ parent: 5350
- uid: 19185
components:
- type: MetaData
@@ -14563,13 +14903,6 @@ entities:
linkedPorts:
14850:
- DoorStatus: DoorBolt
- - uid: 19481
- components:
- - type: MetaData
- name: Xeno Archeology Lab
- - type: Transform
- pos: 16.5,-41.5
- parent: 5350
- uid: 20286
components:
- type: MetaData
@@ -14638,7 +14971,7 @@ entities:
pos: -4.5,53.5
parent: 5350
- type: Door
- secondsUntilStateChange: -87484.13
+ secondsUntilStateChange: -106716.95
state: Opening
- type: DeviceLinkSink
invokeCounter: 2
@@ -14858,6 +15191,14 @@ entities:
- type: DeviceNetwork
deviceLists:
- 176
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 51.5,19.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
- uid: 307
components:
- type: Transform
@@ -15400,7 +15741,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 1913
+ - 872
- uid: 12371
components:
- type: Transform
@@ -15502,7 +15843,6 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 27662
- 24342
- 24443
- 20627
@@ -15717,6 +16057,14 @@ entities:
- type: DeviceNetwork
deviceLists:
- 15738
+ - uid: 19405
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 23651
- uid: 19630
components:
- type: Transform
@@ -15859,23 +16207,6 @@ entities:
deviceLists:
- 22592
- 22543
- - uid: 23908
- components:
- - type: Transform
- pos: 50.5,14.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- - 24506
- - uid: 23909
- components:
- - type: Transform
- pos: 44.5,22.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 23906
- uid: 23910
components:
- type: Transform
@@ -15896,6 +16227,14 @@ entities:
deviceLists:
- 24697
- 25995
+ - uid: 24003
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 9130
- uid: 24271
components:
- type: Transform
@@ -16234,16 +16573,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 28012
- - uid: 28218
- components:
- - type: Transform
- pos: -7.5,37.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 6384
- - 7810
- - 6735
- uid: 28347
components:
- type: Transform
@@ -16260,6 +16589,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 3881
+ - uid: 28424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,16.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 28423
- proto: AirSensorVox
entities:
- uid: 14658
@@ -16288,99 +16626,94 @@ entities:
parent: 5350
- proto: AmeController
entities:
- - uid: 21812
+ - uid: 1749
components:
- type: Transform
- pos: 71.5,8.5
+ pos: 76.5,5.5
parent: 5350
- proto: AmeJar
entities:
- - uid: 23812
+ - uid: 28642
components:
- type: Transform
- pos: 73.69259,8.599899
- parent: 5350
- - uid: 28194
- components:
- - type: Transform
- pos: 73.41134,8.537399
+ pos: 76.515335,7.632393
parent: 5350
- proto: AmePartFlatpack
entities:
- uid: 14093
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 15326
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 16554
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23357
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23358
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23359
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23504
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23505
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23506
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23507
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23508
components:
- type: Transform
- parent: 21813
+ parent: 17029
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -16408,7 +16741,7 @@ entities:
- uid: 143
components:
- type: MetaData
- name: Main Loop West APC
+ name: Main Loop - West APC
- type: Transform
rot: -1.5707963267948966 rad
pos: -19.5,-0.5
@@ -16508,7 +16841,7 @@ entities:
- uid: 2050
components:
- type: MetaData
- name: South Loop APC
+ name: Main Loop South APC
- type: Transform
pos: -8.5,-17.5
parent: 5350
@@ -16966,7 +17299,7 @@ entities:
- uid: 21373
components:
- type: MetaData
- name: SE Solars APC
+ name: Solars SE APC
- type: Transform
rot: 1.5707963267948966 rad
pos: 36.5,-60.5
@@ -16994,13 +17327,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 41.5,24.5
parent: 5350
- - uid: 22149
- components:
- - type: MetaData
- name: Engineering Lobby APC
- - type: Transform
- pos: 52.5,6.5
- parent: 5350
- uid: 22342
components:
- type: MetaData
@@ -17109,6 +17435,26 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-37.5
parent: 5350
+ - uid: 28405
+ components:
+ - type: MetaData
+ name: Engineering Lobby APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,4.5
+ parent: 5350
+- proto: APCElectronics
+ entities:
+ - uid: 23176
+ components:
+ - type: Transform
+ pos: 37.664337,6.747689
+ parent: 5350
+ - uid: 23750
+ components:
+ - type: Transform
+ pos: 37.539337,6.482064
+ parent: 5350
- proto: APCHighCapacity
entities:
- uid: 913
@@ -17159,6 +17505,12 @@ entities:
- type: Transform
pos: 77.23837,-25.611265
parent: 5350
+ - uid: 28390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.226982,14.23296
+ parent: 5350
- proto: AsimovCircuitBoard
entities:
- uid: 26872
@@ -17269,12 +17621,6 @@ entities:
- type: Transform
pos: -70.5,4.5
parent: 5350
- - uid: 15521
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-46.5
- parent: 5350
- uid: 21071
components:
- type: Transform
@@ -18827,8 +19173,9 @@ entities:
- uid: 26644
components:
- type: Transform
- pos: -57.5,-71.5
- parent: 5350
+ anchored: False
+ pos: -55.22899,-73.91482
+ parent: 951
- uid: 26648
components:
- type: Transform
@@ -18957,18 +19304,21 @@ entities:
- uid: 26689
components:
- type: Transform
- pos: -53.5,-71.5
- parent: 5350
+ anchored: False
+ pos: -51.22899,-73.91482
+ parent: 951
- uid: 26691
components:
- type: Transform
- pos: -49.5,-71.5
- parent: 5350
+ anchored: False
+ pos: -47.22899,-73.91482
+ parent: 951
- uid: 26694
components:
- type: Transform
- pos: -45.5,-71.5
- parent: 5350
+ anchored: False
+ pos: -43.22899,-73.91482
+ parent: 951
- uid: 26695
components:
- type: Transform
@@ -21484,7 +21834,7 @@ entities:
- type: Transform
pos: 0.5,-34.5
parent: 5350
- - uid: 24003
+ - uid: 19901
components:
- type: Transform
pos: 54.5,5.5
@@ -21756,6 +22106,8 @@ entities:
entities:
- uid: 1740
components:
+ - type: MetaData
+ desc: Defintely not a relabeled brigmedic bedsheet, nope.
- type: Transform
pos: -1.5,40.5
parent: 5350
@@ -22031,11 +22383,26 @@ entities:
- type: Transform
pos: -45.5,19.5
parent: 5350
+ - uid: 9185
+ components:
+ - type: Transform
+ pos: 70.5,-28.5
+ parent: 5350
+ - uid: 9188
+ components:
+ - type: Transform
+ pos: 71.5,-28.5
+ parent: 5350
- uid: 9289
components:
- type: Transform
pos: -38.5,29.5
parent: 5350
+ - uid: 12418
+ components:
+ - type: Transform
+ pos: 72.5,-28.5
+ parent: 5350
- uid: 13163
components:
- type: Transform
@@ -22113,24 +22480,18 @@ entities:
parent: 5350
- uid: 22904
components:
+ - type: MetaData
+ name: Secure Armory Blast Doors
- type: Transform
pos: -7.5,41.5
parent: 5350
- - uid: 23565
- components:
- - type: Transform
- pos: 48.5,21.5
- parent: 5350
- - uid: 23566
- components:
- - type: Transform
- pos: 48.5,22.5
- parent: 5350
- - uid: 23567
+ - uid: 23391
components:
- type: Transform
pos: 48.5,23.5
parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 1
- uid: 27135
components:
- type: Transform
@@ -22145,6 +22506,20 @@ entities:
parent: 5350
- type: DeviceLinkSink
invokeCounter: 2
+ - uid: 28365
+ components:
+ - type: Transform
+ pos: 48.5,22.5
+ parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 28382
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 1
- proto: BlastDoorExterior1Open
entities:
- uid: 24634
@@ -22436,10 +22811,10 @@ entities:
parent: 5350
- proto: BookSpaceLaw
entities:
- - uid: 1972
+ - uid: 1376
components:
- type: Transform
- pos: -3.512158,38.516827
+ pos: -3.484253,37.5611
parent: 5350
- proto: BoozeDispenser
entities:
@@ -22646,7 +23021,7 @@ entities:
- uid: 8085
components:
- type: Transform
- pos: -19.498852,40.61381
+ pos: -19.518959,40.53281
parent: 5350
- proto: BoxEncryptionKeySecurity
entities:
@@ -22834,7 +23209,7 @@ entities:
- uid: 11174
components:
- type: Transform
- pos: -7.919447,-27.326408
+ pos: -7.767823,-27.351887
parent: 5350
- uid: 16240
components:
@@ -22843,11 +23218,6 @@ entities:
parent: 5350
- proto: BoxFolderYellow
entities:
- - uid: 3939
- components:
- - type: Transform
- pos: -27.494276,8.585135
- parent: 5350
- uid: 17784
components:
- type: Transform
@@ -22858,6 +23228,13 @@ entities:
- type: Transform
pos: -30.686172,13.643055
parent: 5350
+- proto: BoxHandcuff
+ entities:
+ - uid: 19932
+ components:
+ - type: Transform
+ pos: 8.583343,28.732727
+ parent: 5350
- proto: BoxHeadset
entities:
- uid: 6801
@@ -22879,18 +23256,13 @@ entities:
parent: 5350
- proto: BoxLethalshot
entities:
- - uid: 14878
+ - uid: 3056
components:
- type: Transform
- parent: 13851
+ parent: 11588
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28210
- components:
- - type: Transform
- pos: -3.559033,37.59495
- parent: 5350
- proto: BoxLightbulb
entities:
- uid: 3949
@@ -23117,11 +23489,6 @@ entities:
parent: 5350
- proto: ButtonFrameCaution
entities:
- - uid: 2565
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 5350
- uid: 3064
components:
- type: Transform
@@ -23139,6 +23506,12 @@ entities:
- type: Transform
pos: -35.5,36.5
parent: 5350
+ - uid: 5095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,21.5
+ parent: 5350
- uid: 5405
components:
- type: Transform
@@ -23151,6 +23524,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,53.5
parent: 5350
+ - uid: 10835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-28.5
+ parent: 5350
- uid: 10965
components:
- type: Transform
@@ -23181,12 +23560,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 5350
- - uid: 16457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-58.5
- parent: 5350
- uid: 16494
components:
- type: Transform
@@ -23222,6 +23595,11 @@ entities:
rot: 3.141592653589793 rad
pos: -40.5,36.5
parent: 5350
+ - uid: 23569
+ components:
+ - type: Transform
+ pos: 73.5,-28.5
+ parent: 5350
- uid: 23966
components:
- type: Transform
@@ -23248,11 +23626,11 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,41.5
parent: 5350
- - uid: 14858
+ - uid: 7538
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,35.5
+ pos: -7.2534924,35.495472
parent: 5350
- uid: 22351
components:
@@ -23260,6 +23638,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -17.5,45.5
parent: 5350
+ - uid: 22612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.763909,35.495472
+ parent: 5350
- proto: ButtonFrameExit
entities:
- uid: 7125
@@ -23280,12 +23664,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-28.5
parent: 5350
- - uid: 21681
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-59.5
- parent: 5350
- proto: ButtonFrameGrey
entities:
- uid: 3005
@@ -24214,6 +24592,16 @@ entities:
- type: Transform
pos: 8.5,32.5
parent: 5350
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 72.5,5.5
+ parent: 5350
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 74.5,5.5
+ parent: 5350
- uid: 1544
components:
- type: Transform
@@ -25354,11 +25742,6 @@ entities:
- type: Transform
pos: 32.5,-45.5
parent: 5350
- - uid: 2999
- components:
- - type: Transform
- pos: 72.5,6.5
- parent: 5350
- uid: 3001
components:
- type: Transform
@@ -25504,11 +25887,6 @@ entities:
- type: Transform
pos: 36.5,-60.5
parent: 5350
- - uid: 3056
- components:
- - type: Transform
- pos: 69.5,6.5
- parent: 5350
- uid: 3068
components:
- type: Transform
@@ -26549,6 +26927,11 @@ entities:
- type: Transform
pos: 60.5,-19.5
parent: 5350
+ - uid: 5329
+ components:
+ - type: Transform
+ pos: 70.5,5.5
+ parent: 5350
- uid: 5334
components:
- type: Transform
@@ -27499,6 +27882,11 @@ entities:
- type: Transform
pos: -8.5,41.5
parent: 5350
+ - uid: 6762
+ components:
+ - type: Transform
+ pos: 45.5,25.5
+ parent: 5350
- uid: 6779
components:
- type: Transform
@@ -27514,6 +27902,11 @@ entities:
- type: Transform
pos: 8.5,-61.5
parent: 5350
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 5350
- uid: 6863
components:
- type: Transform
@@ -28194,6 +28587,11 @@ entities:
- type: Transform
pos: 9.5,47.5
parent: 5350
+ - uid: 7730
+ components:
+ - type: Transform
+ pos: -50.5,2.5
+ parent: 5350
- uid: 7731
components:
- type: Transform
@@ -28289,6 +28687,11 @@ entities:
- type: Transform
pos: 60.5,-14.5
parent: 5350
+ - uid: 7940
+ components:
+ - type: Transform
+ pos: 75.5,5.5
+ parent: 5350
- uid: 7941
components:
- type: Transform
@@ -28339,11 +28742,6 @@ entities:
- type: Transform
pos: 53.5,-11.5
parent: 5350
- - uid: 8311
- components:
- - type: Transform
- pos: 71.5,6.5
- parent: 5350
- uid: 8351
components:
- type: Transform
@@ -38159,16 +38557,6 @@ entities:
- type: Transform
pos: 45.5,24.5
parent: 5350
- - uid: 23222
- components:
- - type: Transform
- pos: 47.5,24.5
- parent: 5350
- - uid: 23229
- components:
- - type: Transform
- pos: 46.5,24.5
- parent: 5350
- uid: 23234
components:
- type: Transform
@@ -38184,16 +38572,6 @@ entities:
- type: Transform
pos: 45.5,21.5
parent: 5350
- - uid: 23239
- components:
- - type: Transform
- pos: 47.5,23.5
- parent: 5350
- - uid: 23240
- components:
- - type: Transform
- pos: 47.5,22.5
- parent: 5350
- uid: 23242
components:
- type: Transform
@@ -38247,12 +38625,12 @@ entities:
- uid: 23256
components:
- type: Transform
- pos: 44.5,15.5
+ pos: 44.5,14.5
parent: 5350
- uid: 23257
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 42.5,13.5
parent: 5350
- uid: 23258
components:
@@ -38409,11 +38787,6 @@ entities:
- type: Transform
pos: 52.5,6.5
parent: 5350
- - uid: 23312
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 5350
- uid: 23313
components:
- type: Transform
@@ -38549,11 +38922,6 @@ entities:
- type: Transform
pos: 104.5,-13.5
parent: 5350
- - uid: 23356
- components:
- - type: Transform
- pos: 76.5,6.5
- parent: 5350
- uid: 23364
components:
- type: Transform
@@ -38739,6 +39107,16 @@ entities:
- type: Transform
pos: 31.5,37.5
parent: 5350
+ - uid: 23612
+ components:
+ - type: Transform
+ pos: 71.5,5.5
+ parent: 5350
+ - uid: 23615
+ components:
+ - type: Transform
+ pos: 73.5,5.5
+ parent: 5350
- uid: 23813
components:
- type: Transform
@@ -38784,11 +39162,6 @@ entities:
- type: Transform
pos: -60.5,-15.5
parent: 5350
- - uid: 23973
- components:
- - type: Transform
- pos: 73.5,6.5
- parent: 5350
- uid: 23991
components:
- type: Transform
@@ -38989,6 +39362,11 @@ entities:
- type: Transform
pos: -25.5,-56.5
parent: 5350
+ - uid: 24594
+ components:
+ - type: Transform
+ pos: 17.5,-61.5
+ parent: 5350
- uid: 24637
components:
- type: Transform
@@ -40049,11 +40427,6 @@ entities:
- type: Transform
pos: 10.5,-14.5
parent: 5350
- - uid: 26842
- components:
- - type: Transform
- pos: 74.5,6.5
- parent: 5350
- uid: 26980
components:
- type: Transform
@@ -40744,11 +41117,6 @@ entities:
- type: Transform
pos: 7.5,-26.5
parent: 5350
- - uid: 28216
- components:
- - type: Transform
- pos: 75.5,6.5
- parent: 5350
- uid: 28247
components:
- type: Transform
@@ -40854,6 +41222,61 @@ entities:
- type: Transform
pos: 3.5,-46.5
parent: 5350
+ - uid: 28406
+ components:
+ - type: Transform
+ pos: 53.5,4.5
+ parent: 5350
+ - uid: 28407
+ components:
+ - type: Transform
+ pos: 54.5,4.5
+ parent: 5350
+ - uid: 28408
+ components:
+ - type: Transform
+ pos: 55.5,4.5
+ parent: 5350
+ - uid: 28409
+ components:
+ - type: Transform
+ pos: 56.5,4.5
+ parent: 5350
+ - uid: 28439
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 5350
+ - uid: 28440
+ components:
+ - type: Transform
+ pos: 44.5,13.5
+ parent: 5350
+ - uid: 28441
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 5350
+ - uid: 28442
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 5350
+ - uid: 28443
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 5350
+ - uid: 28444
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 5350
+ - uid: 28445
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 5350
- proto: CableApcStack
entities:
- uid: 1550
@@ -41193,15 +41616,15 @@ entities:
- type: Transform
pos: 22.5,3.5
parent: 5350
- - uid: 2143
+ - uid: 2150
components:
- type: Transform
- pos: 47.5,-20.5
+ pos: 15.5,9.5
parent: 5350
- - uid: 2150
+ - uid: 2565
components:
- type: Transform
- pos: 15.5,9.5
+ pos: -54.5,-62.5
parent: 5350
- uid: 2710
components:
@@ -41278,6 +41701,16 @@ entities:
- type: Transform
pos: -27.5,23.5
parent: 5350
+ - uid: 3602
+ components:
+ - type: Transform
+ pos: -54.5,-60.5
+ parent: 5350
+ - uid: 3763
+ components:
+ - type: Transform
+ pos: -54.5,-61.5
+ parent: 5350
- uid: 3835
components:
- type: Transform
@@ -42613,11 +43046,6 @@ entities:
- type: Transform
pos: 31.5,-38.5
parent: 5350
- - uid: 6362
- components:
- - type: Transform
- pos: 70.5,3.5
- parent: 5350
- uid: 6401
components:
- type: Transform
@@ -42703,6 +43131,11 @@ entities:
- type: Transform
pos: -16.5,34.5
parent: 5350
+ - uid: 7047
+ components:
+ - type: Transform
+ pos: 69.5,54.5
+ parent: 5350
- uid: 7129
components:
- type: Transform
@@ -42773,6 +43206,11 @@ entities:
- type: Transform
pos: -25.5,52.5
parent: 5350
+ - uid: 8087
+ components:
+ - type: Transform
+ pos: -54.5,-59.5
+ parent: 5350
- uid: 8089
components:
- type: Transform
@@ -42788,6 +43226,11 @@ entities:
- type: Transform
pos: -25.5,54.5
parent: 5350
+ - uid: 8311
+ components:
+ - type: Transform
+ pos: 63.5,29.5
+ parent: 5350
- uid: 8369
components:
- type: Transform
@@ -42803,6 +43246,11 @@ entities:
- type: Transform
pos: -30.5,60.5
parent: 5350
+ - uid: 8575
+ components:
+ - type: Transform
+ pos: 70.5,12.5
+ parent: 5350
- uid: 8589
components:
- type: Transform
@@ -42818,6 +43266,26 @@ entities:
- type: Transform
pos: 25.5,46.5
parent: 5350
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: 70.5,11.5
+ parent: 5350
+ - uid: 8599
+ components:
+ - type: Transform
+ pos: 65.5,29.5
+ parent: 5350
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 5350
+ - uid: 8601
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 5350
- uid: 8621
components:
- type: Transform
@@ -42836,27 +43304,52 @@ entities:
- uid: 9032
components:
- type: Transform
- pos: 51.5,-0.5
+ pos: 67.5,-29.5
parent: 5350
- uid: 9036
components:
- type: Transform
- pos: 51.5,1.5
+ pos: 55.5,8.5
parent: 5350
- uid: 9037
components:
- type: Transform
- pos: 51.5,3.5
+ pos: 55.5,7.5
parent: 5350
- uid: 9082
components:
- type: Transform
pos: 51.5,2.5
parent: 5350
- - uid: 9122
+ - uid: 9093
components:
- type: Transform
- pos: 44.5,18.5
+ pos: 55.5,6.5
+ parent: 5350
+ - uid: 9094
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 5350
+ - uid: 9095
+ components:
+ - type: Transform
+ pos: 44.5,17.5
+ parent: 5350
+ - uid: 9097
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 5350
+ - uid: 9098
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 5350
+ - uid: 9103
+ components:
+ - type: Transform
+ pos: 43.5,14.5
parent: 5350
- uid: 9123
components:
@@ -42888,16 +43381,6 @@ entities:
- type: Transform
pos: 43.5,18.5
parent: 5350
- - uid: 9129
- components:
- - type: Transform
- pos: 44.5,16.5
- parent: 5350
- - uid: 9130
- components:
- - type: Transform
- pos: 44.5,17.5
- parent: 5350
- uid: 9131
components:
- type: Transform
@@ -42913,25 +43396,10 @@ entities:
- type: Transform
pos: 42.5,13.5
parent: 5350
- - uid: 9136
- components:
- - type: Transform
- pos: 43.5,13.5
- parent: 5350
- - uid: 9137
- components:
- - type: Transform
- pos: 44.5,13.5
- parent: 5350
- uid: 9138
components:
- type: Transform
- pos: 45.5,13.5
- parent: 5350
- - uid: 9139
- components:
- - type: Transform
- pos: 46.5,13.5
+ pos: 67.5,-28.5
parent: 5350
- uid: 9141
components:
@@ -43008,6 +43476,56 @@ entities:
- type: Transform
pos: 48.5,13.5
parent: 5350
+ - uid: 9183
+ components:
+ - type: Transform
+ pos: 69.5,-29.5
+ parent: 5350
+ - uid: 9184
+ components:
+ - type: Transform
+ pos: 56.5,8.5
+ parent: 5350
+ - uid: 9189
+ components:
+ - type: Transform
+ pos: 70.5,28.5
+ parent: 5350
+ - uid: 9190
+ components:
+ - type: Transform
+ pos: 70.5,29.5
+ parent: 5350
+ - uid: 9194
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 5350
+ - uid: 9195
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 5350
+ - uid: 9198
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 5350
+ - uid: 9202
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 5350
+ - uid: 9203
+ components:
+ - type: Transform
+ pos: 73.5,56.5
+ parent: 5350
+ - uid: 9204
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 5350
- uid: 9290
components:
- type: Transform
@@ -43103,6 +43621,11 @@ entities:
- type: Transform
pos: 17.5,-56.5
parent: 5350
+ - uid: 9537
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 5350
- uid: 9549
components:
- type: Transform
@@ -43138,6 +43661,11 @@ entities:
- type: Transform
pos: -21.5,33.5
parent: 5350
+ - uid: 10131
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 5350
- uid: 10137
components:
- type: Transform
@@ -43233,6 +43761,11 @@ entities:
- type: Transform
pos: -26.5,62.5
parent: 5350
+ - uid: 10416
+ components:
+ - type: Transform
+ pos: 73.5,49.5
+ parent: 5350
- uid: 10432
components:
- type: Transform
@@ -43693,11 +44226,6 @@ entities:
- type: Transform
pos: 27.5,-56.5
parent: 5350
- - uid: 10832
- components:
- - type: Transform
- pos: 69.5,-26.5
- parent: 5350
- uid: 10834
components:
- type: Transform
@@ -43723,10 +44251,25 @@ entities:
- type: Transform
pos: 54.5,32.5
parent: 5350
- - uid: 11474
+ - uid: 11600
components:
- type: Transform
- pos: 43.5,-20.5
+ pos: 44.5,14.5
+ parent: 5350
+ - uid: 11646
+ components:
+ - type: Transform
+ pos: -44.5,-63.5
+ parent: 5350
+ - uid: 11665
+ components:
+ - type: Transform
+ pos: 73.5,53.5
+ parent: 5350
+ - uid: 11753
+ components:
+ - type: Transform
+ pos: 44.5,18.5
parent: 5350
- uid: 11877
components:
@@ -43923,10 +44466,15 @@ entities:
- type: Transform
pos: 42.5,-17.5
parent: 5350
- - uid: 12022
+ - uid: 11924
components:
- type: Transform
- pos: 68.5,-26.5
+ pos: 44.5,16.5
+ parent: 5350
+ - uid: 11952
+ components:
+ - type: Transform
+ pos: 73.5,55.5
parent: 5350
- uid: 12043
components:
@@ -43958,6 +44506,11 @@ entities:
- type: Transform
pos: 16.5,5.5
parent: 5350
+ - uid: 12297
+ components:
+ - type: Transform
+ pos: -52.5,-60.5
+ parent: 5350
- uid: 12364
components:
- type: Transform
@@ -44023,6 +44576,11 @@ entities:
- type: Transform
pos: 48.5,3.5
parent: 5350
+ - uid: 12411
+ components:
+ - type: Transform
+ pos: 73.5,52.5
+ parent: 5350
- uid: 12420
components:
- type: Transform
@@ -44133,45 +44691,20 @@ entities:
- type: Transform
pos: 52.5,-20.5
parent: 5350
- - uid: 12442
- components:
- - type: Transform
- pos: 51.5,-20.5
- parent: 5350
- uid: 12443
components:
- type: Transform
- pos: 50.5,-20.5
- parent: 5350
- - uid: 12444
- components:
- - type: Transform
- pos: 49.5,-20.5
- parent: 5350
- - uid: 12445
- components:
- - type: Transform
- pos: 48.5,-20.5
- parent: 5350
- - uid: 12447
- components:
- - type: Transform
- pos: 46.5,-20.5
+ pos: 67.5,-27.5
parent: 5350
- - uid: 12448
+ - uid: 12446
components:
- type: Transform
- pos: 45.5,-20.5
+ pos: 68.5,-29.5
parent: 5350
- uid: 12449
components:
- type: Transform
- pos: 44.5,-20.5
- parent: 5350
- - uid: 12451
- components:
- - type: Transform
- pos: 42.5,-20.5
+ pos: 67.5,53.5
parent: 5350
- uid: 12465
components:
@@ -44243,11 +44776,6 @@ entities:
- type: Transform
pos: 57.5,8.5
parent: 5350
- - uid: 12480
- components:
- - type: Transform
- pos: 56.5,8.5
- parent: 5350
- uid: 12482
components:
- type: Transform
@@ -44363,6 +44891,16 @@ entities:
- type: Transform
pos: 51.5,17.5
parent: 5350
+ - uid: 12541
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 5350
+ - uid: 12666
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 5350
- uid: 13118
components:
- type: Transform
@@ -45178,6 +45716,11 @@ entities:
- type: Transform
pos: 8.5,-62.5
parent: 5350
+ - uid: 14728
+ components:
+ - type: Transform
+ pos: -58.5,-64.5
+ parent: 5350
- uid: 15073
components:
- type: Transform
@@ -45188,6 +45731,11 @@ entities:
- type: Transform
pos: -29.5,30.5
parent: 5350
+ - uid: 15132
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 5350
- uid: 15341
components:
- type: Transform
@@ -45333,6 +45881,11 @@ entities:
- type: Transform
pos: 29.5,-49.5
parent: 5350
+ - uid: 16263
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 5350
- uid: 16284
components:
- type: Transform
@@ -45388,6 +45941,21 @@ entities:
- type: Transform
pos: 6.5,-62.5
parent: 5350
+ - uid: 16730
+ components:
+ - type: Transform
+ pos: -58.5,-59.5
+ parent: 5350
+ - uid: 16931
+ components:
+ - type: Transform
+ pos: -58.5,-61.5
+ parent: 5350
+ - uid: 16938
+ components:
+ - type: Transform
+ pos: -43.5,-63.5
+ parent: 5350
- uid: 16958
components:
- type: Transform
@@ -45418,11 +45986,6 @@ entities:
- type: Transform
pos: -58.5,-65.5
parent: 5350
- - uid: 16964
- components:
- - type: Transform
- pos: -58.5,-64.5
- parent: 5350
- uid: 16965
components:
- type: Transform
@@ -45453,20 +46016,10 @@ entities:
- type: Transform
pos: -56.5,-65.5
parent: 5350
- - uid: 16971
- components:
- - type: Transform
- pos: -56.5,-64.5
- parent: 5350
- - uid: 16972
- components:
- - type: Transform
- pos: -57.5,-71.5
- parent: 5350
- uid: 16973
components:
- type: Transform
- pos: -53.5,-71.5
+ pos: -59.5,-63.5
parent: 5350
- uid: 16974
components:
@@ -45498,11 +46051,6 @@ entities:
- type: Transform
pos: -54.5,-65.5
parent: 5350
- - uid: 16980
- components:
- - type: Transform
- pos: -54.5,-64.5
- parent: 5350
- uid: 16981
components:
- type: Transform
@@ -45533,11 +46081,6 @@ entities:
- type: Transform
pos: -52.5,-65.5
parent: 5350
- - uid: 16987
- components:
- - type: Transform
- pos: -52.5,-64.5
- parent: 5350
- uid: 16988
components:
- type: Transform
@@ -45568,15 +46111,10 @@ entities:
- type: Transform
pos: -50.5,-65.5
parent: 5350
- - uid: 16994
- components:
- - type: Transform
- pos: -50.5,-64.5
- parent: 5350
- uid: 16995
components:
- type: Transform
- pos: -49.5,-71.5
+ pos: -44.5,-64.5
parent: 5350
- uid: 16996
components:
@@ -45611,7 +46149,7 @@ entities:
- uid: 17002
components:
- type: Transform
- pos: -48.5,-64.5
+ pos: -46.5,-64.5
parent: 5350
- uid: 17003
components:
@@ -45646,7 +46184,7 @@ entities:
- uid: 17009
components:
- type: Transform
- pos: -46.5,-64.5
+ pos: -56.5,-62.5
parent: 5350
- uid: 17010
components:
@@ -45681,142 +46219,157 @@ entities:
- uid: 17016
components:
- type: Transform
- pos: -44.5,-64.5
+ pos: 38.5,-77.5
parent: 5350
- - uid: 17017
+ - uid: 17034
components:
- type: Transform
- pos: -45.5,-71.5
+ pos: -57.5,-70.5
parent: 5350
- - uid: 17018
+ - uid: 17035
components:
- type: Transform
- pos: -46.5,-62.5
+ pos: -53.5,-70.5
parent: 5350
- - uid: 17019
+ - uid: 17036
components:
- type: Transform
- pos: -45.5,-61.5
+ pos: -49.5,-70.5
parent: 5350
- - uid: 17020
+ - uid: 17037
components:
- type: Transform
- pos: -44.5,-62.5
+ pos: -45.5,-70.5
parent: 5350
- - uid: 17021
+ - uid: 17042
components:
- type: Transform
- pos: -45.5,-62.5
+ pos: -60.5,-63.5
parent: 5350
- - uid: 17022
+ - uid: 17043
components:
- type: Transform
- pos: -48.5,-62.5
+ pos: -61.5,-63.5
parent: 5350
- - uid: 17023
+ - uid: 17065
components:
- type: Transform
- pos: -49.5,-62.5
+ pos: -52.5,-62.5
parent: 5350
- - uid: 17024
+ - uid: 17066
components:
- type: Transform
- pos: -50.5,-62.5
+ pos: -58.5,-62.5
parent: 5350
- - uid: 17025
+ - uid: 17067
components:
- type: Transform
- pos: -49.5,-61.5
+ pos: -56.5,-61.5
parent: 5350
- - uid: 17026
+ - uid: 17068
components:
- type: Transform
- pos: -52.5,-62.5
+ pos: -56.5,-59.5
parent: 5350
- - uid: 17027
+ - uid: 17069
components:
- type: Transform
- pos: -53.5,-62.5
+ pos: -56.5,-60.5
parent: 5350
- - uid: 17028
+ - uid: 17070
components:
- type: Transform
- pos: -54.5,-62.5
+ pos: -48.5,-62.5
parent: 5350
- - uid: 17029
+ - uid: 17071
components:
- type: Transform
- pos: -53.5,-61.5
+ pos: -48.5,-61.5
parent: 5350
- - uid: 17030
+ - uid: 17078
components:
- type: Transform
- pos: -56.5,-62.5
+ pos: -48.5,-59.5
parent: 5350
- - uid: 17031
+ - uid: 17079
components:
- type: Transform
- pos: -57.5,-62.5
+ pos: -48.5,-60.5
parent: 5350
- - uid: 17032
+ - uid: 17092
components:
- type: Transform
- pos: -58.5,-62.5
+ pos: -44.5,-59.5
parent: 5350
- - uid: 17033
+ - uid: 17093
components:
- type: Transform
- pos: -57.5,-61.5
+ pos: -44.5,-61.5
parent: 5350
- - uid: 17034
+ - uid: 17106
components:
- type: Transform
- pos: -57.5,-70.5
+ pos: -44.5,-62.5
parent: 5350
- - uid: 17035
+ - uid: 17107
components:
- type: Transform
- pos: -53.5,-70.5
+ pos: -46.5,-61.5
parent: 5350
- - uid: 17036
+ - uid: 17114
components:
- type: Transform
- pos: -49.5,-70.5
+ pos: -46.5,-62.5
parent: 5350
- - uid: 17037
+ - uid: 17115
components:
- type: Transform
- pos: -45.5,-70.5
+ pos: -46.5,-60.5
parent: 5350
- - uid: 17038
+ - uid: 17116
components:
- type: Transform
- pos: -57.5,-64.5
+ pos: -46.5,-59.5
parent: 5350
- - uid: 17039
+ - uid: 17123
components:
- type: Transform
- pos: -53.5,-64.5
+ pos: -50.5,-62.5
parent: 5350
- - uid: 17040
+ - uid: 17125
components:
- type: Transform
- pos: -49.5,-64.5
+ pos: -58.5,-63.5
parent: 5350
- - uid: 17041
+ - uid: 17132
components:
- type: Transform
- pos: -45.5,-64.5
+ pos: -50.5,-61.5
parent: 5350
- - uid: 17042
+ - uid: 17134
components:
- type: Transform
- pos: -60.5,-63.5
+ pos: -50.5,-59.5
parent: 5350
- - uid: 17043
+ - uid: 17150
components:
- type: Transform
- pos: -61.5,-63.5
+ pos: -50.5,-60.5
+ parent: 5350
+ - uid: 17151
+ components:
+ - type: Transform
+ pos: 38.5,-76.5
+ parent: 5350
+ - uid: 17166
+ components:
+ - type: Transform
+ pos: 38.5,-66.5
+ parent: 5350
+ - uid: 17167
+ components:
+ - type: Transform
+ pos: 38.5,-72.5
parent: 5350
- uid: 17173
components:
@@ -45861,7 +46414,7 @@ entities:
- uid: 17206
components:
- type: Transform
- pos: -43.5,-63.5
+ pos: 38.5,-71.5
parent: 5350
- uid: 17347
components:
@@ -46913,26 +47466,6 @@ entities:
- type: Transform
pos: 63.5,44.5
parent: 5350
- - uid: 18856
- components:
- - type: Transform
- pos: 63.5,45.5
- parent: 5350
- - uid: 18857
- components:
- - type: Transform
- pos: 63.5,46.5
- parent: 5350
- - uid: 18858
- components:
- - type: Transform
- pos: 63.5,47.5
- parent: 5350
- - uid: 18859
- components:
- - type: Transform
- pos: 63.5,48.5
- parent: 5350
- uid: 18860
components:
- type: Transform
@@ -47003,6 +47536,11 @@ entities:
- type: Transform
pos: -29.5,24.5
parent: 5350
+ - uid: 19851
+ components:
+ - type: Transform
+ pos: -44.5,-60.5
+ parent: 5350
- uid: 19887
components:
- type: Transform
@@ -47018,11 +47556,6 @@ entities:
- type: Transform
pos: 34.5,-69.5
parent: 5350
- - uid: 19890
- components:
- - type: Transform
- pos: 33.5,-68.5
- parent: 5350
- uid: 19891
components:
- type: Transform
@@ -47053,11 +47586,6 @@ entities:
- type: Transform
pos: 42.5,-69.5
parent: 5350
- - uid: 19897
- components:
- - type: Transform
- pos: 43.5,-68.5
- parent: 5350
- uid: 19898
components:
- type: Transform
@@ -47073,16 +47601,6 @@ entities:
- type: Transform
pos: 40.5,-67.5
parent: 5350
- - uid: 19901
- components:
- - type: Transform
- pos: 42.5,-68.5
- parent: 5350
- - uid: 19902
- components:
- - type: Transform
- pos: 34.5,-68.5
- parent: 5350
- uid: 19903
components:
- type: Transform
@@ -47118,16 +47636,6 @@ entities:
- type: Transform
pos: 42.5,-73.5
parent: 5350
- - uid: 19910
- components:
- - type: Transform
- pos: 42.5,-72.5
- parent: 5350
- - uid: 19911
- components:
- - type: Transform
- pos: 43.5,-72.5
- parent: 5350
- uid: 19912
components:
- type: Transform
@@ -47178,16 +47686,6 @@ entities:
- type: Transform
pos: 34.5,-73.5
parent: 5350
- - uid: 19922
- components:
- - type: Transform
- pos: 34.5,-72.5
- parent: 5350
- - uid: 19923
- components:
- - type: Transform
- pos: 33.5,-72.5
- parent: 5350
- uid: 19924
components:
- type: Transform
@@ -47228,16 +47726,6 @@ entities:
- type: Transform
pos: 34.5,-77.5
parent: 5350
- - uid: 19932
- components:
- - type: Transform
- pos: 34.5,-76.5
- parent: 5350
- - uid: 19933
- components:
- - type: Transform
- pos: 33.5,-76.5
- parent: 5350
- uid: 19934
components:
- type: Transform
@@ -47278,16 +47766,6 @@ entities:
- type: Transform
pos: 42.5,-75.5
parent: 5350
- - uid: 19942
- components:
- - type: Transform
- pos: 42.5,-76.5
- parent: 5350
- - uid: 19943
- components:
- - type: Transform
- pos: 43.5,-76.5
- parent: 5350
- uid: 19944
components:
- type: Transform
@@ -47373,6 +47851,16 @@ entities:
- type: Transform
pos: 38.5,-56.5
parent: 5350
+ - uid: 19985
+ components:
+ - type: Transform
+ pos: -58.5,-60.5
+ parent: 5350
+ - uid: 19999
+ components:
+ - type: Transform
+ pos: -57.5,-63.5
+ parent: 5350
- uid: 20023
components:
- type: Transform
@@ -47408,6 +47896,11 @@ entities:
- type: Transform
pos: -2.5,1.5
parent: 5350
+ - uid: 21164
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 5350
- uid: 21277
components:
- type: Transform
@@ -47928,15 +48421,30 @@ entities:
- type: Transform
pos: 95.5,0.5
parent: 5350
+ - uid: 23069
+ components:
+ - type: Transform
+ pos: -52.5,-64.5
+ parent: 5350
- uid: 23129
components:
- type: Transform
pos: 96.5,0.5
parent: 5350
- - uid: 23612
+ - uid: 23145
components:
- type: Transform
- pos: 63.5,29.5
+ pos: -56.5,-64.5
+ parent: 5350
+ - uid: 23385
+ components:
+ - type: Transform
+ pos: 70.5,48.5
+ parent: 5350
+ - uid: 23565
+ components:
+ - type: Transform
+ pos: 43.5,15.5
parent: 5350
- uid: 23618
components:
@@ -47993,6 +48501,36 @@ entities:
- type: Transform
pos: 63.5,11.5
parent: 5350
+ - uid: 23629
+ components:
+ - type: Transform
+ pos: 64.5,11.5
+ parent: 5350
+ - uid: 23630
+ components:
+ - type: Transform
+ pos: 65.5,11.5
+ parent: 5350
+ - uid: 23631
+ components:
+ - type: Transform
+ pos: 66.5,11.5
+ parent: 5350
+ - uid: 23632
+ components:
+ - type: Transform
+ pos: 67.5,11.5
+ parent: 5350
+ - uid: 23633
+ components:
+ - type: Transform
+ pos: 68.5,11.5
+ parent: 5350
+ - uid: 23634
+ components:
+ - type: Transform
+ pos: 69.5,11.5
+ parent: 5350
- uid: 23642
components:
- type: Transform
@@ -48098,6 +48636,16 @@ entities:
- type: Transform
pos: 56.5,30.5
parent: 5350
+ - uid: 23733
+ components:
+ - type: Transform
+ pos: 64.5,54.5
+ parent: 5350
+ - uid: 23760
+ components:
+ - type: Transform
+ pos: 71.5,48.5
+ parent: 5350
- uid: 23794
components:
- type: Transform
@@ -48178,6 +48726,21 @@ entities:
- type: Transform
pos: 54.5,29.5
parent: 5350
+ - uid: 23906
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 5350
+ - uid: 23908
+ components:
+ - type: Transform
+ pos: 66.5,29.5
+ parent: 5350
+ - uid: 23909
+ components:
+ - type: Transform
+ pos: 68.5,29.5
+ parent: 5350
- uid: 24059
components:
- type: Transform
@@ -48353,11 +48916,6 @@ entities:
- type: Transform
pos: 52.5,-21.5
parent: 5350
- - uid: 24302
- components:
- - type: Transform
- pos: 70.5,-28.5
- parent: 5350
- uid: 24303
components:
- type: Transform
@@ -48598,100 +49156,260 @@ entities:
- type: Transform
pos: 71.5,-31.5
parent: 5350
- - uid: 27996
+ - uid: 28021
components:
- type: Transform
- pos: 70.5,-27.5
+ pos: 71.5,-29.5
parent: 5350
- - uid: 27997
+ - uid: 28022
components:
- type: Transform
- pos: 71.5,-27.5
+ pos: 73.5,-29.5
parent: 5350
- - uid: 27998
+ - uid: 28023
components:
- type: Transform
- pos: 72.5,-27.5
+ pos: 74.5,-29.5
parent: 5350
- - uid: 28005
+ - uid: 28024
components:
- type: Transform
- pos: 69.5,-25.5
+ pos: 75.5,-29.5
parent: 5350
- - uid: 28006
+ - uid: 28025
components:
- type: Transform
- pos: 70.5,-25.5
+ pos: 72.5,-29.5
parent: 5350
- - uid: 28007
+ - uid: 28026
components:
- type: Transform
- pos: 71.5,-25.5
+ pos: 75.5,-30.5
parent: 5350
- - uid: 28008
+ - uid: 28027
components:
- type: Transform
- pos: 72.5,-25.5
+ pos: 76.5,-30.5
parent: 5350
- - uid: 28009
+ - uid: 28028
components:
- type: Transform
- pos: 72.5,-26.5
+ pos: 77.5,-30.5
parent: 5350
- - uid: 28010
+ - uid: 28193
components:
- type: Transform
- pos: 71.5,-26.5
+ pos: 52.5,18.5
parent: 5350
- - uid: 28011
+ - uid: 28403
components:
- type: Transform
- pos: 70.5,-26.5
+ pos: 41.5,14.5
parent: 5350
- - uid: 28021
+ - uid: 28413
components:
- type: Transform
- pos: 71.5,-29.5
+ pos: 55.5,5.5
parent: 5350
- - uid: 28022
+ - uid: 28414
components:
- type: Transform
- pos: 73.5,-29.5
+ pos: 55.5,4.5
parent: 5350
- - uid: 28023
+ - uid: 28415
components:
- type: Transform
- pos: 74.5,-29.5
+ pos: 55.5,3.5
parent: 5350
- - uid: 28024
+ - uid: 28416
components:
- type: Transform
- pos: 75.5,-29.5
+ pos: 55.5,2.5
parent: 5350
- - uid: 28025
+ - uid: 28417
components:
- type: Transform
- pos: 72.5,-29.5
+ pos: 55.5,1.5
parent: 5350
- - uid: 28026
+ - uid: 28418
components:
- type: Transform
- pos: 75.5,-30.5
+ pos: 55.5,0.5
parent: 5350
- - uid: 28027
+ - uid: 28419
components:
- type: Transform
- pos: 76.5,-30.5
+ pos: 55.5,-0.5
parent: 5350
- - uid: 28028
+ - uid: 28495
components:
- type: Transform
- pos: 77.5,-30.5
+ pos: 73.5,50.5
parent: 5350
- - uid: 28193
+ - uid: 28499
components:
- type: Transform
- pos: 52.5,18.5
+ pos: 69.5,48.5
+ parent: 5350
+ - uid: 28503
+ components:
+ - type: Transform
+ pos: 65.5,54.5
+ parent: 5350
+ - uid: 28513
+ components:
+ - type: Transform
+ pos: -52.5,-59.5
+ parent: 5350
+ - uid: 28514
+ components:
+ - type: Transform
+ pos: -52.5,-61.5
+ parent: 5350
+ - uid: 28532
+ components:
+ - type: Transform
+ pos: 38.5,-75.5
+ parent: 5350
+ - uid: 28548
+ components:
+ - type: Transform
+ pos: 33.5,-71.5
+ parent: 5350
+ - uid: 28549
+ components:
+ - type: Transform
+ pos: 32.5,-71.5
+ parent: 5350
+ - uid: 28550
+ components:
+ - type: Transform
+ pos: 32.5,-73.5
+ parent: 5350
+ - uid: 28551
+ components:
+ - type: Transform
+ pos: 33.5,-73.5
+ parent: 5350
+ - uid: 28552
+ components:
+ - type: Transform
+ pos: 33.5,-77.5
+ parent: 5350
+ - uid: 28553
+ components:
+ - type: Transform
+ pos: 32.5,-77.5
+ parent: 5350
+ - uid: 28554
+ components:
+ - type: Transform
+ pos: 33.5,-75.5
+ parent: 5350
+ - uid: 28555
+ components:
+ - type: Transform
+ pos: 32.5,-75.5
+ parent: 5350
+ - uid: 28556
+ components:
+ - type: Transform
+ pos: 33.5,-67.5
+ parent: 5350
+ - uid: 28557
+ components:
+ - type: Transform
+ pos: 32.5,-67.5
+ parent: 5350
+ - uid: 28558
+ components:
+ - type: Transform
+ pos: 33.5,-69.5
+ parent: 5350
+ - uid: 28559
+ components:
+ - type: Transform
+ pos: 32.5,-69.5
+ parent: 5350
+ - uid: 28561
+ components:
+ - type: Transform
+ pos: 43.5,-67.5
+ parent: 5350
+ - uid: 28562
+ components:
+ - type: Transform
+ pos: 44.5,-67.5
+ parent: 5350
+ - uid: 28563
+ components:
+ - type: Transform
+ pos: 44.5,-69.5
+ parent: 5350
+ - uid: 28564
+ components:
+ - type: Transform
+ pos: 43.5,-69.5
+ parent: 5350
+ - uid: 28565
+ components:
+ - type: Transform
+ pos: 44.5,-73.5
+ parent: 5350
+ - uid: 28566
+ components:
+ - type: Transform
+ pos: 43.5,-73.5
+ parent: 5350
+ - uid: 28567
+ components:
+ - type: Transform
+ pos: 44.5,-71.5
+ parent: 5350
+ - uid: 28568
+ components:
+ - type: Transform
+ pos: 43.5,-71.5
+ parent: 5350
+ - uid: 28569
+ components:
+ - type: Transform
+ pos: 44.5,-77.5
+ parent: 5350
+ - uid: 28570
+ components:
+ - type: Transform
+ pos: 43.5,-77.5
+ parent: 5350
+ - uid: 28571
+ components:
+ - type: Transform
+ pos: 44.5,-75.5
+ parent: 5350
+ - uid: 28572
+ components:
+ - type: Transform
+ pos: 43.5,-75.5
+ parent: 5350
+ - uid: 28593
+ components:
+ - type: Transform
+ pos: -52.5,-63.5
+ parent: 5350
+ - uid: 28594
+ components:
+ - type: Transform
+ pos: -53.5,-63.5
+ parent: 5350
+ - uid: 28595
+ components:
+ - type: Transform
+ pos: -54.5,-63.5
+ parent: 5350
+ - uid: 28596
+ components:
+ - type: Transform
+ pos: -51.5,-63.5
parent: 5350
- proto: CableHVStack
entities:
@@ -50697,6 +51415,11 @@ entities:
- type: Transform
pos: 15.5,41.5
parent: 5350
+ - uid: 5098
+ components:
+ - type: Transform
+ pos: 55.5,4.5
+ parent: 5350
- uid: 5100
components:
- type: Transform
@@ -51232,11 +51955,6 @@ entities:
- type: Transform
pos: -12.5,9.5
parent: 5350
- - uid: 6511
- components:
- - type: Transform
- pos: 62.5,29.5
- parent: 5350
- uid: 6515
components:
- type: Transform
@@ -51997,11 +52715,6 @@ entities:
- type: Transform
pos: -12.5,49.5
parent: 5350
- - uid: 7538
- components:
- - type: Transform
- pos: 69.5,12.5
- parent: 5350
- uid: 7552
components:
- type: Transform
@@ -52072,11 +52785,6 @@ entities:
- type: Transform
pos: 22.5,32.5
parent: 5350
- - uid: 7741
- components:
- - type: Transform
- pos: 71.5,12.5
- parent: 5350
- uid: 7753
components:
- type: Transform
@@ -52192,11 +52900,6 @@ entities:
- type: Transform
pos: 12.5,41.5
parent: 5350
- - uid: 7939
- components:
- - type: Transform
- pos: 64.5,29.5
- parent: 5350
- uid: 7952
components:
- type: Transform
@@ -52292,6 +52995,16 @@ entities:
- type: Transform
pos: -18.5,26.5
parent: 5350
+ - uid: 9192
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 5350
+ - uid: 9193
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 5350
- uid: 9213
components:
- type: Transform
@@ -53047,6 +53760,11 @@ entities:
- type: Transform
pos: -4.5,60.5
parent: 5350
+ - uid: 11474
+ components:
+ - type: Transform
+ pos: 56.5,4.5
+ parent: 5350
- uid: 11565
components:
- type: Transform
@@ -55872,11 +56590,6 @@ entities:
- type: Transform
pos: 74.5,28.5
parent: 5350
- - uid: 23408
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 5350
- uid: 23410
components:
- type: Transform
@@ -56122,11 +56835,6 @@ entities:
- type: Transform
pos: 30.5,49.5
parent: 5350
- - uid: 23613
- components:
- - type: Transform
- pos: 63.5,29.5
- parent: 5350
- uid: 23641
components:
- type: Transform
@@ -56642,21 +57350,6 @@ entities:
- type: Transform
pos: 47.5,24.5
parent: 5350
- - uid: 24048
- components:
- - type: Transform
- pos: 47.5,23.5
- parent: 5350
- - uid: 24049
- components:
- - type: Transform
- pos: 48.5,23.5
- parent: 5350
- - uid: 24050
- components:
- - type: Transform
- pos: 49.5,23.5
- parent: 5350
- uid: 24061
components:
- type: Transform
@@ -57047,6 +57740,31 @@ entities:
- type: Transform
pos: 2.5,-42.5
parent: 5350
+ - uid: 28490
+ components:
+ - type: Transform
+ pos: -8.5,45.5
+ parent: 5350
+ - uid: 28491
+ components:
+ - type: Transform
+ pos: -8.5,46.5
+ parent: 5350
+ - uid: 28492
+ components:
+ - type: Transform
+ pos: -8.5,47.5
+ parent: 5350
+ - uid: 28493
+ components:
+ - type: Transform
+ pos: -7.5,47.5
+ parent: 5350
+ - uid: 28494
+ components:
+ - type: Transform
+ pos: -6.5,47.5
+ parent: 5350
- proto: CableMVStack
entities:
- uid: 1548
@@ -57071,19 +57789,7 @@ entities:
parent: 5350
- proto: CableTerminal
entities:
- - uid: 9093
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,18.5
- parent: 5350
- - uid: 9132
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,16.5
- parent: 5350
- - uid: 9133
+ - uid: 9096
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -57123,6 +57829,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,-60.5
parent: 5350
+ - uid: 23593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,15.5
+ parent: 5350
- uid: 25869
components:
- type: Transform
@@ -57141,29 +57853,29 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,30.5
parent: 5350
- - uid: 27999
+ - uid: 28029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-30.5
parent: 5350
- - uid: 28000
+ - uid: 28361
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,16.5
parent: 5350
- - uid: 28001
+ - uid: 28362
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,18.5
parent: 5350
- - uid: 28029
+ - uid: 28363
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,14.5
parent: 5350
- proto: CannabisSeeds
entities:
@@ -59142,6 +59854,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 33.5,-26.5
parent: 5350
+ - uid: 3760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-61.5
+ parent: 5350
- uid: 3821
components:
- type: Transform
@@ -59222,12 +59940,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 31.5,-30.5
parent: 5350
- - uid: 4895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-20.5
- parent: 5350
- uid: 5389
components:
- type: Transform
@@ -59283,11 +59995,23 @@ entities:
rot: 3.141592653589793 rad
pos: 49.5,-35.5
parent: 5350
+ - uid: 6531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-62.5
+ parent: 5350
- uid: 6598
components:
- type: Transform
pos: -38.5,-57.5
parent: 5350
+ - uid: 6700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-60.5
+ parent: 5350
- uid: 6711
components:
- type: Transform
@@ -59501,6 +60225,16 @@ entities:
rot: 3.141592653589793 rad
pos: 49.5,-32.5
parent: 5350
+ - uid: 9129
+ components:
+ - type: Transform
+ pos: 43.5,-20.5
+ parent: 5350
+ - uid: 9139
+ components:
+ - type: Transform
+ pos: 47.5,-20.5
+ parent: 5350
- uid: 9149
components:
- type: Transform
@@ -59516,6 +60250,11 @@ entities:
- type: Transform
pos: 79.5,-13.5
parent: 5350
+ - uid: 9178
+ components:
+ - type: Transform
+ pos: 45.5,-20.5
+ parent: 5350
- uid: 9201
components:
- type: Transform
@@ -59760,12 +60499,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 43.5,-17.5
parent: 5350
- - uid: 11446
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-20.5
- parent: 5350
- uid: 11453
components:
- type: Transform
@@ -59799,12 +60532,6 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-34.5
parent: 5350
- - uid: 11924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-20.5
- parent: 5350
- uid: 12119
components:
- type: Transform
@@ -60206,11 +60933,27 @@ entities:
- type: Transform
pos: -25.5,53.5
parent: 5350
- - uid: 12446
+ - uid: 12354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-61.5
+ parent: 5350
+ - uid: 12442
+ components:
+ - type: Transform
+ pos: 44.5,-20.5
+ parent: 5350
+ - uid: 12444
+ components:
+ - type: Transform
+ pos: 46.5,-20.5
+ parent: 5350
+ - uid: 12447
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,-20.5
+ pos: 44.5,14.5
parent: 5350
- uid: 12641
components:
@@ -60288,6 +61031,12 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,-33.5
parent: 5350
+ - uid: 14064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-62.5
+ parent: 5350
- uid: 14141
components:
- type: Transform
@@ -60389,6 +61138,12 @@ entities:
- type: Transform
pos: 68.5,0.5
parent: 5350
+ - uid: 15009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-59.5
+ parent: 5350
- uid: 15010
components:
- type: Transform
@@ -60472,12 +61227,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 34.5,-49.5
parent: 5350
+ - uid: 16262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-59.5
+ parent: 5350
- uid: 16291
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -42.5,-55.5
parent: 5350
+ - uid: 16311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-61.5
+ parent: 5350
- uid: 16410
components:
- type: Transform
@@ -60498,6 +61265,12 @@ entities:
- type: Transform
pos: -42.5,-53.5
parent: 5350
+ - uid: 16677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-60.5
+ parent: 5350
- uid: 16838
components:
- type: Transform
@@ -60563,6 +61336,90 @@ entities:
- type: Transform
pos: -39.5,-77.5
parent: 5350
+ - uid: 16930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-62.5
+ parent: 5350
+ - uid: 16933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-64.5
+ parent: 5350
+ - uid: 16934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-64.5
+ parent: 5350
+ - uid: 16935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-64.5
+ parent: 5350
+ - uid: 16936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-64.5
+ parent: 5350
+ - uid: 16943
+ components:
+ - type: Transform
+ pos: 45.5,-68.5
+ parent: 5350
+ - uid: 16944
+ components:
+ - type: Transform
+ pos: 44.5,-72.5
+ parent: 5350
+ - uid: 16964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-62.5
+ parent: 5350
+ - uid: 16971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-59.5
+ parent: 5350
+ - uid: 16987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-60.5
+ parent: 5350
+ - uid: 16994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-60.5
+ parent: 5350
+ - uid: 17018
+ components:
+ - type: Transform
+ pos: 41.5,-76.5
+ parent: 5350
+ - uid: 17020
+ components:
+ - type: Transform
+ pos: 45.5,-72.5
+ parent: 5350
+ - uid: 17025
+ components:
+ - type: Transform
+ pos: 43.5,-68.5
+ parent: 5350
+ - uid: 17026
+ components:
+ - type: Transform
+ pos: 44.5,-68.5
+ parent: 5350
- uid: 17117
components:
- type: Transform
@@ -60593,21 +61450,11 @@ entities:
- type: Transform
pos: -53.5,-65.5
parent: 5350
- - uid: 17123
- components:
- - type: Transform
- pos: -53.5,-64.5
- parent: 5350
- uid: 17124
components:
- type: Transform
pos: -53.5,-63.5
parent: 5350
- - uid: 17125
- components:
- - type: Transform
- pos: -53.5,-62.5
- parent: 5350
- uid: 17126
components:
- type: Transform
@@ -60638,21 +61485,11 @@ entities:
- type: Transform
pos: -57.5,-65.5
parent: 5350
- - uid: 17132
- components:
- - type: Transform
- pos: -57.5,-64.5
- parent: 5350
- uid: 17133
components:
- type: Transform
pos: -57.5,-63.5
parent: 5350
- - uid: 17134
- components:
- - type: Transform
- pos: -57.5,-62.5
- parent: 5350
- uid: 17135
components:
- type: Transform
@@ -60728,25 +61565,10 @@ entities:
- type: Transform
pos: -44.5,-63.5
parent: 5350
- - uid: 17150
- components:
- - type: Transform
- pos: -43.5,-63.5
- parent: 5350
- - uid: 17151
- components:
- - type: Transform
- pos: -45.5,-62.5
- parent: 5350
- uid: 17152
components:
- type: Transform
- pos: -49.5,-62.5
- parent: 5350
- - uid: 17153
- components:
- - type: Transform
- pos: -49.5,-64.5
+ pos: 37.5,-76.5
parent: 5350
- uid: 17154
components:
@@ -60808,22 +61630,6 @@ entities:
- type: Transform
pos: -45.5,-65.5
parent: 5350
- - uid: 17166
- components:
- - type: Transform
- pos: -45.5,-64.5
- parent: 5350
- - uid: 17167
- components:
- - type: Transform
- pos: -63.5,-74.5
- parent: 5350
- - uid: 17287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-20.5
- parent: 5350
- uid: 17517
components:
- type: Transform
@@ -61034,11 +61840,6 @@ entities:
- type: Transform
pos: 76.5,49.5
parent: 5350
- - uid: 18684
- components:
- - type: Transform
- pos: 73.5,49.5
- parent: 5350
- uid: 18685
components:
- type: Transform
@@ -61049,31 +61850,11 @@ entities:
- type: Transform
pos: 70.5,46.5
parent: 5350
- - uid: 18687
- components:
- - type: Transform
- pos: 73.5,50.5
- parent: 5350
- uid: 18688
components:
- type: Transform
pos: 67.5,48.5
parent: 5350
- - uid: 18689
- components:
- - type: Transform
- pos: 67.5,47.5
- parent: 5350
- - uid: 18691
- components:
- - type: Transform
- pos: 67.5,49.5
- parent: 5350
- - uid: 18692
- components:
- - type: Transform
- pos: 67.5,50.5
- parent: 5350
- uid: 18693
components:
- type: Transform
@@ -61164,26 +61945,6 @@ entities:
- type: Transform
pos: 76.5,56.5
parent: 5350
- - uid: 18711
- components:
- - type: Transform
- pos: 73.5,52.5
- parent: 5350
- - uid: 18712
- components:
- - type: Transform
- pos: 73.5,53.5
- parent: 5350
- - uid: 18713
- components:
- - type: Transform
- pos: 73.5,55.5
- parent: 5350
- - uid: 18714
- components:
- - type: Transform
- pos: 73.5,56.5
- parent: 5350
- uid: 18715
components:
- type: Transform
@@ -61204,26 +61965,6 @@ entities:
- type: Transform
pos: 70.5,56.5
parent: 5350
- - uid: 18719
- components:
- - type: Transform
- pos: 67.5,52.5
- parent: 5350
- - uid: 18720
- components:
- - type: Transform
- pos: 67.5,53.5
- parent: 5350
- - uid: 18721
- components:
- - type: Transform
- pos: 67.5,55.5
- parent: 5350
- - uid: 18722
- components:
- - type: Transform
- pos: 67.5,56.5
- parent: 5350
- uid: 18864
components:
- type: Transform
@@ -61393,11 +62134,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,-26.5
parent: 5350
- - uid: 19792
- components:
- - type: Transform
- pos: 37.5,-76.5
- parent: 5350
- uid: 19793
components:
- type: Transform
@@ -61408,11 +62144,6 @@ entities:
- type: Transform
pos: 35.5,-76.5
parent: 5350
- - uid: 19795
- components:
- - type: Transform
- pos: 34.5,-76.5
- parent: 5350
- uid: 19796
components:
- type: Transform
@@ -61423,21 +62154,6 @@ entities:
- type: Transform
pos: 40.5,-76.5
parent: 5350
- - uid: 19798
- components:
- - type: Transform
- pos: 41.5,-76.5
- parent: 5350
- - uid: 19799
- components:
- - type: Transform
- pos: 42.5,-76.5
- parent: 5350
- - uid: 19800
- components:
- - type: Transform
- pos: 42.5,-72.5
- parent: 5350
- uid: 19801
components:
- type: Transform
@@ -61468,16 +62184,6 @@ entities:
- type: Transform
pos: 35.5,-72.5
parent: 5350
- - uid: 19807
- components:
- - type: Transform
- pos: 34.5,-72.5
- parent: 5350
- - uid: 19808
- components:
- - type: Transform
- pos: 34.5,-68.5
- parent: 5350
- uid: 19809
components:
- type: Transform
@@ -61508,16 +62214,6 @@ entities:
- type: Transform
pos: 41.5,-68.5
parent: 5350
- - uid: 19815
- components:
- - type: Transform
- pos: 42.5,-68.5
- parent: 5350
- - uid: 19816
- components:
- - type: Transform
- pos: 44.5,-68.5
- parent: 5350
- uid: 19817
components:
- type: Transform
@@ -61528,16 +62224,6 @@ entities:
- type: Transform
pos: 31.5,-68.5
parent: 5350
- - uid: 19819
- components:
- - type: Transform
- pos: 32.5,-76.5
- parent: 5350
- - uid: 19820
- components:
- - type: Transform
- pos: 31.5,-76.5
- parent: 5350
- uid: 19821
components:
- type: Transform
@@ -61599,6 +62285,17 @@ entities:
- type: Transform
pos: 24.5,-68.5
parent: 5350
+ - uid: 19850
+ components:
+ - type: Transform
+ pos: 34.5,-68.5
+ parent: 5350
+ - uid: 19971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-61.5
+ parent: 5350
- uid: 20039
components:
- type: Transform
@@ -62025,6 +62722,17 @@ entities:
rot: 3.141592653589793 rad
pos: 70.5,32.5
parent: 5350
+ - uid: 23381
+ components:
+ - type: Transform
+ pos: -43.5,-63.5
+ parent: 5350
+ - uid: 23570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,16.5
+ parent: 5350
- uid: 23606
components:
- type: Transform
@@ -62317,11 +63025,6 @@ entities:
- type: Transform
pos: -26.5,19.5
parent: 5350
- - uid: 24594
- components:
- - type: Transform
- pos: 67.5,46.5
- parent: 5350
- uid: 24595
components:
- type: Transform
@@ -62337,16 +63040,6 @@ entities:
- type: Transform
pos: 70.5,50.5
parent: 5350
- - uid: 24610
- components:
- - type: Transform
- pos: 73.5,47.5
- parent: 5350
- - uid: 24611
- components:
- - type: Transform
- pos: 73.5,46.5
- parent: 5350
- uid: 24614
components:
- type: Transform
@@ -62743,6 +63436,18 @@ entities:
- type: Transform
pos: 63.5,32.5
parent: 5350
+ - uid: 28009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,15.5
+ parent: 5350
+ - uid: 28010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,17.5
+ parent: 5350
- uid: 28107
components:
- type: Transform
@@ -62753,6 +63458,154 @@ entities:
- type: Transform
pos: 43.5,-22.5
parent: 5350
+ - uid: 28364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,18.5
+ parent: 5350
+ - uid: 28368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,14.5
+ parent: 5350
+ - uid: 28369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,15.5
+ parent: 5350
+ - uid: 28370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,16.5
+ parent: 5350
+ - uid: 28371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,17.5
+ parent: 5350
+ - uid: 28372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,18.5
+ parent: 5350
+ - uid: 28412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-59.5
+ parent: 5350
+ - uid: 28430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,1.5
+ parent: 5350
+ - uid: 28431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,5.5
+ parent: 5350
+ - uid: 28432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,3.5
+ parent: 5350
+ - uid: 28433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,4.5
+ parent: 5350
+ - uid: 28437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-23.5
+ parent: 5350
+ - uid: 28438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-23.5
+ parent: 5350
+ - uid: 28517
+ components:
+ - type: Transform
+ pos: 43.5,-72.5
+ parent: 5350
+ - uid: 28535
+ components:
+ - type: Transform
+ pos: 42.5,-68.5
+ parent: 5350
+ - uid: 28536
+ components:
+ - type: Transform
+ pos: 42.5,-72.5
+ parent: 5350
+ - uid: 28537
+ components:
+ - type: Transform
+ pos: 43.5,-76.5
+ parent: 5350
+ - uid: 28538
+ components:
+ - type: Transform
+ pos: 42.5,-76.5
+ parent: 5350
+ - uid: 28539
+ components:
+ - type: Transform
+ pos: 44.5,-76.5
+ parent: 5350
+ - uid: 28540
+ components:
+ - type: Transform
+ pos: 45.5,-76.5
+ parent: 5350
+ - uid: 28541
+ components:
+ - type: Transform
+ pos: 34.5,-76.5
+ parent: 5350
+ - uid: 28542
+ components:
+ - type: Transform
+ pos: 33.5,-76.5
+ parent: 5350
+ - uid: 28543
+ components:
+ - type: Transform
+ pos: 32.5,-76.5
+ parent: 5350
+ - uid: 28544
+ components:
+ - type: Transform
+ pos: 32.5,-72.5
+ parent: 5350
+ - uid: 28545
+ components:
+ - type: Transform
+ pos: 33.5,-72.5
+ parent: 5350
+ - uid: 28546
+ components:
+ - type: Transform
+ pos: 34.5,-72.5
+ parent: 5350
+ - uid: 28547
+ components:
+ - type: Transform
+ pos: 33.5,-68.5
+ parent: 5350
- proto: Chair
entities:
- uid: 347
@@ -64034,6 +64887,12 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5209484,3.569162
parent: 5350
+ - uid: 8003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5012307,38.59284
+ parent: 5350
- uid: 8092
components:
- type: Transform
@@ -64088,12 +64947,6 @@ entities:
- type: Transform
pos: -37.5,-63.5
parent: 5350
- - uid: 17516
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.499897,38.548077
- parent: 5350
- uid: 17602
components:
- type: Transform
@@ -64300,12 +65153,6 @@ entities:
rot: 3.141592653589793 rad
pos: -14.984909,-23.468428
parent: 5350
- - uid: 5098
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,13.5
- parent: 5350
- uid: 5545
components:
- type: Transform
@@ -64746,6 +65593,11 @@ entities:
- type: Transform
pos: -32.46505,-23.466705
parent: 5350
+ - uid: 28381
+ components:
+ - type: Transform
+ pos: 53.598175,14.412935
+ parent: 5350
- proto: ChurchOrganInstrument
entities:
- uid: 22887
@@ -64781,6 +65633,24 @@ entities:
- type: Transform
pos: 23.395086,-60.270504
parent: 5350
+ - uid: 28387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.201515,14.598097
+ parent: 5350
+ - uid: 28388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.482765,14.598097
+ parent: 5350
+ - uid: 28389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.482765,14.598097
+ parent: 5350
- proto: CigarCase
entities:
- uid: 10476
@@ -65377,6 +66247,11 @@ entities:
- 0
- 0
- 0
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: 16.5,-59.5
+ parent: 5350
- uid: 6051
components:
- type: Transform
@@ -65451,11 +66326,6 @@ entities:
- 0
- 0
- 0
- - uid: 15120
- components:
- - type: Transform
- pos: 18.5,-59.5
- parent: 5350
- uid: 15608
components:
- type: Transform
@@ -65607,24 +66477,6 @@ entities:
- type: Transform
pos: -23.5,29.5
parent: 5350
- - 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
- uid: 22795
components:
- type: Transform
@@ -66161,25 +67013,6 @@ entities:
- type: Transform
pos: 18.503342,-32.294178
parent: 5350
- - 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=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color].
- priority: 0
- component: Armor
- - message: This decreases your running speed by [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
- proto: ClothingBeltChampion
entities:
- uid: 1952
@@ -66235,6 +67068,11 @@ entities:
- type: Transform
pos: 5.489552,-48.32825
parent: 5350
+ - uid: 18713
+ components:
+ - type: Transform
+ pos: 5.6363497,-48.51322
+ parent: 5350
- uid: 22343
components:
- type: Transform
@@ -66254,25 +67092,20 @@ entities:
parent: 5350
- proto: ClothingEyesBlindfold
entities:
- - uid: 6519
- components:
- - type: Transform
- pos: 8.74664,28.347475
- parent: 5350
- - uid: 6529
+ - uid: 6338
components:
- type: Transform
- pos: 8.74664,28.472475
+ pos: 8.730065,28.203384
parent: 5350
- - uid: 6645
+ - uid: 6362
components:
- type: Transform
- pos: 8.736223,28.722475
+ pos: 8.730065,28.203384
parent: 5350
- - uid: 6690
+ - uid: 6448
components:
- type: Transform
- pos: 8.74664,28.597475
+ pos: 8.730065,28.203384
parent: 5350
- proto: ClothingEyesEyepatch
entities:
@@ -66712,25 +67545,25 @@ entities:
parent: 5350
- proto: ClothingHeadHelmetBasic
entities:
- - uid: 7377
+ - uid: 6490
components:
- type: Transform
- pos: -8.675636,44.33661
+ pos: -8.654011,44.395737
parent: 5350
- - uid: 7380
+ - uid: 7368
components:
- type: Transform
- pos: -8.660011,44.477234
+ pos: -8.654011,44.614487
parent: 5350
- - uid: 7382
+ - uid: 7377
components:
- type: Transform
- pos: -8.675636,44.602234
+ pos: -8.664427,44.718655
parent: 5350
- - uid: 7383
+ - uid: 7517
components:
- type: Transform
- pos: -8.675636,44.68036
+ pos: -8.654011,44.510323
parent: 5350
- proto: ClothingHeadHelmetEVA
entities:
@@ -66746,25 +67579,11 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 7940
- components:
- - type: Transform
- parent: 7801
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 11097
components:
- type: Transform
pos: -18.29037,-13.4859085
parent: 5350
- - uid: 15196
- components:
- - type: Transform
- parent: 15195
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 15200
components:
- type: Transform
@@ -66775,21 +67594,21 @@ entities:
- uid: 22229
components:
- type: Transform
- parent: 1488
+ parent: 24610
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 22348
components:
- type: Transform
- parent: 1488
+ parent: 13159
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 23051
components:
- type: Transform
- parent: 1489
+ parent: 24328
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -66800,13 +67619,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23407
- components:
- - type: Transform
- parent: 4104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 23472
components:
- type: Transform
@@ -66814,13 +67626,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23712
- components:
- - type: Transform
- parent: 7165
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 23905
components:
- type: Transform
@@ -66828,13 +67633,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 24056
- components:
- - type: Transform
- parent: 2617
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 24057
components:
- type: Transform
@@ -66842,13 +67640,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 24248
- components:
- - type: Transform
- parent: 11032
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 24266
components:
- type: Transform
@@ -66858,25 +67649,25 @@ entities:
- type: InsideEntityStorage
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 4927
+ - uid: 7240
components:
- type: Transform
- pos: -9.348304,39.80468
+ pos: -9.364234,39.538868
parent: 5350
- - uid: 6311
+ - uid: 7366
components:
- type: Transform
- pos: -9.3454,39.672516
+ pos: -9.364234,39.830536
parent: 5350
- - uid: 7958
+ - uid: 7367
components:
- type: Transform
- pos: -9.3454,39.464184
+ pos: -9.364234,39.6847
parent: 5350
- - uid: 23629
+ - uid: 28482
components:
- type: Transform
- pos: -9.3454,39.266266
+ pos: -9.364234,39.393036
parent: 5350
- proto: ClothingHeadPyjamaSyndicatePink
entities:
@@ -66887,16 +67678,6 @@ entities:
parent: 5350
- proto: ClothingMaskBreath
entities:
- - uid: 1524
- components:
- - type: Transform
- pos: -18.64687,-14.272686
- parent: 5350
- - uid: 1525
- components:
- - type: Transform
- pos: -18.39687,-14.132061
- parent: 5350
- uid: 13522
components:
- type: Transform
@@ -66931,16 +67712,6 @@ entities:
parent: 5350
- proto: ClothingMaskGas
entities:
- - uid: 1526
- components:
- - type: Transform
- pos: -18.506245,-14.538311
- parent: 5350
- - uid: 1527
- components:
- - type: Transform
- pos: -18.30312,-14.413311
- parent: 5350
- uid: 9091
components:
- type: Transform
@@ -66989,25 +67760,20 @@ entities:
parent: 5350
- proto: ClothingMaskMuzzle
entities:
- - uid: 6512
- components:
- - type: Transform
- pos: 8.319557,28.545391
- parent: 5350
- - uid: 6514
+ - uid: 6311
components:
- type: Transform
- pos: 8.329973,28.409975
+ pos: 8.511315,28.31276
parent: 5350
- - uid: 6527
+ - uid: 6336
components:
- type: Transform
- pos: 8.319557,28.784975
+ pos: 8.417565,28.297134
parent: 5350
- - uid: 6531
+ - uid: 6337
components:
- type: Transform
- pos: 8.319557,28.659975
+ pos: 8.40194,28.297134
parent: 5350
- proto: ClothingNeckBling
entities:
@@ -67141,42 +67907,42 @@ entities:
parent: 5350
- proto: ClothingOuterArmorBasic
entities:
- - uid: 7240
+ - uid: 1174
components:
- type: Transform
- pos: -8.269386,44.352234
+ pos: -8.268594,44.541573
parent: 5350
- - uid: 7366
+ - uid: 2149
components:
- type: Transform
- pos: -8.269386,44.477234
+ pos: -8.268594,44.624905
parent: 5350
- - uid: 7367
+ - uid: 4235
components:
- type: Transform
- pos: -8.269386,44.570984
+ pos: -8.279011,44.718655
parent: 5350
- - uid: 7368
+ - uid: 7380
components:
- type: Transform
- pos: -8.285011,44.64911
+ pos: -8.268594,44.437405
parent: 5350
- proto: ClothingOuterArmorBulletproof
entities:
- - uid: 2509
+ - uid: 1913
components:
- type: Transform
- pos: -9.31415,40.50585
+ pos: -9.325962,40.419777
parent: 5350
- - uid: 6336
+ - uid: 2509
components:
- type: Transform
- pos: -9.324568,40.422516
+ pos: -9.31901,40.5081
parent: 5350
- - uid: 6337
+ - uid: 6426
components:
- type: Transform
- pos: -9.334984,40.328766
+ pos: -9.315545,40.336445
parent: 5350
- uid: 6958
components:
@@ -67185,47 +67951,37 @@ entities:
parent: 5350
- proto: ClothingOuterArmorReflective
entities:
- - uid: 5097
+ - uid: 1972
components:
- type: Transform
- pos: -9.7204,40.2871
+ pos: -9.711378,40.37811
parent: 5350
- uid: 6778
components:
- type: Transform
pos: -9.707679,40.570305
parent: 5350
- - uid: 7206
- components:
- - type: Transform
- pos: -9.7204,40.453766
- parent: 5350
- - uid: 23630
- components:
- - type: Transform
- pos: -9.7204,40.370434
- parent: 5350
- proto: ClothingOuterArmorRiot
entities:
- - uid: 7514
+ - uid: 7383
components:
- type: Transform
- pos: -9.754554,39.382805
+ pos: -9.762751,39.630295
parent: 5350
- - uid: 7517
+ - uid: 7514
components:
- type: Transform
- pos: -9.723304,39.789055
+ pos: -9.762751,39.51571
parent: 5350
- - uid: 15347
+ - uid: 8001
components:
- type: Transform
- pos: -9.7204,39.672516
+ pos: -9.773169,39.71948
parent: 5350
- - uid: 23617
+ - uid: 28484
components:
- type: Transform
- pos: -9.730818,39.557934
+ pos: -9.762751,39.401127
parent: 5350
- proto: ClothingOuterCardborg
entities:
@@ -67274,14 +68030,7 @@ entities:
- uid: 8883
components:
- type: Transform
- parent: 7801
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 15198
- components:
- - type: Transform
- parent: 15195
+ parent: 24328
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -67295,14 +68044,14 @@ entities:
- uid: 22167
components:
- type: Transform
- parent: 1488
+ parent: 13159
- type: Physics
canCollide: False
- type: InsideEntityStorage
- uid: 22168
components:
- type: Transform
- parent: 1488
+ parent: 24610
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -67313,20 +68062,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23099
- components:
- - type: Transform
- parent: 1489
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 23284
- components:
- - type: Transform
- parent: 4104
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 23406
components:
- type: Transform
@@ -67341,13 +68076,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23964
- components:
- - type: Transform
- parent: 7165
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 24058
components:
- type: Transform
@@ -67355,13 +68083,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 24244
- components:
- - type: Transform
- parent: 2617
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 24321
components:
- type: Transform
@@ -67369,41 +68090,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 24328
- components:
- - type: Transform
- parent: 11032
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitSecurity
- entities:
- - uid: 14074
- components:
- - type: Transform
- parent: 5663
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14095
- components:
- - type: Transform
- parent: 5776
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14107
- components:
- - type: Transform
- parent: 10975
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 14110
- components:
- - type: Transform
- pos: -5.5,46.5
- parent: 5350
- proto: ClothingOuterHoodieBlack
entities:
- uid: 24527
@@ -68607,12 +69293,6 @@ entities:
- type: Transform
pos: 55.5,16.5
parent: 5350
- - uid: 5091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,13.5
- parent: 5350
- uid: 6428
components:
- type: Transform
@@ -68925,38 +69605,49 @@ entities:
parent: 5350
- proto: ContainmentFieldGenerator
entities:
- - uid: 8001
+ - uid: 9070
components:
- type: Transform
- anchored: False
- pos: 61.5,26.5
+ pos: 74.5,16.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- - uid: 15118
+ - uid: 23603
components:
- type: Transform
- anchored: False
- pos: 61.5,25.5
+ pos: 74.5,24.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- - uid: 22966
+ - uid: 23604
components:
- type: Transform
- anchored: False
- pos: 61.5,27.5
+ pos: 66.5,24.5
parent: 5350
- - type: Physics
- bodyType: Dynamic
- - uid: 23614
+ - uid: 23605
components:
- type: Transform
- anchored: False
- pos: 61.5,24.5
+ pos: 66.5,16.5
parent: 5350
+- proto: ContainmentFieldGeneratorFlatpack
+ entities:
+ - uid: 19882
+ components:
+ - type: Transform
+ parent: 19881
- type: Physics
- bodyType: Dynamic
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 19890
+ components:
+ - type: Transform
+ parent: 19881
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 19897
+ components:
+ - type: Transform
+ parent: 19881
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ConveyorBelt
entities:
- uid: 849
@@ -69467,8 +70158,11 @@ entities:
- uid: 1706
components:
- type: Transform
+ anchored: True
pos: -1.5,38.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: CrateEmptySpawner
entities:
- uid: 3564
@@ -69513,12 +70207,13 @@ entities:
parent: 5350
- proto: CrateEngineering
entities:
- - uid: 24070
+ - uid: 28639
components:
- type: MetaData
- name: Shuttle Construction Crate
+ desc: Contains a shuttle console circuit board.
+ name: shuttle control crate
- type: Transform
- pos: -37.5,22.5
+ pos: 46.5,25.5
parent: 5350
- type: EntityStorage
air:
@@ -69544,31 +70239,33 @@ entities:
showEnts: False
occludes: True
ents:
- - 28201
- - 27680
- - 27208
- - 26688
- - 24489
- - 24478
+ - 28640
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 76.5,3.5
+ parent: 5350
- proto: CrateEngineeringAMEShielding
entities:
- - uid: 21813
+ - uid: 17029
components:
- type: Transform
- pos: 72.5,8.5
+ pos: 76.5,4.5
parent: 5350
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1462
moles:
- - 1.7459903
- - 6.568249
+ - 1.606311
+ - 6.042789
- 0
- 0
- 0
@@ -69587,15 +70284,15 @@ entities:
ents:
- 14093
- 15326
- - 16554
- - 23357
- 23358
- 23359
+ - 16554
+ - 23357
+ - 23507
+ - 23508
- 23504
- 23505
- 23506
- - 23507
- - 23508
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -69625,6 +70322,11 @@ entities:
- 0
- 0
- 0
+ - uid: 12480
+ components:
+ - type: Transform
+ pos: 53.5,21.5
+ parent: 5350
- uid: 19021
components:
- type: Transform
@@ -69653,13 +70355,13 @@ entities:
- type: Transform
pos: 42.5,-0.5
parent: 5350
-- proto: CrateEngineeringCableHV
- entities:
- - uid: 16293
+ - uid: 28476
components:
- type: Transform
- pos: 52.5,11.5
+ pos: 45.5,26.5
parent: 5350
+- proto: CrateEngineeringCableHV
+ entities:
- uid: 17216
components:
- type: Transform
@@ -69706,13 +70408,6 @@ entities:
- 0
- 0
- 0
-- proto: CrateEngineeringCableLV
- entities:
- - uid: 16292
- components:
- - type: Transform
- pos: 54.5,11.5
- parent: 5350
- proto: CrateEngineeringCableMV
entities:
- uid: 6200
@@ -69738,28 +70433,49 @@ entities:
- 0
- 0
- 0
- - uid: 16294
+- proto: CrateEngineeringGyroscope
+ entities:
+ - uid: 28530
components:
- type: Transform
- pos: 53.5,11.5
+ pos: 47.5,25.5
parent: 5350
+ - 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
- proto: CrateEngineeringSecure
entities:
- - uid: 23089
+ - uid: 26688
components:
- type: MetaData
- name: generator fuel crate
+ desc: Contains 30 sheets of uranium and plasma for powering portable generators.
+ name: Portable Generator Fuel Crate
- type: Transform
- pos: 44.5,26.5
+ pos: 42.5,23.5
parent: 5350
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1462
moles:
- - 1.7459903
- - 6.568249
+ - 1.606311
+ - 6.042789
- 0
- 0
- 0
@@ -69776,26 +70492,133 @@ entities:
showEnts: False
occludes: True
ents:
- - 9204
- - 23889
+ - 26784
+ - 26783
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
+- proto: CrateEngineeringShuttle
+ entities:
+ - uid: 17030
+ components:
+ - type: Transform
+ pos: 46.5,26.5
+ parent: 5350
- proto: CrateEngineeringSingularityContainment
entities:
- - uid: 7539
+ - uid: 19881
components:
- type: Transform
- pos: 42.5,26.5
+ pos: 46.5,21.5
parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1465
+ 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:
+ - 19882
+ - 19890
+ - 19897
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateEngineeringSingularityEmitter
entities:
- - uid: 7540
+ - uid: 19864
components:
- type: Transform
- pos: 43.5,26.5
+ pos: 47.5,21.5
parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1465
+ 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:
+ - 19865
+ - 19866
+ - 19880
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateEngineeringThruster
+ entities:
+ - uid: 17031
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1465
+ 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:
+ - 17038
+ - 17033
+ - 17032
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateFilledSpawner
entities:
- uid: 3641
@@ -69878,6 +70701,17 @@ entities:
- 0
- 0
- 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 17039
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateFunArtSupplies
entities:
- uid: 27889
@@ -69968,6 +70802,44 @@ entities:
- type: Transform
pos: -24.5,15.5
parent: 5350
+ - uid: 28450
+ components:
+ - type: Transform
+ pos: -53.5,33.5
+ parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 75.31249
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 28451
+ - 28452
+ - 28453
+ - 28454
+ - 28455
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateMaterialSteel
entities:
- uid: 28057
@@ -70011,8 +70883,11 @@ entities:
- uid: 28265
components:
- type: Transform
+ anchored: True
pos: -6.5,44.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: CrateServiceBox
entities:
- uid: 22020
@@ -70112,13 +70987,6 @@ entities:
- type: Transform
pos: 17.541042,-24.457052
parent: 5350
- - uid: 6700
- components:
- - type: Transform
- parent: 6696
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 10811
components:
- type: Transform
@@ -70165,11 +71033,6 @@ entities:
parent: 5350
- proto: CrowbarRed
entities:
- - uid: 1535
- components:
- - type: Transform
- pos: -16.465528,-13.795485
- parent: 5350
- uid: 3586
components:
- type: Transform
@@ -70288,6 +71151,13 @@ entities:
- type: Transform
pos: 41.470444,-8.386417
parent: 5350
+- proto: DefaultStationBeacon
+ entities:
+ - uid: 23614
+ components:
+ - type: Transform
+ pos: 2.5,-57.5
+ parent: 5350
- proto: DefaultStationBeaconAICore
entities:
- uid: 22160
@@ -70339,13 +71209,18 @@ entities:
parent: 5350
- proto: DefaultStationBeaconAtmospherics
entities:
- - uid: 16730
+ - uid: 19923
components:
- type: Transform
- pos: 58.5,-16.5
+ pos: 56.5,-19.5
parent: 5350
- proto: DefaultStationBeaconBar
entities:
+ - uid: 17059
+ components:
+ - type: Transform
+ pos: 25.5,-2.5
+ parent: 5350
- uid: 26668
components:
- type: Transform
@@ -70358,6 +71233,18 @@ entities:
- type: Transform
pos: 26.5,-21.5
parent: 5350
+- proto: DefaultStationBeaconBridge
+ entities:
+ - uid: 17027
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 5350
+ - uid: 17041
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 5350
- proto: DefaultStationBeaconBrig
entities:
- uid: 7623
@@ -70421,6 +71308,11 @@ entities:
- type: Transform
pos: 4.5,19.5
parent: 5350
+ - uid: 28644
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 5350
- proto: DefaultStationBeaconCryonics
entities:
- uid: 26680
@@ -70449,26 +71341,25 @@ entities:
- type: Transform
pos: -34.5,32.5
parent: 5350
-- proto: DefaultStationBeaconEscapePod
+- proto: DefaultStationBeaconDorms
entities:
- - uid: 872
+ - uid: 28645
components:
- type: Transform
- pos: 39.5,47.5
+ pos: 22.5,16.5
parent: 5350
- - type: NavMapBeacon
- text: NW Pod
- - type: WarpPoint
- location: NW Pod
- - uid: 3634
+ - uid: 28646
components:
- type: Transform
- pos: -39.5,-46.5
+ pos: 32.5,41.5
parent: 5350
- - type: NavMapBeacon
- text: SW Pod
- - type: WarpPoint
- location: SW Pod
+ - uid: 28648
+ components:
+ - type: Transform
+ pos: 31.5,50.5
+ parent: 5350
+- proto: DefaultStationBeaconEscapePod
+ entities:
- uid: 3927
components:
- type: Transform
@@ -70487,12 +71378,30 @@ entities:
text: NW Pod
- type: WarpPoint
location: NW Pod
+ - uid: 23768
+ components:
+ - type: Transform
+ pos: 40.5,47.5
+ parent: 5350
+ - type: NavMapBeacon
+ text: NW Pod
+ - type: WarpPoint
+ location: NW Pod
+ - uid: 28501
+ components:
+ - type: Transform
+ pos: -42.5,-46.5
+ parent: 5350
+ - type: NavMapBeacon
+ text: SW Pod
+ - type: WarpPoint
+ location: SW Pod
- proto: DefaultStationBeaconEvac
entities:
- - uid: 3602
+ - uid: 28637
components:
- type: Transform
- pos: -6.5,-71.5
+ pos: -6.5,-63.5
parent: 5350
- proto: DefaultStationBeaconEVAStorage
entities:
@@ -70510,10 +71419,10 @@ entities:
parent: 5350
- proto: DefaultStationBeaconHOSRoom
entities:
- - uid: 1517
+ - uid: 28649
components:
- type: Transform
- pos: 10.5,45.5
+ pos: 9.5,46.5
parent: 5350
- proto: DefaultStationBeaconJanitorsCloset
entities:
@@ -70524,6 +71433,11 @@ entities:
parent: 5350
- proto: DefaultStationBeaconKitchen
entities:
+ - uid: 17040
+ components:
+ - type: Transform
+ pos: 30.5,-10.5
+ parent: 5350
- uid: 26690
components:
- type: Transform
@@ -70545,6 +71459,11 @@ entities:
parent: 5350
- proto: DefaultStationBeaconMedbay
entities:
+ - uid: 19902
+ components:
+ - type: Transform
+ pos: -27.5,-33.5
+ parent: 5350
- uid: 26693
components:
- type: Transform
@@ -70552,10 +71471,10 @@ entities:
parent: 5350
- proto: DefaultStationBeaconMorgue
entities:
- - uid: 14728
+ - uid: 19852
components:
- type: Transform
- pos: -11.5,-49.5
+ pos: -13.5,-49.5
parent: 5350
- proto: DefaultStationBeaconPermaBrig
entities:
@@ -70587,15 +71506,26 @@ entities:
parent: 5350
- proto: DefaultStationBeaconSalvage
entities:
- - uid: 18015
+ - uid: 17060
components:
- type: Transform
- pos: -41.5,29.5
+ pos: -62.5,31.5
parent: 5350
- - uid: 21443
+ - type: NavMapBeacon
+ text: Salvage Arm
+ - type: WarpPoint
+ location: Salvage Arm
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 17052
components:
- type: Transform
- pos: -61.5,31.5
+ pos: -19.5,45.5
+ parent: 5350
+ - uid: 28647
+ components:
+ - type: Transform
+ pos: 10.5,38.5
parent: 5350
- proto: DefaultStationBeaconServerRoom
entities:
@@ -70606,19 +71536,19 @@ entities:
parent: 5350
- proto: DefaultStationBeaconSingularity
entities:
- - uid: 15132
+ - uid: 17062
components:
- type: Transform
- pos: 70.5,15.5
+ pos: 70.5,16.5
parent: 5350
- type: NavMapBeacon
text: Containment
- type: WarpPoint
location: Containment
- - uid: 16263
+ - uid: 17063
components:
- type: Transform
- pos: 70.5,25.5
+ pos: 70.5,24.5
parent: 5350
- type: NavMapBeacon
text: Engine
@@ -70773,11 +71703,6 @@ entities:
- type: Transform
pos: 30.787802,-6.3043485
parent: 5350
- - uid: 2064
- components:
- - type: Transform
- pos: 25.549889,-6.2730985
- parent: 5350
- uid: 4512
components:
- type: Transform
@@ -70806,6 +71731,11 @@ entities:
- type: Transform
pos: 3.7344131,-27.320778
parent: 5350
+ - uid: 16675
+ components:
+ - type: Transform
+ pos: 25.517385,-6.2883754
+ parent: 5350
- uid: 23329
components:
- type: Transform
@@ -79667,6 +80597,27 @@ entities:
ents:
- 6607
- 12703
+- proto: DrinkBeerglass
+ entities:
+ - uid: 28509
+ components:
+ - type: Transform
+ pos: -48.161606,-43.286133
+ parent: 5350
+- proto: DrinkBeerGrowler
+ entities:
+ - uid: 28507
+ components:
+ - type: Transform
+ pos: -47.17723,-43.004883
+ parent: 5350
+- proto: DrinkBottleBeer
+ entities:
+ - uid: 28506
+ components:
+ - type: Transform
+ pos: -48.83348,-43.176758
+ parent: 5350
- proto: DrinkBottleOfNothingFull
entities:
- uid: 3219
@@ -79720,6 +80671,13 @@ entities:
- type: Transform
pos: 6.384159,-12.168303
parent: 5350
+- proto: DrinkIcedBeerGlass
+ entities:
+ - uid: 28512
+ components:
+ - type: Transform
+ pos: -49.58348,-43.176758
+ parent: 5350
- proto: DrinkLithiumFlask
entities:
- uid: 5013
@@ -79772,6 +80730,23 @@ entities:
- type: Transform
pos: -55.712997,-23.300583
parent: 5350
+- proto: DrinkShotGlass
+ entities:
+ - uid: 28383
+ components:
+ - type: Transform
+ pos: 54.770973,13.619127
+ parent: 5350
+ - uid: 28385
+ components:
+ - type: Transform
+ pos: 55.0366,13.541002
+ parent: 5350
+ - uid: 28386
+ components:
+ - type: Transform
+ pos: 54.989723,13.900377
+ parent: 5350
- proto: DrinkVacuumFlask
entities:
- uid: 1994
@@ -79813,6 +80788,23 @@ entities:
- type: Transform
pos: 22.160711,-59.489254
parent: 5350
+ - uid: 28380
+ components:
+ - type: Transform
+ pos: 55.458244,13.837877
+ parent: 5350
+ - uid: 28504
+ components:
+ - type: Transform
+ pos: -45.349106,-43.301758
+ parent: 5350
+- proto: DrinkWhiskeyGlass
+ entities:
+ - uid: 28505
+ components:
+ - type: Transform
+ pos: -46.05223,-43.317383
+ parent: 5350
- proto: DrinkWineBottleFull
entities:
- uid: 21260
@@ -80328,48 +81320,86 @@ entities:
parent: 5350
- proto: Emitter
entities:
- - uid: 6426
+ - uid: 15052
components:
- type: Transform
anchored: False
- pos: 64.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,27.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 8244
+ - uid: 23376
components:
- type: Transform
anchored: False
- pos: 65.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,26.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 14443
+ - uid: 23610
+ components:
+ - type: Transform
+ pos: 74.5,28.5
+ parent: 5350
+ - type: PowerConsumer
+ drawRate: 1
+ - uid: 23973
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 64.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,13.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
- - uid: 15483
+ - uid: 24048
components:
- type: Transform
anchored: False
- rot: 3.141592653589793 rad
- pos: 65.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,14.5
parent: 5350
- type: Physics
bodyType: Dynamic
- type: PowerConsumer
drawRate: 1
+ - uid: 24049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,13.5
+ parent: 5350
+- proto: EmitterFlatpack
+ entities:
+ - uid: 19865
+ components:
+ - type: Transform
+ parent: 19864
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 19866
+ components:
+ - type: Transform
+ parent: 19864
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 19880
+ components:
+ - type: Transform
+ parent: 19864
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: EncryptionKeyCargo
entities:
- uid: 26443
@@ -80461,8 +81491,38 @@ entities:
parent: 5350
- proto: ExplosivesSignMed
entities:
+ - uid: 4927
+ components:
+ - type: MetaData
+ name: WARNING! Live minefield!
+ - type: Transform
+ pos: -25.5,49.5
+ parent: 5350
+ - uid: 18684
+ components:
+ - type: MetaData
+ desc: WARNING! Live Minefield!
+ - type: Transform
+ pos: 13.5,48.5
+ parent: 5350
+ - uid: 18687
+ components:
+ - type: MetaData
+ desc: WARNING! Live minefield!
+ - type: Transform
+ pos: -12.5,63.5
+ parent: 5350
+ - uid: 26311
+ components:
+ - type: MetaData
+ desc: WARNING! Live minefield!
+ - type: Transform
+ pos: 2.5,63.5
+ parent: 5350
- uid: 28281
components:
+ - type: MetaData
+ desc: WARNING! Anomaly Vessels may explode!
- type: Transform
pos: 20.5,-32.5
parent: 5350
@@ -80638,7 +81698,7 @@ entities:
pos: -41.5,2.5
parent: 5350
- type: FaxMachine
- name: Mail Room
+ name: Mailroom
- uid: 5360
components:
- type: Transform
@@ -80667,6 +81727,13 @@ entities:
parent: 5350
- type: FaxMachine
name: Law Office
+ - uid: 7539
+ components:
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 5350
+ - type: FaxMachine
+ name: Main Corridor
- uid: 7750
components:
- type: Transform
@@ -80754,6 +81821,13 @@ entities:
- type: Transform
pos: 10.5,-45.5
parent: 5350
+ - uid: 28510
+ components:
+ - type: Transform
+ pos: -41.5,11.5
+ parent: 5350
+ - type: FaxMachine
+ name: Cargo Bay
- proto: FaxMachineCaptain
entities:
- uid: 5362
@@ -81131,7 +82205,6 @@ entities:
- type: DeviceList
devices:
- 6946
- - 28218
- 6806
- 7773
- 7791
@@ -81847,16 +82920,6 @@ entities:
parent: 5350
- proto: FireExtinguisher
entities:
- - uid: 1539
- components:
- - type: Transform
- pos: -16.66095,-13.180607
- parent: 5350
- - uid: 1540
- components:
- - type: Transform
- pos: -16.395325,-13.102482
- parent: 5350
- uid: 24319
components:
- type: Transform
@@ -82126,7 +83189,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 11076
- uid: 2126
components:
@@ -82137,7 +83199,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 11076
- uid: 2127
components:
@@ -82148,7 +83209,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 11076
- uid: 2352
components:
@@ -82661,7 +83721,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 1327
- 25987
- uid: 5666
@@ -82673,7 +83732,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 1327
- 25987
- uid: 5667
@@ -82685,7 +83743,6 @@ entities:
deviceLists:
- 24342
- 24340
- - 27662
- 1327
- 25987
- uid: 5668
@@ -83034,7 +84091,7 @@ entities:
pos: 31.5,-33.5
parent: 5350
- type: Door
- secondsUntilStateChange: -10323.154
+ secondsUntilStateChange: -29555.99
state: Closing
- uid: 9615
components:
@@ -83658,7 +84715,6 @@ entities:
- 24342
- 24340
- 7196
- - 27662
- 2835
- uid: 15079
components:
@@ -83680,7 +84736,6 @@ entities:
- 24342
- 24340
- 7196
- - 27662
- 2835
- uid: 15185
components:
@@ -84136,7 +85191,6 @@ entities:
- 24342
- 24340
- 7196
- - 27662
- 2835
- uid: 21954
components:
@@ -84605,6 +85659,33 @@ entities:
- type: DeviceNetwork
deviceLists:
- 28012
+ - uid: 28425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,15.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 28423
+ - uid: 28426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,16.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 28423
+ - uid: 28427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,17.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 28423
- proto: Fireplace
entities:
- uid: 1054
@@ -84785,6 +85866,11 @@ entities:
- type: Transform
pos: -3.177019,-5.478725
parent: 5350
+ - uid: 28400
+ components:
+ - type: Transform
+ pos: 54.841988,14.416767
+ parent: 5350
- proto: FloorCarpetItemRed
entities:
- uid: 22909
@@ -84825,13 +85911,6 @@ entities:
parent: 5350
- type: Fixtures
fixtures: {}
- - uid: 6338
- components:
- - type: Transform
- pos: -16.5,-48.5
- parent: 5350
- - type: Fixtures
- fixtures: {}
- uid: 7176
components:
- type: Transform
@@ -84877,6 +85956,13 @@ entities:
parent: 5350
- type: Fixtures
fixtures: {}
+ - uid: 28462
+ components:
+ - type: Transform
+ pos: -16.5,-47.5
+ parent: 5350
+ - type: Fixtures
+ fixtures: {}
- proto: FloorTileItemEighties
entities:
- uid: 23023
@@ -85220,7 +86306,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 73.5,-30.5
+ pos: 73.622635,-30.467262
parent: 5350
- uid: 28172
components:
@@ -85288,7 +86374,7 @@ entities:
- uid: 19219
components:
- type: MetaData
- name: Waste Filter
+ name: Gas Filter (waste filter)
- type: Transform
rot: 1.5707963267948966 rad
pos: 14.5,-51.5
@@ -85308,7 +86394,7 @@ entities:
- uid: 19455
components:
- type: MetaData
- name: Waste Filter
+ name: Gas Filter (waste filter)
- type: Transform
rot: 1.5707963267948966 rad
pos: 18.5,-51.5
@@ -85425,24 +86511,6 @@ entities:
rot: 3.141592653589793 rad
pos: 47.5,-30.5
parent: 5350
-- proto: GasPassiveGate
- entities:
- - uid: 15115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-50.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- proto: GasPassiveVent
entities:
- uid: 10829
@@ -85565,6 +86633,12 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
+ - uid: 21407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,41.5
+ parent: 5350
- uid: 25932
components:
- type: Transform
@@ -86078,14 +87152,21 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9178
+ - uid: 9132
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 46.5,18.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
+ - uid: 9137
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9179
components:
- type: Transform
@@ -86588,6 +87669,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16374
components:
- type: Transform
@@ -86773,6 +87862,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18968
components:
- type: Transform
@@ -86844,6 +87941,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
+ - uid: 19278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19411
components:
- type: Transform
@@ -87143,49 +88248,48 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23387
+ - uid: 23312
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,14.5
+ pos: 52.5,18.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23388
+ - uid: 23509
components:
- type: Transform
- pos: 52.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,7.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23389
+ - uid: 23525
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,16.5
+ pos: 55.5,8.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23509
+ color: '#0055CCFF'
+ - uid: 23566
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,27.5
parent: 5350
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23525
+ color: '#0055CCFF'
+ - uid: 24856
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,8.5
+ pos: -1.5,-71.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24856
+ - uid: 24921
components:
- type: Transform
- pos: -1.5,-71.5
+ pos: 50.5,27.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -91085,6 +92189,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2593
components:
- type: Transform
@@ -91638,6 +92750,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 3116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 3137
components:
- type: Transform
@@ -93858,6 +94978,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 4895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4962
components:
- type: Transform
@@ -94089,6 +95217,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#3AB334FF'
+ - uid: 5091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5370
components:
- type: Transform
@@ -97329,6 +98465,22 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 9133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9166
components:
- type: Transform
@@ -97417,6 +98569,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 9191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9217
components:
- type: Transform
@@ -98634,14 +99794,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,14.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 11161
components:
- type: Transform
@@ -98833,8 +99985,7 @@ entities:
- uid: 11362
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,13.5
+ pos: 51.5,25.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -99790,14 +100941,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12405
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,18.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 12406
components:
- type: Transform
@@ -99830,14 +100973,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12411
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,24.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 12413
components:
- type: Transform
@@ -99878,22 +101013,22 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12418
+ - uid: 12419
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 54.5,28.5
+ pos: 54.5,29.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12419
+ - uid: 12445
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,13.5
parent: 5350
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 12452
components:
- type: Transform
@@ -102944,6 +104079,13 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16265
+ components:
+ - type: Transform
+ pos: 52.5,16.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16279
components:
- type: Transform
@@ -104743,6 +105885,54 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,23.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18939
components:
- type: Transform
@@ -108892,55 +110082,31 @@ entities:
- uid: 23374
components:
- type: Transform
- pos: 50.5,27.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,23.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,23.5
+ pos: 52.5,14.5
parent: 5350
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23378
+ color: '#990000FF'
+ - uid: 23386
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,14.5
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23390
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,15.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23391
+ - uid: 23387
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,13.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23392
+ - uid: 23390
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,18.5
+ pos: 51.5,21.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -108960,19 +110126,18 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23396
+ - uid: 23397
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,22.5
+ pos: 51.5,23.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23397
+ - uid: 23408
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,23.5
+ pos: 52.5,17.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -109237,43 +110402,11 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,21.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23569
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,21.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23570
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,21.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23571
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,21.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23572
+ - uid: 23544
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 46.5,21.5
+ pos: 45.5,13.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -110961,6 +112094,28 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 27995
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27996
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,22.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 28060
components:
- type: Transform
@@ -111262,6 +112417,30 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 28420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,19.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,19.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPipeTJunction
entities:
- uid: 179
@@ -113019,14 +114198,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,14.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 11159
components:
- type: Transform
@@ -113035,14 +114206,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11361
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,13.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 11494
components:
- type: Transform
@@ -113164,14 +114327,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 12410
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,23.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 12412
components:
- type: Transform
@@ -113234,6 +114389,13 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13103
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 13243
components:
- type: Transform
@@ -113535,6 +114697,22 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,14.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,13.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16368
components:
- type: Transform
@@ -113589,6 +114767,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,18.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17341
components:
- type: Transform
@@ -113745,6 +114931,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18967
components:
- type: Transform
@@ -114267,27 +115461,19 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,23.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23386
+ - uid: 23372
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 51.5,14.5
+ pos: 52.5,15.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23395
+ - uid: 23375
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 51.5,21.5
+ pos: 51.5,22.5
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
@@ -114299,6 +115485,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,24.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23817
components:
- type: Transform
@@ -114464,6 +115658,14 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,28.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPort
entities:
- uid: 228
@@ -114615,6 +115817,8 @@ entities:
color: '#990000FF'
- uid: 19401
components:
+ - type: MetaData
+ name: Connector Port (gas input)
- type: Transform
rot: 3.141592653589793 rad
pos: 19.5,-53.5
@@ -114623,6 +115827,8 @@ entities:
color: '#6F2498FF'
- uid: 19418
components:
+ - type: MetaData
+ name: Connector Port (gas output)
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,-53.5
@@ -114631,6 +115837,8 @@ entities:
color: '#6F2498FF'
- uid: 19566
components:
+ - type: MetaData
+ name: Connector Port (gas input)
- type: Transform
rot: 3.141592653589793 rad
pos: 13.5,-53.5
@@ -114639,12 +115847,20 @@ entities:
color: '#6F2498FF'
- uid: 19622
components:
+ - type: MetaData
+ name: Connector Port (gas output)
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,-53.5
parent: 5350
- type: AtmosPipeColor
color: '#6F2498FF'
+ - uid: 21248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,41.5
+ parent: 5350
- uid: 25893
components:
- type: Transform
@@ -114743,7 +115959,7 @@ entities:
- uid: 19188
components:
- type: MetaData
- name: Gas Input
+ name: Gas Pump (gas in)
- type: Transform
rot: -1.5707963267948966 rad
pos: 12.5,-52.5
@@ -114755,6 +115971,26 @@ entities:
- type: Transform
pos: 71.5,-38.5
parent: 5350
+ - uid: 19218
+ components:
+ - type: MetaData
+ name: Gas Pump (distro in)
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19263
+ components:
+ - type: MetaData
+ name: Gas Pump (distro in)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-50.5
+ parent: 5350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19360
components:
- type: MetaData
@@ -114768,7 +116004,7 @@ entities:
- uid: 19482
components:
- type: MetaData
- name: Gas In Pump
+ name: Gas Pump (gas in)
- type: Transform
rot: 1.5707963267948966 rad
pos: 20.5,-52.5
@@ -114866,13 +116102,19 @@ entities:
- uid: 11364
components:
- type: Transform
+ anchored: False
pos: 54.5,-18.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 11365
components:
- type: Transform
+ anchored: False
pos: 55.5,-18.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 11803
components:
- type: Transform
@@ -114898,8 +116140,11 @@ entities:
- uid: 22353
components:
- type: Transform
+ anchored: False
pos: 56.5,-18.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 26312
components:
- type: Transform
@@ -114921,47 +116166,32 @@ entities:
- uid: 28273
components:
- type: Transform
+ anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-4.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 28274
components:
- type: Transform
+ anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-5.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 28276
components:
- type: Transform
+ anchored: False
rot: 1.5707963267948966 rad
pos: 58.5,-6.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- proto: GasValve
entities:
- - uid: 19278
- components:
- - type: MetaData
- name: Distro Release
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-50.5
- parent: 5350
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19405
- components:
- - type: MetaData
- name: Distro Release
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-50.5
- parent: 5350
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 27085
components:
- type: Transform
@@ -115639,6 +116869,16 @@ entities:
- 24361
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11361
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 9130
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 11929
components:
- type: Transform
@@ -116571,7 +117811,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 1913
+ - 872
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 21167
@@ -116682,6 +117922,17 @@ entities:
- 22178
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,28.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22156
components:
- type: Transform
@@ -116767,56 +118018,36 @@ entities:
- 24548
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23372
+ - uid: 23510
components:
- type: Transform
- pos: 49.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,8.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 15447
+ - 23602
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23379
+ - uid: 23613
components:
- type: Transform
- pos: 50.5,28.5
+ pos: 45.5,25.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 15447
+ - 23651
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23380
+ - uid: 24302
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 45.5,23.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 23906
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23385
- components:
- - type: Transform
- pos: 49.5,24.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,8.5
+ pos: 43.5,19.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 23602
+ - 28423
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24630
@@ -116964,6 +118195,16 @@ entities:
- 28012
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28373
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasVentScrubber
entities:
- uid: 431
@@ -118126,6 +119367,17 @@ entities:
- 19091
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,15.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 15447
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16376
components:
- type: Transform
@@ -118169,6 +119421,17 @@ entities:
- 23115
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,21.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 23651
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17342
components:
- type: Transform
@@ -118417,7 +119680,7 @@ entities:
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 1913
+ - 872
- type: AtmosPipeColor
color: '#990000FF'
- uid: 21166
@@ -118586,43 +119849,41 @@ entities:
- 22590
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23276
+ - uid: 23179
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-24.5
+ pos: 51.5,28.5
parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 9130
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23381
+ - uid: 23276
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 45.5,21.5
+ pos: 49.5,-24.5
parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 23906
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23383
+ - uid: 23392
components:
- type: Transform
- pos: 51.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,24.5
parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 15447
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23384
+ - uid: 23567
components:
- type: Transform
- pos: 51.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,13.5
parent: 5350
- type: DeviceNetwork
deviceLists:
- - 15447
+ - 28423
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25920
@@ -119053,6 +120314,11 @@ entities:
- type: Transform
pos: -69.5,10.5
parent: 5350
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 1.5,-41.5
+ parent: 5350
- uid: 1497
components:
- type: Transform
@@ -119258,11 +120524,6 @@ entities:
- type: Transform
pos: 32.5,-6.5
parent: 5350
- - uid: 2470
- components:
- - type: Transform
- pos: 16.5,-62.5
- parent: 5350
- uid: 2561
components:
- type: Transform
@@ -119633,16 +120894,6 @@ entities:
- type: Transform
pos: 48.5,9.5
parent: 5350
- - uid: 5095
- components:
- - type: Transform
- pos: 71.5,30.5
- parent: 5350
- - uid: 5096
- components:
- - type: Transform
- pos: 72.5,30.5
- parent: 5350
- uid: 5128
components:
- type: Transform
@@ -120326,6 +121577,11 @@ entities:
- type: Transform
pos: -2.5,26.5
parent: 5350
+ - uid: 7382
+ components:
+ - type: Transform
+ pos: -17.5,62.5
+ parent: 5350
- uid: 7427
components:
- type: Transform
@@ -120681,6 +121937,12 @@ entities:
- type: Transform
pos: 19.5,22.5
parent: 5350
+ - uid: 8253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,24.5
+ parent: 5350
- uid: 8256
components:
- type: Transform
@@ -120756,11 +122018,6 @@ entities:
- type: Transform
pos: -63.5,10.5
parent: 5350
- - uid: 8868
- components:
- - type: Transform
- pos: 73.5,30.5
- parent: 5350
- uid: 8953
components:
- type: Transform
@@ -120816,6 +122073,11 @@ entities:
- type: Transform
pos: 42.5,12.5
parent: 5350
+ - uid: 9100
+ components:
+ - type: Transform
+ pos: 45.5,13.5
+ parent: 5350
- uid: 9117
components:
- type: Transform
@@ -120956,11 +122218,6 @@ entities:
- type: Transform
pos: 66.5,-18.5
parent: 5350
- - uid: 10835
- components:
- - type: Transform
- pos: 70.5,-28.5
- parent: 5350
- uid: 10844
components:
- type: Transform
@@ -121491,11 +122748,6 @@ entities:
- type: Transform
pos: 60.5,17.5
parent: 5350
- - uid: 12297
- components:
- - type: Transform
- pos: 59.5,17.5
- parent: 5350
- uid: 12298
components:
- type: Transform
@@ -121536,11 +122788,6 @@ entities:
- type: Transform
pos: 60.5,23.5
parent: 5350
- - uid: 12306
- components:
- - type: Transform
- pos: 59.5,23.5
- parent: 5350
- uid: 12307
components:
- type: Transform
@@ -121606,26 +122853,6 @@ entities:
- type: Transform
pos: 38.5,46.5
parent: 5350
- - uid: 12666
- components:
- - type: Transform
- pos: 39.5,45.5
- parent: 5350
- - uid: 12667
- components:
- - type: Transform
- pos: 40.5,45.5
- parent: 5350
- - uid: 12668
- components:
- - type: Transform
- pos: 41.5,46.5
- parent: 5350
- - uid: 12669
- components:
- - type: Transform
- pos: 41.5,48.5
- parent: 5350
- uid: 12670
components:
- type: Transform
@@ -122556,11 +123783,6 @@ entities:
- type: Transform
pos: -54.5,-57.5
parent: 5350
- - uid: 16311
- components:
- - type: Transform
- pos: -58.5,-57.5
- parent: 5350
- uid: 16312
components:
- type: Transform
@@ -122606,6 +123828,12 @@ entities:
- type: Transform
pos: 22.5,-36.5
parent: 5350
+ - uid: 16457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-74.5
+ parent: 5350
- uid: 16476
components:
- type: Transform
@@ -122716,21 +123944,6 @@ entities:
- type: Transform
pos: 82.5,-27.5
parent: 5350
- - uid: 16747
- components:
- - type: Transform
- pos: -45.5,-42.5
- parent: 5350
- - uid: 16748
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 5350
- - uid: 16749
- components:
- - type: Transform
- pos: -47.5,-42.5
- parent: 5350
- uid: 16750
components:
- type: Transform
@@ -122961,105 +124174,16 @@ entities:
- type: Transform
pos: -59.5,-75.5
parent: 5350
- - uid: 16930
- components:
- - type: Transform
- pos: -63.5,-73.5
- parent: 5350
- - uid: 16931
- components:
- - type: Transform
- pos: -63.5,-72.5
- parent: 5350
- uid: 16932
components:
- type: Transform
- pos: -63.5,-71.5
- parent: 5350
- - uid: 16933
- components:
- - type: Transform
- pos: -63.5,-70.5
- parent: 5350
- - uid: 16934
- components:
- - type: Transform
- pos: -63.5,-69.5
- parent: 5350
- - uid: 16935
- components:
- - type: Transform
- pos: -63.5,-68.5
- parent: 5350
- - uid: 16936
- components:
- - type: Transform
- pos: -63.5,-67.5
- parent: 5350
- - uid: 16938
- components:
- - type: Transform
- pos: -63.5,-65.5
- parent: 5350
- - uid: 16939
- components:
- - type: Transform
- pos: -63.5,-64.5
- parent: 5350
- - uid: 16940
- components:
- - type: Transform
- pos: -63.5,-63.5
- parent: 5350
- - uid: 16941
- components:
- - type: Transform
- pos: -63.5,-62.5
- parent: 5350
- - uid: 16942
- components:
- - type: Transform
- pos: -63.5,-61.5
- parent: 5350
- - uid: 16943
- components:
- - type: Transform
- pos: -63.5,-60.5
- parent: 5350
- - uid: 16944
- components:
- - type: Transform
- pos: -63.5,-59.5
- parent: 5350
- - uid: 16945
- components:
- - type: Transform
- pos: -63.5,-58.5
- parent: 5350
- - uid: 16947
- components:
- - type: Transform
- pos: -59.5,-57.5
- parent: 5350
- - uid: 16948
- components:
- - type: Transform
- pos: -60.5,-57.5
- parent: 5350
- - uid: 16949
- components:
- - type: Transform
- pos: -61.5,-57.5
- parent: 5350
- - uid: 16950
- components:
- - type: Transform
- pos: -62.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-70.5
parent: 5350
- - uid: 16951
+ - uid: 17153
components:
- type: Transform
- pos: -63.5,-57.5
+ pos: 33.5,-79.5
parent: 5350
- uid: 17207
components:
@@ -123589,98 +124713,37 @@ entities:
- uid: 19608
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 1.5,-47.5
parent: 5350
- - uid: 19849
- components:
- - type: Transform
- pos: 45.5,-84.5
- parent: 5350
- - uid: 19850
- components:
- - type: Transform
- pos: 44.5,-84.5
- parent: 5350
- - uid: 19851
- components:
- - type: Transform
- pos: 43.5,-84.5
- parent: 5350
- - uid: 19852
- components:
- - type: Transform
- pos: 42.5,-84.5
- parent: 5350
- - uid: 19853
- components:
- - type: Transform
- pos: 41.5,-84.5
- parent: 5350
- - uid: 19854
- components:
- - type: Transform
- pos: 40.5,-84.5
- parent: 5350
- - uid: 19855
- components:
- - type: Transform
- pos: 39.5,-84.5
- parent: 5350
- - uid: 19856
- components:
- - type: Transform
- pos: 38.5,-84.5
- parent: 5350
- - uid: 19857
- components:
- - type: Transform
- pos: 37.5,-84.5
- parent: 5350
- - uid: 19858
- components:
- - type: Transform
- pos: 36.5,-84.5
- parent: 5350
- - uid: 19859
- components:
- - type: Transform
- pos: 35.5,-84.5
- parent: 5350
- - uid: 19860
- components:
- - type: Transform
- pos: 34.5,-84.5
- parent: 5350
- - uid: 19861
+ - uid: 19792
components:
- type: Transform
- pos: 33.5,-84.5
+ pos: 46.5,-79.5
parent: 5350
- - uid: 19862
+ - uid: 19795
components:
- type: Transform
- pos: 46.5,-83.5
+ pos: 45.5,-79.5
parent: 5350
- - uid: 19863
+ - uid: 19798
components:
- type: Transform
- pos: 46.5,-82.5
+ pos: 44.5,-79.5
parent: 5350
- - uid: 19864
+ - uid: 19799
components:
- type: Transform
- pos: 46.5,-81.5
+ pos: 41.5,-79.5
parent: 5350
- - uid: 19865
+ - uid: 19800
components:
- type: Transform
- pos: 46.5,-80.5
+ pos: 40.5,-79.5
parent: 5350
- - uid: 19866
+ - uid: 19807
components:
- type: Transform
- pos: 46.5,-79.5
+ pos: 40.5,-80.5
parent: 5350
- uid: 19867
components:
@@ -123747,21 +124810,6 @@ entities:
- type: Transform
pos: 46.5,-66.5
parent: 5350
- - uid: 19880
- components:
- - type: Transform
- pos: 46.5,-65.5
- parent: 5350
- - uid: 19881
- components:
- - type: Transform
- pos: 46.5,-64.5
- parent: 5350
- - uid: 19882
- components:
- - type: Transform
- pos: 46.5,-63.5
- parent: 5350
- uid: 19883
components:
- type: Transform
@@ -123782,6 +124830,12 @@ entities:
- type: Transform
pos: 45.5,-60.5
parent: 5350
+ - uid: 19992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-69.5
+ parent: 5350
- uid: 20004
components:
- type: Transform
@@ -124117,6 +125171,11 @@ entities:
- type: Transform
pos: 3.5,-11.5
parent: 5350
+ - uid: 20933
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 5350
- uid: 20952
components:
- type: Transform
@@ -124150,7 +125209,6 @@ entities:
- uid: 20981
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-49.5
parent: 5350
- uid: 21022
@@ -124166,7 +125224,6 @@ entities:
- uid: 21217
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-51.5
parent: 5350
- uid: 21269
@@ -124184,6 +125241,12 @@ entities:
- type: Transform
pos: 44.5,-40.5
parent: 5350
+ - uid: 21443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-72.5
+ parent: 5350
- uid: 21471
components:
- type: Transform
@@ -124209,11 +125272,6 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 5350
- - uid: 22350
- components:
- - type: Transform
- pos: 18.5,-62.5
- parent: 5350
- uid: 22387
components:
- type: Transform
@@ -124257,19 +125315,16 @@ entities:
- uid: 22599
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-53.5
parent: 5350
- uid: 22600
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-58.5
parent: 5350
- uid: 22602
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-56.5
parent: 5350
- uid: 22632
@@ -124372,11 +125427,29 @@ entities:
- type: Transform
pos: -2.5,5.5
parent: 5350
+ - uid: 23222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-73.5
+ parent: 5350
+ - uid: 23239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,20.5
+ parent: 5350
- uid: 23271
components:
- type: Transform
pos: -3.5,5.5
parent: 5350
+ - uid: 23380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,23.5
+ parent: 5350
- uid: 23399
components:
- type: Transform
@@ -124407,95 +125480,73 @@ entities:
- type: Transform
pos: 46.5,-38.5
parent: 5350
- - uid: 23592
- components:
- - type: Transform
- pos: 45.5,13.5
- parent: 5350
- - uid: 23723
- components:
- - type: Transform
- pos: 61.5,30.5
- parent: 5350
- - uid: 23725
- components:
- - type: Transform
- pos: -68.5,9.5
- parent: 5350
- - uid: 23734
- components:
- - type: Transform
- pos: 71.5,10.5
- parent: 5350
- - uid: 23735
- components:
- - type: Transform
- pos: 72.5,10.5
- parent: 5350
- - uid: 23739
+ - uid: 23594
components:
- type: Transform
- pos: 74.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-74.5
parent: 5350
- - uid: 23741
+ - uid: 23635
components:
- type: Transform
- pos: 75.5,10.5
+ pos: 41.5,48.5
parent: 5350
- - uid: 23742
+ - uid: 23653
components:
- type: Transform
- pos: 76.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-58.5
parent: 5350
- - uid: 23764
+ - uid: 23654
components:
- type: Transform
- pos: 79.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-58.5
parent: 5350
- - uid: 23772
+ - uid: 23721
components:
- type: Transform
- pos: 76.5,31.5
+ pos: 68.5,30.5
parent: 5350
- - uid: 23773
+ - uid: 23722
components:
- type: Transform
- pos: 75.5,31.5
+ pos: 67.5,30.5
parent: 5350
- - uid: 23774
+ - uid: 23723
components:
- type: Transform
- pos: 76.5,30.5
+ pos: 61.5,30.5
parent: 5350
- - uid: 23775
+ - uid: 23725
components:
- type: Transform
- pos: 75.5,30.5
+ pos: -68.5,9.5
parent: 5350
- - uid: 23776
+ - uid: 23739
components:
- type: Transform
- pos: 74.5,30.5
+ pos: 74.5,10.5
parent: 5350
- - uid: 23777
+ - uid: 23741
components:
- type: Transform
- pos: 79.5,22.5
+ pos: 75.5,10.5
parent: 5350
- - uid: 23778
+ - uid: 23742
components:
- type: Transform
- pos: 79.5,17.5
+ pos: 76.5,10.5
parent: 5350
- - uid: 23779
+ - uid: 23785
components:
- type: Transform
- pos: 79.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 80.5,22.5
parent: 5350
- uid: 23822
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-28.5
parent: 5350
- uid: 23855
@@ -125803,11 +126854,6 @@ entities:
- type: Transform
pos: 78.5,-26.5
parent: 5350
- - uid: 27236
- components:
- - type: Transform
- pos: 72.5,-28.5
- parent: 5350
- uid: 27251
components:
- type: Transform
@@ -126263,11 +127309,6 @@ entities:
- type: Transform
pos: 80.5,-47.5
parent: 5350
- - uid: 27401
- components:
- - type: Transform
- pos: 71.5,-28.5
- parent: 5350
- uid: 27404
components:
- type: Transform
@@ -126398,6 +127439,26 @@ entities:
- type: Transform
pos: 63.5,-35.5
parent: 5350
+ - uid: 28005
+ components:
+ - type: Transform
+ pos: 53.5,6.5
+ parent: 5350
+ - uid: 28006
+ components:
+ - type: Transform
+ pos: 54.5,6.5
+ parent: 5350
+ - uid: 28007
+ components:
+ - type: Transform
+ pos: 55.5,6.5
+ parent: 5350
+ - uid: 28011
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 5350
- uid: 28173
components:
- type: Transform
@@ -126413,6 +127474,186 @@ entities:
- type: Transform
pos: 52.5,-38.5
parent: 5350
+ - uid: 28401
+ components:
+ - type: Transform
+ pos: 0.5,-41.5
+ parent: 5350
+ - uid: 28477
+ components:
+ - type: Transform
+ pos: -17.5,58.5
+ parent: 5350
+ - uid: 28478
+ components:
+ - type: Transform
+ pos: -17.5,59.5
+ parent: 5350
+ - uid: 28481
+ components:
+ - type: Transform
+ pos: -17.5,60.5
+ parent: 5350
+ - uid: 28483
+ components:
+ - type: Transform
+ pos: -17.5,61.5
+ parent: 5350
+ - uid: 28560
+ components:
+ - type: Transform
+ pos: 40.5,-81.5
+ parent: 5350
+ - uid: 28573
+ components:
+ - type: Transform
+ pos: 39.5,-81.5
+ parent: 5350
+ - uid: 28574
+ components:
+ - type: Transform
+ pos: 38.5,-81.5
+ parent: 5350
+ - uid: 28575
+ components:
+ - type: Transform
+ pos: 36.5,-81.5
+ parent: 5350
+ - uid: 28576
+ components:
+ - type: Transform
+ pos: 37.5,-81.5
+ parent: 5350
+ - uid: 28577
+ components:
+ - type: Transform
+ pos: 36.5,-80.5
+ parent: 5350
+ - uid: 28578
+ components:
+ - type: Transform
+ pos: 36.5,-79.5
+ parent: 5350
+ - uid: 28579
+ components:
+ - type: Transform
+ pos: 35.5,-79.5
+ parent: 5350
+ - uid: 28580
+ components:
+ - type: Transform
+ pos: 34.5,-79.5
+ parent: 5350
+ - uid: 28581
+ components:
+ - type: Transform
+ pos: 30.5,-74.5
+ parent: 5350
+ - uid: 28582
+ components:
+ - type: Transform
+ pos: 30.5,-73.5
+ parent: 5350
+ - uid: 28584
+ components:
+ - type: Transform
+ pos: 30.5,-75.5
+ parent: 5350
+ - uid: 28585
+ components:
+ - type: Transform
+ pos: 30.5,-76.5
+ parent: 5350
+ - uid: 28586
+ components:
+ - type: Transform
+ pos: 30.5,-77.5
+ parent: 5350
+ - uid: 28587
+ components:
+ - type: Transform
+ pos: 32.5,-79.5
+ parent: 5350
+ - uid: 28597
+ components:
+ - type: Transform
+ pos: -62.5,-65.5
+ parent: 5350
+ - uid: 28616
+ components:
+ - type: Transform
+ pos: -60.5,-68.5
+ parent: 5350
+ - uid: 28617
+ components:
+ - type: Transform
+ pos: -60.5,-67.5
+ parent: 5350
+ - uid: 28618
+ components:
+ - type: Transform
+ pos: -60.5,-66.5
+ parent: 5350
+ - uid: 28619
+ components:
+ - type: Transform
+ pos: -60.5,-65.5
+ parent: 5350
+ - uid: 28620
+ components:
+ - type: Transform
+ pos: -61.5,-65.5
+ parent: 5350
+ - uid: 28621
+ components:
+ - type: Transform
+ pos: -63.5,-65.5
+ parent: 5350
+ - uid: 28622
+ components:
+ - type: Transform
+ pos: -63.5,-64.5
+ parent: 5350
+ - uid: 28623
+ components:
+ - type: Transform
+ pos: -62.5,-61.5
+ parent: 5350
+ - uid: 28624
+ components:
+ - type: Transform
+ pos: -60.5,-58.5
+ parent: 5350
+ - uid: 28625
+ components:
+ - type: Transform
+ pos: -63.5,-61.5
+ parent: 5350
+ - uid: 28626
+ components:
+ - type: Transform
+ pos: -61.5,-61.5
+ parent: 5350
+ - uid: 28627
+ components:
+ - type: Transform
+ pos: -60.5,-61.5
+ parent: 5350
+ - uid: 28628
+ components:
+ - type: Transform
+ pos: -60.5,-60.5
+ parent: 5350
+ - uid: 28629
+ components:
+ - type: Transform
+ pos: -60.5,-59.5
+ parent: 5350
+ - uid: 28630
+ components:
+ - type: Transform
+ pos: -58.5,-57.5
+ parent: 5350
- proto: GrilleBroken
entities:
- uid: 2073
@@ -126448,6 +127689,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -57.5,34.5
parent: 5350
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: 80.5,25.5
+ parent: 5350
- uid: 11459
components:
- type: Transform
@@ -126526,11 +127772,6 @@ entities:
- type: Transform
pos: 38.5,57.5
parent: 5350
- - uid: 16262
- components:
- - type: Transform
- pos: -63.5,-66.5
- parent: 5350
- uid: 16310
components:
- type: Transform
@@ -126597,6 +127838,17 @@ entities:
rot: 3.141592653589793 rad
pos: 44.5,-42.5
parent: 5350
+ - uid: 19848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-63.5
+ parent: 5350
+ - uid: 19849
+ components:
+ - type: Transform
+ pos: 46.5,-65.5
+ parent: 5350
- uid: 20222
components:
- type: Transform
@@ -126631,6 +127883,24 @@ entities:
rot: 3.141592653589793 rad
pos: -17.5,50.5
parent: 5350
+ - uid: 23229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,10.5
+ parent: 5350
+ - uid: 23377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,19.5
+ parent: 5350
+ - uid: 23964
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,30.5
+ parent: 5350
- uid: 26266
components:
- type: Transform
@@ -126918,6 +128188,74 @@ entities:
- type: Transform
pos: 44.5,-38.5
parent: 5350
+ - uid: 28485
+ components:
+ - type: Transform
+ pos: -17.5,56.5
+ parent: 5350
+ - uid: 28486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,57.5
+ parent: 5350
+ - uid: 28583
+ components:
+ - type: Transform
+ pos: 30.5,-72.5
+ parent: 5350
+ - uid: 28588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-78.5
+ parent: 5350
+ - uid: 28589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-79.5
+ parent: 5350
+ - uid: 28591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-79.5
+ parent: 5350
+ - uid: 28592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-79.5
+ parent: 5350
+ - uid: 28631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-71.5
+ parent: 5350
+ - uid: 28632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-57.5
+ parent: 5350
+ - uid: 28633
+ components:
+ - type: Transform
+ pos: -60.5,-57.5
+ parent: 5350
+ - uid: 28634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,-62.5
+ parent: 5350
+ - uid: 28635
+ components:
+ - type: Transform
+ pos: -63.5,-63.5
+ parent: 5350
- proto: GroundCannabis
entities:
- uid: 24640
@@ -126932,57 +128270,38 @@ entities:
parent: 5350
- proto: GunSafeDisabler
entities:
- - uid: 7730
+ - uid: 6369
components:
- type: Transform
- anchored: True
pos: -8.5,46.5
parent: 5350
- - type: Physics
- bodyType: Static
- proto: GunSafePistolMk58
entities:
- - uid: 6369
+ - uid: 6511
components:
- type: Transform
- anchored: True
pos: -9.5,46.5
parent: 5350
- - type: Physics
- bodyType: Static
- - 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
- proto: GunSafeRifleLecter
entities:
- - uid: 23721
+ - uid: 22966
components:
+ - type: MetaData
+ desc: Safe containing 3 Lecter combat rifles.
- type: Transform
+ anchored: True
pos: -6.5,40.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1465
+ temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -126999,28 +128318,33 @@ entities:
showEnts: False
occludes: True
ents:
- - 23731
- - 23730
- - 23722
+ - 28209
+ - 28446
+ - 28208
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GunSafeShotgunKammerer
entities:
- - uid: 13851
+ - uid: 11588
components:
+ - type: MetaData
+ desc: Safe containing 4 Kammerer shotguns.
- type: Transform
+ anchored: True
pos: -8.5,36.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -127037,27 +128361,32 @@ entities:
showEnts: False
occludes: True
ents:
- - 15052
- - 14878
+ - 3634
+ - 3056
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 9194
+ - uid: 13851
components:
+ - type: MetaData
+ desc: Safe containing 3 Drozd submachine guns.
- type: Transform
+ anchored: True
pos: -5.5,40.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.1465
+ temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -127074,19 +128403,19 @@ entities:
showEnts: False
occludes: True
ents:
- - 9202
- - 9198
- - 9195
+ - 14878
+ - 21468
+ - 28207
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- proto: GyroscopeFlatpack
entities:
- - uid: 24489
+ - uid: 28452
components:
- type: Transform
- parent: 24070
+ parent: 28450
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -127177,6 +128506,11 @@ entities:
- type: Transform
pos: 10.937332,19.46014
parent: 5350
+ - uid: 28500
+ components:
+ - type: Transform
+ pos: -34.34041,3.3560352
+ parent: 5350
- proto: HeatExchanger
entities:
- uid: 27166
@@ -127199,19 +128533,19 @@ entities:
parent: 5350
- proto: HighSecArmoryLocked
entities:
- - uid: 638
+ - uid: 7645
components:
- type: MetaData
name: Secure Armory
- type: Transform
- pos: -6.5,35.5
+ pos: -8.5,41.5
parent: 5350
- - uid: 7645
+ - uid: 28480
components:
- type: MetaData
name: Secure Armory
- type: Transform
- pos: -8.5,41.5
+ pos: -6.5,35.5
parent: 5350
- proto: HighSecCommandLocked
entities:
@@ -127262,8 +128596,8 @@ entities:
- uid: 27051
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.83539,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 72.665276,-31.44234
parent: 5350
- proto: Holopad
entities:
@@ -127340,10 +128674,10 @@ entities:
parent: 5350
- proto: HolopadCargoFront
entities:
- - uid: 688
+ - uid: 28498
components:
- type: Transform
- pos: -27.5,5.5
+ pos: -25.5,5.5
parent: 5350
- proto: HolopadCargoMailroom
entities:
@@ -127560,6 +128894,18 @@ entities:
- type: Transform
pos: -20.5,14.5
parent: 5350
+- proto: HolopadMachineCircuitboard
+ entities:
+ - uid: 16749
+ components:
+ - type: Transform
+ pos: 36.586212,6.763314
+ parent: 5350
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: 36.429962,6.466439
+ parent: 5350
- proto: HolopadMedicalBreakroom
entities:
- uid: 9751
@@ -127590,10 +128936,10 @@ entities:
parent: 5350
- proto: HolopadMedicalMorgue
entities:
- - uid: 15009
+ - uid: 28531
components:
- type: Transform
- pos: -13.5,-49.5
+ pos: -12.5,-49.5
parent: 5350
- proto: HolopadMedicalParamed
entities:
@@ -127812,6 +129158,15 @@ entities:
- type: Transform
pos: -50.5,-14.5
parent: 5350
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 7939
+ components:
+ - type: Transform
+ parent: 6696
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: HospitalCurtainsOpen
entities:
- uid: 4105
@@ -128368,21 +129723,22 @@ entities:
parent: 5350
- proto: IntercomEngineering
entities:
- - uid: 23179
+ - uid: 2143
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 55.5,6.5
+ pos: 56.5,6.5
parent: 5350
- uid: 24719
components:
- type: Transform
pos: 45.5,5.5
parent: 5350
- - uid: 26311
+ - uid: 27401
components:
- type: Transform
- pos: 73.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-32.5
parent: 5350
- proto: IntercomMedical
entities:
@@ -128531,6 +129887,22 @@ entities:
- type: Transform
pos: -43.410835,33.79435
parent: 5350
+ - uid: 15120
+ components:
+ - type: Transform
+ pos: -16.37137,-14.418222
+ parent: 5350
+ - type: GasTank
+ toggleActionEntity: 15198
+ - type: Jetpack
+ toggleActionEntity: 15196
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 15196
+ - 15198
- uid: 15431
components:
- type: Transform
@@ -128541,8 +129913,50 @@ entities:
- type: Transform
pos: 65.554596,3.6015525
parent: 5350
+ - uid: 15483
+ components:
+ - type: Transform
+ pos: -16.55887,-14.105722
+ parent: 5350
+ - type: GasTank
+ toggleActionEntity: 15592
+ - type: Jetpack
+ toggleActionEntity: 15521
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 15521
+ - 15592
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: -16.540573,-13.293222
+ parent: 5350
+ - type: GasTank
+ toggleActionEntity: 18711
+ - type: Jetpack
+ toggleActionEntity: 18692
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 18692
+ - 18711
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: -16.40262,-13.636972
+ parent: 5350
- proto: JetpackSecurityFilled
entities:
+ - uid: 4742
+ components:
+ - type: Transform
+ pos: -9.58875,44.44667
+ parent: 5350
- uid: 7291
components:
- type: Transform
@@ -128551,7 +129965,7 @@ entities:
- uid: 7614
components:
- type: Transform
- pos: -9.606552,44.638515
+ pos: -9.570677,44.593655
parent: 5350
- type: GasTank
toggleActionEntity: 7201
@@ -128786,6 +130200,11 @@ entities:
showEnts: False
occludes: True
ent: null
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: -3.6731057,38.90534
+ parent: 5350
- uid: 3242
components:
- type: Transform
@@ -128882,6 +130301,12 @@ entities:
- type: Transform
pos: -17.612652,-60.246487
parent: 5350
+ - uid: 28384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.478546,14.706465
+ parent: 5350
- proto: LampInterrogator
entities:
- uid: 999
@@ -128897,41 +130322,47 @@ entities:
anchored: True
pos: -16.5,55.5
parent: 5350
+ - uid: 7741
+ components:
+ - type: Transform
+ anchored: True
+ pos: 3.5,47.5
+ parent: 5350
- uid: 8516
components:
- type: Transform
anchored: True
pos: 3.5,68.5
parent: 5350
- - uid: 8518
+ - uid: 17667
components:
- type: Transform
anchored: True
- pos: -11.5,67.5
+ pos: 4.5,59.5
parent: 5350
- - uid: 11588
+ - uid: 23089
components:
- type: Transform
anchored: True
- pos: -23.5,50.5
+ pos: -16.5,50.5
parent: 5350
- - uid: 17667
+ - uid: 28126
components:
- type: Transform
anchored: True
- pos: 4.5,59.5
+ pos: 6.5,52.5
parent: 5350
- - uid: 23651
+ - uid: 28488
components:
- type: Transform
anchored: True
pos: -4.5,48.5
parent: 5350
- - uid: 28126
+ - uid: 28489
components:
- type: Transform
anchored: True
- pos: 6.5,52.5
+ pos: -9.5,67.5
parent: 5350
- proto: Lantern
entities:
@@ -128985,28 +130416,55 @@ entities:
parent: 5350
- proto: LockableButtonArmory
entities:
- - uid: 1174
+ - uid: 638
components:
- type: MetaData
- name: Armory Doors
+ name: Close Armory
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,35.5
+ pos: -7.2430754,35.481583
parent: 5350
- type: DeviceLinkSource
linkedPorts:
+ 1876:
+ - Pressed: Close
+ 28459:
+ - Pressed: Close
+ 6962:
+ - Pressed: Close
+ 8868:
+ - Pressed: Close
+ 23027:
+ - Pressed: Close
22904:
- - Pressed: Toggle
- 23732:
- - Pressed: Toggle
- 23652:
- - Pressed: Toggle
- 23635:
- - Pressed: Toggle
- 23634:
- - Pressed: Toggle
- 23636:
- - Pressed: Toggle
+ - Pressed: Close
+ - uid: 23091
+ components:
+ - type: MetaData
+ name: Open Armory
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.763909,35.48853
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1876:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 28459:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 6962:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 22904:
+ - Pressed: Open
+ 8868:
+ - Pressed: Open
+ - Pressed: AutoClose
+ 23027:
+ - Pressed: Open
+ - Pressed: AutoClose
- proto: LockableButtonAtmospherics
entities:
- uid: 18348
@@ -129033,6 +130491,24 @@ entities:
linkedPorts:
15941:
- Pressed: Toggle
+- proto: LockableButtonEngineering
+ entities:
+ - uid: 4161
+ components:
+ - type: MetaData
+ name: Secure Storage
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,21.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28365:
+ - Pressed: Toggle
+ 23391:
+ - Pressed: Toggle
+ 28382:
+ - Pressed: Toggle
- proto: LockableButtonMedical
entities:
- uid: 1426
@@ -129044,11 +130520,11 @@ entities:
parent: 5350
- type: DeviceLinkSource
linkedPorts:
- 12541:
+ 23655:
- Pressed: Toggle
- 20051:
+ 23712:
- Pressed: Toggle
- 11952:
+ 23720:
- Pressed: Toggle
- uid: 10414
components:
@@ -129166,8 +130642,11 @@ entities:
- uid: 15807
components:
- type: Transform
+ anchored: True
pos: -22.5,-22.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: LockerChiefEngineerFilled
entities:
- uid: 9051
@@ -129431,8 +130910,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -129443,17 +130922,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 9632
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: LockerFreezer
entities:
- uid: 3158
@@ -129547,43 +131015,67 @@ entities:
- uid: 16189
components:
- type: Transform
+ anchored: True
pos: -24.5,-39.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16190
components:
- type: Transform
+ anchored: True
pos: -25.5,-39.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16191
components:
- type: Transform
+ anchored: True
pos: -26.5,-39.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16192
components:
- type: Transform
+ anchored: True
pos: -27.5,-39.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16193
components:
- type: Transform
+ anchored: True
pos: -24.5,-43.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16194
components:
- type: Transform
+ anchored: True
pos: -25.5,-43.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16195
components:
- type: Transform
+ anchored: True
pos: -26.5,-43.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 16196
components:
- type: Transform
+ anchored: True
pos: -27.5,-43.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: LockerMedicineFilled
entities:
- uid: 10336
@@ -129614,8 +131106,11 @@ entities:
- uid: 15604
components:
- type: Transform
+ anchored: True
pos: -36.5,-30.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 24329
components:
- type: Transform
@@ -129626,13 +131121,19 @@ entities:
- uid: 15898
components:
- type: Transform
+ anchored: True
pos: -10.5,-35.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- uid: 15899
components:
- type: Transform
+ anchored: True
pos: -10.5,-34.5
parent: 5350
+ - type: Physics
+ bodyType: Static
- proto: LockerQuarterMasterFilled
entities:
- uid: 6737
@@ -129814,8 +131315,8 @@ entities:
showEnts: False
occludes: True
ents:
+ - 7939
- 7385
- - 1876
- 7384
- 7224
- 7218
@@ -129823,9 +131324,7 @@ entities:
- 7191
- 7131
- 7545
- - 6700
- 7757
- - 13782
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -129936,6 +131435,11 @@ entities:
showEnts: False
occludes: True
ents: []
+ - uid: 23757
+ components:
+ - type: Transform
+ pos: 20.5,-35.5
+ parent: 5350
- uid: 26436
components:
- type: Transform
@@ -129988,17 +131492,17 @@ entities:
parent: 5350
- proto: MagazinePistolSubMachineGun
entities:
- - uid: 9198
+ - uid: 14878
components:
- type: Transform
- parent: 9194
+ parent: 13851
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 9202
+ - uid: 21468
components:
- type: Transform
- parent: 9194
+ parent: 13851
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -130032,17 +131536,17 @@ entities:
unspawnedCount: 30
- proto: MagazineRifle
entities:
- - uid: 23722
+ - uid: 28208
components:
- type: Transform
- parent: 23721
+ parent: 22966
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23731
+ - uid: 28209
components:
- type: Transform
- parent: 23721
+ parent: 22966
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -130172,11 +131676,6 @@ entities:
- type: Transform
pos: -45.5,5.5
parent: 5350
- - uid: 9537
- components:
- - type: Transform
- pos: 18.5,-61.5
- parent: 5350
- uid: 13757
components:
- type: Transform
@@ -131014,13 +132513,6 @@ entities:
parent: 5350
- proto: Multitool
entities:
- - uid: 1876
- components:
- - type: Transform
- parent: 6696
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 3662
components:
- type: Transform
@@ -131081,6 +132573,11 @@ entities:
- type: Transform
pos: -46.5,33.5
parent: 5350
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: -41.5,-45.5
+ parent: 5350
- uid: 2145
components:
- type: Transform
@@ -131116,21 +132613,11 @@ entities:
- type: Transform
pos: -37.5,-34.5
parent: 5350
- - uid: 16275
- components:
- - type: Transform
- pos: 47.5,18.5
- parent: 5350
- uid: 18491
components:
- type: Transform
pos: -46.5,-39.5
parent: 5350
- - uid: 19218
- components:
- - type: Transform
- pos: 7.5,-64.5
- parent: 5350
- uid: 19449
components:
- type: Transform
@@ -131166,6 +132653,25 @@ entities:
- type: Transform
pos: 76.5,-34.5
parent: 5350
+ - uid: 27998
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 5350
+ - uid: 28428
+ components:
+ - type: Transform
+ pos: 13.5,-55.5
+ parent: 5350
+- proto: NitrogenTank
+ entities:
+ - uid: 14901
+ components:
+ - type: Transform
+ parent: 11032
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: NitrogenTankFilled
entities:
- uid: 4789
@@ -131173,32 +132679,55 @@ entities:
- type: Transform
pos: -36.68396,-36.29682
parent: 5350
- - uid: 6785
+ - uid: 12668
components:
- type: Transform
- parent: 5663
+ parent: 7801
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 6962
+ - uid: 12669
components:
- type: Transform
- parent: 5776
+ parent: 15195
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 7537
+ - uid: 13496
components:
- type: Transform
- parent: 10975
+ parent: 13159
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 8867
+ - uid: 13886
components:
- type: Transform
- pos: -5.5,46.5
- parent: 5350
+ parent: 1489
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14149
+ components:
+ - type: Transform
+ parent: 4104
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14443
+ components:
+ - type: Transform
+ parent: 7165
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 14858
+ components:
+ - type: Transform
+ parent: 2617
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 15237
components:
- type: Transform
@@ -131222,32 +132751,17 @@ entities:
actions: !type:Container
ents:
- 16296
- - uid: 23603
- components:
- - type: Transform
- parent: 6996
- - type: GasTank
- toggleActionEntity: 23604
- - type: Physics
- canCollide: False
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 23604
- - type: InsideEntityStorage
- - uid: 23605
+ - uid: 24449
components:
- type: Transform
- parent: 7774
+ parent: 24328
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 23610
+ - uid: 24611
components:
- type: Transform
- parent: 9506
+ parent: 24610
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -131423,21 +132937,11 @@ entities:
- type: Transform
pos: -37.5,-33.5
parent: 5350
- - uid: 16265
- components:
- - type: Transform
- pos: 46.5,18.5
- parent: 5350
- uid: 17340
components:
- type: Transform
pos: -47.5,-39.5
parent: 5350
- - uid: 19263
- components:
- - type: Transform
- pos: 8.5,-64.5
- parent: 5350
- uid: 19544
components:
- type: Transform
@@ -131458,18 +132962,23 @@ entities:
- type: Transform
pos: 76.5,-33.5
parent: 5350
-- proto: OxygenTankFilled
- entities:
- - uid: 1532
+ - uid: 27999
components:
- type: Transform
- pos: -16.506245,-14.460186
+ pos: 47.5,19.5
parent: 5350
- - uid: 1533
+ - uid: 28487
components:
- type: Transform
- pos: -16.506245,-14.163311
+ pos: 14.5,-55.5
parent: 5350
+ - uid: 28511
+ components:
+ - type: Transform
+ pos: -42.5,-45.5
+ parent: 5350
+- proto: OxygenTankFilled
+ entities:
- uid: 9284
components:
- type: Transform
@@ -131968,6 +133477,64 @@ entities:
Step 6: Enjoy.
NOTE: If you are doing this multiple times, you will need more than one container, otherwise the heated container will automatically form the electrolyzed water into hydroxide.
+- proto: PaperBin
+ entities:
+ - uid: 1531
+ components:
+ - type: MetaData
+ name: Paper Bin (cargo forms)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,8.5
+ parent: 5350
+ - type: Bin
+ items:
+ - 1532
+ - 1533
+ - 1534
+ - 1535
+ - 1539
+ - 1540
+ - 2064
+ - 2187
+ - 2470
+ - 2999
+ - 19853
+ - 19854
+ - 19855
+ - 19856
+ - 19857
+ - 19858
+ - 19859
+ - 19860
+ - 19861
+ - 19862
+ - type: ContainerContainer
+ containers:
+ bin-container: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 1532
+ - 1533
+ - 1534
+ - 1535
+ - 1539
+ - 1540
+ - 2064
+ - 2187
+ - 2470
+ - 2999
+ - 19853
+ - 19854
+ - 19855
+ - 19856
+ - 19857
+ - 19858
+ - 19859
+ - 19860
+ - 19861
+ - 19862
- proto: PaperBin10
entities:
- uid: 15095
@@ -132010,6 +133577,406 @@ entities:
parent: 5350
- proto: PaperOffice
entities:
+ - uid: 1532
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 1533
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 1534
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 1535
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 1539
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 1540
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 2064
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 2187
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 2470
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 2999
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
- uid: 6607
components:
- type: MetaData
@@ -132035,6 +134002,432 @@ entities:
Just as Central Command Intended.
- type: Physics
canCollide: False
+ - uid: 19853
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19854
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19855
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19856
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19857
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19858
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19859
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19860
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19861
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 19862
+ components:
+ - type: Transform
+ parent: 1531
+ - type: Paper
+ content: >-
+ [color=#b18644]█▄ █ ▀█▀ [head=3]Cargo Request Form[/head]
+
+ █ ▀█ █ Thank you for choosing Cargo[/color]
+
+ ──────────────────────────────────────────
+
+ This form is to place orders for items or resources you require. Please make sure to be detailed and specific.
+
+
+ For multiple different orders please fill out multiple forms.
+
+
+ Your Name: [color=#002AAF]Sample Person[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Your Order: [color=#002AAF]Sample Order[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ Reason (please be detailed):
+ [color=#002AAF]Sample Reason[/color]
+
+
+
+ \[ ]Request delivery
+
+ Destination (if applicable): [color=#002AAF]Sample Place[/color]
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
+ [color=#aaaaaa]Delivery is not guaranteed as Cargo personnel are not required to deliver your cargo to you. If delivery service is refused you will be asked to pick up your items over radio.
+
+ CRFs are handled in the order they are received.
+
+ The Quartermaster holds the right to change Cargo Request policies at any time.
+
+ If you are not satisfied with your Cargo service, please contact 1(800)-ASS-HOLE
+ - type: Physics
+ canCollide: False
+ - uid: 28641
+ components:
+ - type: Transform
+ pos: 76.359085,8.601143
+ parent: 5350
+ - type: Paper
+ content: >-
+ I don't know if you're trained already, so I hope this'll help.
+
+ AME controller needs LV power and an HV wire to output to. Check the area with a crowbar if you aren't sure.
+
+ There should be an empty room next to where you found this, that room's wired for the AME.
+
+ You can put an AME anywhere if you can get the wires to it, though.
+
+ 3x3 grid of AME parts, multitool them to unpack. Be careful not to 'trap' anything.
+
+ AME controller adjacent horizontally or vertically (not diagonally) to any point.
+
+ With only 1 core (what a 3x3 grid will get you), don't turn it up above 2.
+
+ The golden rule is 2 injection for every 1 core. You can go lower to save fuel.
+
+ Higher will burn the engine out and eventually make it explode. Don't.
+
+ Don't forget to refuel it, it tends to stop at the worst possible time.
- proto: PaperRolling
entities:
- uid: 17306
@@ -132150,7 +134543,7 @@ entities:
- uid: 3940
components:
- type: Transform
- pos: -27.259901,8.772635
+ pos: -24.633858,8.729532
parent: 5350
- uid: 7549
components:
@@ -132282,31 +134675,36 @@ entities:
parent: 5350
- proto: PlasmaCanister
entities:
- - uid: 9183
+ - uid: 11166
components:
- type: Transform
- pos: 46.5,20.5
+ pos: 69.5,-14.5
parent: 5350
- - uid: 9184
+ - uid: 12022
components:
- type: Transform
- pos: 47.5,20.5
+ pos: 70.5,-25.5
parent: 5350
- - uid: 11166
+ - uid: 19410
components:
- type: Transform
- pos: 69.5,-14.5
+ pos: 20.5,-45.5
parent: 5350
- - uid: 19410
+ - uid: 19910
components:
- type: Transform
- pos: 20.5,-45.5
+ pos: 43.5,25.5
parent: 5350
- uid: 27089
components:
- type: Transform
pos: 76.5,-35.5
parent: 5350
+ - uid: 28643
+ components:
+ - type: Transform
+ pos: 42.5,25.5
+ parent: 5350
- proto: PlasmaWindoorSecureScienceLocked
entities:
- uid: 6532
@@ -132692,16 +135090,6 @@ entities:
parent: 5350
- proto: PortableGeneratorPacman
entities:
- - uid: 8087
- components:
- - type: Transform
- pos: 46.5,25.5
- parent: 5350
- - uid: 8232
- components:
- - type: Transform
- pos: 46.5,26.5
- parent: 5350
- uid: 11183
components:
- type: Transform
@@ -132722,17 +135110,17 @@ entities:
- type: Transform
pos: -37.5,-49.5
parent: 5350
-- proto: PortableGeneratorSuperPacman
- entities:
- - uid: 8003
+ - uid: 23384
components:
- type: Transform
- pos: 47.5,26.5
+ pos: 43.5,21.5
parent: 5350
- - uid: 8086
+- proto: PortableGeneratorSuperPacman
+ entities:
+ - uid: 23753
components:
- type: Transform
- pos: 47.5,25.5
+ pos: 42.5,21.5
parent: 5350
- proto: PortableScrubber
entities:
@@ -133665,11 +136053,6 @@ entities:
parent: 5350
- proto: PowerCellRecharger
entities:
- - uid: 1534
- components:
- - type: Transform
- pos: -16.5,-12.5
- parent: 5350
- uid: 2039
components:
- type: Transform
@@ -133847,6 +136230,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,22.5
parent: 5350
+ - uid: 23735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-66.5
+ parent: 5350
- uid: 24131
components:
- type: Transform
@@ -133865,12 +136254,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,-37.5
parent: 5350
+ - uid: 26986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-25.5
+ parent: 5350
- uid: 28100
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 75.5,-30.5
parent: 5350
+ - uid: 28101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-27.5
+ parent: 5350
- proto: Poweredlight
entities:
- uid: 373
@@ -133921,6 +136322,11 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: -20.5,24.5
+ parent: 5350
- uid: 1315
components:
- type: Transform
@@ -134004,6 +136410,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -31.5,-30.5
parent: 5350
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 5350
- uid: 2102
components:
- type: Transform
@@ -134518,11 +136929,6 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 5350
- - uid: 8253
- components:
- - type: Transform
- pos: -21.5,24.5
- parent: 5350
- uid: 8483
components:
- type: Transform
@@ -134777,11 +137183,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-59.5
parent: 5350
- - uid: 11665
- components:
- - type: Transform
- pos: -6.5,40.5
- parent: 5350
- uid: 11728
components:
- type: Transform
@@ -135966,12 +138367,6 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,7.5
parent: 5350
- - uid: 23534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,5.5
- parent: 5350
- uid: 23535
components:
- type: Transform
@@ -135995,11 +138390,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 53.5,18.5
parent: 5350
- - uid: 23544
- components:
- - type: Transform
- pos: 45.5,18.5
- parent: 5350
- uid: 23545
components:
- type: Transform
@@ -136024,11 +138414,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 55.5,0.5
parent: 5350
- - uid: 23816
- components:
- - type: Transform
- pos: 52.5,5.5
- parent: 5350
- uid: 23818
components:
- type: Transform
@@ -136273,19 +138658,64 @@ entities:
rot: 3.141592653589793 rad
pos: 76.5,-27.5
parent: 5350
+ - uid: 28252
+ components:
+ - type: Transform
+ pos: -6.5,40.5
+ parent: 5350
- uid: 28296
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-59.5
parent: 5350
+ - uid: 28379
+ components:
+ - type: Transform
+ pos: 47.5,19.5
+ parent: 5350
+ - uid: 28404
+ components:
+ - type: Transform
+ pos: 51.5,5.5
+ parent: 5350
- proto: PoweredlightExterior
entities:
+ - uid: 6527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,49.5
+ parent: 5350
+ - uid: 7537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,69.5
+ parent: 5350
+ - uid: 10668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,63.5
+ parent: 5350
+ - uid: 10975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,63.5
+ parent: 5350
- uid: 11238
components:
- type: Transform
pos: 76.5,-43.5
parent: 5350
+ - uid: 14074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,50.5
+ parent: 5350
- uid: 23141
components:
- type: Transform
@@ -136676,6 +139106,12 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 6690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,25.5
+ parent: 5350
- uid: 6819
components:
- type: Transform
@@ -136688,6 +139124,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,28.5
parent: 5350
+ - uid: 7046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,21.5
+ parent: 5350
- uid: 7063
components:
- type: Transform
@@ -136847,12 +139289,6 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 11600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,25.5
- parent: 5350
- uid: 11618
components:
- type: Transform
@@ -137576,12 +140012,6 @@ entities:
- type: Transform
pos: 51.5,9.5
parent: 5350
- - uid: 23539
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,21.5
- parent: 5350
- uid: 23543
components:
- type: Transform
@@ -137593,6 +140023,12 @@ entities:
rot: 3.141592653589793 rad
pos: 58.5,18.5
parent: 5350
+ - uid: 23572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,25.5
+ parent: 5350
- uid: 23573
components:
- type: Transform
@@ -137757,12 +140193,6 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 26986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-27.5
- parent: 5350
- uid: 27125
components:
- type: Transform
@@ -137792,12 +140222,6 @@ entities:
- type: Transform
pos: 69.5,-23.5
parent: 5350
- - uid: 28101
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-25.5
- parent: 5350
- uid: 28129
components:
- type: Transform
@@ -137827,6 +140251,12 @@ entities:
- type: Transform
pos: 6.5,-55.5
parent: 5350
+ - uid: 28375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,18.5
+ parent: 5350
- proto: PrefilledSyringe
entities:
- uid: 19343
@@ -137984,26 +140414,11 @@ entities:
- type: Transform
pos: 32.5,8.5
parent: 5350
- - uid: 9191
- components:
- - type: Transform
- pos: -5.5,36.5
- parent: 5350
- - uid: 9192
- components:
- - type: Transform
- pos: -5.5,37.5
- parent: 5350
- uid: 9485
components:
- type: Transform
pos: -30.5,30.5
parent: 5350
- - uid: 10416
- components:
- - type: Transform
- pos: 18.5,-61.5
- parent: 5350
- uid: 10479
components:
- type: Transform
@@ -138014,6 +140429,11 @@ entities:
- type: Transform
pos: 11.5,17.5
parent: 5350
+ - uid: 10832
+ components:
+ - type: Transform
+ pos: 71.5,-25.5
+ parent: 5350
- uid: 13092
components:
- type: Transform
@@ -138272,6 +140692,18 @@ entities:
- type: Transform
pos: -57.5,-15.5
parent: 5350
+ - uid: 23031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,37.5
+ parent: 5350
+ - uid: 23043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,36.5
+ parent: 5350
- uid: 23045
components:
- type: Transform
@@ -138282,12 +140714,6 @@ entities:
- type: Transform
pos: -37.5,-51.5
parent: 5350
- - uid: 23809
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,8.5
- parent: 5350
- uid: 24078
components:
- type: Transform
@@ -139449,6 +141875,11 @@ entities:
rot: 3.141592653589793 rad
pos: 69.35516,-31.5
parent: 5350
+ - uid: 28391
+ components:
+ - type: Transform
+ pos: 53.404488,13.638708
+ parent: 5350
- proto: ReagentContainerFlour
entities:
- uid: 2240
@@ -139615,7 +142046,6 @@ entities:
- uid: 15114
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 48.5,-30.5
parent: 5350
- uid: 16539
@@ -139715,11 +142145,6 @@ entities:
parent: 5350
- proto: ReinforcedWindow
entities:
- - uid: 239
- components:
- - type: Transform
- pos: 71.5,-28.5
- parent: 5350
- uid: 691
components:
- type: Transform
@@ -141290,26 +143715,6 @@ entities:
- type: Transform
pos: 40.5,49.5
parent: 5350
- - uid: 8598
- components:
- - type: Transform
- pos: 39.5,45.5
- parent: 5350
- - uid: 8599
- components:
- - type: Transform
- pos: 40.5,45.5
- parent: 5350
- - uid: 8600
- components:
- - type: Transform
- pos: 41.5,46.5
- parent: 5350
- - uid: 8601
- components:
- - type: Transform
- pos: 41.5,48.5
- parent: 5350
- uid: 8616
components:
- type: Transform
@@ -141500,11 +143905,6 @@ entities:
- type: Transform
pos: -30.5,45.5
parent: 5350
- - uid: 9407
- components:
- - type: Transform
- pos: 59.5,17.5
- parent: 5350
- uid: 9408
components:
- type: Transform
@@ -141700,11 +144100,6 @@ entities:
- type: Transform
pos: 60.5,-25.5
parent: 5350
- - uid: 11753
- components:
- - type: Transform
- pos: 70.5,-28.5
- parent: 5350
- uid: 12131
components:
- type: Transform
@@ -141755,11 +144150,6 @@ entities:
- type: Transform
pos: 60.5,23.5
parent: 5350
- - uid: 12354
- components:
- - type: Transform
- pos: 59.5,23.5
- parent: 5350
- uid: 12355
components:
- type: Transform
@@ -142073,7 +144463,6 @@ entities:
- uid: 14560
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-53.5
parent: 5350
- uid: 14620
@@ -142239,7 +144628,6 @@ entities:
- uid: 16512
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-51.5
parent: 5350
- uid: 16526
@@ -142282,21 +144670,6 @@ entities:
- type: Transform
pos: -58.5,-33.5
parent: 5350
- - uid: 16675
- components:
- - type: Transform
- pos: -45.5,-42.5
- parent: 5350
- - uid: 16676
- components:
- - type: Transform
- pos: -46.5,-42.5
- parent: 5350
- - uid: 16677
- components:
- - type: Transform
- pos: -47.5,-42.5
- parent: 5350
- uid: 16885
components:
- type: Transform
@@ -142707,11 +145080,6 @@ entities:
- type: Transform
pos: 37.5,-62.5
parent: 5350
- - uid: 19825
- components:
- - type: Transform
- pos: 16.5,-62.5
- parent: 5350
- uid: 20248
components:
- type: Transform
@@ -142757,10 +145125,10 @@ entities:
- type: Transform
pos: -42.5,40.5
parent: 5350
- - uid: 20933
+ - uid: 21477
components:
- type: Transform
- pos: 18.5,-62.5
+ pos: 41.5,48.5
parent: 5350
- uid: 21655
components:
@@ -142795,7 +145163,6 @@ entities:
- uid: 22674
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-49.5
parent: 5350
- uid: 22693
@@ -142843,6 +145210,16 @@ entities:
- type: Transform
pos: -65.5,9.5
parent: 5350
+ - uid: 23568
+ components:
+ - type: Transform
+ pos: 55.5,6.5
+ parent: 5350
+ - uid: 23571
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 5350
- uid: 23591
components:
- type: Transform
@@ -142853,6 +145230,17 @@ entities:
- type: Transform
pos: -68.5,9.5
parent: 5350
+ - uid: 23636
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 5350
+ - uid: 23719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-58.5
+ parent: 5350
- uid: 23810
components:
- type: Transform
@@ -143003,10 +145391,21 @@ entities:
- type: Transform
pos: -66.5,9.5
parent: 5350
- - uid: 27995
+ - uid: 28410
components:
- type: Transform
- pos: 72.5,-28.5
+ pos: 54.5,6.5
+ parent: 5350
+ - uid: 28411
+ components:
+ - type: Transform
+ pos: 53.5,6.5
+ parent: 5350
+ - uid: 28502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-58.5
parent: 5350
- proto: RemoteSignaller
entities:
@@ -143015,6 +145414,12 @@ entities:
- type: Transform
pos: 45.32724,-24.4376
parent: 5350
+ - uid: 28429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.001884,-31.488335
+ parent: 5350
- proto: ResearchAndDevelopmentServer
entities:
- uid: 16515
@@ -143031,69 +145436,69 @@ entities:
parent: 5350
- proto: RiotBulletShield
entities:
- - uid: 1189
+ - uid: 28468
components:
- type: Transform
- pos: -9.815562,38.776684
+ pos: -9.773878,38.72186
parent: 5350
- - uid: 21407
+ - uid: 28469
components:
- type: Transform
- pos: -9.825979,38.651684
+ pos: -9.773878,38.607277
parent: 5350
- - uid: 22612
+ - uid: 28470
components:
- type: Transform
- pos: -9.815562,38.516266
+ pos: -9.784295,38.513527
parent: 5350
- - uid: 23633
+ - uid: 28471
components:
- type: Transform
- pos: -9.825979,38.391266
+ pos: -9.784295,38.451027
parent: 5350
- proto: RiotLaserShield
entities:
- - uid: 15205
+ - uid: 28472
components:
- type: Transform
- pos: -9.409312,38.5371
+ pos: -9.294712,38.72186
parent: 5350
- - uid: 23632
+ - uid: 28473
components:
- type: Transform
- pos: -9.409312,38.75585
+ pos: -9.294712,38.607277
parent: 5350
- - uid: 23639
+ - uid: 28474
components:
- type: Transform
- pos: -9.409312,38.641266
+ pos: -9.294712,38.50311
parent: 5350
- - uid: 23640
+ - uid: 28475
components:
- type: Transform
- pos: -9.409312,38.4121
+ pos: -9.294712,38.430195
parent: 5350
- proto: RiotShield
entities:
- - uid: 9193
+ - uid: 28460
components:
- type: Transform
- pos: -9.586395,38.516266
+ pos: -9.503045,38.763527
parent: 5350
- - uid: 9203
+ - uid: 28461
components:
- type: Transform
- pos: -9.575979,38.610016
+ pos: -9.503045,38.669777
parent: 5350
- - uid: 23637
+ - uid: 28466
components:
- type: Transform
- pos: -9.565562,38.7246
+ pos: -9.503045,38.586445
parent: 5350
- - uid: 23655
+ - uid: 28467
components:
- type: Transform
- pos: -9.586395,38.4121
+ pos: -9.503045,38.47186
parent: 5350
- proto: RobocopCircuitBoard
entities:
@@ -143409,13 +145814,6 @@ entities:
parent: 5350
- proto: SheetPlasma
entities:
- - uid: 9204
- components:
- - type: Transform
- parent: 23089
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 16621
components:
- type: Transform
@@ -143432,6 +145830,13 @@ entities:
- type: Transform
pos: 108.52579,-0.4873736
parent: 5350
+ - uid: 26783
+ components:
+ - type: Transform
+ parent: 26688
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SheetPlasma10
entities:
- uid: 15333
@@ -143528,15 +145933,25 @@ entities:
- type: Transform
pos: 42.547264,-3.4866009
parent: 5350
+ - uid: 9122
+ components:
+ - type: Transform
+ pos: 71.40013,-25.606089
+ parent: 5350
+ - uid: 11446
+ components:
+ - type: Transform
+ pos: 71.68138,-25.465464
+ parent: 5350
- uid: 14506
components:
- type: Transform
pos: 42.50872,-3.4762616
parent: 5350
- - uid: 23031
+ - uid: 23409
components:
- type: Transform
- pos: -5.477169,38.5245
+ pos: -5.469453,38.61524
parent: 5350
- uid: 23886
components:
@@ -143606,10 +146021,10 @@ entities:
parent: 5350
- proto: SheetUranium
entities:
- - uid: 23889
+ - uid: 26784
components:
- type: Transform
- parent: 23089
+ parent: 26688
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -143701,16 +146116,6 @@ entities:
- type: Transform
pos: -32.5,28.5
parent: 5350
- - uid: 4161
- components:
- - type: Transform
- pos: 17.5,-58.5
- parent: 5350
- - uid: 6818
- components:
- - type: Transform
- pos: 18.5,-58.5
- parent: 5350
- uid: 7323
components:
- type: Transform
@@ -143721,18 +146126,6 @@ entities:
- type: Transform
pos: -46.5,-35.5
parent: 5350
- - uid: 11952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-35.5
- parent: 5350
- - uid: 12541
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-33.5
- parent: 5350
- uid: 14414
components:
- type: Transform
@@ -143743,11 +146136,6 @@ entities:
- type: Transform
pos: -18.5,5.5
parent: 5350
- - uid: 15903
- components:
- - type: Transform
- pos: 16.5,-58.5
- parent: 5350
- uid: 16181
components:
- type: Transform
@@ -143798,6 +146186,18 @@ entities:
- type: Transform
pos: -47.5,-32.5
parent: 5350
+ - uid: 23655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-35.5
+ parent: 5350
+ - uid: 23712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-33.5
+ parent: 5350
- proto: ShuttersNormalOpen
entities:
- uid: 2415
@@ -144096,7 +146496,7 @@ entities:
parent: 5350
- proto: ShuttersWindow
entities:
- - uid: 20051
+ - uid: 23720
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -144104,18 +146504,18 @@ entities:
parent: 5350
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 26688
- components:
- - type: Transform
- parent: 24070
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 28205
components:
- type: Transform
pos: -43.58703,33.41721
parent: 5350
+ - uid: 28640
+ components:
+ - type: Transform
+ parent: 28639
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SignAi
entities:
- uid: 9089
@@ -144319,6 +146719,33 @@ entities:
linkedPorts:
17275:
- Pressed: DoorBolt
+ - uid: 11158
+ components:
+ - type: Transform
+ pos: 73.5,-28.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12418:
+ - Pressed: Toggle
+ 9188:
+ - Pressed: Toggle
+ 9185:
+ - Pressed: Toggle
+ - uid: 11160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-28.5
+ parent: 5350
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12418:
+ - Pressed: Toggle
+ 9188:
+ - Pressed: Toggle
+ 9185:
+ - Pressed: Toggle
- uid: 11423
components:
- type: MetaData
@@ -144393,24 +146820,6 @@ entities:
- Pressed: DoorBolt
- proto: SignalSwitch
entities:
- - uid: 2566
- components:
- - type: MetaData
- name: Blast Doors
- - type: Transform
- pos: 48.5,24.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 23567:
- - On: Open
- - Off: Close
- 23566:
- - On: Open
- - Off: Close
- 23565:
- - On: Open
- - Off: Close
- uid: 15949
components:
- type: MetaData
@@ -144773,25 +147182,6 @@ entities:
9630:
- On: Open
- Off: Close
- - uid: 7797
- components:
- - type: MetaData
- name: Pod Shutters
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-58.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 6818:
- - On: Open
- - Off: Close
- 4161:
- - On: Open
- - Off: Close
- 15903:
- - On: Open
- - Off: Close
- uid: 9373
components:
- type: MetaData
@@ -144935,25 +147325,6 @@ entities:
13781:
- On: Open
- Off: Close
- - uid: 14901
- components:
- - type: MetaData
- name: Pod Shutters
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-59.5
- parent: 5350
- - type: DeviceLinkSource
- linkedPorts:
- 15903:
- - On: Open
- - Off: Close
- 4161:
- - On: Open
- - Off: Close
- 6818:
- - On: Open
- - Off: Close
- uid: 17321
components:
- type: MetaData
@@ -145826,16 +148197,16 @@ entities:
- type: Transform
pos: -63.5,-14.5
parent: 5350
- - uid: 5329
+ - uid: 5096
components:
- type: Transform
- pos: 38.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-58.5
parent: 5350
- - uid: 20776
+ - uid: 16673
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-58.5
+ pos: 38.5,46.5
parent: 5350
- proto: SignEVA
entities:
@@ -146085,11 +148456,6 @@ entities:
- type: Transform
pos: 55.5,34.5
parent: 5350
- - uid: 14064
- components:
- - type: Transform
- pos: 56.5,42.5
- parent: 5350
- uid: 23546
components:
- type: Transform
@@ -146102,11 +148468,6 @@ entities:
rot: 3.141592653589793 rad
pos: 51.5,10.5
parent: 5350
- - uid: 23780
- components:
- - type: Transform
- pos: 79.5,21.5
- parent: 5350
- uid: 23781
components:
- type: Transform
@@ -146125,7 +148486,24 @@ entities:
- uid: 23784
components:
- type: Transform
- pos: 74.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,31.5
+ parent: 5350
+ - uid: 28201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,21.5
+ parent: 5350
+ - uid: 28435
+ components:
+ - type: Transform
+ pos: 61.5,10.5
+ parent: 5350
+ - uid: 28436
+ components:
+ - type: Transform
+ pos: 65.5,10.5
parent: 5350
- proto: SignRedOne
entities:
@@ -146225,18 +148603,6 @@ entities:
- type: Transform
pos: -0.5,-23.5
parent: 5350
-- proto: SignSecurearea
- entities:
- - uid: 3760
- components:
- - type: Transform
- pos: 1.5,-6.5
- parent: 5350
- - uid: 3763
- components:
- - type: Transform
- pos: -6.5,-6.5
- parent: 5350
- proto: SignSecureMed
entities:
- uid: 1958
@@ -146274,6 +148640,16 @@ entities:
- type: Transform
pos: 73.5,34.5
parent: 5350
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 5350
+ - uid: 19943
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 5350
- uid: 26809
components:
- type: Transform
@@ -146323,6 +148699,14 @@ entities:
- type: Transform
pos: 29.5,-37.5
parent: 5350
+- proto: SignShipDock
+ entities:
+ - uid: 28508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-45.5
+ parent: 5350
- proto: SignSmoking
entities:
- uid: 11369
@@ -146449,6 +148833,12 @@ entities:
- type: Transform
pos: 75.5,-40.5
parent: 5350
+ - uid: 28434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,6.5
+ parent: 5350
- proto: SignSurgery
entities:
- uid: 13245
@@ -146497,11 +148887,14 @@ entities:
parent: 5350
- proto: SingularityGenerator
entities:
- - uid: 9376
+ - uid: 23407
components:
- type: Transform
- pos: 44.5,20.5
+ anchored: False
+ pos: 44.5,21.5
parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- proto: Sink
entities:
- uid: 1030
@@ -146669,12 +149062,13 @@ entities:
parent: 5350
- proto: Sledgehammer
entities:
- - uid: 9632
+ - uid: 17039
components:
- type: MetaData
- name: Gavel
+ desc: The legendary weapon of robotics.
+ name: Borgmaker
- type: Transform
- parent: 9631
+ parent: 19208
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -146702,23 +149096,23 @@ entities:
- type: Transform
pos: 43.5,18.5
parent: 5350
- - uid: 28002
+ - uid: 28359
components:
- type: Transform
- pos: 70.5,-26.5
+ pos: 43.5,15.5
parent: 5350
- - uid: 28003
+ - uid: 28360
components:
- type: Transform
- pos: 71.5,-26.5
+ pos: 43.5,14.5
parent: 5350
- - uid: 28004
+- proto: SMESBasic
+ entities:
+ - uid: 9187
components:
- type: Transform
- pos: 72.5,-26.5
+ pos: 73.5,-25.5
parent: 5350
-- proto: SMESBasic
- entities:
- uid: 9518
components:
- type: MetaData
@@ -146745,6 +149139,22 @@ entities:
- type: Transform
pos: 57.5,34.5
parent: 5350
+ - uid: 15903
+ components:
+ - type: Transform
+ anchored: False
+ pos: 42.5,26.5
+ parent: 5350
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 16464
+ components:
+ - type: Transform
+ anchored: False
+ pos: 43.5,26.5
+ parent: 5350
+ - type: Physics
+ bodyType: Dynamic
- uid: 17169
components:
- type: MetaData
@@ -146834,6 +149244,31 @@ entities:
parent: 5350
- proto: SolarPanel
entities:
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 5350
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 5350
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: -50.5,-61.5
+ parent: 5350
+ - uid: 7722
+ components:
+ - type: Transform
+ pos: -46.5,-60.5
+ parent: 5350
+ - uid: 7765
+ components:
+ - type: Transform
+ pos: -48.5,-59.5
+ parent: 5350
- uid: 7962
components:
- type: Transform
@@ -146844,6 +149279,11 @@ entities:
- type: Transform
pos: -26.5,54.5
parent: 5350
+ - uid: 8086
+ components:
+ - type: Transform
+ pos: -48.5,-61.5
+ parent: 5350
- uid: 8163
components:
- type: Transform
@@ -146864,6 +149304,16 @@ entities:
- type: Transform
pos: -27.5,54.5
parent: 5350
+ - uid: 9407
+ components:
+ - type: Transform
+ pos: -46.5,-61.5
+ parent: 5350
+ - uid: 9632
+ components:
+ - type: Transform
+ pos: -44.5,-59.5
+ parent: 5350
- uid: 10172
components:
- type: Transform
@@ -147314,6 +149764,131 @@ entities:
- type: Transform
pos: -34.5,64.5
parent: 5350
+ - uid: 12306
+ components:
+ - type: Transform
+ pos: -46.5,-64.5
+ parent: 5350
+ - uid: 12410
+ components:
+ - type: Transform
+ pos: 73.5,52.5
+ parent: 5350
+ - uid: 13782
+ components:
+ - type: Transform
+ pos: -44.5,-62.5
+ parent: 5350
+ - uid: 16636
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 5350
+ - uid: 16676
+ components:
+ - type: Transform
+ pos: 73.5,49.5
+ parent: 5350
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 5350
+ - uid: 16748
+ components:
+ - type: Transform
+ pos: 73.5,50.5
+ parent: 5350
+ - uid: 16939
+ components:
+ - type: Transform
+ pos: 33.5,-67.5
+ parent: 5350
+ - uid: 16940
+ components:
+ - type: Transform
+ pos: 33.5,-75.5
+ parent: 5350
+ - uid: 16941
+ components:
+ - type: Transform
+ pos: 32.5,-77.5
+ parent: 5350
+ - uid: 16942
+ components:
+ - type: Transform
+ pos: 32.5,-69.5
+ parent: 5350
+ - uid: 16945
+ components:
+ - type: Transform
+ pos: 43.5,-73.5
+ parent: 5350
+ - uid: 16947
+ components:
+ - type: Transform
+ pos: 32.5,-73.5
+ parent: 5350
+ - uid: 16948
+ components:
+ - type: Transform
+ pos: 33.5,-71.5
+ parent: 5350
+ - uid: 16949
+ components:
+ - type: Transform
+ pos: 44.5,-71.5
+ parent: 5350
+ - uid: 16950
+ components:
+ - type: Transform
+ pos: 43.5,-77.5
+ parent: 5350
+ - uid: 16951
+ components:
+ - type: Transform
+ pos: 43.5,-75.5
+ parent: 5350
+ - uid: 16972
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 5350
+ - uid: 16980
+ components:
+ - type: Transform
+ pos: -44.5,-64.5
+ parent: 5350
+ - uid: 17017
+ components:
+ - type: Transform
+ pos: 43.5,-71.5
+ parent: 5350
+ - uid: 17019
+ components:
+ - type: Transform
+ pos: 44.5,-77.5
+ parent: 5350
+ - uid: 17021
+ components:
+ - type: Transform
+ pos: 32.5,-71.5
+ parent: 5350
+ - uid: 17022
+ components:
+ - type: Transform
+ pos: 33.5,-69.5
+ parent: 5350
+ - uid: 17023
+ components:
+ - type: Transform
+ pos: 33.5,-77.5
+ parent: 5350
+ - uid: 17024
+ components:
+ - type: Transform
+ pos: 32.5,-75.5
+ parent: 5350
- uid: 17044
components:
- type: Transform
@@ -147344,16 +149919,6 @@ entities:
- type: Transform
pos: -58.5,-65.5
parent: 5350
- - uid: 17051
- components:
- - type: Transform
- pos: -58.5,-64.5
- parent: 5350
- - uid: 17052
- components:
- - type: Transform
- pos: -57.5,-71.5
- parent: 5350
- uid: 17053
components:
- type: Transform
@@ -147384,71 +149949,6 @@ entities:
- type: Transform
pos: -56.5,-65.5
parent: 5350
- - uid: 17059
- components:
- - type: Transform
- pos: -56.5,-64.5
- parent: 5350
- - uid: 17060
- components:
- - type: Transform
- pos: -58.5,-62.5
- parent: 5350
- - uid: 17061
- components:
- - type: Transform
- pos: -57.5,-61.5
- parent: 5350
- - uid: 17062
- components:
- - type: Transform
- pos: -56.5,-62.5
- parent: 5350
- - uid: 17063
- components:
- - type: Transform
- pos: -54.5,-62.5
- parent: 5350
- - uid: 17064
- components:
- - type: Transform
- pos: -53.5,-61.5
- parent: 5350
- - uid: 17065
- components:
- - type: Transform
- pos: -52.5,-62.5
- parent: 5350
- - uid: 17066
- components:
- - type: Transform
- pos: -50.5,-62.5
- parent: 5350
- - uid: 17067
- components:
- - type: Transform
- pos: -49.5,-61.5
- parent: 5350
- - uid: 17068
- components:
- - type: Transform
- pos: -48.5,-62.5
- parent: 5350
- - uid: 17069
- components:
- - type: Transform
- pos: -46.5,-62.5
- parent: 5350
- - uid: 17070
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 5350
- - uid: 17071
- components:
- - type: Transform
- pos: -44.5,-62.5
- parent: 5350
- uid: 17072
components:
- type: Transform
@@ -147479,16 +149979,6 @@ entities:
- type: Transform
pos: -44.5,-65.5
parent: 5350
- - uid: 17078
- components:
- - type: Transform
- pos: -44.5,-64.5
- parent: 5350
- - uid: 17079
- components:
- - type: Transform
- pos: -46.5,-64.5
- parent: 5350
- uid: 17080
components:
- type: Transform
@@ -147549,16 +150039,6 @@ entities:
- type: Transform
pos: -48.5,-65.5
parent: 5350
- - uid: 17092
- components:
- - type: Transform
- pos: -48.5,-64.5
- parent: 5350
- - uid: 17093
- components:
- - type: Transform
- pos: -50.5,-64.5
- parent: 5350
- uid: 17094
components:
- type: Transform
@@ -147619,16 +150099,6 @@ entities:
- type: Transform
pos: -52.5,-65.5
parent: 5350
- - uid: 17106
- components:
- - type: Transform
- pos: -52.5,-64.5
- parent: 5350
- - uid: 17107
- components:
- - type: Transform
- pos: -54.5,-64.5
- parent: 5350
- uid: 17108
components:
- type: Transform
@@ -147659,21 +150129,6 @@ entities:
- type: Transform
pos: -54.5,-70.5
parent: 5350
- - uid: 17114
- components:
- - type: Transform
- pos: -53.5,-71.5
- parent: 5350
- - uid: 17115
- components:
- - type: Transform
- pos: -49.5,-71.5
- parent: 5350
- - uid: 17116
- components:
- - type: Transform
- pos: -45.5,-71.5
- parent: 5350
- uid: 18724
components:
- type: Transform
@@ -148012,7 +150467,7 @@ entities:
- uid: 19964
components:
- type: Transform
- pos: 33.5,-68.5
+ pos: -52.5,-64.5
parent: 5350
- uid: 19965
components:
@@ -148044,11 +150499,6 @@ entities:
- type: Transform
pos: 42.5,-67.5
parent: 5350
- - uid: 19971
- components:
- - type: Transform
- pos: 43.5,-68.5
- parent: 5350
- uid: 19972
components:
- type: Transform
@@ -148082,7 +150532,7 @@ entities:
- uid: 19978
components:
- type: Transform
- pos: 43.5,-72.5
+ pos: -50.5,-62.5
parent: 5350
- uid: 19979
components:
@@ -148114,11 +150564,6 @@ entities:
- type: Transform
pos: 34.5,-73.5
parent: 5350
- - uid: 19985
- components:
- - type: Transform
- pos: 33.5,-72.5
- parent: 5350
- uid: 19986
components:
- type: Transform
@@ -148149,11 +150594,6 @@ entities:
- type: Transform
pos: 34.5,-77.5
parent: 5350
- - uid: 19992
- components:
- - type: Transform
- pos: 33.5,-76.5
- parent: 5350
- uid: 19993
components:
- type: Transform
@@ -148184,11 +150624,6 @@ entities:
- type: Transform
pos: 42.5,-77.5
parent: 5350
- - uid: 19999
- components:
- - type: Transform
- pos: 43.5,-76.5
- parent: 5350
- uid: 20000
components:
- type: Transform
@@ -148204,6 +150639,231 @@ entities:
- type: Transform
pos: 40.5,-75.5
parent: 5350
+ - uid: 20776
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 5350
+ - uid: 20912
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 5350
+ - uid: 23383
+ components:
+ - type: Transform
+ pos: -46.5,-62.5
+ parent: 5350
+ - uid: 23734
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 5350
+ - uid: 23754
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 5350
+ - uid: 23766
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 5350
+ - uid: 23772
+ components:
+ - type: Transform
+ pos: 73.5,56.5
+ parent: 5350
+ - uid: 23774
+ components:
+ - type: Transform
+ pos: 73.5,55.5
+ parent: 5350
+ - uid: 23780
+ components:
+ - type: Transform
+ pos: 73.5,53.5
+ parent: 5350
+ - uid: 23812
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 5350
+ - uid: 23872
+ components:
+ - type: Transform
+ pos: -44.5,-61.5
+ parent: 5350
+ - uid: 26750
+ components:
+ - type: Transform
+ pos: -44.5,-60.5
+ parent: 5350
+ - uid: 26751
+ components:
+ - type: Transform
+ pos: -46.5,-59.5
+ parent: 5350
+ - uid: 26796
+ components:
+ - type: Transform
+ pos: -48.5,-62.5
+ parent: 5350
+ - uid: 26800
+ components:
+ - type: Transform
+ pos: -48.5,-60.5
+ parent: 5350
+ - uid: 27858
+ components:
+ - type: Transform
+ pos: -50.5,-59.5
+ parent: 5350
+ - uid: 28399
+ components:
+ - type: Transform
+ pos: -50.5,-60.5
+ parent: 5350
+ - uid: 28463
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 5350
+ - uid: 28515
+ components:
+ - type: Transform
+ pos: 32.5,-67.5
+ parent: 5350
+ - uid: 28516
+ components:
+ - type: Transform
+ pos: 43.5,-67.5
+ parent: 5350
+ - uid: 28518
+ components:
+ - type: Transform
+ pos: 33.5,-73.5
+ parent: 5350
+ - uid: 28519
+ components:
+ - type: Transform
+ pos: 44.5,-73.5
+ parent: 5350
+ - uid: 28520
+ components:
+ - type: Transform
+ pos: 44.5,-75.5
+ parent: 5350
+ - uid: 28521
+ components:
+ - type: Transform
+ pos: 44.5,-69.5
+ parent: 5350
+ - uid: 28522
+ components:
+ - type: Transform
+ pos: 43.5,-69.5
+ parent: 5350
+ - uid: 28534
+ components:
+ - type: Transform
+ pos: 44.5,-67.5
+ parent: 5350
+ - uid: 28590
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 5350
+ - uid: 28598
+ components:
+ - type: Transform
+ pos: -56.5,-64.5
+ parent: 5350
+ - uid: 28599
+ components:
+ - type: Transform
+ pos: -58.5,-64.5
+ parent: 5350
+ - uid: 28600
+ components:
+ - type: Transform
+ pos: -56.5,-62.5
+ parent: 5350
+ - uid: 28601
+ components:
+ - type: Transform
+ pos: -56.5,-61.5
+ parent: 5350
+ - uid: 28602
+ components:
+ - type: Transform
+ pos: -56.5,-60.5
+ parent: 5350
+ - uid: 28603
+ components:
+ - type: Transform
+ pos: -56.5,-59.5
+ parent: 5350
+ - uid: 28604
+ components:
+ - type: Transform
+ pos: -58.5,-59.5
+ parent: 5350
+ - uid: 28605
+ components:
+ - type: Transform
+ pos: -58.5,-60.5
+ parent: 5350
+ - uid: 28606
+ components:
+ - type: Transform
+ pos: -58.5,-61.5
+ parent: 5350
+ - uid: 28607
+ components:
+ - type: Transform
+ pos: -58.5,-62.5
+ parent: 5350
+ - uid: 28608
+ components:
+ - type: Transform
+ pos: -54.5,-61.5
+ parent: 5350
+ - uid: 28609
+ components:
+ - type: Transform
+ pos: -54.5,-62.5
+ parent: 5350
+ - uid: 28610
+ components:
+ - type: Transform
+ pos: -54.5,-60.5
+ parent: 5350
+ - uid: 28611
+ components:
+ - type: Transform
+ pos: -54.5,-59.5
+ parent: 5350
+ - uid: 28612
+ components:
+ - type: Transform
+ pos: -52.5,-59.5
+ parent: 5350
+ - uid: 28613
+ components:
+ - type: Transform
+ pos: -52.5,-60.5
+ parent: 5350
+ - uid: 28614
+ components:
+ - type: Transform
+ pos: -52.5,-61.5
+ parent: 5350
+ - uid: 28615
+ components:
+ - type: Transform
+ pos: -52.5,-62.5
+ parent: 5350
- proto: SolarTracker
entities:
- uid: 17046
@@ -148693,15 +151353,15 @@ entities:
parent: 5350
- proto: SpawnPointChemist
entities:
- - uid: 20742
+ - uid: 15347
components:
- type: Transform
- pos: -19.5,-27.5
+ pos: -21.5,-25.5
parent: 5350
- - uid: 20912
+ - uid: 15601
components:
- type: Transform
- pos: -20.5,-27.5
+ pos: -19.5,-25.5
parent: 5350
- proto: SpawnPointChiefEngineer
entities:
@@ -148812,11 +151472,6 @@ entities:
- type: Transform
pos: 11.5,20.5
parent: 5350
- - uid: 10131
- components:
- - type: Transform
- pos: 13.5,18.5
- parent: 5350
- uid: 16655
components:
- type: Transform
@@ -149008,16 +151663,21 @@ entities:
- type: Transform
pos: 37.5,14.5
parent: 5350
- - uid: 23176
+ - uid: 23762
components:
- type: Transform
- pos: 29.5,37.5
+ pos: 30.5,36.5
parent: 5350
- - uid: 23177
+ - uid: 23763
components:
- type: Transform
pos: 34.5,45.5
parent: 5350
+ - uid: 23764
+ components:
+ - type: Transform
+ pos: 31.5,52.5
+ parent: 5350
- uid: 24117
components:
- type: Transform
@@ -149038,16 +151698,6 @@ entities:
- type: Transform
pos: 29.5,32.5
parent: 5350
- - uid: 28226
- components:
- - type: Transform
- pos: 33.5,50.5
- parent: 5350
- - uid: 28227
- components:
- - type: Transform
- pos: 29.5,50.5
- parent: 5350
- uid: 28229
components:
- type: Transform
@@ -149177,11 +151827,6 @@ entities:
parent: 5350
- proto: SpawnPointSecurityCadet
entities:
- - uid: 6762
- components:
- - type: Transform
- pos: 13.5,39.5
- parent: 5350
- uid: 6866
components:
- type: Transform
@@ -149202,11 +151847,6 @@ entities:
- type: Transform
pos: 1.5,39.5
parent: 5350
- - uid: 7048
- components:
- - type: Transform
- pos: 12.5,36.5
- parent: 5350
- proto: SpawnPointSecurityOfficer
entities:
- uid: 6760
@@ -149224,16 +151864,6 @@ entities:
- type: Transform
pos: -3.5,45.5
parent: 5350
- - uid: 7046
- components:
- - type: Transform
- pos: 5.5,37.5
- parent: 5350
- - uid: 7047
- components:
- - type: Transform
- pos: 5.5,39.5
- parent: 5350
- uid: 7171
components:
- type: Transform
@@ -149244,11 +151874,6 @@ entities:
- type: Transform
pos: -2.5,45.5
parent: 5350
- - uid: 28219
- components:
- - type: Transform
- pos: -3.5,28.5
- parent: 5350
- proto: SpawnPointServiceWorker
entities:
- uid: 2753
@@ -149312,10 +151937,10 @@ entities:
parent: 5350
- proto: SpawnPointWarden
entities:
- - uid: 21247
+ - uid: 6785
components:
- type: Transform
- pos: -2.5,39.5
+ pos: -2.5,38.5
parent: 5350
- proto: SpeedLoaderMagnumPractice
entities:
@@ -149469,6 +152094,11 @@ entities:
- type: Transform
pos: 8.5,-6.5
parent: 5350
+ - uid: 17028
+ components:
+ - type: Transform
+ pos: 52.5,6.5
+ parent: 5350
- uid: 19460
components:
- type: Transform
@@ -149803,6 +152433,39 @@ entities:
- type: Transform
pos: 44.5,-27.5
parent: 5350
+ - uid: 28393
+ components:
+ - type: Transform
+ pos: 55.496033,15.703398
+ parent: 5350
+ - uid: 28394
+ components:
+ - type: Transform
+ pos: 53.51348,15.687193
+ parent: 5350
+ - uid: 28395
+ components:
+ - type: Transform
+ pos: 54.497856,15.702818
+ parent: 5350
+ - uid: 28396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.497856,12.702818
+ parent: 5350
+ - uid: 28397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.48223,12.702818
+ parent: 5350
+ - uid: 28398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.48223,12.702818
+ parent: 5350
- proto: StoolBar
entities:
- uid: 2409
@@ -149860,6 +152523,16 @@ entities:
- type: Transform
pos: 29.5,-5.5
parent: 5350
+ - uid: 5097
+ components:
+ - type: Transform
+ pos: -49.5,-42.5
+ parent: 5350
+ - uid: 5872
+ components:
+ - type: Transform
+ pos: -48.5,-42.5
+ parent: 5350
- uid: 9243
components:
- type: Transform
@@ -149911,6 +152584,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-24.5
parent: 5350
+ - uid: 17666
+ components:
+ - type: Transform
+ pos: -45.5,-42.5
+ parent: 5350
- uid: 22870
components:
- type: Transform
@@ -149926,6 +152604,16 @@ entities:
- type: Transform
pos: -40.5,-18.5
parent: 5350
+ - uid: 23777
+ components:
+ - type: Transform
+ pos: -46.5,-42.5
+ parent: 5350
+ - uid: 28496
+ components:
+ - type: Transform
+ pos: -47.5,-42.5
+ parent: 5350
- proto: StorageCanister
entities:
- uid: 10293
@@ -150027,6 +152715,11 @@ entities:
- type: Transform
pos: -52.5,5.5
parent: 5350
+ - uid: 9186
+ components:
+ - type: Transform
+ pos: 72.5,-25.5
+ parent: 5350
- uid: 9519
components:
- type: MetaData
@@ -150130,6 +152823,18 @@ entities:
- type: Transform
pos: 77.5,-30.5
parent: 5350
+- proto: SubstationMachineCircuitboard
+ entities:
+ - uid: 28216
+ components:
+ - type: Transform
+ pos: 37.117462,6.747689
+ parent: 5350
+ - uid: 28217
+ components:
+ - type: Transform
+ pos: 37.039337,6.528939
+ parent: 5350
- proto: SuitStorageCaptain
entities:
- uid: 1204
@@ -150233,10 +152938,12 @@ entities:
parent: 5350
- proto: SuitStorageEVA
entities:
- - uid: 1488
+ - uid: 1489
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
- pos: -18.5,-10.5
+ pos: -14.5,-11.5
parent: 5350
- type: EntityStorage
air:
@@ -150244,8 +152951,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150262,14 +152969,15 @@ entities:
showEnts: False
occludes: True
ents:
- - 22167
- - 22168
- - 22229
- - 22348
- - uid: 1489
+ - 22911
+ - 23098
+ - 13886
+ - uid: 4104
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
- pos: -14.5,-11.5
+ pos: -18.5,-11.5
parent: 5350
- type: EntityStorage
air:
@@ -150277,8 +152985,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8977377
+ - 7.139109
- 0
- 0
- 0
@@ -150295,14 +153003,15 @@ entities:
showEnts: False
occludes: True
ents:
- - 23099
- - 23098
- - 23051
- - 22911
- - uid: 4104
+ - 23472
+ - 14149
+ - 23406
+ - uid: 7165
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
- pos: -18.5,-11.5
+ pos: -14.5,-10.5
parent: 5350
- type: EntityStorage
air:
@@ -150310,8 +153019,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8968438
- - 7.1357465
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150328,14 +153037,49 @@ entities:
showEnts: False
occludes: True
ents:
- - 23284
- - 23406
- - 23407
- - 23472
- - uid: 7165
+ - 14443
+ - 23956
+ - 23905
+ - uid: 13159
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
- pos: -14.5,-10.5
+ pos: -18.5,-10.5
+ parent: 5350
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14697
+ 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:
+ - 22167
+ - 13496
+ - 22348
+ - uid: 24328
+ components:
+ - type: MetaData
+ name: EVA Suitlocker
+ - type: Transform
+ pos: -14.5,-14.5
parent: 5350
- type: EntityStorage
air:
@@ -150361,14 +153105,49 @@ entities:
showEnts: False
occludes: True
ents:
- - 23712
- - 23905
- - 23956
- - 23964
+ - 8883
+ - 23051
+ - 24449
+ - uid: 24610
+ components:
+ - type: MetaData
+ name: EVA Suitlocker
+ - type: Transform
+ pos: -14.5,-12.5
+ parent: 5350
+ - 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:
+ - 22168
+ - 22229
+ - 24611
- proto: SuitStorageEVAAlternate
entities:
- uid: 2617
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
pos: -14.5,-16.5
parent: 5350
@@ -150378,8 +153157,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150396,12 +153175,13 @@ entities:
showEnts: False
occludes: True
ents:
- - 24056
- - 24057
- 24058
- - 24244
+ - 14858
+ - 24057
- uid: 7801
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
pos: -18.5,-16.5
parent: 5350
@@ -150411,8 +153191,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150429,12 +153209,13 @@ entities:
showEnts: False
occludes: True
ents:
- - 8883
+ - 12668
- 8865
- - 7940
- 7808
- uid: 11032
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
pos: -14.5,-15.5
parent: 5350
@@ -150444,8 +153225,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150462,12 +153243,13 @@ entities:
showEnts: False
occludes: True
ents:
- - 24248
+ - 14901
- 24266
- 24321
- - 24328
- uid: 15195
components:
+ - type: MetaData
+ name: EVA Suitlocker
- type: Transform
pos: -18.5,-15.5
parent: 5350
@@ -150477,8 +153259,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -150495,10 +153277,9 @@ entities:
showEnts: False
occludes: True
ents:
- - 15196
- - 15198
- - 15199
- 15200
+ - 15199
+ - 12669
- proto: SuitStorageEVAPrisoner
entities:
- uid: 6996
@@ -150524,13 +153305,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 23603
- uid: 7774
components:
- type: Transform
@@ -150554,13 +153328,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 23605
- uid: 9506
components:
- type: Transform
@@ -150584,13 +153351,6 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 23610
- proto: SuitStorageHOS
entities:
- uid: 10385
@@ -150610,35 +153370,14 @@ entities:
- uid: 5663
components:
- type: Transform
- pos: -5.5,42.5
+ pos: -5.5,46.5
parent: 5350
- - 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:
- - 14074
- - 6785
- uid: 5776
+ components:
+ - type: Transform
+ pos: -5.5,42.5
+ parent: 5350
+ - uid: 6512
components:
- type: Transform
pos: -6.5,42.5
@@ -150661,79 +153400,29 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 14095
- - 6962
- - uid: 10975
+ - uid: 7540
components:
- type: Transform
pos: -6.5,46.5
parent: 5350
- - 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:
- - 7537
- - 14107
- - uid: 17674
+- proto: SuitStorageWarden
+ entities:
+ - uid: 6687
components:
+ - type: MetaData
+ desc: Contains a special riot hardsuit.
+ name: Warden's suit locker
- type: Transform
- pos: -5.5,46.5
+ pos: -9.5,42.5
parent: 5350
- - type: Lock
- locked: False
- - type: Fixtures
- fixtures:
- fix1:
- shape: !type:PolygonShape
- radius: 0.01
- vertices:
- - -0.25,-0.48
- - 0.25,-0.48
- - 0.25,0.48
- - -0.25,0.48
- mask:
- - Impassable
- - TableLayer
- - LowImpassable
- layer:
- - BulletImpassable
- - Opaque
- density: 350
- hard: True
- restitution: 0
- friction: 0.4
- type: EntityStorage
air:
volume: 200
immutable: False
temperature: 293.14673
moles:
+ - 1.7459903
+ - 6.568249
- 0
- 0
- 0
@@ -150744,19 +153433,6 @@ entities:
- 0
- 0
- 0
- - 0
- - 0
- open: True
- removedMasks: 20
- - type: PlaceableSurface
- isPlaceable: True
-- proto: SuitStorageWarden
- entities:
- - uid: 6687
- components:
- - type: Transform
- pos: -9.5,42.5
- parent: 5350
- proto: SurveillanceCameraCommand
entities:
- uid: 144
@@ -151160,6 +153836,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Anchor Room
+ - uid: 12667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-62.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Solars - SW
- uid: 13398
components:
- type: Transform
@@ -151171,6 +153858,27 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Solars - NW
+ - uid: 17051
+ components:
+ - type: Transform
+ pos: 66.5,11.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment - SW
+ - uid: 17061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,29.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment - NE
- uid: 18430
components:
- type: Transform
@@ -151193,28 +153901,28 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos - South
- - uid: 22213
+ - uid: 19911
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 60.5,8.5
+ pos: 57.5,41.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Locker Room
- - uid: 23069
+ id: Gravity Generator 2
+ - uid: 22213
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.5,0.5
+ pos: 60.5,8.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Substation - Service
+ id: Locker Room
- uid: 23070
components:
- type: Transform
@@ -151226,16 +153934,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Lockers
- - uid: 23216
- components:
- - type: Transform
- pos: 60.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos Air Resevoir
- uid: 23218
components:
- type: Transform
@@ -151269,6 +153967,80 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Engineering Airlock
+ - uid: 23776
+ components:
+ - type: Transform
+ pos: 61.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Carbon Dioxide
+ - uid: 23778
+ components:
+ - type: Transform
+ pos: 57.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Oxygen
+ - uid: 23779
+ components:
+ - type: Transform
+ pos: 53.5,-30.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Nitrogen
+ - uid: 23786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-9.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Waste 1
+ - uid: 23787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-5.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Waste 2
+ - uid: 23788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-13.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Plasma
+ - uid: 23809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-17.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gas Tank - Water Vapor
- uid: 23866
components:
- type: Transform
@@ -151323,18 +154095,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Engi Storage
- - uid: 23872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,38.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Grav Gen
+ id: Suit Storage
- uid: 23873
components:
- type: Transform
@@ -151378,17 +154139,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Engineering South
- - uid: 23877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,6.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: AME
- uid: 24054
components:
- type: Transform
@@ -151398,7 +154148,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Grav Gen
+ id: Gravity Generator 1
- uid: 26699
components:
- type: Transform
@@ -151418,26 +154168,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmos Desk
- - uid: 26783
- components:
- - type: Transform
- pos: 56.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos Tank Oxy
- - uid: 26784
- components:
- - type: Transform
- pos: 52.5,-30.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos Tank Nitro
- uid: 26792
components:
- type: Transform
@@ -151449,17 +154179,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Materials Room
- - uid: 26794
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,37.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: NE Solars
- uid: 26795
components:
- type: Transform
@@ -151469,7 +154188,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Grav Gen Exterior
+ id: Gravity Generator - Exterior
- uid: 26849
components:
- type: Transform
@@ -151479,7 +154198,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Solars SE
+ id: Solars - SE
- uid: 27139
components:
- type: MetaData
@@ -151514,30 +154233,28 @@ entities:
parent: 5350
- type: SurveillanceCamera
id: Atmos TEG Exterior south
- - uid: 27844
+ - uid: 27680
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,7.5
parent: 5350
- type: SurveillanceCamera
- id: Singularity NE
- - uid: 27856
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Antimatter Engine
+ - uid: 27833
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 77.5,14.5
- parent: 5350
- - type: SurveillanceCamera
- id: Singularity SE
- - uid: 27858
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,29.5
+ pos: 78.5,14.5
parent: 5350
- type: SurveillanceCamera
- id: Singularity NW
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment - SE
- uid: 27859
components:
- type: Transform
@@ -151552,14 +154269,53 @@ entities:
pos: 59.5,11.5
parent: 5350
- type: SurveillanceCamera
- id: South Singularity Airlock
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock - South
- uid: 27861
components:
- type: Transform
pos: 58.5,28.5
parent: 5350
- type: SurveillanceCamera
- id: North Singularity Airlock
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock - North
+ - uid: 28227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,36.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Solars - NE
+ - uid: 28465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-25.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos TEG Secure Storage
+ - uid: 28636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,29.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment - NW
- proto: SurveillanceCameraGeneral
entities:
- uid: 4385
@@ -151706,7 +154462,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Main Loop South 2
+ id: Main Loop - South 2
- uid: 22939
components:
- type: Transform
@@ -151848,16 +154604,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Dorms Hall 1
- - uid: 23207
- components:
- - type: Transform
- pos: 31.5,48.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Garden
- uid: 23208
components:
- type: Transform
@@ -151924,6 +154670,16 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Arrivals
+ - uid: 23775
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Dorms - Garden
- uid: 26420
components:
- type: Transform
@@ -151989,28 +154745,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Captain
- - uid: 26750
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,0.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Cargo
- - uid: 26751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,1.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Arrivals
- uid: 26752
components:
- type: Transform
@@ -152065,50 +154799,61 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: East Corridor 2
- - uid: 26796
+ - uid: 26799
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,17.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Boxing Ring Escape Pod
- - uid: 26799
+ id: North Corridor
+ - uid: 27196
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-18.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: North Corridor
- - uid: 26800
+ id: Main Loop - South 1
+ - uid: 28525
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,6.5
+ pos: -30.5,0.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Bridge Shop
- - uid: 27196
+ id: West Corridor 2
+ - uid: 28526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,47.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Dorms - Escape Pod
+ - uid: 28527
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-18.5
+ pos: -42.5,0.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Main Loop South 1
+ id: West Corridor 1
- proto: SurveillanceCameraMedical
entities:
- uid: 16656
@@ -152483,6 +155228,8 @@ entities:
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
+ nameSet: True
+ id: Anomaly Lab
- uid: 20862
components:
- type: Transform
@@ -152515,28 +155262,27 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Servers
- - uid: 23145
+ - uid: 28117
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-29.5
+ pos: 15.5,-38.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
nameSet: True
- id: Robotics Surgery
- - uid: 28117
+ id: Central Hall
+ - uid: 28524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-38.5
+ pos: 18.5,-32.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraScience
nameSet: True
- id: Central Hall
+ id: Robotics - Surgery
- proto: SurveillanceCameraSecurity
entities:
- uid: 6549
@@ -152625,17 +155371,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Shuttle Dock
- - uid: 11646
+ - uid: 14095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,63.5
parent: 5350
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Secure Armory
+ id: Security Exterior 2
- uid: 17398
components:
- type: Transform
@@ -152647,17 +155393,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Entry
- - uid: 21164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,38.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- uid: 22593
components:
- type: Transform
@@ -152733,7 +155468,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory 1
+ id: Armory
- uid: 22617
components:
- type: Transform
@@ -152776,17 +155511,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Security External 4
- - uid: 22621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,63.5
- parent: 5350
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security External 2
- uid: 23058
components:
- type: Transform
@@ -152826,6 +155550,27 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Evac Security post
+ - uid: 28528
+ components:
+ - type: Transform
+ pos: -9.5,36.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory - Secure
+ - uid: 28529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,39.5
+ parent: 5350
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's Office
- proto: SurveillanceCameraService
entities:
- uid: 185
@@ -152932,7 +155677,7 @@ entities:
setupAvailableNetworks:
- SurveillanceCameraService
nameSet: True
- id: Secondary Janitorial Closet
+ id: Janitorial Closet 2
- uid: 20916
components:
- type: Transform
@@ -153264,31 +156009,11 @@ entities:
- type: Transform
pos: -18.5,-13.5
parent: 5350
- - uid: 1485
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 5350
- - uid: 1487
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 5350
- uid: 1529
components:
- type: Transform
pos: -16.5,-14.5
parent: 5350
- - uid: 1530
- components:
- - type: Transform
- pos: -16.5,-13.5
- parent: 5350
- - uid: 1531
- components:
- - type: Transform
- pos: -16.5,-12.5
- parent: 5350
- uid: 1702
components:
- type: Transform
@@ -153605,6 +156330,11 @@ entities:
- type: Transform
pos: -0.5,44.5
parent: 5350
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 5350
- uid: 6663
components:
- type: Transform
@@ -154357,6 +157087,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,-51.5
parent: 5350
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 5350
- uid: 16678
components:
- type: Transform
@@ -154486,6 +157221,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,-47.5
parent: 5350
+ - uid: 19863
+ components:
+ - type: Transform
+ pos: 76.5,8.5
+ parent: 5350
- uid: 20049
components:
- type: Transform
@@ -154701,6 +157441,11 @@ entities:
- type: Transform
pos: 53.5,23.5
parent: 5350
+ - uid: 23889
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 5350
- uid: 23943
components:
- type: Transform
@@ -154906,6 +157651,11 @@ entities:
- type: Transform
pos: 0.5,-42.5
parent: 5350
+ - uid: 28638
+ components:
+ - type: Transform
+ pos: 76.5,7.5
+ parent: 5350
- proto: TableCarpet
entities:
- uid: 693
@@ -155780,6 +158530,12 @@ entities:
- type: Transform
pos: 37.5,34.5
parent: 5350
+ - uid: 688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-43.5
+ parent: 5350
- uid: 1003
components:
- type: Transform
@@ -156068,10 +158824,11 @@ entities:
- type: Transform
pos: 12.5,27.5
parent: 5350
- - uid: 7765
+ - uid: 7797
components:
- type: Transform
- pos: -3.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-43.5
parent: 5350
- uid: 8418
components:
@@ -156165,6 +158922,11 @@ entities:
- type: Transform
pos: 36.5,34.5
parent: 5350
+ - uid: 12448
+ components:
+ - type: Transform
+ pos: 53.5,13.5
+ parent: 5350
- uid: 12736
components:
- type: Transform
@@ -156639,6 +159401,27 @@ entities:
- type: Transform
pos: 106.5,-5.5
parent: 5350
+ - uid: 27662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-43.5
+ parent: 5350
+ - uid: 28000
+ components:
+ - type: Transform
+ pos: 54.5,13.5
+ parent: 5350
+ - uid: 28001
+ components:
+ - type: Transform
+ pos: 55.5,13.5
+ parent: 5350
+ - uid: 28002
+ components:
+ - type: Transform
+ pos: 55.5,14.5
+ parent: 5350
- uid: 28328
components:
- type: Transform
@@ -156649,6 +159432,34 @@ entities:
- type: Transform
pos: 1.5,-46.5
parent: 5350
+ - uid: 28366
+ components:
+ - type: Transform
+ pos: 53.5,14.5
+ parent: 5350
+ - uid: 28367
+ components:
+ - type: Transform
+ pos: 54.5,14.5
+ parent: 5350
+ - uid: 28464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-43.5
+ parent: 5350
+ - uid: 28497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-43.5
+ parent: 5350
+ - uid: 28533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,37.5
+ parent: 5350
- proto: TargetClown
entities:
- uid: 22356
@@ -156901,138 +159712,172 @@ entities:
parent: 5350
- proto: TeslaCoil
entities:
- - uid: 6448
+ - uid: 20051
components:
- type: Transform
anchored: False
- pos: 70.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9070
+ - uid: 20706
components:
- type: Transform
anchored: False
- pos: 67.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9186
+ - uid: 20742
components:
- type: Transform
anchored: False
- pos: 68.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9187
+ - uid: 23284
components:
- type: Transform
anchored: False
- pos: 69.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,30.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9188
+ - uid: 23378
components:
- type: Transform
anchored: False
- pos: 69.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,13.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9189
+ - uid: 27844
components:
- type: Transform
anchored: False
- pos: 68.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,16.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 9190
+ - uid: 27856
components:
- type: Transform
anchored: False
- pos: 67.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,15.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23043
+ - uid: 28194
components:
- type: Transform
anchored: False
- pos: 70.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,14.5
parent: 5350
- type: Physics
bodyType: Dynamic
- proto: TeslaGenerator
entities:
- - uid: 9185
+ - uid: 23589
components:
- type: Transform
- pos: 45.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,21.5
parent: 5350
- proto: TeslaGroundingRod
entities:
- - uid: 23785
+ - uid: 8232
components:
- type: Transform
anchored: False
- pos: 61.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23786
+ - uid: 23099
components:
- type: Transform
anchored: False
- pos: 61.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23787
+ - uid: 23177
components:
- type: Transform
anchored: False
- pos: 61.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- - uid: 23788
+ - uid: 23207
components:
- type: Transform
anchored: False
- pos: 61.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,10.5
parent: 5350
- type: Physics
bodyType: Dynamic
- proto: ThrusterFlatpack
entities:
- - uid: 24478
+ - uid: 17032
components:
- type: Transform
- parent: 24070
+ parent: 17031
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 27208
+ - uid: 17033
components:
- type: Transform
- parent: 24070
+ parent: 17031
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 27680
+ - uid: 17038
components:
- type: Transform
- parent: 24070
+ parent: 17031
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 28201
+ - uid: 28451
+ components:
+ - type: Transform
+ parent: 28450
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 28453
+ components:
+ - type: Transform
+ parent: 28450
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 28454
+ components:
+ - type: Transform
+ parent: 28450
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 28455
components:
- type: Transform
- parent: 24070
+ parent: 28450
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -157048,11 +159893,6 @@ entities:
- type: Transform
pos: 15.5,-31.5
parent: 5350
- - uid: 8575
- components:
- - type: Transform
- pos: 32.5,47.5
- parent: 5350
- uid: 11178
components:
- type: Transform
@@ -157168,16 +160008,6 @@ entities:
- type: Transform
pos: 15.5,-29.5
parent: 5350
- - uid: 23288
- components:
- - type: Transform
- pos: 30.5,47.5
- parent: 5350
- - uid: 24074
- components:
- - type: Transform
- pos: 31.5,47.5
- parent: 5350
- uid: 24683
components:
- type: Transform
@@ -157266,11 +160096,6 @@ entities:
parent: 5350
- proto: ToolboxElectricalFilled
entities:
- - uid: 1520
- components:
- - type: Transform
- pos: -18.599995,-12.350811
- parent: 5350
- uid: 3592
components:
- type: Transform
@@ -157281,6 +160106,11 @@ entities:
- type: Transform
pos: 38.4915,6.594829
parent: 5350
+ - uid: 24074
+ components:
+ - type: Transform
+ pos: -16.571823,-12.293222
+ parent: 5350
- uid: 26466
components:
- type: Transform
@@ -157317,11 +160147,6 @@ entities:
parent: 5350
- proto: ToolboxMechanicalFilled
entities:
- - uid: 1521
- components:
- - type: Transform
- pos: -18.45937,-12.553936
- parent: 5350
- uid: 3635
components:
- type: Transform
@@ -157347,6 +160172,11 @@ entities:
- type: Transform
pos: 26.555069,19.506002
parent: 5350
+ - uid: 24244
+ components:
+ - type: Transform
+ pos: -16.321823,-12.808847
+ parent: 5350
- uid: 26465
components:
- type: Transform
@@ -157431,6 +160261,13 @@ entities:
- type: Transform
pos: -25.337606,-65.35234
parent: 5350
+- proto: ToyFigurineChiefEngineer
+ entities:
+ - uid: 28392
+ components:
+ - type: Transform
+ pos: 54.180107,13.748585
+ parent: 5350
- proto: ToyFigurineHoloClown
entities:
- uid: 28312
@@ -157886,6 +160723,11 @@ entities:
- type: Transform
pos: -19.5,6.5
parent: 5350
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: 53.5,5.5
+ parent: 5350
- uid: 7936
components:
- type: MetaData
@@ -157915,6 +160757,11 @@ entities:
- type: Transform
pos: -6.5,-40.5
parent: 5350
+ - uid: 12451
+ components:
+ - type: Transform
+ pos: 46.5,12.5
+ parent: 5350
- uid: 16821
components:
- type: MetaData
@@ -157955,13 +160802,6 @@ entities:
parent: 5350
- proto: VendingMachineCoffee
entities:
- - uid: 1376
- components:
- - type: MetaData
- name: Hot drinks machine
- - type: Transform
- pos: -18.5,-5.5
- parent: 5350
- uid: 4325
components:
- type: Transform
@@ -158215,7 +161055,7 @@ entities:
- type: Transform
pos: -3.5,42.5
parent: 5350
- - uid: 23409
+ - uid: 8518
components:
- type: Transform
pos: 0.5,40.5
@@ -158274,15 +161114,13 @@ entities:
- type: Transform
pos: 53.5,19.5
parent: 5350
-- proto: VendingMachineTankDispenserEVA
- entities:
- - uid: 1486
+ - uid: 23730
components:
- - type: MetaData
- name: tank dispenser
- type: Transform
- pos: -14.5,-12.5
+ pos: 42.5,22.5
parent: 5350
+- proto: VendingMachineTankDispenserEVA
+ entities:
- uid: 9181
components:
- type: Transform
@@ -158303,20 +161141,25 @@ entities:
- type: Transform
pos: 49.5,11.5
parent: 5350
- - uid: 16464
+ - uid: 23388
components:
- type: Transform
- pos: 18.5,-60.5
+ pos: 18.5,-61.5
+ parent: 5350
+ - uid: 23816
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
parent: 5350
- uid: 23828
components:
- type: Transform
pos: -29.5,-48.5
parent: 5350
- - uid: 24449
+ - uid: 23877
components:
- type: Transform
- pos: -14.5,-14.5
+ pos: -18.5,-14.5
parent: 5350
- uid: 26140
components:
@@ -158836,6 +161679,12 @@ entities:
- type: Transform
pos: -8.5,3.5
parent: 5350
+ - uid: 504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,21.5
+ parent: 5350
- uid: 559
components:
- type: Transform
@@ -159361,11 +162210,6 @@ entities:
- type: Transform
pos: 26.5,-60.5
parent: 5350
- - uid: 2149
- components:
- - type: Transform
- pos: -8.5,35.5
- parent: 5350
- uid: 2525
components:
- type: Transform
@@ -160786,11 +163630,6 @@ entities:
- type: Transform
pos: -0.5,27.5
parent: 5350
- - uid: 6490
- components:
- - type: Transform
- pos: -7.5,35.5
- parent: 5350
- uid: 6491
components:
- type: Transform
@@ -161426,11 +164265,6 @@ entities:
- type: Transform
pos: -10.5,42.5
parent: 5350
- - uid: 7722
- components:
- - type: Transform
- pos: 12.5,49.5
- parent: 5350
- uid: 7726
components:
- type: Transform
@@ -161636,6 +164470,12 @@ entities:
- type: Transform
pos: 19.5,27.5
parent: 5350
+ - uid: 7958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,35.5
+ parent: 5350
- uid: 7965
components:
- type: Transform
@@ -162271,36 +165111,6 @@ entities:
- type: Transform
pos: 61.5,-3.5
parent: 5350
- - uid: 9094
- components:
- - type: Transform
- pos: 42.5,19.5
- parent: 5350
- - uid: 9095
- components:
- - type: Transform
- pos: 43.5,19.5
- parent: 5350
- - uid: 9096
- components:
- - type: Transform
- pos: 44.5,19.5
- parent: 5350
- - uid: 9097
- components:
- - type: Transform
- pos: 45.5,19.5
- parent: 5350
- - uid: 9098
- components:
- - type: Transform
- pos: 46.5,19.5
- parent: 5350
- - uid: 9100
- components:
- - type: Transform
- pos: 47.5,19.5
- parent: 5350
- uid: 9101
components:
- type: Transform
@@ -162311,11 +165121,6 @@ entities:
- type: Transform
pos: 48.5,20.5
parent: 5350
- - uid: 9103
- components:
- - type: Transform
- pos: 48.5,24.5
- parent: 5350
- uid: 9104
components:
- type: Transform
@@ -162384,7 +165189,6 @@ entities:
- uid: 9279
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 2.5,-54.5
parent: 5350
- uid: 9280
@@ -162405,19 +165209,16 @@ entities:
- uid: 9336
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 4.5,-54.5
parent: 5350
- uid: 9338
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 0.5,-54.5
parent: 5350
- uid: 9339
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 6.5,-54.5
parent: 5350
- uid: 9340
@@ -164145,11 +166946,6 @@ entities:
- type: Transform
pos: 41.5,22.5
parent: 5350
- - uid: 13886
- components:
- - type: Transform
- pos: 41.5,21.5
- parent: 5350
- uid: 13887
components:
- type: Transform
@@ -164613,7 +167409,6 @@ entities:
- uid: 15156
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 108.5,-1.5
parent: 5350
- uid: 15178
@@ -164779,7 +167574,6 @@ entities:
- uid: 16050
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 3.5,-54.5
parent: 5350
- uid: 16080
@@ -164850,7 +167644,6 @@ entities:
- uid: 16201
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 5.5,-54.5
parent: 5350
- uid: 16208
@@ -164886,7 +167679,6 @@ entities:
- uid: 16322
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 1.5,-54.5
parent: 5350
- uid: 16324
@@ -164942,7 +167734,6 @@ entities:
- uid: 16398
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-42.5
parent: 5350
- uid: 16437
@@ -165043,7 +167834,6 @@ entities:
- uid: 16597
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-47.5
parent: 5350
- uid: 16599
@@ -165116,25 +167906,11 @@ entities:
- type: Transform
pos: -50.5,-41.5
parent: 5350
- - uid: 16670
- components:
- - type: Transform
- pos: -44.5,-43.5
- parent: 5350
- uid: 16671
components:
- type: Transform
- pos: -44.5,-42.5
- parent: 5350
- - uid: 16672
- components:
- - type: Transform
- pos: -48.5,-42.5
- parent: 5350
- - uid: 16673
- components:
- - type: Transform
- pos: -49.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-48.5
parent: 5350
- uid: 16674
components:
@@ -165221,6 +167997,11 @@ entities:
- type: Transform
pos: -38.5,-61.5
parent: 5350
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: 59.5,17.5
+ parent: 5350
- uid: 17462
components:
- type: Transform
@@ -165231,10 +168012,10 @@ entities:
- type: Transform
pos: -0.5,-37.5
parent: 5350
- - uid: 17666
+ - uid: 18015
components:
- type: Transform
- pos: 2.5,63.5
+ pos: 19.5,-63.5
parent: 5350
- uid: 18392
components:
@@ -165316,6 +168097,11 @@ entities:
- type: Transform
pos: -8.5,-10.5
parent: 5350
+ - uid: 18689
+ components:
+ - type: Transform
+ pos: 12.5,49.5
+ parent: 5350
- uid: 19063
components:
- type: Transform
@@ -165334,7 +168120,6 @@ entities:
- uid: 19100
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-44.5
parent: 5350
- uid: 19133
@@ -165567,6 +168352,11 @@ entities:
- type: Transform
pos: 20.5,-53.5
parent: 5350
+ - uid: 19481
+ components:
+ - type: Transform
+ pos: 2.5,63.5
+ parent: 5350
- uid: 19489
components:
- type: Transform
@@ -165962,6 +168752,48 @@ entities:
- type: Transform
pos: 39.5,-56.5
parent: 5350
+ - uid: 19808
+ components:
+ - type: Transform
+ pos: 15.5,-65.5
+ parent: 5350
+ - uid: 19815
+ components:
+ - type: Transform
+ pos: 15.5,-64.5
+ parent: 5350
+ - uid: 19816
+ components:
+ - type: Transform
+ pos: 15.5,-63.5
+ parent: 5350
+ - uid: 19819
+ components:
+ - type: Transform
+ pos: 19.5,-65.5
+ parent: 5350
+ - uid: 19820
+ components:
+ - type: Transform
+ pos: 19.5,-64.5
+ parent: 5350
+ - uid: 19825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-62.5
+ parent: 5350
+ - uid: 19922
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 5350
+ - uid: 19933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,45.5
+ parent: 5350
- uid: 20034
components:
- type: Transform
@@ -166140,13 +168972,11 @@ entities:
- uid: 20689
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 8.5,-47.5
parent: 5350
- uid: 20721
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-48.5
parent: 5350
- uid: 20733
@@ -166217,7 +169047,6 @@ entities:
- uid: 20872
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-54.5
parent: 5350
- uid: 20878
@@ -166363,7 +169192,6 @@ entities:
- uid: 21361
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-50.5
parent: 5350
- uid: 21370
@@ -166371,6 +169199,24 @@ entities:
- type: Transform
pos: 40.5,-43.5
parent: 5350
+ - uid: 21681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-44.5
+ parent: 5350
+ - uid: 21812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-44.5
+ parent: 5350
+ - uid: 21813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-44.5
+ parent: 5350
- uid: 22145
components:
- type: Transform
@@ -166384,7 +169230,6 @@ entities:
- uid: 22258
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-52.5
parent: 5350
- uid: 22265
@@ -166532,6 +169377,12 @@ entities:
- type: Transform
pos: 47.5,28.5
parent: 5350
+ - uid: 23240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,31.5
+ parent: 5350
- uid: 23241
components:
- type: Transform
@@ -166557,146 +169408,171 @@ entities:
- type: Transform
pos: 43.5,27.5
parent: 5350
+ - uid: 23288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,30.5
+ parent: 5350
- uid: 23307
components:
- type: Transform
pos: 45.5,14.5
parent: 5350
+ - uid: 23356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,30.5
+ parent: 5350
+ - uid: 23379
+ components:
+ - type: Transform
+ pos: 48.5,21.5
+ parent: 5350
+ - uid: 23396
+ components:
+ - type: Transform
+ pos: 43.5,20.5
+ parent: 5350
- uid: 23401
components:
- type: Transform
pos: 44.5,-29.5
parent: 5350
- - uid: 23719
+ - uid: 23534
components:
- type: Transform
- pos: 78.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-45.5
parent: 5350
- - uid: 23743
+ - uid: 23590
components:
- type: Transform
- pos: 77.5,10.5
+ pos: 44.5,20.5
parent: 5350
- - uid: 23744
+ - uid: 23592
components:
- type: Transform
- pos: 77.5,11.5
+ pos: 45.5,20.5
parent: 5350
- - uid: 23745
+ - uid: 23616
components:
- type: Transform
- pos: 78.5,11.5
+ pos: 40.5,45.5
parent: 5350
- - uid: 23746
+ - uid: 23617
components:
- type: Transform
- pos: 78.5,12.5
+ pos: 39.5,45.5
parent: 5350
- - uid: 23747
+ - uid: 23637
components:
- type: Transform
- pos: 79.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-44.5
parent: 5350
- - uid: 23748
+ - uid: 23638
components:
- type: Transform
- pos: 79.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-43.5
parent: 5350
- - uid: 23749
+ - uid: 23639
components:
- type: Transform
- pos: 78.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-44.5
parent: 5350
- - uid: 23750
+ - uid: 23640
components:
- type: Transform
- pos: 78.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-62.5
parent: 5350
- - uid: 23751
+ - uid: 23652
components:
- type: Transform
- pos: 79.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-47.5
parent: 5350
- - uid: 23752
+ - uid: 23731
components:
- type: Transform
- pos: 79.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-48.5
parent: 5350
- - uid: 23753
+ - uid: 23743
components:
- type: Transform
- pos: 78.5,16.5
+ pos: 77.5,10.5
parent: 5350
- - uid: 23754
+ - uid: 23744
components:
- type: Transform
- pos: 78.5,18.5
+ pos: 77.5,11.5
parent: 5350
- - uid: 23755
+ - uid: 23745
components:
- type: Transform
- pos: 79.5,25.5
+ pos: 78.5,11.5
parent: 5350
- - uid: 23756
+ - uid: 23746
components:
- type: Transform
- pos: 78.5,20.5
+ pos: 78.5,12.5
parent: 5350
- - uid: 23757
+ - uid: 23747
components:
- type: Transform
- pos: 78.5,21.5
+ pos: 79.5,12.5
parent: 5350
- - uid: 23758
+ - uid: 23748
components:
- type: Transform
- pos: 78.5,22.5
+ pos: 79.5,14.5
parent: 5350
- - uid: 23759
+ - uid: 23749
components:
- type: Transform
- pos: 79.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,20.5
parent: 5350
- - uid: 23760
+ - uid: 23751
components:
- type: Transform
- pos: 78.5,23.5
+ pos: 79.5,15.5
parent: 5350
- - uid: 23761
+ - uid: 23752
components:
- type: Transform
- pos: 79.5,26.5
+ pos: 79.5,16.5
parent: 5350
- - uid: 23762
+ - uid: 23755
components:
- type: Transform
- pos: 78.5,26.5
+ pos: 79.5,25.5
parent: 5350
- - uid: 23763
+ - uid: 23759
components:
- type: Transform
- pos: 77.5,26.5
+ pos: 79.5,21.5
parent: 5350
- - uid: 23765
+ - uid: 23761
components:
- type: Transform
- pos: 79.5,28.5
+ pos: 79.5,26.5
parent: 5350
- - uid: 23766
+ - uid: 23765
components:
- type: Transform
- pos: 78.5,28.5
+ pos: 79.5,28.5
parent: 5350
- uid: 23767
components:
- type: Transform
pos: 78.5,29.5
parent: 5350
- - uid: 23768
- components:
- - type: Transform
- pos: 77.5,29.5
- parent: 5350
- uid: 23769
components:
- type: Transform
@@ -166712,6 +169588,12 @@ entities:
- type: Transform
pos: 74.5,31.5
parent: 5350
+ - uid: 23773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,13.5
+ parent: 5350
- uid: 23821
components:
- type: Transform
@@ -166762,6 +169644,12 @@ entities:
- type: Transform
pos: 1.5,-9.5
parent: 5350
+ - uid: 24248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-48.5
+ parent: 5350
- uid: 24299
components:
- type: Transform
@@ -167887,6 +170775,17 @@ entities:
- type: Transform
pos: 68.5,-24.5
parent: 5350
+ - uid: 27208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-44.5
+ parent: 5350
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 47.5,20.5
+ parent: 5350
- uid: 27246
components:
- type: Transform
@@ -168062,16 +170961,64 @@ entities:
- type: Transform
pos: 74.5,-30.5
parent: 5350
- - uid: 28243
+ - uid: 27997
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 5350
+ - uid: 28003
+ components:
+ - type: Transform
+ pos: 42.5,20.5
+ parent: 5350
+ - uid: 28008
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 5350
+ - uid: 28199
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 5350
+ - uid: 28202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,23.5
+ parent: 5350
+ - uid: 28203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,22.5
+ parent: 5350
+ - uid: 28210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,21.5
+ parent: 5350
+ - uid: 28219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,30.5
+ parent: 5350
+ - uid: 28226
components:
- type: Transform
rot: 1.5707963267948966 rad
+ pos: 79.5,29.5
+ parent: 5350
+ - uid: 28243
+ components:
+ - type: Transform
pos: 112.5,1.5
parent: 5350
- uid: 28245
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 107.5,1.5
parent: 5350
- uid: 28313
@@ -168079,6 +171026,18 @@ entities:
- type: Transform
pos: -0.5,-46.5
parent: 5350
+ - uid: 28479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,35.5
+ parent: 5350
+ - uid: 28523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,49.5
+ parent: 5350
- proto: WallSolid
entities:
- uid: 57
@@ -168339,7 +171298,6 @@ entities:
- uid: 1144
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 2.5,-60.5
parent: 5350
- uid: 1221
@@ -169187,11 +172145,6 @@ entities:
- type: Transform
pos: 34.5,-48.5
parent: 5350
- - uid: 3116
- components:
- - type: Transform
- pos: 55.5,6.5
- parent: 5350
- uid: 3170
components:
- type: Transform
@@ -170460,7 +173413,6 @@ entities:
- uid: 6400
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-60.5
parent: 5350
- uid: 6423
@@ -171506,7 +174458,6 @@ entities:
- uid: 10394
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-58.5
parent: 5350
- uid: 10397
@@ -171537,7 +174488,6 @@ entities:
- uid: 10495
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,-56.5
parent: 5350
- uid: 10503
@@ -171563,7 +174513,6 @@ entities:
- uid: 10695
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-47.5
parent: 5350
- uid: 10705
@@ -171846,21 +174795,11 @@ entities:
- type: Transform
pos: 45.5,34.5
parent: 5350
- - uid: 13103
- components:
- - type: Transform
- pos: 54.5,6.5
- parent: 5350
- uid: 13113
components:
- type: Transform
pos: -20.5,42.5
parent: 5350
- - uid: 13159
- components:
- - type: Transform
- pos: 19.5,-58.5
- parent: 5350
- uid: 13314
components:
- type: Transform
@@ -172416,7 +175355,6 @@ entities:
- uid: 15147
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -43.5,7.5
parent: 5350
- uid: 15171
@@ -172497,7 +175435,6 @@ entities:
- uid: 15325
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 4.5,-47.5
parent: 5350
- uid: 15332
@@ -173443,7 +176380,6 @@ entities:
- uid: 17513
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-60.5
parent: 5350
- uid: 17539
@@ -174019,7 +176955,6 @@ entities:
- uid: 19417
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 0.5,-47.5
parent: 5350
- uid: 19419
@@ -174120,19 +177055,16 @@ entities:
- uid: 19604
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 6.5,-47.5
parent: 5350
- uid: 19605
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-46.5
parent: 5350
- uid: 19606
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 2.5,-47.5
parent: 5350
- uid: 19718
@@ -174143,7 +177075,6 @@ entities:
- uid: 19724
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-30.5
parent: 5350
- uid: 19739
@@ -174151,11 +177082,6 @@ entities:
- type: Transform
pos: -37.5,-41.5
parent: 5350
- - uid: 19848
- components:
- - type: Transform
- pos: 46.5,-84.5
- parent: 5350
- uid: 20024
components:
- type: Transform
@@ -174454,7 +177380,6 @@ entities:
- uid: 20282
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-45.5
parent: 5350
- uid: 20283
@@ -174605,7 +177530,6 @@ entities:
- uid: 20659
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 6.5,-42.5
parent: 5350
- uid: 20660
@@ -174616,7 +177540,6 @@ entities:
- uid: 20661
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 8.5,-42.5
parent: 5350
- uid: 20669
@@ -174624,16 +177547,9 @@ entities:
- type: Transform
pos: 11.5,-42.5
parent: 5350
- - uid: 20706
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-41.5
- parent: 5350
- uid: 20710
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-41.5
parent: 5350
- uid: 20711
@@ -174644,13 +177560,11 @@ entities:
- uid: 20717
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,-41.5
parent: 5350
- uid: 20718
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-42.5
parent: 5350
- uid: 20719
@@ -174661,7 +177575,6 @@ entities:
- uid: 20720
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-42.5
parent: 5350
- uid: 20726
@@ -174702,13 +177615,11 @@ entities:
- uid: 20816
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,-42.5
parent: 5350
- uid: 20824
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-56.5
parent: 5350
- uid: 20876
@@ -175301,6 +178212,12 @@ entities:
- type: Transform
pos: 33.5,-1.5
parent: 5350
+ - uid: 23732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-58.5
+ parent: 5350
- uid: 23998
components:
- type: Transform
@@ -175446,31 +178363,31 @@ entities:
- type: Transform
pos: -30.5,-58.5
parent: 5350
- - uid: 24921
+ - uid: 25049
components:
- type: Transform
- pos: 53.5,6.5
+ pos: 92.5,6.5
parent: 5350
- - uid: 25049
+ - uid: 26794
components:
- type: Transform
- pos: 92.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-43.5
parent: 5350
- - uid: 27833
+ - uid: 26842
components:
- type: Transform
- pos: 1.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-42.5
parent: 5350
- uid: 28309
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-59.5
parent: 5350
- uid: 28310
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-60.5
parent: 5350
- uid: 28335
@@ -175702,23 +178619,17 @@ entities:
parent: 5350
- proto: WallWeaponCapacitorRecharger
entities:
- - uid: 23091
+ - uid: 24478
components:
- type: Transform
- rot: -1.5707963267948966 rad
+ rot: 1.5707963267948966 rad
pos: -4.5,43.5
parent: 5350
- - uid: 23615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,46.5
- parent: 5350
- - uid: 23616
+ - uid: 24489
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,44.5
+ pos: -14.5,46.5
parent: 5350
- uid: 28124
components:
@@ -175726,6 +178637,12 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,34.5
parent: 5350
+ - uid: 28218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,44.5
+ parent: 5350
- uid: 28251
components:
- type: Transform
@@ -175930,24 +178847,24 @@ entities:
showEnts: False
occludes: True
ents:
- - 7859
- - 7871
- - 7874
- - 7854
- - 7884
- - 7886
- - 7883
- - 7880
- - 7882
- - 7873
- - 8095
- - 8101
- - 8126
- - 7885
- - 7888
- - 8127
- - 8128
- 8227
+ - 8128
+ - 8127
+ - 7888
+ - 7885
+ - 8126
+ - 8101
+ - 8095
+ - 7873
+ - 7882
+ - 7880
+ - 7883
+ - 7886
+ - 7884
+ - 7854
+ - 7874
+ - 7871
+ - 7859
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -176028,6 +178945,8 @@ entities:
entities:
- uid: 26378
components:
+ - type: MetaData
+ name: Nitrogen Tank
- type: Transform
rot: 1.5707963267948966 rad
pos: 50.5,-27.5
@@ -176036,6 +178955,8 @@ entities:
entities:
- uid: 26369
components:
+ - type: MetaData
+ name: Oxygen Tank
- type: Transform
rot: 1.5707963267948966 rad
pos: 54.5,-27.5
@@ -176054,7 +178975,7 @@ entities:
- uid: 11115
components:
- type: MetaData
- name: Water Tank
+ name: Water Vapor Tank
- type: Transform
pos: 66.5,-16.5
parent: 5350
@@ -176172,11 +179093,6 @@ entities:
- type: Transform
pos: -37.5,-38.5
parent: 5350
- - uid: 21477
- components:
- - type: Transform
- pos: 14.5,-55.5
- parent: 5350
- uid: 22116
components:
- type: Transform
@@ -176192,6 +179108,11 @@ entities:
- type: Transform
pos: -25.5,-19.5
parent: 5350
+ - uid: 23395
+ components:
+ - type: Transform
+ pos: 8.5,-64.5
+ parent: 5350
- uid: 28113
components:
- type: Transform
@@ -176231,6 +179152,11 @@ entities:
- type: Transform
pos: 48.5,-9.5
parent: 5350
+ - uid: 12405
+ components:
+ - type: Transform
+ pos: 69.5,-25.5
+ parent: 5350
- proto: WeaponCapacitorRecharger
entities:
- uid: 1036
@@ -176344,45 +179270,35 @@ entities:
parent: 5350
- proto: WeaponLaserCarbine
entities:
- - uid: 1569
+ - uid: 28447
components:
- type: Transform
- pos: -5.433402,36.501247
+ pos: -5.40834,37.35076
parent: 5350
- - uid: 21248
+ - uid: 28448
components:
- type: Transform
- pos: -5.419513,36.355415
+ pos: -5.40834,37.135483
parent: 5350
- - uid: 21468
+ - uid: 28449
components:
- type: Transform
- pos: -5.433402,36.66097
+ pos: -5.401396,37.572983
parent: 5350
- - uid: 23027
+ - uid: 28456
components:
- type: Transform
- pos: -5.4681244,37.17486
+ pos: -5.4152846,36.704926
parent: 5350
- - uid: 23653
+ - uid: 28457
components:
- type: Transform
- pos: -5.482013,37.605415
+ pos: -5.4152846,36.482704
parent: 5350
- - uid: 23654
+ - uid: 28458
components:
- type: Transform
- pos: -5.475069,37.320694
- parent: 5350
- - uid: 23720
- components:
- - type: Transform
- pos: -5.4472914,36.79986
- parent: 5350
- - uid: 23733
- components:
- - type: Transform
- pos: -5.482013,37.459583
+ pos: -5.422229,36.92715
parent: 5350
- proto: WeaponLaserCarbinePractice
entities:
@@ -176421,39 +179337,32 @@ entities:
- uid: 8084
components:
- type: Transform
- pos: -18.471203,41.255257
+ pos: -18.483227,41.285686
parent: 5350
- proto: WeaponRifleLecter
entities:
- - uid: 23730
+ - uid: 28446
components:
- type: Transform
- parent: 23721
+ parent: 22966
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: WeaponShotgunEnforcer
- entities:
- - uid: 28199
- components:
- - type: Transform
- pos: -3.527783,37.985577
- parent: 5350
- proto: WeaponShotgunKammerer
entities:
- - uid: 15052
+ - uid: 3634
components:
- type: Transform
- parent: 13851
+ parent: 11588
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: WeaponSubMachineGunDrozd
entities:
- - uid: 9195
+ - uid: 28207
components:
- type: Transform
- parent: 9194
+ parent: 13851
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -176523,21 +179432,11 @@ entities:
- type: Transform
pos: 55.5,-12.5
parent: 5350
- - uid: 13496
- components:
- - type: Transform
- pos: 45.5,26.5
- parent: 5350
- uid: 15934
components:
- type: Transform
pos: -36.5,-38.5
parent: 5350
- - uid: 16636
- components:
- - type: Transform
- pos: 13.5,-55.5
- parent: 5350
- uid: 22648
components:
- type: Transform
@@ -176548,6 +179447,11 @@ entities:
- type: Transform
pos: -5.5,-47.5
parent: 5350
+ - uid: 23389
+ components:
+ - type: Transform
+ pos: 7.5,-64.5
+ parent: 5350
- uid: 24130
components:
- type: Transform
@@ -176568,6 +179472,13 @@ entities:
- type: Transform
pos: 49.5,-3.5
parent: 5350
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 23756
+ components:
+ - type: Transform
+ pos: 44.5,26.5
+ parent: 5350
- proto: WetFloorSign
entities:
- uid: 22726
@@ -176902,6 +179813,17 @@ entities:
- DoorStatus: Close
- proto: WindoorSecure
entities:
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 5350
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 987:
+ - DoorStatus: Close
- uid: 15701
components:
- type: Transform
@@ -176920,6 +179842,58 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,48.5
parent: 5350
+- proto: WindoorSecureArmoryLocked
+ entities:
+ - uid: 1876
+ components:
+ - type: MetaData
+ name: Armor Safe
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,38.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 6962
+ components:
+ - type: MetaData
+ name: Armor Safe
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,40.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 8868
+ components:
+ - type: MetaData
+ name: Laser Safe
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,37.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 23027
+ components:
+ - type: MetaData
+ name: Laser Safe
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,36.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
+ - uid: 28459
+ components:
+ - type: MetaData
+ name: Armor Safe
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,39.5
+ parent: 5350
+ - type: Airlock
+ autoClose: False
- proto: WindoorSecureAtmosphericsLocked
entities:
- uid: 5236
@@ -177070,13 +180044,19 @@ entities:
rot: 1.5707963267948966 rad
pos: 48.5,-1.5
parent: 5350
- - uid: 23593
+ - uid: 28376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,15.5
+ parent: 5350
+ - uid: 28377
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 45.5,16.5
parent: 5350
- - uid: 23594
+ - uid: 28378
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -177091,21 +180071,10 @@ entities:
pos: -12.5,-4.5
parent: 5350
- type: DeviceLinkSink
- invokeCounter: 2
- - type: DeviceLinkSource
- linkedPorts:
- 10668:
- - DoorStatus: Close
- - uid: 10668
- components:
- - type: Transform
- pos: -12.5,-4.5
- parent: 5350
- - type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
- 987:
+ 7206:
- DoorStatus: Close
- proto: WindoorSecureMedicalLocked
entities:
@@ -177230,46 +180199,6 @@ entities:
linkedPorts:
23114:
- DoorStatus: Close
- - uid: 23634
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,38.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 23635
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,40.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 23636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,39.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 23652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,37.5
- parent: 5350
- - type: Airlock
- autoClose: False
- - uid: 23732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,36.5
- parent: 5350
- - type: Airlock
- autoClose: False
- proto: WindoorSecureServiceLocked
entities:
- uid: 14569
@@ -177291,6 +180220,11 @@ entities:
parent: 5350
- proto: Window
entities:
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 0.5,-41.5
+ parent: 5350
- uid: 2129
components:
- type: Transform
@@ -177469,7 +180403,6 @@ entities:
- uid: 13737
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-28.5
parent: 5350
- uid: 14151
@@ -177510,7 +180443,6 @@ entities:
- uid: 14672
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-58.5
parent: 5350
- uid: 14674
@@ -177521,7 +180453,6 @@ entities:
- uid: 14689
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 1.5,-47.5
parent: 5350
- uid: 14733
@@ -177712,9 +180643,28 @@ entities:
- uid: 22605
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,-56.5
parent: 5350
+ - uid: 24050
+ components:
+ - type: Transform
+ pos: 32.5,47.5
+ parent: 5350
+ - uid: 24056
+ components:
+ - type: Transform
+ pos: 30.5,47.5
+ parent: 5350
+ - uid: 24070
+ components:
+ - type: Transform
+ pos: 31.5,47.5
+ parent: 5350
+ - uid: 28402
+ components:
+ - type: Transform
+ pos: 1.5,-41.5
+ parent: 5350
- proto: WindowDirectional
entities:
- uid: 22260
@@ -178422,6 +181372,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 30.5,42.5
parent: 5350
+ - uid: 8867
+ components:
+ - type: Transform
+ pos: -5.5,36.5
+ parent: 5350
- uid: 8997
components:
- type: Transform
@@ -178434,6 +181389,12 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,34.5
parent: 5350
+ - uid: 9376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,37.5
+ parent: 5350
- uid: 9514
components:
- type: Transform
@@ -178764,29 +181725,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,20.5
parent: 5350
- - uid: 23589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,18.5
- parent: 5350
- - uid: 23590
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,15.5
- parent: 5350
- - uid: 23631
- components:
- - type: Transform
- pos: -5.5,36.5
- parent: 5350
- - uid: 23638
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,37.5
- parent: 5350
- uid: 24147
components:
- type: Transform
@@ -181740,7 +184678,7 @@ entities:
pos: -28.5,-5.5
parent: 5350
- type: Door
- secondsUntilStateChange: -16035.059
+ secondsUntilStateChange: -35267.9
state: Opening
- uid: 17570
components:
@@ -181824,13 +184762,6 @@ entities:
- type: Transform
pos: 27.49365,-58.477535
parent: 5350
- - uid: 13782
- components:
- - type: Transform
- parent: 6696
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 18439
components:
- type: Transform
diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml
index 6326e2d53213..05bc7c2b7396 100644
--- a/Resources/Maps/oasis.yml
+++ b/Resources/Maps/oasis.yml
@@ -12629,7 +12629,7 @@ entities:
pos: 38.5,-9.5
parent: 2
- type: Door
- secondsUntilStateChange: -10670.9795
+ secondsUntilStateChange: -11933.729
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14550,7 +14550,7 @@ entities:
pos: -22.5,26.5
parent: 2
- type: Door
- secondsUntilStateChange: -32723.152
+ secondsUntilStateChange: -33985.9
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -15401,7 +15401,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -131551.77
+ secondsUntilStateChange: -132814.52
state: Opening
- uid: 6934
components:
@@ -15413,7 +15413,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -131554.39
+ secondsUntilStateChange: -132817.14
state: Opening
- uid: 6935
components:
@@ -15425,7 +15425,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -131553.25
+ secondsUntilStateChange: -132816
state: Opening
- uid: 6936
components:
@@ -15436,7 +15436,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -131552.47
+ secondsUntilStateChange: -132815.22
state: Opening
- proto: AirlockTheatreLocked
entities:
@@ -77007,18 +77007,6 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,7.5
parent: 2
- - uid: 11826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,3.5
- parent: 2
- - uid: 11827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,2.5
- parent: 2
- uid: 11829
components:
- type: Transform
@@ -77029,18 +77017,6 @@ entities:
- type: Transform
pos: -43.5,1.5
parent: 2
- - uid: 13133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,0.5
- parent: 2
- - uid: 13134
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-0.5
- parent: 2
- uid: 15043
components:
- type: Transform
@@ -77059,18 +77035,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 59.5,-1.5
parent: 2
- - uid: 15617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-2.5
- parent: 2
- - uid: 18032
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-1.5
- parent: 2
- uid: 18087
components:
- type: Transform
@@ -77145,12 +77109,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 53.5,2.5
parent: 2
- - uid: 23418
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-1.5
- parent: 2
- uid: 26296
components:
- type: Transform
@@ -78202,6 +78160,16 @@ entities:
parent: 2
- proto: ClosetEmergencyFilledRandom
entities:
+ - uid: 1367
+ components:
+ - type: Transform
+ pos: -46.5,3.5
+ parent: 2
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: -1.5,33.5
+ parent: 2
- uid: 3478
components:
- type: Transform
@@ -78247,6 +78215,26 @@ entities:
- type: Transform
pos: 10.5,-39.5
parent: 2
+ - uid: 11826
+ components:
+ - type: Transform
+ pos: 0.5,-62.5
+ parent: 2
+ - uid: 13134
+ components:
+ - type: Transform
+ pos: 59.5,5.5
+ parent: 2
+ - uid: 15617
+ components:
+ - type: Transform
+ pos: -5.5,-62.5
+ parent: 2
+ - uid: 18032
+ components:
+ - type: Transform
+ pos: 62.5,-0.5
+ parent: 2
- uid: 18917
components:
- type: Transform
@@ -78312,6 +78300,11 @@ entities:
- type: Transform
pos: 45.5,-45.5
parent: 2
+ - uid: 20868
+ components:
+ - type: Transform
+ pos: 53.5,-2.5
+ parent: 2
- uid: 23044
components:
- type: Transform
@@ -78379,6 +78372,11 @@ entities:
- type: Transform
pos: -11.5,-59.5
parent: 2
+ - uid: 30121
+ components:
+ - type: Transform
+ pos: 62.5,-1.5
+ parent: 2
- proto: ClosetFireFilled
entities:
- uid: 3477
@@ -78431,6 +78429,11 @@ entities:
- type: Transform
pos: 13.5,-33.5
parent: 2
+ - uid: 13133
+ components:
+ - type: Transform
+ pos: 62.5,0.5
+ parent: 2
- uid: 18965
components:
- type: Transform
@@ -78491,6 +78494,26 @@ entities:
- type: Transform
pos: 11.5,29.5
parent: 2
+ - uid: 30122
+ components:
+ - type: Transform
+ pos: -45.5,3.5
+ parent: 2
+ - uid: 30124
+ components:
+ - type: Transform
+ pos: 1.5,-62.5
+ parent: 2
+ - uid: 30125
+ components:
+ - type: Transform
+ pos: -6.5,-62.5
+ parent: 2
+ - uid: 30129
+ components:
+ - type: Transform
+ pos: -1.5,32.5
+ parent: 2
- proto: ClosetJanitorFilled
entities:
- uid: 3055
@@ -96269,7 +96292,7 @@ entities:
pos: -13.5,-1.5
parent: 2
- type: Door
- secondsUntilStateChange: -122875.75
+ secondsUntilStateChange: -124138.516
- type: DeviceNetwork
deviceLists:
- 18275
@@ -142217,7 +142240,7 @@ entities:
pos: 36.5,-35.5
parent: 2
- type: Door
- secondsUntilStateChange: -159707.58
+ secondsUntilStateChange: -160970.33
state: Opening
- uid: 5211
components:
@@ -166417,11 +166440,6 @@ entities:
- type: Transform
pos: 33.5,-3.5
parent: 2
- - uid: 20868
- components:
- - type: Transform
- pos: 62.5,-0.5
- parent: 2
- uid: 20869
components:
- type: Transform
@@ -167049,24 +167067,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,-39.5
parent: 2
- - uid: 1367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-33.5
- parent: 2
- uid: 1369
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-38.5
parent: 2
- - uid: 1371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-32.5
- parent: 2
- uid: 3438
components:
- type: Transform
@@ -167142,6 +167148,18 @@ entities:
- type: Transform
pos: 44.5,-11.5
parent: 2
+ - uid: 9676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-32.5
+ parent: 2
+ - uid: 11827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-33.5
+ parent: 2
- proto: Stool
entities:
- uid: 930
@@ -193329,7 +193347,7 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -10673.8125
+ secondsUntilStateChange: -11936.562
state: Opening
- type: Airlock
autoClose: False
@@ -194763,7 +194781,7 @@ entities:
pos: 24.5,2.5
parent: 21002
- type: Door
- secondsUntilStateChange: -504912.22
+ secondsUntilStateChange: -506174.9
state: Opening
- uid: 28863
components:
diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml
index 534171d25de5..a048ce2483f3 100644
--- a/Resources/Maps/omega.yml
+++ b/Resources/Maps/omega.yml
@@ -1118,19 +1118,17 @@ entities:
color: '#FFFFFFFF'
id: Dirt
decals:
- 2025: -42,-18
1030: -44,-28
1031: -45,-29
1032: -43,-27
1033: -44,-30
+ 2025: -42,-18
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 2026: -41,-18
- 2027: -40,-19
801: 7,-33
802: 8,-32
809: 5,-39
@@ -1143,14 +1141,8 @@ entities:
1537: -47,-8
1538: -47,-7
1539: -47,-10
- 2510: -51,-16
- 2511: -49,-18
- 2512: -49,-16
- 2513: -51,-18
- 2514: -51,-17
- 2515: -49,-17
- 2516: -49,-16
- 2520: -49,-5
+ 2026: -41,-18
+ 2027: -40,-19
2478: -48,0
2479: -50,1
2480: -57,3
@@ -1159,6 +1151,14 @@ entities:
2483: -54,0
2494: -54,6
2495: -55,8
+ 2510: -51,-16
+ 2511: -49,-18
+ 2512: -49,-16
+ 2513: -51,-18
+ 2514: -51,-17
+ 2515: -49,-17
+ 2516: -49,-16
+ 2520: -49,-5
- node:
cleanable: True
zIndex: 1
@@ -1184,14 +1184,6 @@ entities:
color: '#FFFFFFFF'
id: DirtLight
decals:
- 2028: -40,-18
- 910: 20,27
- 911: 19,26
- 912: 17,26
- 913: 16,24
- 914: 16,30
- 915: 17,32
- 916: 16,35
804: 8,-34
805: 8,-36
806: 13,-39
@@ -1227,6 +1219,13 @@ entities:
843: -6,-28
844: -6,-33
845: -11,-38
+ 910: 20,27
+ 911: 19,26
+ 912: 17,26
+ 913: 16,24
+ 914: 16,30
+ 915: 17,32
+ 916: 16,35
1536: -47,-9
1543: -46,-13
1544: -45,-12
@@ -1238,6 +1237,7 @@ entities:
1550: -46,-7
1551: -45,-6
1552: -40,-6
+ 2028: -40,-18
2517: -50,-16
2518: -50,-18
2519: -51,-16
@@ -1247,11 +1247,11 @@ entities:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 2031: -41,-19
803: 8,-33
1540: -46,-10
1541: -46,-9
1542: -46,-12
+ 2031: -41,-19
- node:
color: '#FFFFFFFF'
id: FlowersBROne
@@ -4470,7 +4470,7 @@ entities:
4: 2184
-13,4:
3: 2184
- 6: 546
+ 5: 546
-12,5:
0: 1
1: 3856
@@ -4479,7 +4479,7 @@ entities:
-11,5:
1: 784
-11,4:
- 5: 546
+ 6: 546
-11,6:
0: 49152
-11,3:
@@ -4809,9 +4809,9 @@ entities:
temperature: 293.15
moles:
- 0
- - 6666.982
- 0
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -4824,9 +4824,9 @@ entities:
temperature: 293.15
moles:
- 0
+ - 6666.982
- 0
- 0
- - 6666.982
- 0
- 0
- 0
@@ -47363,12 +47363,6 @@ entities:
parent: 4812
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-27.5
- parent: 4812
- uid: 5077
components:
- type: Transform
@@ -53865,6 +53859,11 @@ entities:
parent: 4812
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5032
+ components:
+ - type: Transform
+ pos: -14.5,-27.5
+ parent: 4812
- uid: 5096
components:
- type: Transform
diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml
index 5c912ee2c703..57aeaad78826 100644
--- a/Resources/Maps/packed.yml
+++ b/Resources/Maps/packed.yml
@@ -158,7 +158,7 @@ entities:
version: 6
2,2:
ind: 2,2
- tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA
+ tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA
version: 6
1,3:
ind: 1,3
@@ -166,7 +166,7 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
@@ -174,7 +174,7 @@ entities:
version: 6
4,-2:
ind: 4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA
version: 6
3,0:
ind: 3,0
@@ -1287,16 +1287,17 @@ entities:
0: 36795
9,10:
0: 15291
+ 9,12:
+ 1: 4369
9,11:
- 1: 57344
+ 0: 8
10,9:
0: 3
1: 3720
10,10:
- 0: 36848
+ 0: 40944
10,11:
- 1: 12561
- 0: 2184
+ 0: 2203
10,12:
1: 50244
11,10:
@@ -1366,7 +1367,7 @@ entities:
18,-1:
0: 65399
18,-5:
- 0: 61440
+ 0: 62692
18,0:
0: 4081
19,-4:
@@ -3065,20 +3066,24 @@ entities:
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 2895: 41,34
- 2901: 39,34
- 2906: 46,27
- 2922: 49,33
426: 40,-41
427: 40,-40
484: 31,-36
1485: 18,21
1507: 23,23
2260: 55,-15
+ 2895: 41,34
+ 2901: 39,34
+ 2906: 46,27
+ 2922: 49,33
2995: 54,32
2996: 53,37
2997: 58,36
+ 3007: 59,34
+ 3008: 59,38
3009: 58,32
+ 3010: 59,32
+ 3011: 59,40
3029: 38,22
3041: 54,47
3132: 58,31
@@ -3162,10 +3167,6 @@ entities:
5182: 5,-21
5253: 30,-26
5256: 30,-25
- 3010: 59,32
- 3011: 59,40
- 3007: 59,34
- 3008: 59,38
- node:
cleanable: True
zIndex: 1
@@ -3177,6 +3178,9 @@ entities:
2932: 37,19
2933: 38,17
3000: 55,34
+ 3001: 54,35
+ 3002: 56,38
+ 3003: 54,39
3024: 37,31
3025: 40,30
3033: 59,36
@@ -3201,6 +3205,7 @@ entities:
3435: 6,31
3437: 8,30
3457: 6,23
+ 3592: 4,40
3608: 4,38
3609: 6,37
3865: 70,-2
@@ -3281,22 +3286,12 @@ entities:
5184: 7,-19
5238: 31,-24
5254: 31,-26
- 3001: 54,35
- 3002: 56,38
- 3003: 54,39
- 3592: 4,40
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
- 2896: 39,35
- 2897: 41,36
- 2900: 41,33
- 2902: 39,36
- 2903: 40,34
- 2908: 49,35
429: 42,-41
430: 42,-40
431: 46,-41
@@ -3367,6 +3362,12 @@ entities:
2267: 57,-16
2268: 57,-15
2269: 57,-14
+ 2896: 39,35
+ 2897: 41,36
+ 2900: 41,33
+ 2902: 39,36
+ 2903: 40,34
+ 2908: 49,35
2935: 39,18
2982: 54,34
2983: 55,37
@@ -3382,6 +3383,8 @@ entities:
2993: 53,34
2994: 53,33
2999: 55,35
+ 3004: 57,39
+ 3006: 55,32
3012: 55,38
3013: 46,33
3015: 36,30
@@ -3489,18 +3492,12 @@ entities:
5210: 19,-37
5212: 19,-29
5236: 31,-25
- 3004: 57,39
- 3006: 55,32
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 2891: 33,30
- 2898: 40,33
- 2899: 39,35
- 2918: 58,40
421: 38,-41
422: 39,-40
423: 45,-41
@@ -3518,6 +3515,10 @@ entities:
1506: 23,21
2261: 56,-14
2262: 55,-16
+ 2891: 33,30
+ 2898: 40,33
+ 2899: 39,35
+ 2918: 58,40
2936: 37,18
2975: 53,32
2976: 56,34
@@ -3526,6 +3527,9 @@ entities:
2979: 56,32
2981: 55,31
3019: 37,30
+ 3020: 39,30
+ 3021: 43,30
+ 3022: 38,31
3023: 42,31
3043: 56,47
3291: 8,25
@@ -3589,9 +3593,6 @@ entities:
5211: 22,-36
5237: 31,-25
5257: 30,-24
- 3020: 39,30
- 3021: 43,30
- 3022: 38,31
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
@@ -8089,6 +8090,11 @@ entities:
- type: Transform
pos: 85.5,4.5
parent: 2
+ - uid: 3072
+ components:
+ - type: Transform
+ pos: 74.5,-17.5
+ parent: 2
- uid: 11758
components:
- type: Transform
@@ -8129,6 +8135,11 @@ entities:
- type: Transform
pos: 101.5,-20.5
parent: 2
+ - uid: 15456
+ components:
+ - type: Transform
+ pos: 40.5,43.5
+ parent: 2
- proto: AirlockExternalAtmosphericsLocked
entities:
- uid: 4391
@@ -8450,6 +8461,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 87.5,4.5
parent: 2
+ - uid: 15442
+ components:
+ - type: Transform
+ pos: 74.5,-19.5
+ parent: 2
+ - uid: 15457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,45.5
+ parent: 2
- proto: AirlockExternalGlassShuttleLocked
entities:
- uid: 509
@@ -10899,6 +10921,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,23.5
parent: 2
+ - uid: 15466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,45.5
+ parent: 2
- proto: AtmosFixBlockerMarker
entities:
- uid: 1457
@@ -22043,6 +22071,21 @@ entities:
- type: Transform
pos: 11.5,-29.5
parent: 2
+ - uid: 15463
+ components:
+ - type: Transform
+ pos: 54.5,-19.5
+ parent: 2
+ - uid: 15464
+ components:
+ - type: Transform
+ pos: 55.5,-19.5
+ parent: 2
+ - uid: 15465
+ components:
+ - type: Transform
+ pos: 40.5,42.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 5386
@@ -34384,6 +34427,11 @@ entities:
- type: Transform
pos: 79.5,-9.5
parent: 2
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: 74.5,-18.5
+ parent: 2
- uid: 3904
components:
- type: Transform
@@ -36907,6 +36955,11 @@ entities:
- type: Transform
pos: 32.5,-22.5
parent: 2
+ - uid: 15455
+ components:
+ - type: Transform
+ pos: 40.5,44.5
+ parent: 2
- proto: Cautery
entities:
- uid: 7791
@@ -38125,6 +38178,11 @@ entities:
- type: Transform
pos: -21.5,-11.5
parent: 2
+ - uid: 3852
+ components:
+ - type: Transform
+ pos: 52.5,-20.5
+ parent: 2
- uid: 5261
components:
- type: Transform
@@ -38145,11 +38203,6 @@ entities:
- type: Transform
pos: 36.5,-38.5
parent: 2
- - uid: 5685
- components:
- - type: Transform
- pos: 52.5,-20.5
- parent: 2
- uid: 5901
components:
- type: Transform
@@ -38212,6 +38265,11 @@ entities:
- type: Transform
pos: 24.5,-5.5
parent: 2
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: 51.5,-20.5
+ parent: 2
- uid: 7537
components:
- type: Transform
@@ -38222,11 +38280,6 @@ entities:
- type: Transform
pos: 5.5,-31.5
parent: 2
- - uid: 15442
- components:
- - type: Transform
- pos: 51.5,-20.5
- parent: 2
- proto: ClosetFireFilled
entities:
- uid: 99
@@ -38326,6 +38379,11 @@ entities:
- type: Transform
pos: 37.5,36.5
parent: 2
+ - uid: 3854
+ components:
+ - type: Transform
+ pos: 53.5,-20.5
+ parent: 2
- uid: 5437
components:
- type: Transform
@@ -38341,11 +38399,6 @@ entities:
- type: Transform
pos: 65.5,9.5
parent: 2
- - uid: 13125
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- uid: 13969
components:
- type: Transform
@@ -38829,6 +38882,13 @@ entities:
- type: Transform
pos: 102.40892,-16.268303
parent: 2
+- proto: ClothingMaskBlushingMime
+ entities:
+ - uid: 8345
+ components:
+ - type: Transform
+ pos: 25.245346,6.3236885
+ parent: 2
- proto: ClothingMaskBreathMedical
entities:
- uid: 12657
@@ -38875,13 +38935,6 @@ entities:
- type: Transform
pos: 81.53254,11.610725
parent: 2
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 8345
- components:
- - type: Transform
- pos: 25.245346,6.3236885
- parent: 2
- proto: ClothingMaskSterile
entities:
- uid: 11969
@@ -40785,6 +40838,16 @@ entities:
- type: Transform
pos: 86.5,4.5
parent: 2
+ - uid: 14796
+ components:
+ - type: Transform
+ pos: 74.5,-18.5
+ parent: 2
+ - uid: 15454
+ components:
+ - type: Transform
+ pos: 40.5,44.5
+ parent: 2
- proto: DefaultStationBeaconEvac
entities:
- uid: 4139
@@ -63503,25 +63566,10 @@ entities:
- type: Transform
pos: 79.5,-8.5
parent: 2
- - uid: 3851
- components:
- - type: Transform
- pos: 73.5,-17.5
- parent: 2
- - uid: 3852
- components:
- - type: Transform
- pos: 74.5,-17.5
- parent: 2
- - uid: 3853
- components:
- - type: Transform
- pos: 75.5,-17.5
- parent: 2
- - uid: 3854
+ - uid: 3844
components:
- type: Transform
- pos: 76.5,-17.5
+ pos: 36.5,50.5
parent: 2
- uid: 3855
components:
@@ -66793,16 +66841,6 @@ entities:
- type: Transform
pos: 35.5,52.5
parent: 2
- - uid: 14796
- components:
- - type: Transform
- pos: 39.5,47.5
- parent: 2
- - uid: 14797
- components:
- - type: Transform
- pos: 40.5,47.5
- parent: 2
- uid: 14800
components:
- type: Transform
@@ -67233,6 +67271,11 @@ entities:
- type: Transform
pos: 33.5,57.5
parent: 2
+ - uid: 15449
+ components:
+ - type: Transform
+ pos: 36.5,48.5
+ parent: 2
- proto: GrilleBroken
entities:
- uid: 1247
@@ -67296,6 +67339,11 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 2
+ - uid: 4173
+ components:
+ - type: Transform
+ pos: 36.5,49.5
+ parent: 2
- uid: 5289
components:
- type: Transform
@@ -67396,11 +67444,6 @@ entities:
- type: Transform
pos: 47.5,51.5
parent: 2
- - uid: 14795
- components:
- - type: Transform
- pos: 38.5,47.5
- parent: 2
- uid: 14798
components:
- type: Transform
@@ -69246,15 +69289,15 @@ entities:
- type: Transform
pos: 2.5,-8.5
parent: 2
- - uid: 12856
+ - uid: 12857
components:
- type: Transform
- pos: 54.5,-20.5
+ pos: 71.5,34.5
parent: 2
- - uid: 12857
+ - uid: 15450
components:
- type: Transform
- pos: 71.5,34.5
+ pos: 54.5,-20.5
parent: 2
- proto: MaintenanceToolSpawner
entities:
@@ -75523,26 +75566,6 @@ entities:
- type: Transform
pos: 79.5,-8.5
parent: 2
- - uid: 3865
- components:
- - type: Transform
- pos: 73.5,-17.5
- parent: 2
- - uid: 3866
- components:
- - type: Transform
- pos: 74.5,-17.5
- parent: 2
- - uid: 3867
- components:
- - type: Transform
- pos: 75.5,-17.5
- parent: 2
- - uid: 3868
- components:
- - type: Transform
- pos: 76.5,-17.5
- parent: 2
- uid: 3869
components:
- type: Transform
@@ -78319,6 +78342,16 @@ entities:
- type: Transform
pos: 85.5,3.5
parent: 2
+ - uid: 15453
+ components:
+ - type: Transform
+ pos: 41.5,43.5
+ parent: 2
+ - uid: 15458
+ components:
+ - type: Transform
+ pos: 75.5,-17.5
+ parent: 2
- proto: SignEVA
entities:
- uid: 5204
@@ -87334,17 +87367,12 @@ entities:
- uid: 3071
components:
- type: Transform
- pos: 39.5,43.5
- parent: 2
- - uid: 3072
- components:
- - type: Transform
- pos: 40.5,43.5
+ pos: 55.5,-20.5
parent: 2
- uid: 3073
components:
- type: Transform
- pos: 41.5,43.5
+ pos: 55.5,-21.5
parent: 2
- uid: 3074
components:
@@ -88846,11 +88874,6 @@ entities:
- type: Transform
pos: 66.5,-20.5
parent: 2
- - uid: 3844
- components:
- - type: Transform
- pos: 57.5,-20.5
- parent: 2
- uid: 3847
components:
- type: Transform
@@ -88871,6 +88894,26 @@ entities:
- type: Transform
pos: 72.5,-17.5
parent: 2
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: 76.5,-17.5
+ parent: 2
+ - uid: 3866
+ components:
+ - type: Transform
+ pos: 76.5,-18.5
+ parent: 2
+ - uid: 3867
+ components:
+ - type: Transform
+ pos: 76.5,-19.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: 73.5,-19.5
+ parent: 2
- uid: 3879
components:
- type: Transform
@@ -89074,17 +89117,12 @@ entities:
- uid: 4172
components:
- type: Transform
- pos: 54.5,-21.5
- parent: 2
- - uid: 4173
- components:
- - type: Transform
- pos: 55.5,-21.5
+ pos: 75.5,-17.5
parent: 2
- uid: 4174
components:
- type: Transform
- pos: 55.5,-20.5
+ pos: 73.5,-17.5
parent: 2
- uid: 4175
components:
@@ -89496,6 +89534,11 @@ entities:
- type: Transform
pos: 53.5,46.5
parent: 2
+ - uid: 5685
+ components:
+ - type: Transform
+ pos: 54.5,-21.5
+ parent: 2
- uid: 5724
components:
- type: Transform
@@ -89569,7 +89612,7 @@ entities:
- uid: 6212
components:
- type: Transform
- pos: 56.5,-20.5
+ pos: 39.5,43.5
parent: 2
- uid: 6335
components:
@@ -90876,6 +90919,11 @@ entities:
- type: Transform
pos: 20.5,-60.5
parent: 2
+ - uid: 12856
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 2
- uid: 12888
components:
- type: Transform
@@ -91021,6 +91069,11 @@ entities:
- type: Transform
pos: 36.5,20.5
parent: 2
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 38.5,45.5
+ parent: 2
- uid: 13184
components:
- type: Transform
@@ -92251,6 +92304,17 @@ entities:
- type: Transform
pos: 4.5,41.5
parent: 2
+ - uid: 14795
+ components:
+ - type: Transform
+ pos: 56.5,-20.5
+ parent: 2
+ - uid: 14797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-20.5
+ parent: 2
- uid: 14809
components:
- type: Transform
@@ -92376,6 +92440,21 @@ entities:
- type: Transform
pos: 12.5,-54.5
parent: 2
+ - uid: 15451
+ components:
+ - type: Transform
+ pos: 41.5,43.5
+ parent: 2
+ - uid: 15452
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 2
+ - uid: 15459
+ components:
+ - type: Transform
+ pos: 75.5,-19.5
+ parent: 2
- proto: WallReinforcedRust
entities:
- uid: 14967
diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml
index b5b2c2ee6c31..17be2136162e 100644
--- a/Resources/Maps/plasma.yml
+++ b/Resources/Maps/plasma.yml
@@ -29,6 +29,7 @@ tilemap:
15: FloorKitchen
16: FloorLaundry
26: FloorLino
+ 43: FloorMowedAstroGrass
20: FloorPlanetGrass
35: FloorRGlass
18: FloorReinforced
@@ -62,6 +63,8 @@ entities:
- type: Broadphase
- type: OccluderTree
- type: LoadedMap
+ - type: Parallax
+ parallax: PlasmaStation
- uid: 2
components:
- type: MetaData
@@ -73,15 +76,15 @@ entities:
chunks:
-10,-4:
ind: -10,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAB
version: 6
-1,0:
ind: -1,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAMBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA
version: 6
0,-2:
ind: 0,-2
@@ -93,207 +96,207 @@ entities:
version: 6
-5,-5:
ind: -5,-5
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAMBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: BwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALAgAAAAAAAgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAAAgAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAADgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAFgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAACgwAAAAAAAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAABAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: gwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAA
+ tiles: gwAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAADBAAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADgwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAADgwAAAAAAAwAAAAACgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFCgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAACBAAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAACAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADAwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADAwAAAAAAgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAACAwAAAAABgwAAAAAAAwAAAAADgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: KgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAADDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAACgwAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAABAAAAAAAAwAAAAACgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBAAAAAADBAAAAAABAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAABgwAAAAAAAwAAAAADBAAAAAABBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAABCgAAAAAACgAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADBAAAAAADCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ tiles: AwAAAAACAwAAAAAAAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAABDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAADAwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAABgwAAAAAAAwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAAAwAAAAADBAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAAwAAAAADBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAACBAAAAAACCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAACwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAACwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADCwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAAB
+ tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAABwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAADCwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAADCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACCwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAACAwAAAAABAwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAD
version: 6
-4,0:
ind: -4,0
- tiles: BAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAACIwAAAAACIwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABIwAAAAADIwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAABAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAAAIwAAAAADIwAAAAABAwAAAAABAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABIwAAAAACIwAAAAADAwAAAAACAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADCwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACCwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABAAAAAAD
version: 6
-5,0:
ind: -5,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAADIwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAABIwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAADAwAAAAAAIwAAAAADIwAAAAACAwAAAAACgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAADIwAAAAABIwAAAAACAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: AgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAALKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACgwAAAAAABwAAAAAAgwAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAALKgAAAAAEKgAAAAAAKgAAAAAAgwAAAAAABwAAAAALgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAAGKgAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: CgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADgwAAAAAAAwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAKBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAALBwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAADBwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,-4:
ind: -6,-4
- tiles: KgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAEKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAHKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAJgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: gwAAAAAABwAAAAAFFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAABwAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAFgAAAAAAKQAAAAAAFgAAAAAKFgAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAABwAAAAAFBwAAAAAABwAAAAAAKQAAAAAAFgAAAAAFKQAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAACCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAADQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDQAAAAABAwAAAAAADQAAAAAADQAAAAACDQAAAAADBAAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAAABAAAAAACBAAAAAACBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADAwAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAABwAAAAALBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABDQAAAAACDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAABgwAAAAAADQAAAAABDQAAAAAADQAAAAABBAAAAAACBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAADDQAAAAABAwAAAAACDQAAAAACDQAAAAAADQAAAAABBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAABBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADAwAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABgwAAAAAADQAAAAABDQAAAAADDQAAAAAAAwAAAAABBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAABBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACDQAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAAADQAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: AgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAB
+ tiles: BwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADgwAAAAAABQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAAD
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAADDgAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACDgAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADDgAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABDQAAAAADDQAAAAADDQAAAAABgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAADDQAAAAADDQAAAAABgwAAAAAABQAAAAACBQAAAAAAgwAAAAAADQAAAAAADQAAAAAAAwAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABgwAAAAAADQAAAAAADQAAAAADAwAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAADBQAAAAACgwAAAAAADQAAAAABDQAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAAA
+ tiles: DgAAAAAADgAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAAADgAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADDgAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAADgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAADAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAADQAAAAADDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAADgwAAAAAADQAAAAACDQAAAAADAwAAAAACgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADgwAAAAAABQAAAAADBQAAAAAAgwAAAAAADQAAAAABDQAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAABgwAAAAAADQAAAAABDQAAAAADAwAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAC
version: 6
-4,-3:
ind: -4,-3
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADBwAAAAAHBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAABBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAACAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAgAAAAAAAgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHgwAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABBAAAAAACBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAACgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAABQAAAAACBQAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACBQAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAA
+ tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKHgAAAAADDQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAAABQAAAAADBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAABBAAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAEgwAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAABDgAAAAAB
version: 6
-5,-2:
ind: -5,-2
- tiles: gwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAACgwAAAAAABQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAABgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAABAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABCwAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAACgAAAAAACgAAAAAACgAAAAAA
+ tiles: gwAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAACBAAAAAABBAAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAACEQAAAAACBAAAAAACBAAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAJgwAAAAAABQAAAAACBQAAAAABBQAAAAADgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAAAgAAAAAABwAAAAAABQAAAAAAAwAAAAACAwAAAAACAwAAAAAABQAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACgwAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAAACwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: BAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAAAAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADHgAAAAABHgAAAAADHgAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACHgAAAAADHgAAAAABHgAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABHgAAAAADHgAAAAADHgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADAwAAAAAABAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACAwAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAAAAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAADBAAAAAADAwAAAAABAwAAAAABAwAAAAABBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBwAAAAAABwAAAAAJgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADBAAAAAAABAAAAAACAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAAAAwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKwAAAAAABAAAAAACBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAACAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAACCAAAAAAACAAAAAAACAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABBAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAABAAAAAACBAAAAAABAwAAAAABBAAAAAACBAAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAADBAAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACBAAAAAABBAAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAACAwAAAAABAwAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAAAAwAAAAADBAAAAAADBAAAAAADAwAAAAACAwAAAAABAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAACBwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-6,-2:
ind: -6,-2
- tiles: BAAAAAADAwAAAAAAAwAAAAADAwAAAAADBAAAAAACBAAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABAwAAAAACAwAAAAAAAwAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAAAAwAAAAABAwAAAAACAwAAAAAABAAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADBAAAAAACAwAAAAADAwAAAAADAwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAAAAwAAAAAAAwAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACBAAAAAACAwAAAAADAwAAAAACAwAAAAABBAAAAAAABAAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACgwAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: BwAAAAAJBwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAADQAAAAADBwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBwAAAAAHBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAD
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAACDQAAAAABBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAADQAAAAACBwAAAAAFBwAAAAAABwAAAAAMBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAAwAAAAADAwAAAAABAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABAAAAAABBAAAAAACBwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAABgwAAAAAABwAAAAAEBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAA
version: 6
-6,-3:
ind: -6,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAACBwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADDwAAAAAADwAAAAAADwAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAACgwAAAAAAEQAAAAADEQAAAAAAEQAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAEQAAAAABEQAAAAABEQAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADGgAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAABBQAAAAAABQAAAAAAAwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAADBQAAAAABBQAAAAACAwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABQAAAAABBQAAAAACAwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAABAAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAAEQAAAAADEQAAAAADEQAAAAADgwAAAAAAEQAAAAABGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAEQAAAAABEQAAAAAAEQAAAAACgwAAAAAAEQAAAAAAEQAAAAABEQAAAAACgwAAAAAAEQAAAAADGgAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAEQAAAAAAEQAAAAAAEQAAAAABgwAAAAAAEQAAAAABEQAAAAADEQAAAAACgwAAAAAAEQAAAAADBQAAAAAABQAAAAACAwAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAAAwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABAwAAAAAABQAAAAAABQAAAAADAwAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAAABQAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABBAAAAAADAwAAAAABAwAAAAACAwAAAAAABAAAAAABBAAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAAB
version: 6
-5,-3:
ind: -5,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAEBwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADgwAAAAAAEQAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACgwAAAAAABAAAAAABBAAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACBAAAAAAABAAAAAAC
+ tiles: BwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAABBwAAAAAABwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAEQAAAAACEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAAAEQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEQAAAAABEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACgwAAAAAAEQAAAAADBAAAAAACBAAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAABwAAAAAFAgAAAAAAgwAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAAAgwAAAAAABAAAAAADBAAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAADBAAAAAAABAAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA
+ tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJ
version: 6
-2,-2:
ind: -2,-2
- tiles: AwAAAAACDQAAAAACDQAAAAAADQAAAAABCwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAACwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAABCwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADAwAAAAABAwAAAAAADQAAAAABDQAAAAACDQAAAAACCwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAAAAwAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAACAwAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAACgwAAAAAAKAAAAAAAKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAADgwAAAAAADQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACAwAAAAADDQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAABgwAAAAAADQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AwAAAAABDQAAAAABDQAAAAADDQAAAAADCwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACCwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACCwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAACDQAAAAAACwAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAABAwAAAAAADQAAAAACDQAAAAADDQAAAAABCwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADCwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAADAwAAAAADDQAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAACAwAAAAABDQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAABgwAAAAAAKAAAAAABKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAAAgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAAAgwAAAAAADQAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADgwAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAACBQAAAAADAwAAAAADDQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADAwAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAADgwAAAAAADQAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAACwAAAAAAAwAAAAADgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAACgwAAAAAAAwAAAAABDQAAAAACDQAAAAACDQAAAAAAgwAAAAAACwAAAAAAAwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAADgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAACwAAAAAAAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAADQAAAAADDQAAAAABgwAAAAAABwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAACDQAAAAACgwAAAAAABwAAAAAAAwAAAAADDQAAAAAADQAAAAADDQAAAAAAgwAAAAAACwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAABDQAAAAABgwAAAAAABwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: gwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAABAAAAAADBAAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAADAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAACAwAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAA
+ tiles: gwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAADQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADBQAAAAAAJAAAAAAFBQAAAAACJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAADBwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAADJAAAAAADBQAAAAACJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAEBQAAAAADBQAAAAACJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGJAAAAAADJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAABBQAAAAAAJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACJAAAAAAAJAAAAAABgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAADAwAAAAACgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAABBAAAAAADBAAAAAAAAwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAABBAAAAAABBAAAAAACAwAAAAADgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-4:
ind: -7,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAEBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,-3:
ind: -7,-3
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAACgwAAAAAAAwAAAAACAwAAAAABBQAAAAABBQAAAAABBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAABwAAAAAGgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAACBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAACBQAAAAADBQAAAAADCwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAFgwAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAADBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHCgAAAAAACgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGCgAAAAAACgAAAAAACgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADgwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAHBwAAAAAMgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAABwAAAAAABwAAAAALBwAAAAACCgAAAAAACgAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABwAAAAADBwAAAAALAgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAAA
version: 6
-7,-2:
ind: -7,-2
- tiles: GgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBwAAAAAAgwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAABAAAAAAD
+ tiles: AwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACAwAAAAADAwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAICgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAACgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAC
version: 6
-7,-1:
ind: -7,-1
- tiles: BAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAABwAAAAALAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAACAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABwAAAAAGBwAAAAAEAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAAgwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAJgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
+ tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAEAgAAAAAAAgAAAAAABwAAAAAJAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAADFgAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAAgAAAAAACgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAFgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAALgwAAAAAABwAAAAAABwAAAAAHBwAAAAAKCgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBwAAAAAABwAAAAAABAAAAAAAgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAIgAAAAAC
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAHCgAAAAAACgAAAAAABwAAAAAABwAAAAACAwAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAADBwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAQAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAABwAAAAALBwAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAJCgAAAAAACgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAACBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAACBAAAAAADgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAADgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAABAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACIgAAAAAA
version: 6
-9,-4:
ind: -9,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAACBQAAAAABBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACBQAAAAACJAAAAAAGgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAIwAAAAABIwAAAAACIwAAAAABBQAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAACBAAAAAADBAAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGBQAAAAACBQAAAAACBQAAAAADgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAABBQAAAAADJAAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABIwAAAAADIwAAAAAAIwAAAAACBQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACgwAAAAAABAAAAAAABAAAAAACBAAAAAAA
version: 6
-8,-2:
ind: -8,-2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAFBwAAAAAEBwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAADGwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAJAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAACBQAAAAACgwAAAAAABwAAAAAKAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAB
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAADgwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAGgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABwAAAAAGAgAAAAAABwAAAAAIgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAB
version: 6
-8,-1:
ind: -8,-1
- tiles: BQAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAM
+ tiles: BQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAHgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: BAAAAAACIgAAAAABBAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAABCgAAAAAACgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAACCgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAAACgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAIGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAKGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
+ tiles: BAAAAAABIgAAAAACBAAAAAADCgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAAIgAAAAABCgAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABIgAAAAADCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAACBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABAwAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAABAwAAAAADgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAABgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAABgwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: BAAAAAAABAAAAAABBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: BAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACFQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: BAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADFgAAAAAIFgAAAAAAFgAAAAAGFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-5:
ind: -7,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAJBwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-8,1:
ind: -8,1
- tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAADgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
+ tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: gwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-5:
ind: -6,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAGKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAADBwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAABBwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAKFgAAAAAAFgAAAAAAFgAAAAAJFgAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAHgAAAAACBwAAAAAAgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAAAFgAAAAACFgAAAAADFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIgwAAAAAABwAAAAAAFgAAAAAMFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAADFgAAAAAAFgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-9,0:
ind: -9,0
- tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAEgwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAHgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAKgwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-9,-1:
ind: -9,-1
- tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACJgAAAAACgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAA
+ tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJ
version: 6
-9,-2:
ind: -9,-2
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAABAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAGAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADgwAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAMAgAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAADgwAAAAAA
version: 6
-9,1:
ind: -9,1
- tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAABBwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAHAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAABBAAAAAACBwAAAAACgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-10,-3:
ind: -10,-3
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAABEgAAAAAAEgAAAAAABAAAAAABgwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAADEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA
version: 6
-10,-1:
ind: -10,-1
@@ -301,35 +304,35 @@ entities:
version: 6
-8,-4:
ind: -8,-4
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAACCQAAAAAAAwAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAACCQAAAAAABAAAAAADCQAAAAAAAwAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABBAAAAAABAwAAAAACBAAAAAADBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAAAwAAAAABCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAADDQAAAAABgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAAwAAAAADCQAAAAAAAwAAAAADDQAAAAADDQAAAAADgwAAAAAAAwAAAAADCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAAABAAAAAABAwAAAAADBAAAAAABBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABDQAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAACgwAAAAAAAwAAAAADCQAAAAAABAAAAAABCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAA
version: 6
-8,-3:
ind: -8,-3
- tiles: IwAAAAABIwAAAAACIwAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAABHwAAAAAAIwAAAAAABAAAAAADgwAAAAAABAAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAHwAAAAADHwAAAAACIwAAAAABBAAAAAACBAAAAAACBAAAAAADIwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACIwAAAAADBAAAAAACHwAAAAAAHwAAAAADIwAAAAAABAAAAAABgwAAAAAABAAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAADBAAAAAACIwAAAAADIwAAAAABIwAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABDQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: IwAAAAACIwAAAAAAIwAAAAAABAAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABHwAAAAAAHwAAAAAAIwAAAAAABAAAAAABgwAAAAAABAAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAABBAAAAAAAHwAAAAABHwAAAAABIwAAAAACBAAAAAADBAAAAAACBAAAAAABIwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACIwAAAAADBAAAAAADHwAAAAADHwAAAAAAIwAAAAAABAAAAAACgwAAAAAABAAAAAABIwAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAIwAAAAAAIwAAAAADIwAAAAADBAAAAAACgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAACDQAAAAADgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAABgwAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAALAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADAAAAAAAAwAAAAABgwAAAAAAAwAAAAACAwAAAAAB
version: 6
-9,-3:
ind: -9,-3
- tiles: gwAAAAAABAAAAAADBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAABAAAAAADIwAAAAAAIwAAAAADgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADIwAAAAACHwAAAAABBAAAAAAABAAAAAAABAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAAIwAAAAABHwAAAAABgwAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAABHwAAAAABgwAAAAAABAAAAAAABAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAAIwAAAAACIwAAAAAAIwAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: gwAAAAAABAAAAAACBAAAAAABAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAACgwAAAAAABAAAAAAABAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAABgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACBAAAAAAABAAAAAABBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABIwAAAAAAHwAAAAABgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAAAHwAAAAACgwAAAAAABAAAAAADBAAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAADQAAAAADDQAAAAADgwAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAABgwAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAACDQAAAAADIwAAAAADIwAAAAABIwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAACDQAAAAADDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: BAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAAAwAAAAACGgAAAAAAGgAAAAAAAwAAAAADAwAAAAAABwAAAAAIBwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAACBwAAAAALBwAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAHBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAMBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABAwAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAADGgAAAAAAGgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAADAwAAAAADBwAAAAAFBwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABGgAAAAAAGgAAAAAAAwAAAAABAwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAABgwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: BwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-9,2:
ind: -9,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAADBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
version: 6
0,-1:
ind: 0,-1
@@ -337,7 +340,7 @@ entities:
version: 6
-4,-5:
ind: -4,-5
- tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACgwAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAJwAAAAABJwAAAAABJwAAAAABJwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ tiles: BwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAADBwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALJwAAAAACJwAAAAADJwAAAAAAJwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJwAAAAACJwAAAAABJwAAAAAAJwAAAAACJwAAAAADBwAAAAAHBwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAGJwAAAAADJwAAAAADJwAAAAABJwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
version: 6
-10,0:
ind: -10,0
@@ -349,24 +352,20 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: BwAAAAAABwAAAAAFBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGIQAAAAABIQAAAAABIQAAAAAAgwAAAAAABwAAAAAFBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAA
+ tiles: BwAAAAAGBwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAIQAAAAABIQAAAAADIQAAAAADgwAAAAAABwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAIBwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAA
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-6:
ind: -5,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJ
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA
version: 6
-1,-5:
ind: -1,-5
tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -6,-6:
- ind: -6,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA
- version: 6
-2,-6:
ind: -2,-6
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAA
@@ -385,11 +384,11 @@ entities:
version: 6
-8,-5:
ind: -8,-5
- tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACDAAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAADAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAADAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAADAAAAAAAAwAAAAACDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAADAAAAAAAAwAAAAACAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADDAAAAAAAAwAAAAABAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAADDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABDAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-8,-6:
ind: -8,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA
version: 6
-9,-5:
ind: -9,-5
@@ -451,7 +450,6 @@ entities:
664: -24,-30
2619: -115,-42
2620: -115,-48
- 2860: -73,-56
6206: -101,-13
6208: -33,-12
6210: -71,-19
@@ -517,8 +515,6 @@ entities:
1159: -52,-22
1160: -52,-23
1161: -52,-24
- 1657: -115,-34
- 1658: -114,-34
1748: -97,-36
1749: -97,-35
1750: -97,-34
@@ -606,8 +602,6 @@ entities:
6462: -141,-44
6463: -141,-43
6482: -96,33
- 6483: -96,34
- 6484: -96,35
6524: -91,27
6525: -91,28
6526: -91,29
@@ -618,6 +612,29 @@ entities:
6727: -24,-43
6728: -23,-43
6808: -52,-21
+ 7365: -94,-39
+ 7503: -89,-39
+ 7504: -85,-39
+ 7505: -81,-39
+ 7535: -113,-32
+ 7536: -112,-32
+ 7537: -111,-32
+ 7538: -110,-30
+ 7539: -111,-30
+ 7540: -111,-34
+ 7541: -110,-34
+ 7542: -94,-2
+ 7543: -95,-2
+ 7772: -116,-4
+ 7773: -116,-3
+ 7774: -115,-4
+ 7775: -115,-3
+ 7776: -114,-3
+ 7777: -114,-4
+ 7778: -113,-4
+ 7779: -113,-3
+ 7780: -109,-3
+ 7782: -108,-3
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -651,6 +668,11 @@ entities:
decals:
715: -31,-20
716: -31,-21
+ - node:
+ color: '#9FED5896'
+ id: BotGreyscale
+ decals:
+ 7569: -100,2
- node:
color: '#EFB34196'
id: BotGreyscale
@@ -800,37 +822,44 @@ entities:
decals:
6247: -126,-44
6693: -114,-45
+ 7670: -60,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 1885: -88,-50
- 1918: -83,-47
6259: -130,-44
6685: -122,-45
+ 7382: -86,-51
+ 7387: -82,-48
+ 7388: -81,-46
+ 7666: -64,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
6251: -126,-48
6695: -114,-47
+ 7655: -60,-25
+ 7672: -60,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
6255: -130,-48
6696: -122,-47
+ 7656: -64,-25
+ 7673: -64,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
- 1908: -88,-49
+ 7383: -86,-49
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 1924: -83,-49
- 1925: -82,-47
+ 7389: -82,-49
+ 7390: -81,-48
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
@@ -839,24 +868,32 @@ entities:
6249: -126,-46
6250: -126,-47
6694: -114,-46
+ 7662: -60,-24
+ 7663: -60,-23
+ 7664: -60,-32
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 1892: -86,-49
- 1893: -85,-49
- 1909: -87,-49
- 1926: -84,-49
6260: -129,-44
6261: -128,-44
6262: -127,-44
6686: -121,-45
- 6687: -120,-45
- 6688: -119,-45
- 6689: -118,-45
- 6690: -117,-45
- 6691: -116,-45
6692: -115,-45
+ 7352: -116,-45
+ 7353: -118,-45
+ 7354: -118,-45
+ 7355: -119,-45
+ 7356: -120,-45
+ 7357: -117,-45
+ 7384: -85,-49
+ 7385: -84,-49
+ 7386: -83,-49
+ 7392: -80,-46
+ 7393: -79,-46
+ 7667: -63,-31
+ 7668: -62,-31
+ 7669: -61,-31
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
@@ -865,25 +902,31 @@ entities:
6253: -128,-48
6254: -129,-48
6698: -121,-47
- 6699: -120,-47
- 6700: -119,-47
- 6701: -118,-47
- 6702: -117,-47
- 6703: -116,-47
6704: -115,-47
+ 7346: -119,-47
+ 7347: -121,-47
+ 7348: -120,-47
+ 7349: -118,-47
+ 7350: -117,-47
+ 7351: -116,-47
+ 7657: -63,-25
+ 7658: -62,-25
+ 7659: -61,-25
+ 7674: -63,-33
+ 7675: -62,-33
+ 7676: -61,-33
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 1895: -88,-51
- 1900: -82,-46
- 1919: -82,-46
- 1920: -82,-45
- 1922: -83,-48
6256: -130,-47
6257: -130,-46
6258: -130,-45
6697: -122,-46
+ 7391: -81,-47
+ 7660: -64,-24
+ 7661: -64,-23
+ 7665: -64,-32
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNe
@@ -965,13 +1008,6 @@ entities:
6465: -143,-43
6985: -124,-80
7022: -124,-71
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteCornerNw
- decals:
- 1709: -101,-31
- 1710: -101,-27
- 1711: -101,-23
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSe
@@ -1047,13 +1083,6 @@ entities:
6464: -143,-49
6988: -124,-87
7023: -124,-75
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteCornerSw
- decals:
- 1715: -101,-33
- 1716: -101,-29
- 1717: -101,-25
- node:
color: '#334E6DC8'
id: BrickTileWhiteInnerNe
@@ -1224,7 +1253,7 @@ entities:
6036: -35,-9
6979: -86,0
6980: -86,1
- 6981: -86,2
+ 7756: -86,2
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -1418,6 +1447,16 @@ entities:
1727: -100,-31
1728: -100,-27
1729: -100,-23
+ 7506: -89,-38
+ 7507: -88,-38
+ 7508: -87,-38
+ 7509: -86,-38
+ 7510: -85,-38
+ 7511: -84,-38
+ 7512: -83,-38
+ 7513: -82,-38
+ 7514: -81,-38
+ 7515: -80,-38
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
@@ -1477,8 +1516,6 @@ entities:
2501: -122,-48
2502: -121,-48
2503: -120,-48
- 2504: -119,-48
- 2505: -118,-48
2506: -117,-48
6393: -150,-44
6394: -148,-44
@@ -1509,6 +1546,8 @@ entities:
7033: -120,-69
7034: -118,-69
7035: -119,-69
+ 7338: -119,-48
+ 7339: -118,-48
- node:
color: '#D4D4D496'
id: BrickTileWhiteLineS
@@ -1634,12 +1673,9 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 1724: -101,-24
- 1725: -101,-28
- 1726: -101,-32
6982: -86,0
6983: -86,1
- 6984: -86,2
+ 7755: -86,2
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
@@ -1670,7 +1706,6 @@ entities:
1324: -102,-11
1340: -106,-9
1349: -100,-13
- 1357: -103,1
1383: -106,-22
1394: -106,-39
1396: -106,-43
@@ -1684,9 +1719,6 @@ entities:
1610: -25,-13
1611: -20,-16
1622: -50,-62
- 1881: -81,-47
- 1884: -81,-46
- 1917: -83,-49
2130: -109,5
2131: -113,5
2141: -109,11
@@ -1698,14 +1730,12 @@ entities:
2902: -82,-56
2908: -85,-59
5484: -33,-72
- 5569: -50,-66
- 5570: -76,-69
5916: -132,15
- 6107: -71,-47
6111: -66,-38
6116: -59,-45
6718: -75,-27
7059: -103,-55
+ 7819: -50,-66
- node:
color: '#FFFFFFFF'
id: BushAThree
@@ -1713,7 +1743,6 @@ entities:
1275: -70.94724,-48.08919
1276: -62.98816,-38.020138
1315: -106,0
- 1366: -103,-6
1367: -88,-13
1612: -21,-13
1613: -19,-13
@@ -1726,17 +1755,19 @@ entities:
2871: -38,17
2873: -31,-8
5567: -105,-23
- 5568: -52,-67
5911: -128,20
6824: -131,-30
6975: -17,-63
6976: -15,-62
+ 7381: -80,-46
+ 7497: -103,-36
- node:
color: '#FFFFFFFF'
id: BushATwo
decals:
1280: -59.994514,-48.01404
6828: -132,-30
+ 7380: -81,-47
- node:
color: '#FFFFFFFF'
id: BushCOne
@@ -1752,19 +1783,22 @@ entities:
5472: -14,-51
5491: -28,-73
6113: -61,-39
+ 7501: -102,-20
+ 7613: -105,7
- node:
color: '#FFFFFFFF'
id: BushCThree
decals:
1293: -54,-17
- 1297: -50,-12
1298: -70,-16
1483: -122,-9
1595: -34,-13
2934: -92,21
- 5578: -73,-76
6977: -17,-58
6978: -14,-57
+ 7737: -68,-50
+ 7817: -53,-67
+ 7821: -62,-68
- node:
color: '#FFFFFFFF'
id: BushCTwo
@@ -1773,7 +1807,6 @@ entities:
1301: -56,-17
1302: -68,-17
1329: -102,-13
- 1333: -102,-17
2133: -114,1
2156: -132,9
2159: -108,9
@@ -1781,26 +1814,37 @@ entities:
2895: -86,-58
2933: -90,20
5471: -14,-49
- 5557: -54,-67
5564: -106,-24
- 5574: -74,-68
- 5575: -73,-72
- 5579: -75,-78
5917: -130,15
7060: -102,-54
7063: -102,-56
7064: -95,-58
+ 7376: -82,-51
+ 7502: -102,-18
+ 7616: -107,-33
+ 7618: -106,-59
+ 7639: -105,5
+ 7827: -85,-73
+ 7834: -98,-15
- node:
color: '#FFFFFFFF'
id: Busha1
decals:
1400: -106,-53
- 1901: -88,-51
2149: -130,-1
5467: -14,-46
5919: -128,15
6719: -72,-27
6825: -133,-29
+ 7375: -82,-48
+ 7500: -102,-23
+ 7617: -107,-30
+ 7620: -98,-58
+ 7622: -77,-58
+ 7623: -102,-15
+ 7626: -106,-13
+ 7638: -106,10
+ 7831: -80,-59
- node:
color: '#FFFFFFFF'
id: Busha2
@@ -1810,22 +1854,15 @@ entities:
1278: -60.04139,-41.073265
1295: -53,-17
1337: -105,-18
- 1359: -101,4
- 1360: -103,6
1364: -100,10
- 1365: -103,-8
1376: -81,-13
1386: -103,-29
1395: -106,-41
- 1403: -107,-32
1465: -108,-9
1466: -112,-12
- 1605: -34,-15
1606: -36,-16
1616: -51,-59
1624: -48,-59
- 1875: -84,-51
- 1916: -82,-48
2128: -108,0
2129: -108,3
2152: -132,2
@@ -1833,20 +1870,22 @@ entities:
2881: -31,-1
2889: -103,-58
5488: -31,-72
- 5558: -53,-66
- 5572: -74,-69
- 5580: -73,-78
5914: -129,20
5915: -132,13
5943: -103,-42
- 6105: -72,-42
- 6108: -69,-41
6117: -57,-48
6717: -72,-25
6820: -122,-32
6823: -126,-29
6973: -19,-59
7058: -103,-53
+ 7499: -102,-26
+ 7611: -102,0
+ 7615: -106,4
+ 7624: -106,-15
+ 7631: -102,-7
+ 7637: -106,8
+ 7820: -63,-68
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1872,7 +1911,6 @@ entities:
1617: -49,-61
1618: -49,-59
1635: -104,-49
- 1910: -88,-49
2137: -108,-1
2142: -111,11
2150: -128,-1
@@ -1886,9 +1924,7 @@ entities:
5474: -14,-55
5487: -29,-72
5496: -120,-33
- 5497: -119,-30
5566: -105,-25
- 5571: -73,-68
5909: -133,18
5912: -133,20
5913: -131,19
@@ -1899,6 +1935,13 @@ entities:
6827: -130,-29
6974: -18,-62
7224: -136,7
+ 7378: -81,-46
+ 7498: -102,-30
+ 7632: -105,-2
+ 7736: -69,-48
+ 7823: -79,-74
+ 7828: -84,-72
+ 7829: -83,-59
- node:
color: '#FFFFFFFF'
id: Bushb1
@@ -1907,16 +1950,17 @@ entities:
1339: -106,-10
1381: -107,-29
1385: -103,-31
- 1389: -106,-32
- 1593: -41,-13
1594: -34,-16
2930: -93,19
5469: -14,-48
5485: -36,-74
- 5573: -75,-68
- 5577: -76,-73
6830: -128,-29
7062: -104,-52
+ 7377: -80,-48
+ 7619: -102,-59
+ 7621: -93,-56
+ 7835: -94,-15
+ 7836: -39,-15
- node:
color: '#FFFFFFFF'
id: Bushb2
@@ -1925,9 +1969,6 @@ entities:
1294: -52,-16
1314: -106,-3
1342: -105,-7
- 1343: -98,-15
- 1354: -103,-5
- 1355: -103,-2
1373: -86,-15
1374: -82,-13
1377: -79,-15
@@ -1955,6 +1996,13 @@ entities:
5493: -31,-74
5494: -30,-73
5961: -79,-56
+ 7495: -102,-32
+ 7612: -102,3
+ 7634: -102,-2
+ 7635: -102,2
+ 7636: -106,6
+ 7735: -70,-46
+ 7818: -52,-66
- node:
color: '#FFFFFFFF'
id: Bushb3
@@ -1963,12 +2011,10 @@ entities:
1304: -69,-12
1318: -105,3
1338: -105,-20
- 1358: -103,3
1368: -89,-15
1390: -107,-34
1391: -106,-36
1404: -106,-31
- 1461: -104,8
1467: -113,-13
1468: -110,-12
1473: -125,-13
@@ -1978,9 +2024,7 @@ entities:
1486: -119,-15
1591: -38,-16
1592: -39,-13
- 1608: -27,-13
1621: -46,-62
- 1904: -82,-46
2143: -114,9
2151: -132,0
2890: -97,-56
@@ -1992,7 +2036,6 @@ entities:
5481: -36,-75
5482: -35,-74
5492: -28,-71
- 5576: -72,-74
5908: -132,19
5942: -103,-43
6821: -123,-29
@@ -2000,6 +2043,9 @@ entities:
7256: -51,-20
7257: -53,-19
7258: -50,-22
+ 7372: -86,-49
+ 7374: -81,-49
+ 7625: -105,-14
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2011,16 +2057,12 @@ entities:
id: Bushc1
decals:
1281: -63.264427,-49.067772
- 1325: -103,-12
- 1344: -94,-15
- 1346: -103,-15
1347: -101,-15
1352: -92,-13
1362: -101,10
1369: -92,-15
1475: -127,-13
1598: -32,-16
- 1602: -28,-15
1603: -25,-15
1619: -47,-60
1620: -48,-61
@@ -2036,6 +2078,10 @@ entities:
6109: -65,-41
6112: -63,-41
6826: -129,-30
+ 7496: -103,-35
+ 7633: -102,-4
+ 7822: -75,-67
+ 7830: -81,-60
- node:
color: '#FFFFFFFF'
id: Bushc2
@@ -2043,18 +2089,15 @@ entities:
1375: -81,-15
1597: -32,-12
1599: -28,-12
- 1604: -29,-16
- 1912: -85,-50
- 1913: -87,-50
- 1915: -83,-47
2899: -83,-60
2928: -88,18
5470: -13,-50
5483: -35,-75
- 5561: -51,-66
5910: -131,20
6110: -67,-42
- 6723: -70,-41
+ 7373: -86,-51
+ 7379: -79,-47
+ 7824: -76,-75
- node:
color: '#FFFFFFFF'
id: Bushc3
@@ -2062,6 +2105,10 @@ entities:
1388: -103,-33
2913: -136,4
6114: -59,-42
+ 7825: -77,-73
+ 7826: -83,-74
+ 7832: -78,-58
+ 7833: -101,6
- node:
color: '#FFFFFFFF'
id: Bushd4
@@ -2083,28 +2130,41 @@ entities:
id: Bushg4
decals:
2843: -109,29
+ 7741: -63.170547,-27.069342
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushh2
+ decals:
+ 7743: -63.248672,-28.850592
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushh3
+ decals:
+ 7742: -60.889297,-28.631842
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
- 1284: -60.82099,-27.203562
1289: -61.930435,-28.141062
2845: -110,31
+ 7739: -63.998672,-27.944342
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi2
+ decals:
+ 7738: -64.1393,-28.944342
+ 7744: -60.701797,-27.131842
+ 7746: -59.904922,-28.991215
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
- 1283: -63.03974,-27.328562
1285: -63.03974,-28.297312
1287: -60.961617,-29.062937
- 1288: -62.930435,-29.156687
2844: -111,29
2846: -108,31
- - node:
- color: '#FFFFFFFF'
- id: Bushi4
- decals:
- 1286: -61.03974,-27.703562
+ 7740: -63.983047,-26.928717
+ 7745: -60.014297,-27.928715
- node:
color: '#FFFFFFFF'
id: Bushj1
@@ -2121,22 +2181,16 @@ entities:
decals:
828: -20,-49
829: -19,-49
- 830: -18,-49
831: -20,-50
832: -19,-50
- 833: -18,-50
- 834: -18,-51
835: -19,-51
836: -20,-51
837: -20,-53
838: -19,-53
- 839: -18,-53
- 840: -18,-54
841: -19,-54
842: -20,-54
843: -20,-55
844: -19,-55
- 845: -18,-55
- node:
color: '#52B4E996'
id: CheckerNESW
@@ -2210,8 +2264,6 @@ entities:
713: -32,-30
714: -31,-19
- node:
- cleanable: True
- zIndex: 1
color: '#FFFFFFFF'
id: Dirt
decals:
@@ -2228,6 +2280,19 @@ entities:
6708: -71,-37
6709: -70,-36
6710: -68,-36
+ 7549: -99,-1
+ 7550: -98,-2
+ 7551: -97,-1
+ 7552: -98,0
+ 7553: -99,1
+ 7554: -100,1
+ 7555: -98,2
+ 7556: -97,1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
5206: -56,-54
5207: -55,-55
5208: -55,-54
@@ -2290,8 +2355,6 @@ entities:
7242: -21,19
7243: -22,20
- node:
- cleanable: True
- zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
@@ -2304,6 +2367,11 @@ entities:
6083: -21,5
6084: -21,4
6085: -22,4
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
329: -54,-11
330: -50,-11
1572: -65,-34
@@ -2313,32 +2381,22 @@ entities:
1576: -65,-36
1577: -66,-35
1578: -64,-35
- 3382: -101,-33
3383: -100,-33
3384: -99,-33
3385: -99,-32
- 3386: -101,-32
3387: -100,-32
- 3388: -101,-31
3389: -99,-31
- 3390: -101,-31
3391: -100,-31
3392: -99,-29
3393: -100,-29
- 3394: -101,-29
- 3395: -101,-28
3396: -100,-28
3397: -99,-28
3398: -99,-27
3399: -100,-27
- 3400: -101,-27
- 3401: -101,-25
3402: -100,-25
3403: -99,-25
3404: -99,-24
3405: -100,-24
- 3406: -101,-24
- 3407: -101,-23
3408: -100,-23
3409: -99,-23
4048: -97,-21
@@ -2359,14 +2417,11 @@ entities:
4063: -98,-18
- node:
cleanable: True
- zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
1579: -66,-34
- node:
- cleanable: True
- zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
@@ -2386,6 +2441,11 @@ entities:
6713: -71,-32
6714: -71,-31
6715: -71,-30
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
1580: -64,-33
1581: -65,-33
1582: -64,-32
@@ -2482,8 +2542,6 @@ entities:
6921: -153,-44
6922: -145,-45
- node:
- cleanable: True
- zIndex: 1
color: '#FFFFFFFF'
id: DirtMedium
decals:
@@ -2574,7 +2632,6 @@ entities:
7149: -94,33
7150: -95,33
7151: -96,33
- 7152: -96,34
7153: -95,34
7154: -94,34
7155: -93,34
@@ -2585,7 +2642,6 @@ entities:
7160: -93,35
7161: -94,35
7162: -95,35
- 7163: -96,35
7164: -97,33
7165: -97,32
7166: -98,32
@@ -2646,6 +2702,16 @@ entities:
7221: -121,34
7222: -122,34
7223: -122,33
+ 7544: -96,-2
+ 7545: -95,-1
+ 7546: -94,-2
+ 7547: -96,-1
+ 7548: -107,-1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
331: -54,-10
332: -51,-10
333: -52,-10
@@ -2653,7 +2719,6 @@ entities:
335: -50,-10
1518: -59,-22
1519: -59,-25
- 1520: -63,-23
1521: -65,-25
1522: -65,-24
1523: -65,-23
@@ -2661,21 +2726,16 @@ entities:
1525: -59,-26
1526: -59,-25
1527: -58,-24
- 1528: -60,-26
1529: -65,-26
1530: -65,-27
1531: -65,-28
- 1532: -64,-29
1533: -66,-27
1534: -66,-29
1535: -59,-28
- 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
@@ -2863,7 +2923,6 @@ entities:
3208: -121,-5
3209: -118,-6
3210: -119,-6
- 3211: -119,-5
3212: -118,-5
3213: -119,-4
3214: -122,-6
@@ -2999,26 +3058,6 @@ entities:
3358: -128,-22
3359: -128,-23
3360: -128,-24
- 3361: -113,-34
- 3362: -112,-34
- 3363: -111,-34
- 3364: -110,-34
- 3365: -110,-33
- 3366: -110,-32
- 3367: -110,-32
- 3368: -110,-31
- 3369: -110,-30
- 3370: -112,-30
- 3371: -111,-31
- 3372: -111,-30
- 3373: -111,-31
- 3374: -111,-33
- 3375: -111,-33
- 3376: -112,-33
- 3377: -113,-33
- 3378: -114,-33
- 3379: -115,-33
- 3380: -101,-33
3381: -100,-33
3410: -97,-23
3411: -97,-24
@@ -3081,53 +3120,11 @@ entities:
3468: -94,-35
3469: -96,-35
3470: -96,-36
- 3471: -94,-36
- 3472: -93,-36
3473: -92,-36
3474: -95,-35
3475: -94,-38
- 3476: -93,-38
- 3477: -91,-38
- 3478: -90,-38
- 3479: -89,-38
- 3480: -87,-38
- 3481: -87,-39
- 3482: -87,-39
- 3483: -90,-39
- 3484: -92,-39
3485: -94,-40
- 3486: -93,-40
- 3487: -91,-40
- 3488: -89,-40
- 3489: -87,-40
- 3490: -88,-39
- 3491: -89,-39
- 3492: -90,-39
- 3493: -91,-39
- 3494: -93,-39
- 3495: -84,-40
3496: -85,-40
- 3497: -85,-39
- 3498: -84,-39
- 3499: -83,-39
- 3500: -82,-39
- 3501: -81,-39
- 3502: -81,-40
- 3503: -82,-40
- 3504: -81,-38
- 3505: -82,-38
- 3506: -83,-38
- 3507: -84,-38
- 3508: -85,-38
- 3509: -85,-42
- 3510: -84,-42
- 3511: -83,-42
- 3512: -82,-42
- 3513: -81,-42
- 3514: -81,-43
- 3515: -82,-43
- 3516: -83,-43
- 3517: -84,-43
3518: -83,-45
3519: -84,-45
3520: -84,-46
@@ -3173,21 +3170,6 @@ entities:
3560: -93,-51
3561: -89,-50
3562: -89,-49
- 3563: -87,-50
- 3564: -88,-50
- 3565: -93,-42
- 3566: -92,-43
- 3567: -91,-43
- 3568: -91,-42
- 3569: -92,-42
- 3570: -93,-43
- 3571: -89,-43
- 3572: -88,-43
- 3573: -88,-43
- 3574: -87,-43
- 3575: -87,-42
- 3576: -88,-42
- 3577: -89,-42
3578: -101,-48
3579: -100,-48
3580: -100,-47
@@ -3199,29 +3181,16 @@ entities:
3586: -101,-45
3587: -101,-44
3588: -100,-44
- 3589: -95,-61
3591: -96,-62
3592: -96,-62
- 3609: -90,-62
- 3611: -91,-61
- 3612: -92,-61
- 3613: -74,-57
- 3614: -74,-57
3615: -72,-58
3616: -71,-57
3617: -70,-58
3618: -72,-57
- 3619: -73,-57
- 3620: -74,-58
- 3621: -74,-56
- 3622: -73,-56
- 3623: -73,-56
- 3624: -72,-56
3625: -70,-56
3626: -70,-56
3627: -70,-58
3628: -71,-58
- 3629: -74,-58
3630: -69,-57
3631: -69,-58
3632: -68,-58
@@ -3462,28 +3431,16 @@ entities:
3869: -54,-27
3870: -57,-31
3871: -57,-32
- 3872: -58,-33
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
3885: -66,-33
3886: -65,-29
- 3887: -64,-28
- 3888: -64,-27
3889: -64,-25
3890: -64,-24
- 3891: -63,-23
- 3892: -61,-23
- 3893: -61,-23
3894: -61,-24
3895: -63,-25
3896: -63,-25
@@ -4398,8 +4355,6 @@ entities:
4996: -22,-36
4997: -24,-36
4998: -24,-35
- 4999: -22,-35
- 5000: -22,-35
5001: -22,-40
5002: -22,-40
5003: -23,-41
@@ -4957,7 +4912,6 @@ entities:
5804: -5,-19
5805: -4,-19
5806: -3,-19
- 5807: -26,-63
5808: -33,-64
5820: -124,15
5821: -124,16
@@ -5041,9 +4995,6 @@ entities:
5899: -120,12
5900: -119,12
5901: -122,16
- 5939: -93,-61
- 5940: -93,-60
- 5941: -93,-59
6121: -70,-26
6122: -69,-26
6123: -68,-26
@@ -5190,6 +5141,173 @@ entities:
7250: -53,-20
7251: -52,-20
7252: -51,-21
+ 7400: -20,-55
+ 7401: -20,-54
+ 7402: -19,-54
+ 7405: -19,-53
+ 7406: -19,-51
+ 7407: -20,-50
+ 7408: -19,-49
+ 7410: -19,-50
+ 7411: -85,-47
+ 7412: -85,-46
+ 7413: -84,-46
+ 7414: -84,-47
+ 7415: -83,-47
+ 7416: -83,-46
+ 7417: -82,-47
+ 7418: -82,-46
+ 7419: -82,-45
+ 7420: -81,-45
+ 7421: -80,-45
+ 7422: -79,-45
+ 7423: -83,-48
+ 7424: -84,-48
+ 7425: -88,-49
+ 7426: -87,-49
+ 7427: -87,-50
+ 7428: -88,-50
+ 7429: -88,-51
+ 7430: -87,-51
+ 7431: -92,-48
+ 7432: -93,-43
+ 7433: -93,-42
+ 7434: -92,-42
+ 7435: -92,-43
+ 7436: -91,-43
+ 7437: -91,-42
+ 7438: -91,-40
+ 7439: -92,-40
+ 7440: -93,-40
+ 7441: -93,-39
+ 7442: -93,-39
+ 7443: -92,-39
+ 7444: -91,-39
+ 7445: -91,-38
+ 7447: -93,-38
+ 7448: -89,-39
+ 7449: -87,-39
+ 7450: -84,-39
+ 7451: -83,-39
+ 7452: -82,-39
+ 7453: -80,-39
+ 7454: -81,-39
+ 7455: -81,-38
+ 7456: -82,-38
+ 7457: -83,-38
+ 7458: -84,-38
+ 7459: -85,-38
+ 7460: -86,-38
+ 7461: -88,-38
+ 7462: -89,-38
+ 7463: -87,-38
+ 7464: -88,-39
+ 7465: -85,-39
+ 7466: -88,-41
+ 7467: -90,-41
+ 7468: -89,-41
+ 7469: -89,-42
+ 7470: -89,-43
+ 7471: -87,-43
+ 7472: -88,-42
+ 7473: -87,-41
+ 7474: -87,-42
+ 7475: -88,-43
+ 7476: -85,-43
+ 7477: -84,-43
+ 7478: -83,-43
+ 7479: -83,-42
+ 7480: -84,-42
+ 7481: -85,-42
+ 7482: -85,-41
+ 7483: -84,-41
+ 7484: -83,-41
+ 7485: -81,-41
+ 7486: -80,-41
+ 7487: -79,-41
+ 7488: -79,-42
+ 7489: -80,-42
+ 7490: -81,-42
+ 7491: -81,-43
+ 7492: -80,-43
+ 7493: -80,-43
+ 7494: -79,-43
+ 7570: -111,-33
+ 7571: -112,-33
+ 7572: -113,-33
+ 7573: -114,-33
+ 7574: -114,-34
+ 7575: -113,-34
+ 7576: -112,-34
+ 7577: -111,-34
+ 7578: -110,-34
+ 7579: -110,-33
+ 7580: -110,-32
+ 7581: -109,-32
+ 7582: -110,-31
+ 7583: -110,-30
+ 7584: -111,-30
+ 7585: -111,-31
+ 7586: -112,-31
+ 7587: -112,-30
+ 7588: -113,-30
+ 7589: -113,-31
+ 7590: -114,-31
+ 7591: -114,-30
+ 7592: -114,-32
+ 7593: -115,-32
+ 7594: -116,-32
+ 7595: -116,-31
+ 7596: -116,-33
+ 7682: -60,-34
+ 7683: -61,-34
+ 7684: -63,-33
+ 7685: -62,-33
+ 7686: -61,-33
+ 7687: -60,-33
+ 7688: -61,-32
+ 7689: -62,-32
+ 7690: -63,-32
+ 7691: -64,-32
+ 7692: -64,-31
+ 7693: -63,-31
+ 7694: -61,-31
+ 7695: -61,-30
+ 7696: -60,-30
+ 7697: -62,-30
+ 7698: -63,-30
+ 7699: -64,-30
+ 7703: -64,-25
+ 7704: -64,-24
+ 7705: -64,-23
+ 7706: -63,-23
+ 7707: -62,-23
+ 7708: -61,-23
+ 7709: -60,-23
+ 7710: -60,-26
+ 7714: -59,-27
+ 7715: -61,-26
+ 7716: -63,-26
+ 7717: -64,-26
+ 7718: -62,-26
+ 7719: -63,-23
+ 7720: -66,-24
+ 7721: -66,-23
+ 7722: -66,-25
+ 7723: -66,-26
+ 7724: -58,-26
+ 7725: -58,-25
+ 7726: -58,-28
+ 7727: -58,-29
+ 7728: -58,-31
+ 7729: -59,-31
+ 7730: -58,-30
+ 7731: -58,-32
+ 7732: -58,-33
+ 7733: -59,-33
+ 7734: -58,-34
+ 7864: -96,34
+ 7865: -96,35
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -5300,9 +5418,6 @@ entities:
430: -29,17
431: -27,17
439: -28,17
- 1260: -63,-23
- 1261: -62,-23
- 1263: -61,-23
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
@@ -5600,13 +5715,20 @@ entities:
color: '#8D1C9996'
id: QuarterTileOverlayGreyscale
decals:
- 6495: -96,35
6496: -95,35
6497: -94,35
6499: -95,30
6500: -94,30
6501: -93,30
6502: -92,30
+ 7862: -96,35
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 7559: -96,2
+ 7560: -95,2
+ 7561: -94,2
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale
@@ -5632,14 +5754,9 @@ entities:
2756: -127,-43
2757: -126,-43
2758: -125,-43
- - node:
- color: '#D4D4D496'
- id: QuarterTileOverlayGreyscale
- decals:
- 1264: -60,-23
- 1640: -113,-30
- 1641: -114,-30
- 1642: -115,-30
+ 7328: -110,-45
+ 7329: -109,-45
+ 7330: -108,-45
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
@@ -5670,18 +5787,13 @@ entities:
1794: -89,-30
1804: -81,-26
1805: -82,-26
- 1853: -93,-38
- 1854: -92,-38
- 1855: -91,-38
- 1856: -90,-38
- 1857: -89,-38
- 1858: -88,-38
- 1869: -87,-38
- 1870: -85,-38
- 1871: -84,-38
- 1872: -83,-38
- 1873: -82,-38
- 1874: -81,-38
+ 7516: -93,-38
+ 7517: -93,-39
+ 7518: -93,-40
+ 7747: -27,8
+ 7748: -26,8
+ 7749: -25,8
+ 7750: -24,8
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale
@@ -5768,6 +5880,18 @@ entities:
2763: -127,-49
2764: -126,-49
2765: -125,-49
+ 7332: -110,-47
+ 7333: -109,-47
+ 7334: -108,-47
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 7677: -58,-30
+ 7678: -58,-31
+ 7679: -58,-32
+ 7680: -58,-33
+ 7681: -58,-29
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
@@ -5786,10 +5910,7 @@ entities:
1738: -91,-33
1739: -91,-34
1740: -91,-35
- 1741: -91,-36
1742: -92,-36
- 1743: -93,-36
- 1744: -94,-36
1745: -95,-36
1746: -96,-36
1795: -89,-30
@@ -5797,13 +5918,13 @@ entities:
1798: -82,-30
1801: -81,-28
1803: -81,-26
- 1862: -87,-40
- 1863: -88,-40
- 1864: -89,-40
- 1865: -90,-40
- 1866: -91,-40
- 1867: -92,-40
- 1868: -93,-40
+ 7519: -91,-40
+ 7520: -91,-39
+ 7521: -91,-38
+ 7751: -27,4
+ 7752: -26,4
+ 7753: -25,4
+ 7754: -24,4
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale180
@@ -5882,9 +6003,6 @@ entities:
1216: -50,-25
1217: -50,-24
1218: -50,-23
- 1637: -115,-30
- 1638: -114,-30
- 1639: -113,-30
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale90
@@ -5894,19 +6012,22 @@ entities:
6510: -94,30
6511: -93,30
6512: -92,30
- 6521: -96,35
6522: -95,35
6523: -94,35
+ 7863: -96,35
- node:
color: '#D4D4D496'
id: QuarterTileOverlayGreyscale90
decals:
- 1265: -64,-23
+ 7562: -96,2
+ 7563: -95,2
+ 7564: -94,2
- node:
color: '#FFFFFFFF'
id: Remains
decals:
6341: -133,-36
+ 7861: -24.903984,-68.040665
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -5917,6 +6038,7 @@ entities:
6224: -120,29
6539: -44.46646,-73.98094
7057: -102.71358,-66.1344
+ 7370: -15,17
- node:
color: '#D3BA99FF'
id: SpaceStationSign1
@@ -5957,8 +6079,9 @@ entities:
color: '#FFFFFFFF'
id: StandClear
decals:
- 1685: -78,-57
- 7056: -96,-57
+ 7816: -112,-46
+ 7856: -96,-57
+ 7857: -76,-57
- node:
color: '#FFFFFFFF'
id: StandClear
@@ -5974,12 +6097,13 @@ entities:
1460: -59,-21
2021: -120,-14
2740: -39,-72
- 2792: -105,-37
- 2805: -104,-22
- 2806: -104,-1
2972: -35,-62
2973: -35,-69
5975: -26,-23
+ 7364: -96,-22
+ 7524: -92,-37
+ 7769: -115,-49
+ 7770: -115,-43
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -6042,8 +6166,8 @@ entities:
607: -33,-34
670: -23,-33
676: -18,-33
- 761: -22,-41
762: -22,-37
+ 7838: -22,-41
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale180
@@ -6098,7 +6222,7 @@ entities:
601: -33,-28
679: -18,-30
760: -22,-39
- 765: -22,-35
+ 7837: -22,-35
- node:
color: '#D381C996'
id: ThreeQuarterTileOverlayGreyscale90
@@ -6148,16 +6272,12 @@ entities:
2581: -123,-39
2654: -130,-38
6679: -119,-68
+ 7790: -112,-6
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
decals:
891: -46,-36
- - node:
- color: '#9FED5896'
- id: WarnCornerSmallGreyscaleNW
- decals:
- 1656: -112,-33
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNW
@@ -6191,6 +6311,8 @@ entities:
5992: -33,-7
6351: -150,-43
6735: -111,12
+ 7532: -116,-33
+ 7795: -110,-4
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -6211,6 +6333,7 @@ entities:
2959: -33,-70
2965: -33,-63
6350: -146,-43
+ 7531: -114,-33
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
@@ -6229,6 +6352,7 @@ entities:
2967: -37,-61
5993: -33,-5
6348: -150,-49
+ 7533: -116,-31
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -6248,6 +6372,7 @@ entities:
2960: -33,-68
2971: -33,-61
6349: -146,-49
+ 7534: -114,-31
- node:
color: '#FFFFFFFF'
id: WarnFull
@@ -6298,11 +6423,6 @@ entities:
963: -10,-20
997: -10,-21
1003: -10,-19
- 1675: -78,-56
- 1676: -78,-57
- 1677: -78,-58
- 1678: -75,-58
- 1679: -75,-56
1828: -82,-23
1829: -82,-22
2003: -107,-12
@@ -6342,9 +6462,23 @@ entities:
6738: -102,29
6739: -102,24
6740: -102,23
- 7053: -96,-58
- 7054: -96,-57
- 7055: -96,-56
+ 7530: -116,-32
+ 7794: -110,-3
+ 7801: -119,-7
+ 7802: -119,-6
+ 7803: -119,-4
+ 7804: -119,-3
+ 7813: -112,-47
+ 7814: -112,-46
+ 7815: -112,-45
+ 7842: -76,-58
+ 7843: -76,-57
+ 7844: -76,-56
+ 7845: -73,-58
+ 7846: -73,-56
+ 7853: -96,-58
+ 7854: -96,-57
+ 7855: -96,-56
- node:
color: '#D381C996'
id: WarnLineGreyscaleE
@@ -6364,9 +6498,9 @@ entities:
color: '#9FED5896'
id: WarnLineGreyscaleN
decals:
- 1653: -115,-33
- 1654: -114,-33
- 1655: -113,-33
+ 7565: -96,-1
+ 7566: -95,-1
+ 7567: -94,-1
- node:
color: '#D381C996'
id: WarnLineGreyscaleN
@@ -6401,13 +6535,6 @@ entities:
876: -43,-38
877: -44,-38
878: -45,-38
- - node:
- color: '#9FED5896'
- id: WarnLineGreyscaleW
- decals:
- 1650: -112,-32
- 1651: -112,-31
- 1652: -112,-30
- node:
color: '#D381C996'
id: WarnLineGreyscaleW
@@ -6508,15 +6635,8 @@ entities:
2661: -127,-38
2741: -39,-68
2748: -39,-74
- 2793: -106,-37
- 2794: -105,-37
2795: -104,-37
- 2802: -105,-22
- 2803: -104,-22
2804: -103,-22
- 2807: -105,-1
- 2808: -104,-1
- 2809: -103,-1
2956: -36,-68
2957: -35,-68
2958: -34,-68
@@ -6537,6 +6657,26 @@ entities:
6680: -118,-68
6741: -103,21
6742: -99,21
+ 7358: -97,-22
+ 7359: -96,-22
+ 7360: -95,-22
+ 7367: -105,-37
+ 7368: -104,-22
+ 7523: -92,-37
+ 7525: -93,-37
+ 7526: -91,-37
+ 7627: -104,-1
+ 7628: -103,-1
+ 7757: -116,-49
+ 7758: -115,-49
+ 7759: -114,-49
+ 7760: -116,-43
+ 7761: -115,-43
+ 7762: -114,-43
+ 7783: -108,-6
+ 7784: -109,-6
+ 7785: -110,-6
+ 7786: -111,-6
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -6590,11 +6730,6 @@ entities:
1206: -47,-22
1207: -47,-21
1208: -47,-20
- 1680: -78,-58
- 1681: -78,-57
- 1682: -78,-56
- 1683: -75,-58
- 1684: -75,-56
1830: -84,-23
1831: -84,-22
2000: -107,-10
@@ -6627,9 +6762,26 @@ entities:
6534: -98,35
6683: -119,-66
6684: -119,-67
- 7050: -96,-58
- 7051: -96,-57
- 7052: -96,-56
+ 7529: -114,-32
+ 7791: -112,-5
+ 7792: -112,-4
+ 7793: -112,-3
+ 7796: -121,-7
+ 7797: -121,-6
+ 7798: -121,-5
+ 7799: -121,-4
+ 7800: -121,-3
+ 7810: -112,-45
+ 7811: -112,-46
+ 7812: -112,-47
+ 7839: -76,-58
+ 7840: -76,-57
+ 7841: -76,-56
+ 7847: -73,-58
+ 7849: -73,-56
+ 7850: -96,-58
+ 7851: -96,-57
+ 7852: -96,-56
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -6714,15 +6866,8 @@ entities:
2622: -134,-46
2623: -135,-46
2749: -39,-76
- 2796: -106,-37
- 2797: -105,-37
2798: -104,-37
- 2799: -105,-22
- 2800: -104,-22
2801: -103,-22
- 2810: -105,-1
- 2811: -104,-1
- 2812: -103,-1
2953: -36,-70
2954: -34,-70
2955: -35,-70
@@ -6741,6 +6886,27 @@ entities:
6803: -104,15
6804: -103,15
6805: -99,15
+ 7361: -97,-22
+ 7362: -96,-22
+ 7363: -95,-22
+ 7366: -105,-37
+ 7369: -104,-22
+ 7522: -92,-37
+ 7527: -91,-37
+ 7528: -93,-37
+ 7629: -104,-1
+ 7630: -103,-1
+ 7763: -116,-43
+ 7764: -115,-43
+ 7765: -114,-43
+ 7766: -114,-49
+ 7767: -115,-49
+ 7768: -116,-49
+ 7788: -108,-4
+ 7789: -109,-4
+ 7807: -121,10
+ 7808: -120,10
+ 7809: -119,10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7152,45 +7318,52 @@ entities:
decals:
2915: -110,20
2920: -112,21
- 7265: -97,0
- 7276: -92,-62
+ 7610: -98,-5
- node:
color: '#FFFFFFFF'
id: grasssnowa2
decals:
2918: -108,20
+ 7597: -92,-64
+ 7600: -94,-63
+ 7602: -88,-61
+ 7607: -96,-10
- node:
color: '#FFFFFFFF'
id: grasssnowa3
decals:
2921: -112,22
- 7264: -99,-1
- node:
color: '#FFFFFFFF'
id: grasssnowb1
decals:
2919: -108,22
- 7277: -91,-62
- 7278: -94,-63
+ 7601: -89,-63
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnowb2
+ decals:
+ 7603: -88,-62
+ 7604: -99,-7
- node:
color: '#FFFFFFFF'
id: grasssnowb3
decals:
- 7273: -95,-62
+ 7609: -92,-8
- node:
color: '#FFFFFFFF'
id: grasssnowc1
decals:
- 7266: -99,-5
- 7275: -90,-64
+ 7605: -98,-9
- node:
color: '#FFFFFFFF'
id: grasssnowc3
decals:
2916: -111,22
2922: -110,21
- 7267: -99,-4
- 7274: -96,-64
+ 7599: -91,-63
+ 7606: -96,-8
+ 7608: -93,-10
- node:
cleanable: True
color: '#B02E26FF'
@@ -7205,6 +7378,11 @@ entities:
id: rune3
decals:
5965: -40,-47
+ - node:
+ color: '#B02E26FF'
+ id: splatter
+ decals:
+ 7771: -35.00467,-54.105
- type: GridAtmosphere
version: 2
data:
@@ -7256,6 +7434,8 @@ entities:
1: 3
-5,2:
1: 13098
+ -4,4:
+ 1: 1907
-3,0:
1: 13105
-3,1:
@@ -7413,46 +7593,38 @@ entities:
0: 8946
-36,6:
0: 61986
- -20,-20:
- 1: 12288
- -21,-20:
- 1: 63271
-20,-19:
- 1: 39822
+ 1: 52960
+ -21,-18:
+ 1: 57345
+ -21,-17:
+ 1: 238
-20,-18:
- 1: 36761
- -20,-17:
- 1: 34952
+ 1: 32768
-19,-19:
- 1: 65038
- -19,-18:
- 1: 28684
+ 1: 4880
-19,-17:
- 1: 40959
- -20,-16:
- 1: 34952
- -19,-20:
- 1: 11776
+ 1: 28384
-19,-16:
- 1: 29627
+ 1: 30719
+ -18,-17:
+ 1: 36848
-18,-20:
- 1: 52608
+ 1: 61164
-18,-19:
- 1: 56797
- -18,-17:
- 1: 65520
+ 1: 61166
+ -18,-18:
+ 1: 130
-18,-16:
1: 45235
- -18,-18:
- 1: 76
-17,-20:
- 1: 30512
+ 1: 13105
-17,-19:
- 1: 30583
- -17,-18:
- 1: 327
+ 1: 13107
-17,-17:
- 1: 24568
+ 1: 8184
+ -17,-18:
+ 1: 2
-17,-16:
1: 64764
-16,-17:
@@ -7569,17 +7741,17 @@ entities:
-10,-2:
1: 57309
-10,-5:
- 1: 32767
+ 1: 28671
-24,0:
- 1: 7
+ 1: 1911
-24,-1:
- 1: 65535
+ 1: 30464
-25,0:
- 1: 12
+ 1: 20479
-24,1:
1: 62207
-25,1:
- 1: 61694
+ 1: 61695
-24,2:
1: 65535
-25,2:
@@ -7599,7 +7771,7 @@ entities:
-23,4:
1: 65535
-23,0:
- 1: 34952
+ 1: 17476
-22,1:
1: 56575
-22,2:
@@ -7607,20 +7779,21 @@ entities:
-22,3:
1: 65357
-22,0:
- 2: 3822
+ 2: 238
+ 1: 3584
-22,4:
1: 65535
-22,-1:
2: 20479
-21,1:
1: 43263
- -21,0:
- 1: 36590
-21,2:
0: 8192
1: 8
-21,3:
0: 25122
+ -21,0:
+ 1: 36044
-21,-1:
1: 34952
2: 819
@@ -7745,23 +7918,23 @@ entities:
-25,-4:
1: 65532
-24,-3:
- 1: 3
+ 1: 65348
-25,-3:
- 1: 62
+ 1: 51254
-24,-2:
- 1: 63232
+ 1: 65535
-25,-2:
- 1: 60416
+ 1: 52462
-25,-1:
- 1: 61182
+ 1: 60928
-24,-5:
1: 11259
-23,-4:
1: 65522
-23,-3:
- 1: 32768
+ 1: 36864
-23,-2:
- 1: 136
+ 1: 409
2: 34816
-23,-1:
2: 2184
@@ -7772,58 +7945,62 @@ entities:
-22,-2:
2: 65280
1: 14
- -24,-16:
- 1: 36607
- -24,-17:
- 1: 65534
-24,-15:
- 1: 65416
- -25,-15:
1: 65280
+ -25,-15:
+ 1: 65296
-24,-14:
1: 57359
-25,-14:
1: 63
-24,-13:
1: 11186
+ -24,-16:
+ 1: 2252
-24,-12:
1: 43690
+ -24,-17:
+ 1: 52424
-23,-16:
- 1: 887
+ 1: 65535
-23,-15:
- 1: 65280
+ 1: 65348
-23,-14:
1: 61471
-23,-13:
1: 39856
-23,-17:
- 1: 30579
+ 1: 65535
-23,-12:
1: 65535
+ -22,-16:
+ 1: 4403
-22,-15:
- 1: 65480
+ 1: 65280
-22,-14:
1: 61455
-22,-13:
1: 65520
+ -22,-17:
+ 1: 13105
-22,-12:
1: 65535
- -22,-16:
- 1: 32768
- -21,-16:
- 1: 4096
-21,-15:
- 1: 65395
+ 1: 65280
-21,-14:
1: 61455
-21,-13:
1: 65520
-21,-12:
1: 65535
+ -21,-16:
+ 1: 1024
-20,-15:
- 1: 65416
+ 1: 65280
-20,-14:
- 1: 47247
+ 1: 61455
+ -20,-13:
+ 1: 48056
-12,-8:
1: 15
2: 30464
@@ -8037,11 +8214,11 @@ entities:
-14,-14:
1: 65466
-14,-17:
- 1: 65520
+ 1: 65392
-13,-17:
- 1: 65432
+ 1: 62208
-20,-9:
- 1: 61482
+ 1: 65030
-20,-8:
1: 3822
-21,-8:
@@ -8097,7 +8274,7 @@ entities:
-24,-8:
1: 65535
-24,-9:
- 1: 65535
+ 1: 65523
-25,-8:
1: 47295
-24,-7:
@@ -8119,7 +8296,7 @@ entities:
-23,-5:
1: 2995
-23,-9:
- 1: 49083
+ 1: 49081
-22,-8:
1: 65291
-22,-7:
@@ -8132,60 +8309,58 @@ entities:
1: 48059
-21,-9:
1: 65535
- -20,-13:
- 1: 43690
-20,-12:
- 1: 43690
+ 1: 48059
-19,-15:
- 1: 57109
+ 1: 32614
-19,-14:
- 1: 21791
+ 1: 26223
-19,-13:
- 1: 65521
+ 1: 26214
-19,-12:
- 1: 12561
+ 1: 26214
-18,-15:
1: 65443
-18,-14:
1: 48047
-18,-12:
- 1: 65534
+ 1: 61166
-18,-13:
1: 51200
-25,-12:
1: 65535
-24,-11:
- 1: 7042
+ 1: 39810
-25,-11:
1: 65295
-24,-10:
- 1: 7645
+ 1: 40413
-25,-10:
1: 8191
-25,-9:
1: 47291
-23,-11:
- 1: 7089
+ 1: 48049
-23,-10:
- 1: 8191
+ 1: 16307
-22,-11:
- 1: 39857
+ 1: 48049
-22,-10:
- 1: 3067
+ 1: 4081
-21,-11:
- 1: 57330
+ 1: 48049
-21,-10:
- 1: 4093
+ 1: 4081
-20,-11:
- 1: 43690
+ 1: 48057
-20,-10:
- 1: 43690
+ 1: 19929
-19,-11:
- 1: 39219
+ 1: 26214
-19,-10:
- 1: 4093
+ 1: 9958
-18,-11:
- 1: 65535
+ 1: 65262
-18,-10:
1: 61439
-8,1:
@@ -8378,7 +8553,7 @@ entities:
-28,-13:
1: 61152
-28,-12:
- 1: 65268
+ 1: 65012
-28,-17:
0: 63316
-27,-16:
@@ -8395,7 +8570,7 @@ entities:
-27,-12:
1: 65020
-26,-15:
- 1: 65329
+ 1: 65521
-26,-14:
1: 14335
-26,-13:
@@ -8403,7 +8578,7 @@ entities:
-26,-12:
1: 49083
-25,-16:
- 1: 256
+ 1: 32
-25,-13:
1: 32
-29,-12:
@@ -8417,27 +8592,29 @@ entities:
-28,-9:
1: 30464
-29,-9:
- 1: 60928
+ 1: 56320
-28,-8:
1: 10111
- -27,-9:
- 1: 65262
+ -28,-10:
+ 1: 16384
-27,-10:
- 1: 52940
+ 1: 36556
+ -27,-9:
+ 1: 61132
-27,-8:
- 1: 61183
+ 1: 61167
-27,-11:
1: 52428
-26,-11:
1: 64315
-26,-10:
- 1: 6555
+ 1: 7099
-26,-9:
- 1: 45977
+ 1: 29627
-26,-8:
- 1: 46011
+ 1: 30583
-29,-8:
- 1: 3822
+ 1: 3293
-28,-7:
1: 20735
-29,-7:
@@ -8457,15 +8634,15 @@ entities:
-27,-5:
1: 56776
-27,-6:
- 1: 35022
+ 1: 32974
-27,-4:
1: 56541
-26,-7:
- 1: 46011
+ 1: 30583
-26,-6:
- 1: 13243
+ 1: 29559
-26,-5:
- 1: 29491
+ 1: 30583
-26,-4:
1: 65535
-29,-4:
@@ -8487,17 +8664,17 @@ entities:
-27,-2:
1: 56728
-27,-1:
- 1: 39133
+ 1: 6365
-27,0:
1: 56797
-26,-3:
- 1: 65523
+ 1: 32755
-26,-2:
- 1: 13175
+ 1: 63351
-26,-1:
- 1: 13299
+ 1: 14199
-26,0:
- 1: 29491
+ 1: 30711
-28,0:
3: 21840
4: 8736
@@ -8595,7 +8772,8 @@ entities:
-32,-4:
1: 61695
-31,-7:
- 1: 45311
+ 1: 41215
+ 5: 4096
-31,-6:
1: 48123
-31,-5:
@@ -8607,7 +8785,7 @@ entities:
-31,-4:
1: 63931
-30,-8:
- 1: 13073
+ 1: 4505
-30,-7:
1: 45567
-30,-6:
@@ -8615,7 +8793,7 @@ entities:
-30,-5:
1: 64435
-30,-9:
- 1: 4369
+ 1: 37137
-30,-4:
1: 29627
-32,-3:
@@ -8664,12 +8842,12 @@ entities:
3: 49344
1: 4369
-32,2:
- 5: 16
- 6: 4096
+ 6: 16
+ 7: 4096
0: 17476
-33,2:
- 5: 192
- 6: 49152
+ 6: 192
+ 7: 49152
1: 4369
-32,3:
1: 29712
@@ -8711,7 +8889,8 @@ entities:
-25,7:
1: 20206
-24,8:
- 1: 65535
+ 8: 1
+ 1: 65534
-23,5:
1: 65535
-23,6:
@@ -8807,16 +8986,18 @@ entities:
-28,-19:
0: 17487
-28,-18:
- 0: 62532
+ 1: 61440
+ 0: 1092
-29,-18:
- 0: 50312
- 1: 12305
+ 1: 61457
+ 0: 1160
-29,-17:
0: 61836
-27,-19:
0: 34959
-27,-18:
- 0: 63624
+ 1: 61440
+ 0: 2184
-26,-19:
0: 15
-26,-17:
@@ -8863,12 +9044,12 @@ entities:
1: 58368
-23,-18:
1: 4
+ -22,-19:
+ 1: 34944
+ -22,-18:
+ 1: 8
-21,-19:
- 1: 26487
- -21,-17:
- 1: 16
- -21,-21:
- 1: 30544
+ 1: 13056
-36,0:
0: 48123
-36,-1:
@@ -8976,7 +9157,7 @@ entities:
-34,-9:
1: 58027
-34,-8:
- 1: 32768
+ 1: 34816
-33,-9:
1: 65038
-35,6:
@@ -9156,8 +9337,6 @@ entities:
1: 3
-5,6:
0: 12
- -4,4:
- 1: 16
-4,6:
0: 15
-3,6:
@@ -9228,13 +9407,7 @@ entities:
0,-2:
0: 17472
-16,-19:
- 1: 51200
- -16,-18:
- 1: 36044
- -15,-19:
- 1: 65280
- -15,-18:
- 1: 65535
+ 1: 1024
-15,-17:
1: 4080
-15,-20:
@@ -9242,16 +9415,22 @@ entities:
-15,-21:
1: 57344
0: 3584
+ -15,-18:
+ 1: 3276
+ -15,-19:
+ 1: 34944
-14,-20:
1: 272
-14,-19:
- 1: 30464
+ 1: 65520
-14,-18:
- 1: 65535
+ 1: 4095
-14,-21:
0: 30464
+ -13,-19:
+ 1: 65392
-13,-18:
- 1: 34959
+ 1: 2047
-40,1:
0: 17604
-40,2:
@@ -9301,7 +9480,7 @@ entities:
-10,-19:
1: 30583
-10,-18:
- 1: 10759
+ 1: 2567
-9,-20:
1: 17472
0: 4
@@ -9544,6 +9723,21 @@ entities:
- 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.15
moles:
@@ -9574,22 +9768,44 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- type: BecomesStation
id: Plasma
+- proto: AccordionInstrument
+ entities:
+ - uid: 25884
+ components:
+ - type: Transform
+ pos: -25.511,-70.3345
+ parent: 2
- proto: AcousticGuitarInstrument
entities:
- - uid: 6841
+ - uid: 6489
components:
- type: Transform
- pos: -89.47948,-23.456642
+ pos: -89.45548,-46.474792
parent: 2
- - uid: 8987
+ - uid: 6841
components:
- type: Transform
- pos: -89.53047,-46.275448
+ pos: -89.47948,-23.456642
parent: 2
- uid: 24353
components:
@@ -9656,7 +9872,6 @@ entities:
- 972
- 24697
- 16816
- - 16201
- uid: 461
components:
- type: MetaData
@@ -9951,10 +10166,10 @@ entities:
- 12639
- 12624
- 12616
- - 12618
- - 12615
- - 12617
- - 12614
+ - 13762
+ - 13755
+ - 14689
+ - 13863
- 15360
- uid: 8954
components:
@@ -10037,19 +10252,6 @@ entities:
- 14353
- 14356
- 1782
- - uid: 9273
- components:
- - type: MetaData
- name: Southwest Hallway Air Alarm
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-54.5
- parent: 2
- - type: DeviceList
- devices:
- - 18203
- - 24719
- - 788
- uid: 9346
components:
- type: MetaData
@@ -10245,8 +10447,8 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 14854
- - 14853
+ - 17878
+ - 17791
- 23867
- 15365
- 14945
@@ -10273,6 +10475,23 @@ entities:
- 7046
- 15709
- 15855
+ - 21495
+ - 18200
+ - 1658
+ - 19471
+ - uid: 14263
+ components:
+ - type: MetaData
+ name: Tech Storage Air Alarm
+ - type: Transform
+ pos: -111.5,-28.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 20776
+ - 14272
+ - 4875
+ - 4280
- uid: 14861
components:
- type: MetaData
@@ -10545,7 +10764,7 @@ entities:
- 17855
- 17857
- 17858
- - 17853
+ - 17883
- uid: 18700
components:
- type: MetaData
@@ -10557,31 +10776,6 @@ entities:
- type: DeviceList
devices:
- 18718
- - uid: 18701
- components:
- - type: MetaData
- name: Permabrig Air Alarm
- - type: Transform
- pos: -89.5,-43.5
- parent: 2
- - type: DeviceList
- devices:
- - 18717
- - 18716
- - 18715
- - 18714
- - 18166
- - uid: 18702
- components:
- - type: MetaData
- name: Permabrig Hallway Air Alarm
- - type: Transform
- pos: -89.5,-36.5
- parent: 2
- - type: DeviceList
- devices:
- - 18713
- - 18712
- uid: 18703
components:
- type: MetaData
@@ -10627,21 +10821,6 @@ entities:
- 17994
- 18707
- 17241
- - uid: 18723
- components:
- - type: MetaData
- name: Newsroom Air Alarm
- - type: Transform
- pos: -111.5,-28.5
- parent: 2
- - type: DeviceList
- devices:
- - 18725
- - 18201
- - 18200
- - 18724
- - 16206
- - 17865
- uid: 19277
components:
- type: MetaData
@@ -10753,6 +10932,11 @@ entities:
- type: DeviceList
devices:
- 19298
+ - uid: 19570
+ components:
+ - type: Transform
+ pos: -96.5,3.5
+ parent: 2
- uid: 19798
components:
- type: MetaData
@@ -10780,6 +10964,8 @@ entities:
- type: DeviceList
devices:
- 19804
+ - 10170
+ - 18879
- uid: 19806
components:
- type: MetaData
@@ -10878,6 +11064,10 @@ entities:
- 21467
- 21463
- 12746
+ - 18621
+ - 17492
+ - 431
+ - 507
- uid: 20318
components:
- type: MetaData
@@ -10918,6 +11108,50 @@ entities:
- 14633
- 7825
- 20079
+ - uid: 20503
+ components:
+ - type: MetaData
+ name: Permabrig Air Alarm
+ - type: Transform
+ pos: -85.5,-43.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 17883
+ - 9250
+ - 15021
+ - 24743
+ - 6501
+ - 6531
+ - 20418
+ - 7843
+ - 20808
+ - 18166
+ - 18717
+ - 18711
+ - 6502
+ - 18613
+ - 6512
+ - 20505
+ - 6514
+ - 20828
+ - 16400
+ - 20826
+ - uid: 20831
+ components:
+ - type: MetaData
+ name: Permabrig Hallway Air Alarm
+ - type: Transform
+ pos: -87.5,-36.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 21006
+ - 20434
+ - 20507
+ - 16391
+ - 20414
+ - 766
- uid: 20948
components:
- type: MetaData
@@ -10991,6 +11225,19 @@ entities:
devices:
- 19571
- 19790
+ - uid: 23457
+ components:
+ - type: MetaData
+ name: South Hallway Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-54.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 788
+ - 23519
+ - 20779
- uid: 23681
components:
- type: MetaData
@@ -11211,6 +11458,11 @@ entities:
- type: Transform
pos: -33.5,-63.5
parent: 2
+ - uid: 3946
+ components:
+ - type: Transform
+ pos: -70.5,-62.5
+ parent: 2
- uid: 5709
components:
- type: Transform
@@ -11261,16 +11513,6 @@ entities:
- type: Transform
pos: -115.5,14.5
parent: 2
- - uid: 17126
- components:
- - type: Transform
- pos: -71.5,-62.5
- parent: 2
- - uid: 17127
- components:
- - type: Transform
- pos: -70.5,-62.5
- parent: 2
- uid: 20035
components:
- type: Transform
@@ -11296,16 +11538,6 @@ entities:
- type: Transform
pos: -20.5,-15.5
parent: 2
- - uid: 21003
- components:
- - type: Transform
- pos: -94.5,-11.5
- parent: 2
- - uid: 21422
- components:
- - type: Transform
- pos: -108.5,-40.5
- parent: 2
- uid: 21739
components:
- type: Transform
@@ -11496,6 +11728,12 @@ entities:
parent: 2
- proto: AirlockBrigGlassLocked
entities:
+ - uid: 385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-20.5
+ parent: 2
- uid: 1891
components:
- type: Transform
@@ -11516,24 +11754,11 @@ entities:
- DoorStatus: Close
386:
- DoorStatus: Close
- - uid: 1946
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-20.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 4
- - type: DeviceLinkSource
- linkedPorts:
- 386:
- - DoorStatus: Close
- 387:
- - DoorStatus: Close
- - uid: 6887
+ - uid: 9038
components:
- type: Transform
- pos: -91.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-35.5
parent: 2
- proto: AirlockCaptainLocked
entities:
@@ -11636,11 +11861,6 @@ entities:
parent: 2
- proto: AirlockCommand
entities:
- - uid: 7468
- components:
- - type: Transform
- pos: -38.5,-68.5
- parent: 2
- uid: 16630
components:
- type: Transform
@@ -11926,6 +12146,12 @@ entities:
- type: Transform
pos: -27.5,-56.5
parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,3.5
+ parent: 2
- uid: 658
components:
- type: Transform
@@ -11941,11 +12167,6 @@ entities:
- type: Transform
pos: -135.5,-10.5
parent: 2
- - uid: 2381
- components:
- - type: Transform
- pos: -88.5,3.5
- parent: 2
- uid: 4394
components:
- type: Transform
@@ -11982,6 +12203,12 @@ entities:
- type: Transform
pos: -135.5,0.5
parent: 2
+ - uid: 18611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-31.5
+ parent: 2
- uid: 21305
components:
- type: Transform
@@ -12000,13 +12227,6 @@ entities:
linkedPorts:
7384:
- DoorStatus: DoorBolt
- - uid: 17236
- components:
- - type: Transform
- pos: -82.5,-78.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- uid: 18032
components:
- type: Transform
@@ -12035,7 +12255,11 @@ entities:
pos: -36.5,19.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8648:
+ - DoorStatus: DoorBolt
- uid: 332
components:
- type: Transform
@@ -12043,7 +12267,11 @@ entities:
pos: -36.5,12.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8647:
+ - DoorStatus: DoorBolt
- uid: 1771
components:
- type: Transform
@@ -12056,44 +12284,28 @@ entities:
linkedPorts:
23005:
- DoorStatus: DoorBolt
- - uid: 7659
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,-44.5
- parent: 2
- - uid: 7660
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,-46.5
- parent: 2
- - uid: 7661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-44.5
- parent: 2
- - uid: 7662
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-46.5
- parent: 2
- uid: 8300
components:
- type: Transform
pos: -1.5,-16.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8719:
+ - DoorStatus: DoorBolt
- uid: 8301
components:
- type: Transform
pos: -1.5,-10.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8721:
+ - DoorStatus: DoorBolt
- uid: 8713
components:
- type: Transform
@@ -12101,7 +12313,13 @@ entities:
pos: -6.5,-36.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8742:
+ - DoorStatus: DoorBolt
+ 8741:
+ - DoorStatus: DoorBolt
- uid: 9280
components:
- type: Transform
@@ -12109,7 +12327,13 @@ entities:
pos: -29.5,22.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8653:
+ - DoorStatus: DoorBolt
+ 8652:
+ - DoorStatus: DoorBolt
- uid: 10081
components:
- type: Transform
@@ -12165,7 +12389,11 @@ entities:
pos: -1.5,-18.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8718:
+ - DoorStatus: DoorBolt
- uid: 10565
components:
- type: Transform
@@ -12173,7 +12401,11 @@ entities:
pos: -83.5,18.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10563:
+ - DoorStatus: DoorBolt
- uid: 10566
components:
- type: Transform
@@ -12181,7 +12413,11 @@ entities:
pos: -83.5,20.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10564:
+ - DoorStatus: DoorBolt
- proto: AirlockExternalGlassCommandLocked
entities:
- uid: 1880
@@ -12190,7 +12426,11 @@ entities:
pos: -1.5,-8.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8722:
+ - DoorStatus: DoorBolt
- uid: 24574
components:
- type: Transform
@@ -12422,16 +12662,26 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,12.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26239:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8648
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -39.5,19.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16903:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- proto: AirlockExternalGlassShuttleEmergencyLocked
entities:
- uid: 8718
@@ -12440,32 +12690,52 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,-18.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8950:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8719
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-16.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13489:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8721
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-10.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26238:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8722
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 2.5,-8.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26237:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- proto: AirlockExternalGlassShuttleEscape
entities:
- uid: 5882
@@ -12512,20 +12782,6 @@ entities:
- DockStatus: InputB
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 16318
- components:
- - type: Transform
- pos: -81.5,-82.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 16324
- components:
- - type: Transform
- pos: -83.5,-82.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- proto: AirlockExternalLocked
entities:
- uid: 10184
@@ -12587,8 +12843,6 @@ entities:
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 1946:
- - DoorStatus: Close
1936:
- DoorStatus: Close
- uid: 387
@@ -12603,8 +12857,21 @@ entities:
linkedPorts:
1936:
- DoorStatus: Close
- 1946:
- - DoorStatus: Close
+ - uid: 460
+ components:
+ - type: Transform
+ pos: -106.5,-44.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: -106.5,-46.5
+ parent: 2
+ - uid: 808
+ components:
+ - type: Transform
+ pos: -102.5,-0.5
+ parent: 2
- uid: 3598
components:
- type: Transform
@@ -12642,45 +12909,51 @@ entities:
- type: Transform
pos: -23.5,-11.5
parent: 2
- - uid: 7020
+ - uid: 5609
components:
- type: Transform
- pos: -85.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -83.5,-43.5
parent: 2
- - uid: 8903
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6487
components:
- type: Transform
- pos: -82.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -87.5,-43.5
parent: 2
- - uid: 11356
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 6543
components:
- type: Transform
- pos: -22.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-43.5
parent: 2
- - uid: 13565
+ - uid: 6545
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -87.5,-43.5
+ pos: -79.5,-43.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 6732:
- - DoorStatus: DoorBolt
- - uid: 14491
+ - uid: 7122
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-43.5
+ pos: -95.5,-56.5
+ parent: 2
+ - uid: 11356
+ components:
+ - type: Transform
+ pos: -22.5,12.5
+ parent: 2
+ - uid: 13657
+ components:
+ - type: Transform
+ pos: -95.5,-55.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - type: DeviceLinkSource
- linkedPorts:
- 6728:
- - DoorStatus: DoorBolt
- uid: 14567
components:
- type: Transform
@@ -12704,23 +12977,39 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-17.5
parent: 2
- - uid: 16409
+ - uid: 16008
+ components:
+ - type: Transform
+ pos: -95.5,-57.5
+ parent: 2
+ - uid: 16517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-17.5
+ parent: 2
+ - uid: 16670
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,-55.5
+ pos: -104.5,-36.5
parent: 2
- - uid: 16410
+ - uid: 16692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-44.5
+ parent: 2
+ - uid: 17828
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,-57.5
+ pos: -103.5,-36.5
parent: 2
- - uid: 16517
+ - uid: 18277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-17.5
+ pos: -72.5,-55.5
parent: 2
- uid: 18729
components:
@@ -12800,58 +13089,33 @@ entities:
rot: 1.5707963267948966 rad
pos: -102.5,-21.5
parent: 2
- - uid: 18742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-21.5
- parent: 2
- uid: 18743
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -103.5,-21.5
parent: 2
- - uid: 18744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-0.5
- parent: 2
- uid: 18745
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -103.5,-0.5
parent: 2
- - uid: 18746
+ - uid: 21669
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -104.5,-0.5
- parent: 2
- - uid: 23631
- components:
- - type: Transform
- pos: -66.5,-19.5
- parent: 2
- - uid: 25882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-55.5
+ pos: -110.5,-46.5
parent: 2
- - uid: 25883
+ - uid: 22804
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-56.5
+ pos: -72.5,-57.5
parent: 2
- - uid: 25884
+ - uid: 23631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-57.5
+ pos: -66.5,-19.5
parent: 2
- proto: AirlockGlassShuttle
entities:
@@ -12861,48 +13125,78 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,26.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19502:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8653
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -28.5,26.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19503:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8741
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-37.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22372:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 8742
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-35.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22371:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 10563
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -81.5,18.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8961:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 10564
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -81.5,20.5
parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12421:
+ - DoorStatus: InputA
+ - DockStatus: InputB
- type: DeviceLinkSink
- invokeCounter: 1
+ invokeCounter: 2
- uid: 24212
components:
- type: Transform
@@ -12911,29 +13205,15 @@ entities:
parent: 2
- proto: AirlockHatchMaintenance
entities:
- - uid: 3340
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,-2.5
- parent: 2
- - uid: 5750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,-2.5
- parent: 2
- - uid: 6895
+ - uid: 9597
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-58.5
+ pos: -93.5,-10.5
parent: 2
- - uid: 9831
+ - uid: 16245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-60.5
+ pos: -89.5,-59.5
parent: 2
- proto: AirlockHeadOfPersonnelLocked
entities:
@@ -13074,6 +13354,12 @@ entities:
- type: Transform
pos: -81.5,-8.5
parent: 2
+ - uid: 16005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-28.5
+ parent: 2
- proto: AirlockMaintHOPLocked
entities:
- uid: 2912
@@ -13110,17 +13396,6 @@ entities:
parent: 2
- proto: AirlockMaintLocked
entities:
- - uid: 139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-59.5
- parent: 2
- - uid: 766
- components:
- - type: Transform
- pos: -76.5,-36.5
- parent: 2
- uid: 1581
components:
- type: Transform
@@ -13191,6 +13466,18 @@ entities:
- type: Transform
pos: -56.5,-41.5
parent: 2
+ - uid: 4257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-62.5
+ parent: 2
+ - uid: 4260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-62.5
+ parent: 2
- uid: 4391
components:
- type: Transform
@@ -13258,11 +13545,11 @@ entities:
- type: Transform
pos: -15.5,3.5
parent: 2
- - uid: 9391
+ - uid: 9317
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -74.5,-38.5
+ pos: -73.5,-64.5
parent: 2
- uid: 9534
components:
@@ -13349,6 +13636,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,22.5
parent: 2
+ - uid: 11168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-64.5
+ parent: 2
- uid: 11557
components:
- type: Transform
@@ -13384,25 +13677,22 @@ entities:
- type: Transform
pos: -15.5,-44.5
parent: 2
- - uid: 12924
+ - uid: 13760
components:
- type: Transform
- pos: -65.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-66.5
parent: 2
- uid: 14799
components:
- type: Transform
pos: -54.5,-55.5
parent: 2
- - uid: 16396
- components:
- - type: Transform
- pos: -76.5,-53.5
- parent: 2
- - uid: 16453
+ - uid: 16433
components:
- type: Transform
- pos: -74.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-65.5
parent: 2
- uid: 16474
components:
@@ -13449,6 +13739,12 @@ entities:
- type: Transform
pos: -15.5,-63.5
parent: 2
+ - uid: 18951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,4.5
+ parent: 2
- uid: 19338
components:
- type: Transform
@@ -13495,6 +13791,35 @@ entities:
- type: Transform
pos: -107.5,-57.5
parent: 2
+ - uid: 20530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-53.5
+ parent: 2
+ - uid: 20537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-53.5
+ parent: 2
+ - uid: 20539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-59.5
+ parent: 2
+ - uid: 20545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-59.5
+ parent: 2
+ - uid: 20770
+ components:
+ - type: Transform
+ pos: -72.5,-38.5
+ parent: 2
- uid: 21000
components:
- type: Transform
@@ -13523,17 +13848,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -109.5,23.5
parent: 2
- - uid: 22363
- components:
- - type: Transform
- pos: -16.5,-25.5
- parent: 2
- uid: 23205
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -23.5,0.5
parent: 2
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: -74.5,-36.5
+ parent: 2
- uid: 23362
components:
- type: Transform
@@ -13573,12 +13898,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-55.5
parent: 2
- - uid: 24157
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-62.5
- parent: 2
- uid: 24472
components:
- type: Transform
@@ -13591,12 +13910,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-10.5
parent: 2
- - uid: 24480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-59.5
- parent: 2
- uid: 24583
components:
- type: Transform
@@ -13635,12 +13948,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-10.5
parent: 2
- - uid: 24616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-53.5
- parent: 2
- uid: 24619
components:
- type: Transform
@@ -13652,12 +13959,6 @@ entities:
- type: Transform
pos: -125.5,23.5
parent: 2
- - uid: 24624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-62.5
- parent: 2
- uid: 24625
components:
- type: Transform
@@ -13688,6 +13989,16 @@ entities:
parent: 2
- proto: AirlockMaintMedLocked
entities:
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -16.5,-25.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 2
- uid: 1118
components:
- type: Transform
@@ -13743,17 +14054,14 @@ entities:
- DoorStatus: Close
- proto: AirlockMaintServiceLocked
entities:
- - uid: 11001
- components:
- - type: Transform
- pos: -16.5,-20.5
- parent: 2
- - uid: 15344
+ - uid: 1024
components:
- type: Transform
- pos: -110.5,-28.5
+ pos: -97.5,3.5
parent: 2
- - uid: 17861
+- proto: AirlockMaintTheatreLocked
+ entities:
+ - uid: 925
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -13761,36 +14069,11 @@ entities:
parent: 2
- proto: AirlockMedical
entities:
- - uid: 1119
- components:
- - type: Transform
- pos: -18.5,-33.5
- parent: 2
- uid: 4040
components:
- type: Transform
pos: -27.5,-37.5
parent: 2
- - uid: 4106
- components:
- - type: Transform
- pos: -20.5,-44.5
- parent: 2
- - uid: 4107
- components:
- - type: Transform
- pos: -18.5,-41.5
- parent: 2
- - uid: 4198
- components:
- - type: Transform
- pos: -18.5,-28.5
- parent: 2
- - uid: 9228
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 2
- proto: AirlockMedicalGlassLocked
entities:
- uid: 3967
@@ -13839,6 +14122,33 @@ entities:
- type: Transform
pos: -31.5,-29.5
parent: 2
+- proto: AirlockMedicalLocked
+ entities:
+ - uid: 926
+ components:
+ - type: Transform
+ pos: -18.5,-33.5
+ parent: 2
+ - uid: 930
+ components:
+ - type: Transform
+ pos: -20.5,-44.5
+ parent: 2
+ - uid: 935
+ components:
+ - type: Transform
+ pos: -18.5,-28.5
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -22.5,-19.5
+ parent: 2
+ - uid: 23449
+ components:
+ - type: Transform
+ pos: -18.5,-41.5
+ parent: 2
- proto: AirlockMedicalMorgueLocked
entities:
- uid: 401
@@ -14055,27 +14365,41 @@ entities:
rot: 1.5707963267948966 rad
pos: -89.5,-27.5
parent: 2
- - uid: 6728
+ - uid: 6596
components:
- type: Transform
- pos: -91.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -83.5,-39.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 14491:
+ 5609:
- DoorStatus: DoorBolt
- - uid: 6732
+ - uid: 6604
components:
- type: Transform
- pos: -87.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -87.5,-39.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 13565:
+ 6487:
+ - DoorStatus: DoorBolt
+ - uid: 6605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -79.5,-39.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6545:
- DoorStatus: DoorBolt
- uid: 8247
components:
@@ -14101,6 +14425,12 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,5.5
parent: 2
+ - uid: 17905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-37.5
+ parent: 2
- proto: AirlockSecurityLawyerLocked
entities:
- uid: 4905
@@ -14130,6 +14460,11 @@ entities:
- DoorStatus: Close
- proto: AirlockServiceLocked
entities:
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: -100.5,1.5
+ parent: 2
- uid: 3850
components:
- type: Transform
@@ -14140,11 +14475,6 @@ entities:
- type: Transform
pos: -22.5,20.5
parent: 2
- - uid: 16010
- components:
- - type: Transform
- pos: -108.5,-31.5
- parent: 2
- proto: AirlockTheatreLocked
entities:
- uid: 3369
@@ -14205,7 +14535,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 9273
+ - 23457
- uid: 972
components:
- type: Transform
@@ -14285,6 +14615,14 @@ entities:
deviceLists:
- 19910
- 12768
+ - uid: 14272
+ components:
+ - type: Transform
+ pos: -111.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 14263
- uid: 14358
components:
- type: Transform
@@ -14303,6 +14641,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25886
+ - 17420
- uid: 14633
components:
- type: Transform
@@ -14410,6 +14749,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 24300
- uid: 15366
components:
- type: Transform
@@ -14443,6 +14783,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 15415
+ - 24309
- uid: 17180
components:
- type: Transform
@@ -14481,46 +14822,6 @@ entities:
- type: Transform
pos: -93.5,-30.5
parent: 2
- - uid: 18712
- components:
- - type: Transform
- pos: -89.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18702
- - uid: 18713
- components:
- - type: Transform
- pos: -82.5,-38.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18702
- - uid: 18714
- components:
- - type: Transform
- pos: -92.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18701
- - uid: 18715
- components:
- - type: Transform
- pos: -88.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18701
- - uid: 18716
- components:
- - type: Transform
- pos: -87.5,-46.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18701
- uid: 18717
components:
- type: Transform
@@ -14528,7 +14829,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18701
+ - 20503
- uid: 18718
components:
- type: Transform
@@ -14569,22 +14870,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 18704
- - uid: 18724
- components:
- - type: Transform
- pos: -113.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18723
- - uid: 18725
- components:
- - type: Transform
- pos: -110.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18723
- uid: 19285
components:
- type: Transform
@@ -14757,6 +15042,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25886
+ - 17420
- uid: 20371
components:
- type: Transform
@@ -14766,6 +15052,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 20373
components:
- type: Transform
@@ -14775,6 +15062,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20318
+ - 24312
- uid: 20376
components:
- type: Transform
@@ -14805,6 +15093,31 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
+ - uid: 20414
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20831
+ - uid: 20418
+ components:
+ - type: Transform
+ pos: -87.5,-45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - uid: 20434
+ components:
+ - type: Transform
+ pos: -83.5,-37.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20831
- uid: 20472
components:
- type: Transform
@@ -14813,6 +15126,14 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21473
+ - uid: 20776
+ components:
+ - type: Transform
+ pos: -116.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 14263
- uid: 22171
components:
- type: Transform
@@ -14994,6 +15315,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
+ - 20503
+ - 16688
- uid: 25263
components:
- type: Transform
@@ -15091,6 +15414,13 @@ entities:
- type: DeviceNetwork
deviceLists:
- 8072
+- proto: AlertsComputerCircuitboard
+ entities:
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: -116.34815,-32.425922
+ parent: 2
- proto: AltarChaos
entities:
- uid: 15414
@@ -15107,10 +15437,10 @@ entities:
parent: 2
- proto: AltarToolbox
entities:
- - uid: 16714
+ - uid: 22965
components:
- type: Transform
- pos: -67.5,-72.5
+ pos: -68.5,-73.5
parent: 2
- proto: AlwaysPoweredLightExterior
entities:
@@ -15252,13 +15582,19 @@ entities:
rot: -1.5707963267948966 rad
pos: -116.5,-6.5
parent: 2
- - uid: 973
+ - uid: 1082
components:
- type: MetaData
- name: Southwest Maintenance APC
+ name: Permabrig APC
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-54.5
+ pos: -86.5,-36.5
+ parent: 2
+ - uid: 2083
+ components:
+ - type: MetaData
+ name: Tech Storage APC
+ - type: Transform
+ pos: -108.5,-30.5
parent: 2
- uid: 3069
components:
@@ -15308,6 +15644,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-26.5
parent: 2
+ - uid: 3812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-58.5
+ parent: 2
- uid: 4211
components:
- type: MetaData
@@ -15373,14 +15715,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-4.5
parent: 2
- - uid: 5393
- components:
- - type: MetaData
- name: 'Plasma Pit #045'
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,-1.5
- parent: 2
- uid: 5836
components:
- type: MetaData
@@ -15551,6 +15885,13 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,-22.5
parent: 2
+ - uid: 13591
+ components:
+ - type: MetaData
+ name: 'Plasma Pit #046 APC'
+ - type: Transform
+ pos: -88.5,-59.5
+ parent: 2
- uid: 13608
components:
- type: MetaData
@@ -15598,6 +15939,14 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,-39.5
parent: 2
+ - uid: 14753
+ components:
+ - type: MetaData
+ name: South Hallway APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-54.5
+ parent: 2
- uid: 15262
components:
- type: MetaData
@@ -15621,14 +15970,6 @@ entities:
- type: Transform
pos: -99.5,23.5
parent: 2
- - uid: 17134
- components:
- - type: MetaData
- name: Dorms APC
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-58.5
- parent: 2
- uid: 18385
components:
- type: MetaData
@@ -15652,13 +15993,6 @@ entities:
rot: 3.141592653589793 rad
pos: -85.5,-30.5
parent: 2
- - uid: 18404
- components:
- - type: MetaData
- name: Permabrig APC
- - type: Transform
- pos: -88.5,-36.5
- parent: 2
- uid: 18405
components:
- type: MetaData
@@ -15806,41 +16140,40 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,-10.5
parent: 2
- - uid: 22493
+ - uid: 22712
components:
- type: MetaData
- name: Newsroom APC
+ name: Theatre APC
- type: Transform
- pos: -109.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-36.5
parent: 2
- - uid: 22703
+ - uid: 23178
components:
- type: MetaData
- name: Northwest Maintenance APC
+ name: 'Plasma Pit #045 APC'
- type: Transform
- pos: -106.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-10.5
parent: 2
- - uid: 22712
+ - uid: 23212
components:
- - type: MetaData
- name: Theatre APC
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-36.5
+ pos: -98.5,3.5
parent: 2
- - uid: 24078
+ - uid: 23671
components:
- type: MetaData
- name: Surgery APC
+ name: RAGE CAGE APC
- type: Transform
- pos: -17.5,-33.5
+ pos: -57.5,-68.5
parent: 2
- - uid: 24477
+ - uid: 24078
components:
- type: MetaData
- name: 'Plasma Pit #046 APC'
+ name: Surgery APC
- type: Transform
- pos: -91.5,-60.5
+ pos: -17.5,-33.5
parent: 2
- uid: 25110
components:
@@ -15880,6 +16213,13 @@ entities:
rot: 3.141592653589793 rad
pos: -137.5,-28.5
parent: 2
+ - uid: 25910
+ components:
+ - type: MetaData
+ name: Northwest Maintenance APC
+ - type: Transform
+ pos: -117.5,26.5
+ parent: 2
- uid: 25949
components:
- type: MetaData
@@ -15953,17 +16293,17 @@ entities:
- uid: 5619
components:
- type: Transform
- pos: -25.143217,-62.774654
+ pos: -26.532116,-63.969265
parent: 2
- uid: 6032
components:
- type: Transform
- pos: -24.486967,-66.39966
+ pos: -25.528984,-62.44691
parent: 2
- uid: 16884
components:
- type: Transform
- pos: -24.471342,-68.54028
+ pos: -25.560234,-68.571915
parent: 2
- uid: 16888
components:
@@ -16021,21 +16361,6 @@ entities:
- type: Transform
pos: -45.5,-11.5
parent: 2
- - uid: 290
- components:
- - type: Transform
- pos: -113.5,34.5
- parent: 2
- - uid: 300
- components:
- - type: Transform
- pos: -109.5,37.5
- parent: 2
- - uid: 307
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 2
- uid: 336
components:
- type: Transform
@@ -16081,11 +16406,6 @@ entities:
- type: Transform
pos: -71.5,3.5
parent: 2
- - uid: 369
- components:
- - type: Transform
- pos: -90.5,-6.5
- parent: 2
- uid: 370
components:
- type: Transform
@@ -16096,11 +16416,6 @@ entities:
- type: Transform
pos: -90.5,-9.5
parent: 2
- - uid: 372
- components:
- - type: Transform
- pos: -94.5,-7.5
- parent: 2
- uid: 373
components:
- type: Transform
@@ -16111,31 +16426,21 @@ entities:
- type: Transform
pos: -117.5,38.5
parent: 2
- - uid: 400
- components:
- - type: Transform
- pos: -114.5,38.5
- parent: 2
- - uid: 420
+ - uid: 384
components:
- type: Transform
- pos: -92.5,2.5
+ pos: -100.5,-5.5
parent: 2
- - uid: 431
+ - uid: 400
components:
- type: Transform
- pos: -97.5,-50.5
+ pos: -114.5,38.5
parent: 2
- uid: 524
components:
- type: Transform
pos: -108.5,34.5
parent: 2
- - uid: 529
- components:
- - type: Transform
- pos: -94.5,-9.5
- parent: 2
- uid: 530
components:
- type: Transform
@@ -16146,11 +16451,6 @@ entities:
- type: Transform
pos: -122.5,-29.5
parent: 2
- - uid: 672
- components:
- - type: Transform
- pos: -94.5,-59.5
- parent: 2
- uid: 695
components:
- type: Transform
@@ -16194,7 +16494,7 @@ entities:
- uid: 733
components:
- type: Transform
- pos: -116.5,-32.5
+ pos: -78.5,-76.5
parent: 2
- uid: 735
components:
@@ -16206,20 +16506,10 @@ entities:
- type: Transform
pos: -8.5,-43.5
parent: 2
- - uid: 764
- components:
- - type: Transform
- pos: -91.5,-6.5
- parent: 2
- - uid: 769
- components:
- - type: Transform
- pos: -50.5,-74.5
- parent: 2
- - uid: 777
+ - uid: 762
components:
- type: Transform
- pos: -91.5,1.5
+ pos: -82.5,-79.5
parent: 2
- uid: 784
components:
@@ -16231,25 +16521,15 @@ entities:
- type: Transform
pos: -107.5,-52.5
parent: 2
- - uid: 809
- components:
- - type: Transform
- pos: -99.5,1.5
- parent: 2
- - uid: 811
- components:
- - type: Transform
- pos: -99.5,-6.5
- parent: 2
- - uid: 815
+ - uid: 818
components:
- type: Transform
- pos: -91.5,-69.5
+ pos: -108.5,36.5
parent: 2
- - uid: 818
+ - uid: 819
components:
- type: Transform
- pos: -108.5,36.5
+ pos: -96.5,-58.5
parent: 2
- uid: 822
components:
@@ -16266,41 +16546,16 @@ entities:
- type: Transform
pos: -107.5,36.5
parent: 2
- - uid: 890
- components:
- - type: Transform
- pos: -109.5,36.5
- parent: 2
- uid: 895
components:
- type: Transform
pos: -107.5,35.5
parent: 2
- - uid: 898
- components:
- - type: Transform
- pos: -110.5,34.5
- parent: 2
- uid: 900
components:
- type: Transform
pos: -107.5,37.5
parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: -114.5,35.5
- parent: 2
- - uid: 913
- components:
- - type: Transform
- pos: -107.5,-33.5
- parent: 2
- - uid: 919
- components:
- - type: Transform
- pos: -107.5,-34.5
- parent: 2
- uid: 933
components:
- type: Transform
@@ -16336,11 +16591,6 @@ entities:
- type: Transform
pos: -109.5,33.5
parent: 2
- - uid: 986
- components:
- - type: Transform
- pos: -100.5,-61.5
- parent: 2
- uid: 987
components:
- type: Transform
@@ -16391,11 +16641,6 @@ entities:
- type: Transform
pos: -39.5,-11.5
parent: 2
- - uid: 1006
- components:
- - type: Transform
- pos: -38.5,-11.5
- parent: 2
- uid: 1007
components:
- type: Transform
@@ -16459,7 +16704,7 @@ entities:
- uid: 1092
components:
- type: Transform
- pos: -93.5,2.5
+ pos: -100.5,-8.5
parent: 2
- uid: 1096
components:
@@ -16496,11 +16741,6 @@ entities:
- type: Transform
pos: -8.5,-40.5
parent: 2
- - uid: 1120
- components:
- - type: Transform
- pos: -90.5,2.5
- parent: 2
- uid: 1131
components:
- type: Transform
@@ -16531,45 +16771,15 @@ entities:
- type: Transform
pos: -37.5,-11.5
parent: 2
- - uid: 1160
- components:
- - type: Transform
- pos: -94.5,2.5
- parent: 2
- uid: 1164
components:
- type: Transform
pos: -76.5,-19.5
parent: 2
- - uid: 1165
- components:
- - type: Transform
- pos: -90.5,1.5
- parent: 2
- uid: 1167
components:
- type: Transform
- pos: -92.5,-10.5
- parent: 2
- - uid: 1183
- components:
- - type: Transform
- pos: -92.5,-70.5
- parent: 2
- - uid: 1184
- components:
- - type: Transform
- pos: -102.5,-34.5
- parent: 2
- - uid: 1195
- components:
- - type: Transform
- pos: -91.5,2.5
- parent: 2
- - uid: 1206
- components:
- - type: Transform
- pos: -92.5,-71.5
+ pos: -98.5,-5.5
parent: 2
- uid: 1276
components:
@@ -16586,21 +16796,6 @@ entities:
- type: Transform
pos: -108.5,35.5
parent: 2
- - uid: 1315
- components:
- - type: Transform
- pos: -100.5,-63.5
- parent: 2
- - uid: 1323
- components:
- - type: Transform
- pos: -101.5,-63.5
- parent: 2
- - uid: 1326
- components:
- - type: Transform
- pos: -98.5,-64.5
- parent: 2
- uid: 1356
components:
- type: Transform
@@ -16636,16 +16831,6 @@ entities:
- type: Transform
pos: -75.5,4.5
parent: 2
- - uid: 1399
- components:
- - type: Transform
- pos: -91.5,-7.5
- parent: 2
- - uid: 1402
- components:
- - type: Transform
- pos: -91.5,-8.5
- parent: 2
- uid: 1404
components:
- type: Transform
@@ -16661,11 +16846,6 @@ entities:
- type: Transform
pos: -97.5,-9.5
parent: 2
- - uid: 1422
- components:
- - type: Transform
- pos: -97.5,-8.5
- parent: 2
- uid: 1472
components:
- type: Transform
@@ -16676,11 +16856,6 @@ entities:
- type: Transform
pos: -91.5,-9.5
parent: 2
- - uid: 1487
- components:
- - type: Transform
- pos: -18.5,-57.5
- parent: 2
- uid: 1488
components:
- type: Transform
@@ -16694,12 +16869,7 @@ entities:
- uid: 1497
components:
- type: Transform
- pos: -96.5,-9.5
- parent: 2
- - uid: 1498
- components:
- - type: Transform
- pos: -100.5,-62.5
+ pos: -97.5,-59.5
parent: 2
- uid: 1499
components:
@@ -16726,35 +16896,15 @@ entities:
- type: Transform
pos: -57.5,-50.5
parent: 2
- - uid: 1510
- components:
- - type: Transform
- pos: -99.5,-60.5
- parent: 2
- uid: 1518
components:
- type: Transform
pos: -97.5,-10.5
parent: 2
- - uid: 1519
- components:
- - type: Transform
- pos: -95.5,-7.5
- parent: 2
- uid: 1520
components:
- type: Transform
- pos: -100.5,-58.5
- parent: 2
- - uid: 1522
- components:
- - type: Transform
- pos: -93.5,-9.5
- parent: 2
- - uid: 1529
- components:
- - type: Transform
- pos: -98.5,-58.5
+ pos: -101.5,-62.5
parent: 2
- uid: 1535
components:
@@ -16784,22 +16934,17 @@ entities:
- uid: 1545
components:
- type: Transform
- pos: -97.5,-58.5
+ pos: -100.5,-61.5
parent: 2
- uid: 1546
components:
- type: Transform
- pos: -102.5,-37.5
+ pos: -94.5,-3.5
parent: 2
- uid: 1547
components:
- type: Transform
- pos: -102.5,-38.5
- parent: 2
- - uid: 1548
- components:
- - type: Transform
- pos: -97.5,-51.5
+ pos: -99.5,-59.5
parent: 2
- uid: 1550
components:
@@ -16811,16 +16956,6 @@ entities:
- type: Transform
pos: -96.5,-49.5
parent: 2
- - uid: 1553
- components:
- - type: Transform
- pos: -97.5,-49.5
- parent: 2
- - uid: 1554
- components:
- - type: Transform
- pos: -98.5,-59.5
- parent: 2
- uid: 1555
components:
- type: Transform
@@ -16841,30 +16976,20 @@ entities:
- type: Transform
pos: -21.5,-15.5
parent: 2
- - uid: 1563
- components:
- - type: Transform
- pos: -102.5,-35.5
- parent: 2
- uid: 1564
components:
- type: Transform
- pos: -117.5,-28.5
+ pos: -100.5,-60.5
parent: 2
- uid: 1571
components:
- type: Transform
pos: -19.5,-62.5
parent: 2
- - uid: 1585
- components:
- - type: Transform
- pos: -117.5,-29.5
- parent: 2
- uid: 1586
components:
- type: Transform
- pos: -116.5,-33.5
+ pos: -117.5,-28.5
parent: 2
- uid: 1587
components:
@@ -16876,21 +17001,11 @@ entities:
- type: Transform
pos: -97.5,-53.5
parent: 2
- - uid: 1590
- components:
- - type: Transform
- pos: -100.5,-59.5
- parent: 2
- uid: 1591
components:
- type: Transform
pos: -59.5,-80.5
parent: 2
- - uid: 1594
- components:
- - type: Transform
- pos: -97.5,-59.5
- parent: 2
- uid: 1597
components:
- type: Transform
@@ -16989,37 +17104,37 @@ entities:
- uid: 1645
components:
- type: Transform
- pos: -100.5,-60.5
+ pos: -101.5,-61.5
parent: 2
- - uid: 1657
+ - uid: 1652
components:
- type: Transform
- pos: -101.5,-61.5
+ pos: -100.5,-59.5
parent: 2
- - uid: 1660
+ - uid: 1655
components:
- type: Transform
- pos: -98.5,-61.5
+ pos: -101.5,-60.5
parent: 2
- - uid: 1675
+ - uid: 1696
components:
- type: Transform
- pos: -99.5,-64.5
+ pos: -92.5,-3.5
parent: 2
- uid: 1697
components:
- type: Transform
- pos: -48.5,-75.5
+ pos: -99.5,-60.5
parent: 2
- - uid: 1703
+ - uid: 1705
components:
- type: Transform
- pos: -98.5,-62.5
+ pos: -101.5,-59.5
parent: 2
- - uid: 1707
+ - uid: 1720
components:
- type: Transform
- pos: -62.5,-74.5
+ pos: -91.5,-4.5
parent: 2
- uid: 1742
components:
@@ -17031,16 +17146,6 @@ entities:
- type: Transform
pos: -100.5,-53.5
parent: 2
- - uid: 1748
- components:
- - type: Transform
- pos: -48.5,-73.5
- parent: 2
- - uid: 1750
- components:
- - type: Transform
- pos: -101.5,-60.5
- parent: 2
- uid: 1751
components:
- type: Transform
@@ -17049,12 +17154,12 @@ entities:
- uid: 1757
components:
- type: Transform
- pos: -99.5,-58.5
+ pos: -100.5,-6.5
parent: 2
- uid: 1775
components:
- type: Transform
- pos: -133.5,33.5
+ pos: -16.5,-49.5
parent: 2
- uid: 1789
components:
@@ -17064,12 +17169,7 @@ entities:
- uid: 1796
components:
- type: Transform
- pos: -49.5,-74.5
- parent: 2
- - uid: 1802
- components:
- - type: Transform
- pos: -98.5,-63.5
+ pos: -51.5,-76.5
parent: 2
- uid: 1812
components:
@@ -17081,46 +17181,21 @@ entities:
- type: Transform
pos: -123.5,-30.5
parent: 2
- - uid: 1817
- components:
- - type: Transform
- pos: -101.5,-19.5
- parent: 2
- uid: 1819
components:
- type: Transform
- pos: -93.5,-10.5
+ pos: -91.5,-3.5
parent: 2
- uid: 1824
components:
- type: Transform
- pos: -99.5,-59.5
- parent: 2
- - uid: 1833
- components:
- - type: Transform
- pos: -99.5,-62.5
+ pos: -93.5,-3.5
parent: 2
- uid: 1835
components:
- type: Transform
pos: -99.5,-15.5
parent: 2
- - uid: 1837
- components:
- - type: Transform
- pos: -108.5,-35.5
- parent: 2
- - uid: 1838
- components:
- - type: Transform
- pos: -110.5,-35.5
- parent: 2
- - uid: 1839
- components:
- - type: Transform
- pos: -109.5,-35.5
- parent: 2
- uid: 1841
components:
- type: Transform
@@ -17136,21 +17211,26 @@ entities:
- type: Transform
pos: -102.5,-49.5
parent: 2
- - uid: 1850
+ - uid: 1858
components:
- type: Transform
- pos: -98.5,-60.5
+ pos: -8.5,-45.5
parent: 2
- - uid: 1858
+ - uid: 1859
components:
- type: Transform
- pos: -8.5,-45.5
+ pos: -63.5,-74.5
parent: 2
- uid: 1862
components:
- type: Transform
pos: -106.5,-49.5
parent: 2
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: -49.5,-76.5
+ parent: 2
- uid: 1883
components:
- type: Transform
@@ -17164,7 +17244,7 @@ entities:
- uid: 1893
components:
- type: Transform
- pos: -101.5,-59.5
+ pos: -50.5,-76.5
parent: 2
- uid: 1896
components:
@@ -17176,30 +17256,15 @@ entities:
- type: Transform
pos: -108.5,-53.5
parent: 2
- - uid: 1945
- components:
- - type: Transform
- pos: -96.5,-68.5
- parent: 2
- uid: 1962
components:
- type: Transform
pos: -139.5,7.5
parent: 2
- - uid: 1973
- components:
- - type: Transform
- pos: -49.5,-75.5
- parent: 2
- uid: 1975
components:
- type: Transform
- pos: -72.5,-43.5
- parent: 2
- - uid: 1981
- components:
- - type: Transform
- pos: -99.5,-63.5
+ pos: -52.5,-76.5
parent: 2
- uid: 1992
components:
@@ -17221,6 +17286,11 @@ entities:
- type: Transform
pos: -99.5,-17.5
parent: 2
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: -62.5,-68.5
+ parent: 2
- uid: 2001
components:
- type: Transform
@@ -17241,11 +17311,6 @@ entities:
- type: Transform
pos: -99.5,-16.5
parent: 2
- - uid: 2015
- components:
- - type: Transform
- pos: -96.5,-7.5
- parent: 2
- uid: 2024
components:
- type: Transform
@@ -17271,11 +17336,6 @@ entities:
- type: Transform
pos: -85.5,-15.5
parent: 2
- - uid: 2043
- components:
- - type: Transform
- pos: -102.5,-63.5
- parent: 2
- uid: 2044
components:
- type: Transform
@@ -17301,75 +17361,30 @@ entities:
- type: Transform
pos: -105.5,-7.5
parent: 2
- - uid: 2058
- components:
- - type: Transform
- pos: -92.5,-8.5
- parent: 2
- - uid: 2059
- components:
- - type: Transform
- pos: -97.5,-7.5
- parent: 2
- uid: 2061
components:
- type: Transform
pos: -105.5,-1.5
parent: 2
- - uid: 2065
- components:
- - type: Transform
- pos: -101.5,-17.5
- parent: 2
- uid: 2066
components:
- type: Transform
pos: -100.5,-18.5
parent: 2
- - uid: 2100
- components:
- - type: Transform
- pos: -100.5,-5.5
- parent: 2
- - uid: 2127
- components:
- - type: Transform
- pos: -94.5,-8.5
- parent: 2
- uid: 2144
components:
- type: Transform
pos: -90.5,-7.5
parent: 2
- - uid: 2148
- components:
- - type: Transform
- pos: -96.5,-8.5
- parent: 2
- uid: 2149
components:
- type: Transform
- pos: -94.5,-10.5
- parent: 2
- - uid: 2152
- components:
- - type: Transform
- pos: -95.5,-9.5
- parent: 2
- - uid: 2153
- components:
- - type: Transform
- pos: -93.5,-11.5
- parent: 2
- - uid: 2155
- components:
- - type: Transform
- pos: -99.5,2.5
+ pos: -63.5,-75.5
parent: 2
- uid: 2162
components:
- type: Transform
- pos: -95.5,-8.5
+ pos: -48.5,-76.5
parent: 2
- uid: 2163
components:
@@ -17381,11 +17396,6 @@ entities:
- type: Transform
pos: -99.5,-7.5
parent: 2
- - uid: 2167
- components:
- - type: Transform
- pos: -101.5,-4.5
- parent: 2
- uid: 2207
components:
- type: Transform
@@ -17396,26 +17406,6 @@ entities:
- type: Transform
pos: -107.5,-54.5
parent: 2
- - uid: 2235
- components:
- - type: Transform
- pos: -100.5,-0.5
- parent: 2
- - uid: 2236
- components:
- - type: Transform
- pos: -100.5,0.5
- parent: 2
- - uid: 2242
- components:
- - type: Transform
- pos: -47.5,-76.5
- parent: 2
- - uid: 2246
- components:
- - type: Transform
- pos: -100.5,1.5
- parent: 2
- uid: 2257
components:
- type: Transform
@@ -17426,11 +17416,6 @@ entities:
- type: Transform
pos: -127.5,-30.5
parent: 2
- - uid: 2291
- components:
- - type: Transform
- pos: -100.5,-4.5
- parent: 2
- uid: 2293
components:
- type: Transform
@@ -17456,11 +17441,6 @@ entities:
- type: Transform
pos: -110.5,-59.5
parent: 2
- - uid: 2314
- components:
- - type: Transform
- pos: -55.5,-75.5
- parent: 2
- uid: 2316
components:
- type: Transform
@@ -17481,16 +17461,6 @@ entities:
- type: Transform
pos: -135.5,-22.5
parent: 2
- - uid: 2335
- components:
- - type: Transform
- pos: -73.5,-42.5
- parent: 2
- - uid: 2352
- components:
- - type: Transform
- pos: -74.5,-41.5
- parent: 2
- uid: 2357
components:
- type: Transform
@@ -17499,22 +17469,7 @@ entities:
- uid: 2362
components:
- type: Transform
- pos: -100.5,-6.5
- parent: 2
- - uid: 2368
- components:
- - type: Transform
- pos: -93.5,-7.5
- parent: 2
- - uid: 2371
- components:
- - type: Transform
- pos: -101.5,-5.5
- parent: 2
- - uid: 2382
- components:
- - type: Transform
- pos: -93.5,-8.5
+ pos: -93.5,-58.5
parent: 2
- uid: 2385
components:
@@ -17526,190 +17481,90 @@ entities:
- type: Transform
pos: -106.5,-58.5
parent: 2
- - uid: 2395
- components:
- - type: Transform
- pos: -135.5,31.5
- parent: 2
- uid: 2412
components:
- type: Transform
pos: -135.5,30.5
parent: 2
- - uid: 2415
- components:
- - type: Transform
- pos: -101.5,-18.5
- parent: 2
- - uid: 2418
- components:
- - type: Transform
- pos: -99.5,-65.5
- parent: 2
- - uid: 2423
- components:
- - type: Transform
- pos: -98.5,-7.5
- parent: 2
- uid: 2479
components:
- type: Transform
pos: -44.5,-78.5
parent: 2
- - uid: 2493
- components:
- - type: Transform
- pos: -98.5,-65.5
- parent: 2
- - uid: 2501
- components:
- - type: Transform
- pos: -62.5,-75.5
- parent: 2
- uid: 2502
components:
- type: Transform
pos: -105.5,-19.5
parent: 2
- - uid: 2504
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- uid: 2513
components:
- type: Transform
pos: -86.5,-15.5
parent: 2
- - uid: 2537
- components:
- - type: Transform
- pos: -101.5,-62.5
- parent: 2
- uid: 2538
components:
- type: Transform
pos: -91.5,-11.5
parent: 2
- - uid: 2544
- components:
- - type: Transform
- pos: -92.5,-7.5
- parent: 2
- uid: 2545
components:
- type: Transform
- pos: -48.5,-76.5
- parent: 2
- - uid: 2560
- components:
- - type: Transform
- pos: -49.5,-76.5
- parent: 2
- - uid: 2561
- components:
- - type: Transform
- pos: -49.5,-73.5
- parent: 2
- - uid: 2562
- components:
- - type: Transform
- pos: -51.5,-73.5
- parent: 2
- - uid: 2564
- components:
- - type: Transform
- pos: -50.5,-76.5
+ pos: -47.5,-67.5
parent: 2
- - uid: 2565
+ - uid: 2569
components:
- type: Transform
- pos: -50.5,-73.5
+ pos: -76.5,-65.5
parent: 2
- - uid: 2566
+ - uid: 2576
components:
- type: Transform
- pos: -50.5,-75.5
+ pos: -94.5,-68.5
parent: 2
- - uid: 2567
+ - uid: 2577
components:
- type: Transform
- pos: -51.5,-74.5
+ pos: -96.5,-68.5
parent: 2
- - uid: 2568
+ - uid: 2578
components:
- type: Transform
- pos: -52.5,-74.5
+ pos: -95.5,-68.5
parent: 2
- - uid: 2569
+ - uid: 2579
components:
- type: Transform
- pos: -98.5,2.5
+ pos: -92.5,-58.5
parent: 2
- - uid: 2570
+ - uid: 2585
components:
- type: Transform
- pos: -51.5,-75.5
+ pos: -100.5,-62.5
parent: 2
- - uid: 2577
+ - uid: 2603
components:
- type: Transform
- pos: -51.5,-76.5
+ pos: -90.5,-58.5
parent: 2
- - uid: 2604
+ - uid: 2605
components:
- type: Transform
- pos: -95.5,2.5
+ pos: -91.5,-58.5
parent: 2
- uid: 2611
components:
- type: Transform
- pos: -96.5,2.5
- parent: 2
- - uid: 2613
- components:
- - type: Transform
- pos: -97.5,2.5
+ pos: -111.5,-35.5
parent: 2
- uid: 2617
components:
- type: Transform
pos: -15.5,22.5
parent: 2
- - uid: 2621
- components:
- - type: Transform
- pos: -90.5,-0.5
- parent: 2
- - uid: 2622
- components:
- - type: Transform
- pos: -90.5,-1.5
- parent: 2
- - uid: 2623
- components:
- - type: Transform
- pos: -90.5,-2.5
- parent: 2
- - uid: 2624
- components:
- - type: Transform
- pos: -90.5,-3.5
- parent: 2
- - uid: 2625
- components:
- - type: Transform
- pos: -90.5,-4.5
- parent: 2
- uid: 2626
components:
- type: Transform
- pos: -90.5,-5.5
- parent: 2
- - uid: 2629
- components:
- - type: Transform
- pos: -52.5,-75.5
+ pos: -95.5,-3.5
parent: 2
- uid: 2639
components:
@@ -17721,15 +17576,20 @@ entities:
- type: Transform
pos: -100.5,-16.5
parent: 2
- - uid: 2652
+ - uid: 2653
components:
- type: Transform
- pos: -52.5,-73.5
+ pos: -80.5,-73.5
parent: 2
- uid: 2654
components:
- type: Transform
- pos: -90.5,0.5
+ pos: -80.5,-74.5
+ parent: 2
+ - uid: 2676
+ components:
+ - type: Transform
+ pos: -80.5,-75.5
parent: 2
- uid: 2720
components:
@@ -17751,11 +17611,6 @@ entities:
- type: Transform
pos: -15.5,10.5
parent: 2
- - uid: 2731
- components:
- - type: Transform
- pos: -16.5,11.5
- parent: 2
- uid: 2732
components:
- type: Transform
@@ -17789,17 +17644,37 @@ entities:
- uid: 3285
components:
- type: Transform
- pos: -116.5,-34.5
+ pos: -79.5,-77.5
parent: 2
- - uid: 3503
+ - uid: 3304
components:
- type: Transform
- pos: -76.5,-18.5
+ pos: -78.5,-77.5
parent: 2
- - uid: 3504
+ - uid: 3404
components:
- type: Transform
- pos: -62.5,-68.5
+ pos: -87.5,-58.5
+ parent: 2
+ - uid: 3424
+ components:
+ - type: Transform
+ pos: -88.5,-58.5
+ parent: 2
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: -94.5,-58.5
+ parent: 2
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: -94.5,-60.5
+ parent: 2
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: -76.5,-18.5
parent: 2
- uid: 3506
components:
@@ -17861,10 +17736,10 @@ entities:
- type: Transform
pos: -59.5,-50.5
parent: 2
- - uid: 3634
+ - uid: 3616
components:
- type: Transform
- pos: -73.5,-46.5
+ pos: -80.5,-70.5
parent: 2
- uid: 3635
components:
@@ -17926,21 +17801,6 @@ entities:
- type: Transform
pos: -61.5,-50.5
parent: 2
- - uid: 3701
- components:
- - type: Transform
- pos: -62.5,-70.5
- parent: 2
- - uid: 3707
- components:
- - type: Transform
- pos: -74.5,-45.5
- parent: 2
- - uid: 3709
- components:
- - type: Transform
- pos: -72.5,-47.5
- parent: 2
- uid: 3710
components:
- type: Transform
@@ -17964,177 +17824,122 @@ entities:
- uid: 3714
components:
- type: Transform
- pos: -72.5,-46.5
- parent: 2
- - uid: 3716
- components:
- - type: Transform
- pos: -73.5,-45.5
- parent: 2
- - uid: 3722
- components:
- - type: Transform
- pos: -73.5,-47.5
- parent: 2
- - uid: 3724
- components:
- - type: Transform
- pos: -74.5,-46.5
- parent: 2
- - uid: 4002
- components:
- - type: Transform
- pos: -110.5,-38.5
- parent: 2
- - uid: 4035
- components:
- - type: Transform
- pos: -63.5,-74.5
- parent: 2
- - uid: 4041
- components:
- - type: Transform
- pos: -54.5,-67.5
+ pos: -80.5,-72.5
parent: 2
- - uid: 4092
+ - uid: 3725
components:
- type: Transform
- pos: -55.5,-67.5
+ pos: -80.5,-71.5
parent: 2
- - uid: 4114
+ - uid: 4098
components:
- type: Transform
- pos: -116.5,-30.5
+ pos: -48.5,-67.5
parent: 2
- uid: 4128
components:
- type: Transform
pos: -118.5,-33.5
parent: 2
- - uid: 4253
- components:
- - type: Transform
- pos: -63.5,-71.5
- parent: 2
- - uid: 4255
- components:
- - type: Transform
- pos: -62.5,-73.5
- parent: 2
- - uid: 4257
- components:
- - type: Transform
- pos: -62.5,-71.5
- parent: 2
- - uid: 4262
- components:
- - type: Transform
- pos: -62.5,-76.5
- parent: 2
- - uid: 4264
- components:
- - type: Transform
- pos: -62.5,-69.5
- parent: 2
- - uid: 4265
+ - uid: 4251
components:
- type: Transform
- pos: -63.5,-69.5
+ pos: -47.5,-76.5
parent: 2
- - uid: 4278
+ - uid: 4261
components:
- type: Transform
- pos: -63.5,-72.5
+ pos: -51.5,-67.5
parent: 2
- - uid: 4281
+ - uid: 4442
components:
- type: Transform
- pos: -63.5,-75.5
+ pos: -58.5,-75.5
parent: 2
- - uid: 4284
+ - uid: 4443
components:
- type: Transform
- pos: -63.5,-70.5
+ pos: -42.5,-78.5
parent: 2
- - uid: 4424
+ - uid: 4444
components:
- type: Transform
- pos: -47.5,-75.5
+ pos: -41.5,-78.5
parent: 2
- - uid: 4434
+ - uid: 4486
components:
- type: Transform
- pos: -56.5,-75.5
+ pos: -88.5,-10.5
parent: 2
- - uid: 4435
+ - uid: 4568
components:
- type: Transform
- pos: -54.5,-75.5
+ pos: -85.5,-60.5
parent: 2
- - uid: 4441
+ - uid: 4586
components:
- type: Transform
- pos: -57.5,-75.5
+ pos: -74.5,-30.5
parent: 2
- - uid: 4442
+ - uid: 4607
components:
- type: Transform
- pos: -58.5,-75.5
+ pos: -85.5,-59.5
parent: 2
- - uid: 4443
+ - uid: 4613
components:
- type: Transform
- pos: -42.5,-78.5
+ pos: -86.5,-58.5
parent: 2
- - uid: 4444
+ - uid: 4621
components:
- type: Transform
- pos: -41.5,-78.5
+ pos: -85.5,-58.5
parent: 2
- - uid: 4486
+ - uid: 4632
components:
- type: Transform
- pos: -88.5,-10.5
+ pos: -84.5,-60.5
parent: 2
- - uid: 4586
+ - uid: 4664
components:
- type: Transform
- pos: -74.5,-30.5
+ pos: -61.5,-75.5
parent: 2
- uid: 4817
components:
- type: Transform
pos: -63.5,-68.5
parent: 2
- - uid: 5106
+ - uid: 4819
components:
- type: Transform
- pos: -62.5,-72.5
+ pos: -53.5,-76.5
parent: 2
- - uid: 5114
+ - uid: 4985
components:
- type: Transform
- pos: -63.5,-73.5
+ pos: -80.5,-79.5
parent: 2
- - uid: 5639
+ - uid: 4986
components:
- type: Transform
- pos: -96.5,-58.5
+ pos: -81.5,-79.5
parent: 2
- - uid: 5642
+ - uid: 4987
components:
- type: Transform
- pos: -94.5,-58.5
+ pos: -55.5,-67.5
parent: 2
- - uid: 5643
+ - uid: 5106
components:
- type: Transform
- pos: -90.5,-58.5
+ pos: -47.5,-65.5
parent: 2
- - uid: 5876
+ - uid: 5754
components:
- type: Transform
- pos: -88.5,-58.5
+ pos: -53.5,-67.5
parent: 2
- uid: 5888
components:
@@ -18156,30 +17961,20 @@ entities:
- type: Transform
pos: -139.5,6.5
parent: 2
- - uid: 5970
- components:
- - type: Transform
- pos: -13.5,-59.5
- parent: 2
- uid: 6004
components:
- type: Transform
- pos: -89.5,-58.5
+ pos: -96.5,-59.5
parent: 2
- uid: 6110
components:
- type: Transform
pos: -22.5,-63.5
parent: 2
- - uid: 6116
- components:
- - type: Transform
- pos: -17.5,-57.5
- parent: 2
- - uid: 6126
+ - uid: 6118
components:
- type: Transform
- pos: -16.5,-56.5
+ pos: -97.5,-58.5
parent: 2
- uid: 6172
components:
@@ -18191,20 +17986,10 @@ entities:
- type: Transform
pos: -94.5,-72.5
parent: 2
- - uid: 6278
- components:
- - type: Transform
- pos: -17.5,-56.5
- parent: 2
- - uid: 6323
- components:
- - type: Transform
- pos: -117.5,-30.5
- parent: 2
- - uid: 6436
+ - uid: 6244
components:
- type: Transform
- pos: -75.5,-34.5
+ pos: -77.5,-76.5
parent: 2
- uid: 6585
components:
@@ -18221,6 +18006,21 @@ entities:
- type: Transform
pos: -80.5,-54.5
parent: 2
+ - uid: 6757
+ components:
+ - type: Transform
+ pos: -115.5,-28.5
+ parent: 2
+ - uid: 6758
+ components:
+ - type: Transform
+ pos: -107.5,-33.5
+ parent: 2
+ - uid: 6760
+ components:
+ - type: Transform
+ pos: -107.5,-28.5
+ parent: 2
- uid: 6765
components:
- type: Transform
@@ -18231,10 +18031,10 @@ entities:
- type: Transform
pos: -88.5,-15.5
parent: 2
- - uid: 6774
+ - uid: 6797
components:
- type: Transform
- pos: -86.5,-58.5
+ pos: -99.5,-9.5
parent: 2
- uid: 6876
components:
@@ -18279,12 +18079,12 @@ entities:
- uid: 6955
components:
- type: Transform
- pos: -107.5,-29.5
+ pos: -80.5,-77.5
parent: 2
- - uid: 6957
+ - uid: 6973
components:
- type: Transform
- pos: -99.5,-49.5
+ pos: -80.5,-76.5
parent: 2
- uid: 6980
components:
@@ -18299,12 +18099,12 @@ entities:
- uid: 6986
components:
- type: Transform
- pos: -108.5,-37.5
+ pos: -82.5,-77.5
parent: 2
- uid: 6987
components:
- type: Transform
- pos: -108.5,-36.5
+ pos: -82.5,-76.5
parent: 2
- uid: 6995
components:
@@ -18316,30 +18116,30 @@ entities:
- type: Transform
pos: -107.5,-35.5
parent: 2
- - uid: 6998
+ - uid: 7016
components:
- type: Transform
- pos: -107.5,-36.5
+ pos: -81.5,-75.5
parent: 2
- - uid: 7003
+ - uid: 7020
components:
- type: Transform
- pos: -110.5,-37.5
+ pos: -77.5,-77.5
parent: 2
- - uid: 7004
+ - uid: 7025
components:
- type: Transform
- pos: -110.5,-36.5
+ pos: -76.5,-66.5
parent: 2
- - uid: 7011
+ - uid: 7026
components:
- type: Transform
- pos: -109.5,-37.5
+ pos: -75.5,-66.5
parent: 2
- - uid: 7012
+ - uid: 7038
components:
- type: Transform
- pos: -109.5,-36.5
+ pos: -76.5,-76.5
parent: 2
- uid: 7043
components:
@@ -18361,6 +18161,11 @@ entities:
- type: Transform
pos: -123.5,-28.5
parent: 2
+ - uid: 7078
+ components:
+ - type: Transform
+ pos: -72.5,-67.5
+ parent: 2
- uid: 7089
components:
- type: Transform
@@ -18369,7 +18174,7 @@ entities:
- uid: 7105
components:
- type: Transform
- pos: -101.5,-20.5
+ pos: -75.5,-76.5
parent: 2
- uid: 7106
components:
@@ -18379,12 +18184,12 @@ entities:
- uid: 7111
components:
- type: Transform
- pos: -81.5,-59.5
+ pos: -73.5,-68.5
parent: 2
- uid: 7113
components:
- type: Transform
- pos: -87.5,-58.5
+ pos: -74.5,-77.5
parent: 2
- uid: 7120
components:
@@ -18396,11 +18201,6 @@ entities:
- type: Transform
pos: -19.5,-71.5
parent: 2
- - uid: 7176
- components:
- - type: Transform
- pos: -21.5,-69.5
- parent: 2
- uid: 7179
components:
- type: Transform
@@ -18411,16 +18211,6 @@ entities:
- type: Transform
pos: -73.5,4.5
parent: 2
- - uid: 7222
- components:
- - type: Transform
- pos: -21.5,-68.5
- parent: 2
- - uid: 7233
- components:
- - type: Transform
- pos: -19.5,-56.5
- parent: 2
- uid: 7306
components:
- type: Transform
@@ -18456,10 +18246,40 @@ entities:
- type: Transform
pos: -109.5,-60.5
parent: 2
- - uid: 8147
+ - uid: 7562
components:
- type: Transform
- pos: -18.5,-56.5
+ pos: -59.5,-69.5
+ parent: 2
+ - uid: 7627
+ components:
+ - type: Transform
+ pos: -76.5,-77.5
+ parent: 2
+ - uid: 7634
+ components:
+ - type: Transform
+ pos: -75.5,-65.5
+ parent: 2
+ - uid: 7660
+ components:
+ - type: Transform
+ pos: -73.5,-77.5
+ parent: 2
+ - uid: 7662
+ components:
+ - type: Transform
+ pos: -63.5,-70.5
+ parent: 2
+ - uid: 7750
+ components:
+ - type: Transform
+ pos: -73.5,-71.5
+ parent: 2
+ - uid: 7912
+ components:
+ - type: Transform
+ pos: -54.5,-67.5
parent: 2
- uid: 8151
components:
@@ -18471,11 +18291,6 @@ entities:
- type: Transform
pos: -17.5,-68.5
parent: 2
- - uid: 8224
- components:
- - type: Transform
- pos: -22.5,-69.5
- parent: 2
- uid: 8241
components:
- type: Transform
@@ -18486,11 +18301,6 @@ entities:
- type: Transform
pos: -19.5,-68.5
parent: 2
- - uid: 8252
- components:
- - type: Transform
- pos: -12.5,-55.5
- parent: 2
- uid: 8339
components:
- type: Transform
@@ -18761,140 +18571,30 @@ entities:
- type: Transform
pos: -19.5,22.5
parent: 2
- - uid: 8470
- components:
- - type: Transform
- pos: -16.5,16.5
- parent: 2
- - uid: 8477
- components:
- - type: Transform
- pos: -16.5,20.5
- parent: 2
- - uid: 8478
- components:
- - type: Transform
- pos: -16.5,19.5
- parent: 2
- - uid: 8480
- components:
- - type: Transform
- pos: -16.5,18.5
- parent: 2
- - uid: 8482
- components:
- - type: Transform
- pos: -16.5,17.5
- parent: 2
- - uid: 8483
- components:
- - type: Transform
- pos: -15.5,20.5
- parent: 2
- - uid: 8484
- components:
- - type: Transform
- pos: -15.5,19.5
- parent: 2
- - uid: 8485
- components:
- - type: Transform
- pos: -15.5,18.5
- parent: 2
- uid: 8487
components:
- type: Transform
- pos: -15.5,16.5
- parent: 2
- - uid: 8489
- components:
- - type: Transform
- pos: -16.5,13.5
+ pos: -72.5,-68.5
parent: 2
- uid: 8494
components:
- type: Transform
- pos: -13.5,18.5
- parent: 2
- - uid: 8495
- components:
- - type: Transform
- pos: -13.5,17.5
- parent: 2
- - uid: 8496
- components:
- - type: Transform
- pos: -13.5,15.5
- parent: 2
- - uid: 8497
- components:
- - type: Transform
- pos: -13.5,14.5
+ pos: -74.5,-76.5
parent: 2
- uid: 8498
components:
- type: Transform
pos: -13.5,13.5
parent: 2
- - uid: 8500
- components:
- - type: Transform
- pos: -13.5,16.5
- parent: 2
- uid: 8502
components:
- type: Transform
- pos: -14.5,18.5
- parent: 2
- - uid: 8504
- components:
- - type: Transform
- pos: -16.5,15.5
- parent: 2
- - uid: 8505
- components:
- - type: Transform
- pos: -16.5,14.5
- parent: 2
- - uid: 8508
- components:
- - type: Transform
- pos: -15.5,15.5
+ pos: -73.5,-75.5
parent: 2
- uid: 8509
components:
- type: Transform
- pos: -15.5,14.5
- parent: 2
- - uid: 8510
- components:
- - type: Transform
- pos: -15.5,13.5
- parent: 2
- - uid: 8512
- components:
- - type: Transform
- pos: -14.5,19.5
- parent: 2
- - uid: 8514
- components:
- - type: Transform
- pos: -14.5,17.5
- parent: 2
- - uid: 8515
- components:
- - type: Transform
- pos: -14.5,16.5
- parent: 2
- - uid: 8516
- components:
- - type: Transform
- pos: -14.5,15.5
- parent: 2
- - uid: 8517
- components:
- - type: Transform
- pos: -14.5,14.5
+ pos: -73.5,-76.5
parent: 2
- uid: 8518
components:
@@ -19081,41 +18781,16 @@ entities:
- type: Transform
pos: -10.5,16.5
parent: 2
- - uid: 8674
- components:
- - type: Transform
- pos: -12.5,-46.5
- parent: 2
- - uid: 8676
- components:
- - type: Transform
- pos: -11.5,-48.5
- parent: 2
- uid: 8678
components:
- type: Transform
pos: -10.5,-47.5
parent: 2
- - uid: 8679
- components:
- - type: Transform
- pos: -11.5,-47.5
- parent: 2
- - uid: 8681
- components:
- - type: Transform
- pos: -11.5,-50.5
- parent: 2
- uid: 8683
components:
- type: Transform
pos: -74.5,4.5
parent: 2
- - uid: 8692
- components:
- - type: Transform
- pos: -82.5,10.5
- parent: 2
- uid: 8720
components:
- type: Transform
@@ -19246,20 +18921,10 @@ entities:
- type: Transform
pos: -6.5,-26.5
parent: 2
- - uid: 8827
- components:
- - type: Transform
- pos: -11.5,-49.5
- parent: 2
- - uid: 8829
- components:
- - type: Transform
- pos: -11.5,-46.5
- parent: 2
- - uid: 8841
+ - uid: 8842
components:
- type: Transform
- pos: -11.5,-51.5
+ pos: -75.5,-77.5
parent: 2
- uid: 8874
components:
@@ -19299,17 +18964,7 @@ entities:
- uid: 8888
components:
- type: Transform
- pos: -72.5,-45.5
- parent: 2
- - uid: 8891
- components:
- - type: Transform
- pos: -11.5,-45.5
- parent: 2
- - uid: 8892
- components:
- - type: Transform
- pos: -12.5,-45.5
+ pos: -73.5,-70.5
parent: 2
- uid: 8894
components:
@@ -19341,25 +18996,15 @@ entities:
- type: Transform
pos: -11.5,-52.5
parent: 2
- - uid: 8916
- components:
- - type: Transform
- pos: -12.5,-52.5
- parent: 2
- - uid: 8918
- components:
- - type: Transform
- pos: -12.5,-53.5
- parent: 2
- - uid: 8919
+ - uid: 8962
components:
- type: Transform
- pos: -12.5,-54.5
+ pos: -92.5,-11.5
parent: 2
- - uid: 8962
+ - uid: 8984
components:
- type: Transform
- pos: -92.5,-11.5
+ pos: -63.5,-69.5
parent: 2
- uid: 8997
components:
@@ -19381,126 +19026,41 @@ entities:
- type: Transform
pos: -130.5,17.5
parent: 2
- - uid: 9028
- components:
- - type: Transform
- pos: -51.5,-68.5
- parent: 2
- - uid: 9029
- components:
- - type: Transform
- pos: -49.5,-66.5
- parent: 2
- - uid: 9030
- components:
- - type: Transform
- pos: -51.5,-67.5
- parent: 2
- - uid: 9034
- components:
- - type: Transform
- pos: -47.5,-69.5
- parent: 2
- - uid: 9038
- components:
- - type: Transform
- pos: -47.5,-68.5
- parent: 2
- - uid: 9050
- components:
- - type: Transform
- pos: -56.5,-67.5
- parent: 2
- uid: 9071
components:
- type: Transform
pos: -93.5,-73.5
parent: 2
- - uid: 9087
- components:
- - type: Transform
- pos: -100.5,2.5
- parent: 2
- - uid: 9170
- components:
- - type: Transform
- pos: -72.5,-44.5
- parent: 2
- uid: 9202
components:
- type: Transform
pos: -10.5,-48.5
parent: 2
- - uid: 9208
- components:
- - type: Transform
- pos: -12.5,-51.5
- parent: 2
- - uid: 9282
+ - uid: 9242
components:
- type: Transform
- pos: -74.5,-34.5
+ pos: -74.5,-70.5
parent: 2
- - uid: 9306
+ - uid: 9243
components:
- type: Transform
- pos: -74.5,-40.5
+ pos: -73.5,-67.5
parent: 2
- - uid: 9317
+ - uid: 9256
components:
- type: Transform
- pos: -76.5,-34.5
+ pos: -60.5,-69.5
parent: 2
- - uid: 9336
+ - uid: 9259
components:
- type: Transform
- pos: -73.5,-41.5
+ pos: -74.5,-68.5
parent: 2
- uid: 9347
components:
- type: Transform
pos: -74.5,-32.5
parent: 2
- - uid: 9366
- components:
- - type: Transform
- pos: -88.5,-68.5
- parent: 2
- - uid: 9367
- components:
- - type: Transform
- pos: -87.5,-67.5
- parent: 2
- - uid: 9368
- components:
- - type: Transform
- pos: -87.5,-68.5
- parent: 2
- - uid: 9369
- components:
- - type: Transform
- pos: -86.5,-67.5
- parent: 2
- - uid: 9370
- components:
- - type: Transform
- pos: -86.5,-68.5
- parent: 2
- - uid: 9372
- components:
- - type: Transform
- pos: -83.5,-69.5
- parent: 2
- - uid: 9373
- components:
- - type: Transform
- pos: -83.5,-68.5
- parent: 2
- - uid: 9379
- components:
- - type: Transform
- pos: -87.5,-69.5
- parent: 2
- uid: 9380
components:
- type: Transform
@@ -19526,36 +19086,6 @@ entities:
- type: Transform
pos: -84.5,-69.5
parent: 2
- - uid: 9385
- components:
- - type: Transform
- pos: -83.5,-70.5
- parent: 2
- - uid: 9386
- components:
- - type: Transform
- pos: -85.5,-66.5
- parent: 2
- - uid: 9387
- components:
- - type: Transform
- pos: -87.5,-62.5
- parent: 2
- - uid: 9388
- components:
- - type: Transform
- pos: -87.5,-64.5
- parent: 2
- - uid: 9389
- components:
- - type: Transform
- pos: -87.5,-63.5
- parent: 2
- - uid: 9390
- components:
- - type: Transform
- pos: -83.5,-67.5
- parent: 2
- uid: 9392
components:
- type: Transform
@@ -19586,100 +19116,30 @@ entities:
- type: Transform
pos: -84.5,-65.5
parent: 2
- - uid: 9398
- components:
- - type: Transform
- pos: -86.5,-66.5
- parent: 2
- - uid: 9399
- components:
- - type: Transform
- pos: -86.5,-65.5
- parent: 2
- - uid: 9400
- components:
- - type: Transform
- pos: -86.5,-64.5
- parent: 2
- - uid: 9401
- components:
- - type: Transform
- pos: -86.5,-63.5
- parent: 2
- uid: 9402
components:
- type: Transform
- pos: -86.5,-62.5
- parent: 2
- - uid: 9403
- components:
- - type: Transform
- pos: -87.5,-66.5
- parent: 2
- - uid: 9404
- components:
- - type: Transform
- pos: -87.5,-65.5
+ pos: -107.5,-34.5
parent: 2
- uid: 9405
components:
- type: Transform
pos: -84.5,-64.5
parent: 2
- - uid: 9406
- components:
- - type: Transform
- pos: -83.5,-65.5
- parent: 2
- uid: 9407
components:
- type: Transform
pos: -84.5,-63.5
parent: 2
- - uid: 9408
- components:
- - type: Transform
- pos: -85.5,-67.5
- parent: 2
- uid: 9409
components:
- type: Transform
pos: -84.5,-62.5
parent: 2
- - uid: 9410
- components:
- - type: Transform
- pos: -85.5,-65.5
- parent: 2
- - uid: 9411
- components:
- - type: Transform
- pos: -85.5,-64.5
- parent: 2
- - uid: 9412
- components:
- - type: Transform
- pos: -85.5,-63.5
- parent: 2
- - uid: 9413
- components:
- - type: Transform
- pos: -85.5,-62.5
- parent: 2
- uid: 9416
components:
- type: Transform
- pos: -97.5,-62.5
- parent: 2
- - uid: 9417
- components:
- - type: Transform
- pos: -97.5,-61.5
- parent: 2
- - uid: 9418
- components:
- - type: Transform
- pos: -97.5,-60.5
+ pos: -107.5,-29.5
parent: 2
- uid: 9420
components:
@@ -19696,25 +19156,30 @@ entities:
- type: Transform
pos: -78.5,-54.5
parent: 2
- - uid: 9435
+ - uid: 9434
components:
- type: Transform
- pos: -97.5,-63.5
+ pos: -61.5,-70.5
parent: 2
- uid: 9436
components:
- type: Transform
- pos: -97.5,-64.5
+ pos: -59.5,-73.5
parent: 2
- uid: 9440
components:
- type: Transform
pos: -82.5,-11.5
parent: 2
- - uid: 9448
+ - uid: 9446
components:
- type: Transform
- pos: -133.5,32.5
+ pos: -51.5,-66.5
+ parent: 2
+ - uid: 9455
+ components:
+ - type: Transform
+ pos: -74.5,-69.5
parent: 2
- uid: 9485
components:
@@ -19731,11 +19196,6 @@ entities:
- type: Transform
pos: -115.5,-35.5
parent: 2
- - uid: 9512
- components:
- - type: Transform
- pos: -99.5,-50.5
- parent: 2
- uid: 9518
components:
- type: Transform
@@ -19746,11 +19206,6 @@ entities:
- type: Transform
pos: -113.5,-35.5
parent: 2
- - uid: 9533
- components:
- - type: Transform
- pos: -99.5,-51.5
- parent: 2
- uid: 9537
components:
- type: Transform
@@ -19761,31 +19216,11 @@ entities:
- type: Transform
pos: -112.5,-35.5
parent: 2
- - uid: 9541
- components:
- - type: Transform
- pos: -98.5,-51.5
- parent: 2
- - uid: 9546
- components:
- - type: Transform
- pos: -98.5,-49.5
- parent: 2
- - uid: 9569
- components:
- - type: Transform
- pos: -116.5,-28.5
- parent: 2
- uid: 9574
components:
- type: Transform
pos: -118.5,-31.5
parent: 2
- - uid: 9577
- components:
- - type: Transform
- pos: -117.5,-33.5
- parent: 2
- uid: 9578
components:
- type: Transform
@@ -19816,31 +19251,11 @@ entities:
- type: Transform
pos: -136.5,31.5
parent: 2
- - uid: 9787
- components:
- - type: Transform
- pos: -116.5,-29.5
- parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: -73.5,-43.5
- parent: 2
- - uid: 9965
- components:
- - type: Transform
- pos: -58.5,-63.5
- parent: 2
- uid: 9966
components:
- type: Transform
pos: -58.5,-64.5
parent: 2
- - uid: 9967
- components:
- - type: Transform
- pos: -57.5,-62.5
- parent: 2
- uid: 10017
components:
- type: Transform
@@ -19851,11 +19266,6 @@ entities:
- type: Transform
pos: -139.5,8.5
parent: 2
- - uid: 10090
- components:
- - type: Transform
- pos: -82.5,8.5
- parent: 2
- uid: 10106
components:
- type: Transform
@@ -19876,16 +19286,6 @@ entities:
- type: Transform
pos: -74.5,-31.5
parent: 2
- - uid: 10123
- components:
- - type: Transform
- pos: -134.5,31.5
- parent: 2
- - uid: 10125
- components:
- - type: Transform
- pos: -133.5,31.5
- parent: 2
- uid: 10126
components:
- type: Transform
@@ -19901,11 +19301,6 @@ entities:
- type: Transform
pos: -130.5,31.5
parent: 2
- - uid: 10132
- components:
- - type: Transform
- pos: -58.5,-62.5
- parent: 2
- uid: 10134
components:
- type: Transform
@@ -19926,51 +19321,41 @@ entities:
- type: Transform
pos: -125.5,35.5
parent: 2
- - uid: 10152
+ - uid: 10156
components:
- type: Transform
- pos: -112.5,33.5
+ pos: -124.5,35.5
parent: 2
- - uid: 10156
+ - uid: 10167
components:
- type: Transform
- pos: -124.5,35.5
+ pos: -58.5,-74.5
parent: 2
- uid: 10168
components:
- type: Transform
pos: -114.5,33.5
parent: 2
- - uid: 10170
+ - uid: 10171
components:
- type: Transform
- pos: -111.5,33.5
+ pos: -60.5,-71.5
parent: 2
- - uid: 10173
+ - uid: 10172
components:
- type: Transform
- pos: -113.5,33.5
+ pos: -60.5,-70.5
parent: 2
- uid: 10176
components:
- type: Transform
pos: -115.5,33.5
parent: 2
- - uid: 10177
- components:
- - type: Transform
- pos: -114.5,34.5
- parent: 2
- uid: 10179
components:
- type: Transform
pos: -115.5,34.5
parent: 2
- - uid: 10183
- components:
- - type: Transform
- pos: -115.5,35.5
- parent: 2
- uid: 10186
components:
- type: Transform
@@ -20006,65 +19391,65 @@ entities:
- type: Transform
pos: -116.5,35.5
parent: 2
- - uid: 11038
+ - uid: 10202
components:
- type: Transform
- pos: -7.5,-45.5
+ pos: -60.5,-68.5
parent: 2
- - uid: 11039
+ - uid: 10205
components:
- type: Transform
- pos: -7.5,-43.5
+ pos: -59.5,-74.5
parent: 2
- - uid: 11040
+ - uid: 10254
components:
- type: Transform
- pos: -7.5,-42.5
+ pos: -59.5,-70.5
parent: 2
- - uid: 11041
+ - uid: 10906
components:
- type: Transform
- pos: -7.5,-41.5
+ pos: -95.5,-11.5
parent: 2
- - uid: 11042
+ - uid: 11001
components:
- type: Transform
- pos: -7.5,-40.5
+ pos: -94.5,-11.5
parent: 2
- - uid: 11043
+ - uid: 11038
components:
- type: Transform
- pos: -7.5,-39.5
+ pos: -7.5,-45.5
parent: 2
- - uid: 11044
+ - uid: 11039
components:
- type: Transform
- pos: -7.5,-44.5
+ pos: -7.5,-43.5
parent: 2
- - uid: 11066
+ - uid: 11040
components:
- type: Transform
- pos: -85.5,-59.5
+ pos: -7.5,-42.5
parent: 2
- - uid: 11068
+ - uid: 11041
components:
- type: Transform
- pos: -87.5,-59.5
+ pos: -7.5,-41.5
parent: 2
- - uid: 11081
+ - uid: 11042
components:
- type: Transform
- pos: -87.5,-60.5
+ pos: -7.5,-40.5
parent: 2
- - uid: 11083
+ - uid: 11043
components:
- type: Transform
- pos: -86.5,-61.5
+ pos: -7.5,-39.5
parent: 2
- - uid: 11085
+ - uid: 11044
components:
- type: Transform
- pos: -86.5,-60.5
+ pos: -7.5,-44.5
parent: 2
- uid: 11112
components:
@@ -20076,11 +19461,6 @@ entities:
- type: Transform
pos: -137.5,30.5
parent: 2
- - uid: 11115
- components:
- - type: Transform
- pos: -135.5,33.5
- parent: 2
- uid: 11142
components:
- type: Transform
@@ -20101,11 +19481,6 @@ entities:
- type: Transform
pos: -118.5,-32.5
parent: 2
- - uid: 11168
- components:
- - type: Transform
- pos: -117.5,-32.5
- parent: 2
- uid: 11178
components:
- type: Transform
@@ -20131,11 +19506,6 @@ entities:
- type: Transform
pos: -100.5,-52.5
parent: 2
- - uid: 11791
- components:
- - type: Transform
- pos: -111.5,-35.5
- parent: 2
- uid: 11881
components:
- type: Transform
@@ -20151,21 +19521,6 @@ entities:
- type: Transform
pos: -100.5,-49.5
parent: 2
- - uid: 12495
- components:
- - type: Transform
- pos: -50.5,-66.5
- parent: 2
- - uid: 12607
- components:
- - type: Transform
- pos: -135.5,32.5
- parent: 2
- - uid: 12728
- components:
- - type: Transform
- pos: -72.5,-42.5
- parent: 2
- uid: 12855
components:
- type: Transform
@@ -20186,6 +19541,11 @@ entities:
- type: Transform
pos: -134.5,34.5
parent: 2
+ - uid: 13553
+ components:
+ - type: Transform
+ pos: -96.5,-11.5
+ parent: 2
- uid: 13566
components:
- type: Transform
@@ -20201,20 +19561,50 @@ entities:
- type: Transform
pos: -87.5,-54.5
parent: 2
+ - uid: 13616
+ components:
+ - type: Transform
+ pos: -98.5,-58.5
+ parent: 2
- uid: 13647
components:
- type: Transform
pos: -136.5,-31.5
parent: 2
- - uid: 13860
+ - uid: 13658
components:
- type: Transform
- pos: -138.5,29.5
+ pos: -63.5,-72.5
parent: 2
- - uid: 13863
+ - uid: 13685
components:
- type: Transform
- pos: -134.5,33.5
+ pos: -63.5,-71.5
+ parent: 2
+ - uid: 13691
+ components:
+ - type: Transform
+ pos: -62.5,-71.5
+ parent: 2
+ - uid: 13692
+ components:
+ - type: Transform
+ pos: -63.5,-73.5
+ parent: 2
+ - uid: 13730
+ components:
+ - type: Transform
+ pos: -98.5,-60.5
+ parent: 2
+ - uid: 13732
+ components:
+ - type: Transform
+ pos: -98.5,-59.5
+ parent: 2
+ - uid: 13860
+ components:
+ - type: Transform
+ pos: -138.5,29.5
parent: 2
- uid: 13875
components:
@@ -20236,21 +19626,56 @@ entities:
- type: Transform
pos: -139.5,5.5
parent: 2
+ - uid: 14013
+ components:
+ - type: Transform
+ pos: -77.5,-64.5
+ parent: 2
- uid: 14017
components:
- type: Transform
pos: -139.5,3.5
parent: 2
+ - uid: 14020
+ components:
+ - type: Transform
+ pos: -76.5,-58.5
+ parent: 2
+ - uid: 14021
+ components:
+ - type: Transform
+ pos: -77.5,-58.5
+ parent: 2
+ - uid: 14023
+ components:
+ - type: Transform
+ pos: -77.5,-60.5
+ parent: 2
- uid: 14024
components:
- type: Transform
pos: -139.5,-22.5
parent: 2
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: -76.5,-54.5
+ parent: 2
- uid: 14095
components:
- type: Transform
pos: -139.5,4.5
parent: 2
+ - uid: 14111
+ components:
+ - type: Transform
+ pos: -65.5,-68.5
+ parent: 2
+ - uid: 14136
+ components:
+ - type: Transform
+ pos: -77.5,-59.5
+ parent: 2
- uid: 14173
components:
- type: Transform
@@ -20291,6 +19716,31 @@ entities:
- type: Transform
pos: -82.5,-54.5
parent: 2
+ - uid: 14206
+ components:
+ - type: Transform
+ pos: -77.5,-66.5
+ parent: 2
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: -116.5,-28.5
+ parent: 2
+ - uid: 14364
+ components:
+ - type: Transform
+ pos: -77.5,-62.5
+ parent: 2
+ - uid: 14488
+ components:
+ - type: Transform
+ pos: -77.5,-63.5
+ parent: 2
+ - uid: 14489
+ components:
+ - type: Transform
+ pos: -77.5,-65.5
+ parent: 2
- uid: 14616
components:
- type: Transform
@@ -20306,100 +19756,170 @@ entities:
- type: Transform
pos: -136.5,7.5
parent: 2
+ - uid: 14655
+ components:
+ - type: Transform
+ pos: -71.5,-46.5
+ parent: 2
- uid: 14656
components:
- type: Transform
pos: -73.5,-33.5
parent: 2
- - uid: 14756
+ - uid: 14659
components:
- type: Transform
- pos: -101.5,1.5
+ pos: -71.5,-45.5
parent: 2
- - uid: 14757
+ - uid: 14701
components:
- type: Transform
- pos: -101.5,2.5
+ pos: -16.5,-52.5
parent: 2
- - uid: 14758
+ - uid: 14707
components:
- type: Transform
- pos: -101.5,0.5
+ pos: -16.5,-48.5
parent: 2
- - uid: 14759
+ - uid: 14716
components:
- type: Transform
- pos: -100.5,3.5
+ pos: -16.5,-53.5
+ parent: 2
+ - uid: 14723
+ components:
+ - type: Transform
+ pos: -16.5,-50.5
+ parent: 2
+ - uid: 14755
+ components:
+ - type: Transform
+ pos: -71.5,-44.5
+ parent: 2
+ - uid: 14772
+ components:
+ - type: Transform
+ pos: -83.5,-77.5
+ parent: 2
+ - uid: 14773
+ components:
+ - type: Transform
+ pos: -74.5,-34.5
+ parent: 2
+ - uid: 14776
+ components:
+ - type: Transform
+ pos: -118.5,-29.5
+ parent: 2
+ - uid: 14778
+ components:
+ - type: Transform
+ pos: -71.5,-42.5
+ parent: 2
+ - uid: 14782
+ components:
+ - type: Transform
+ pos: -71.5,-41.5
+ parent: 2
+ - uid: 14835
+ components:
+ - type: Transform
+ pos: -115.5,-34.5
parent: 2
- uid: 15015
components:
- type: Transform
pos: -73.5,-30.5
parent: 2
+ - uid: 15068
+ components:
+ - type: Transform
+ pos: -99.5,-6.5
+ parent: 2
- uid: 15099
components:
- type: Transform
pos: -92.5,-15.5
parent: 2
- - uid: 15743
+ - uid: 15251
components:
- type: Transform
- pos: -73.5,-44.5
+ pos: -58.5,-73.5
parent: 2
- - uid: 15921
+ - uid: 15257
components:
- type: Transform
- pos: -92.5,-9.5
+ pos: -77.5,-70.5
parent: 2
- - uid: 16068
+ - uid: 15263
components:
- type: Transform
- pos: -74.5,-47.5
+ pos: -61.5,-69.5
parent: 2
- - uid: 16089
+ - uid: 15326
components:
- type: Transform
- pos: -124.5,-28.5
+ pos: -16.5,-51.5
parent: 2
- - uid: 16097
+ - uid: 15342
components:
- type: Transform
- pos: -94.5,-73.5
+ pos: -76.5,-70.5
parent: 2
- - uid: 16100
+ - uid: 15590
components:
- type: Transform
- pos: -99.5,-66.5
+ pos: -59.5,-68.5
parent: 2
- - uid: 16103
+ - uid: 16003
components:
- type: Transform
- pos: -98.5,-66.5
+ pos: -116.5,-34.5
parent: 2
- - uid: 16104
+ - uid: 16006
components:
- type: Transform
- pos: -97.5,-65.5
+ pos: -81.5,-77.5
parent: 2
- - uid: 16105
+ - uid: 16019
components:
- type: Transform
- pos: -97.5,-66.5
+ pos: -90.5,-1.5
parent: 2
- - uid: 16117
+ - uid: 16021
components:
- type: Transform
- pos: -99.5,-67.5
+ pos: -91.5,2.5
parent: 2
- - uid: 16118
+ - uid: 16025
components:
- type: Transform
- pos: -98.5,-67.5
+ pos: -90.5,-4.5
parent: 2
- - uid: 16119
+ - uid: 16031
components:
- type: Transform
- pos: -97.5,-67.5
+ pos: -56.5,-64.5
+ parent: 2
+ - uid: 16032
+ components:
+ - type: Transform
+ pos: -83.5,-59.5
+ parent: 2
+ - uid: 16089
+ components:
+ - type: Transform
+ pos: -124.5,-28.5
+ parent: 2
+ - uid: 16097
+ components:
+ - type: Transform
+ pos: -94.5,-73.5
+ parent: 2
+ - uid: 16115
+ components:
+ - type: Transform
+ pos: -82.5,-59.5
parent: 2
- uid: 16121
components:
@@ -20466,26 +19986,6 @@ entities:
- type: Transform
pos: -98.5,-70.5
parent: 2
- - uid: 16144
- components:
- - type: Transform
- pos: -87.5,-70.5
- parent: 2
- - uid: 16145
- components:
- - type: Transform
- pos: -85.5,-70.5
- parent: 2
- - uid: 16146
- components:
- - type: Transform
- pos: -86.5,-70.5
- parent: 2
- - uid: 16147
- components:
- - type: Transform
- pos: -84.5,-70.5
- parent: 2
- uid: 16148
components:
- type: Transform
@@ -20506,16 +20006,6 @@ entities:
- type: Transform
pos: -94.5,-70.5
parent: 2
- - uid: 16156
- components:
- - type: Transform
- pos: -83.5,-72.5
- parent: 2
- - uid: 16158
- components:
- - type: Transform
- pos: -82.5,-71.5
- parent: 2
- uid: 16159
components:
- type: Transform
@@ -20536,45 +20026,10 @@ entities:
- type: Transform
pos: -97.5,-71.5
parent: 2
- - uid: 16167
- components:
- - type: Transform
- pos: -86.5,-71.5
- parent: 2
- - uid: 16168
- components:
- - type: Transform
- pos: -86.5,-72.5
- parent: 2
- - uid: 16170
- components:
- - type: Transform
- pos: -85.5,-71.5
- parent: 2
- - uid: 16171
- components:
- - type: Transform
- pos: -85.5,-72.5
- parent: 2
- - uid: 16172
- components:
- - type: Transform
- pos: -84.5,-72.5
- parent: 2
- - uid: 16173
- components:
- - type: Transform
- pos: -84.5,-71.5
- parent: 2
- - uid: 16174
- components:
- - type: Transform
- pos: -83.5,-71.5
- parent: 2
- - uid: 16195
+ - uid: 16182
components:
- type: Transform
- pos: -80.5,-73.5
+ pos: -90.5,-6.5
parent: 2
- uid: 16197
components:
@@ -20591,56 +20046,6 @@ entities:
- type: Transform
pos: -97.5,-73.5
parent: 2
- - uid: 16209
- components:
- - type: Transform
- pos: -86.5,-73.5
- parent: 2
- - uid: 16210
- components:
- - type: Transform
- pos: -85.5,-73.5
- parent: 2
- - uid: 16211
- components:
- - type: Transform
- pos: -84.5,-73.5
- parent: 2
- - uid: 16216
- components:
- - type: Transform
- pos: -86.5,-74.5
- parent: 2
- - uid: 16217
- components:
- - type: Transform
- pos: -84.5,-74.5
- parent: 2
- - uid: 16219
- components:
- - type: Transform
- pos: -87.5,-74.5
- parent: 2
- - uid: 16222
- components:
- - type: Transform
- pos: -80.5,-74.5
- parent: 2
- - uid: 16223
- components:
- - type: Transform
- pos: -79.5,-74.5
- parent: 2
- - uid: 16224
- components:
- - type: Transform
- pos: -78.5,-74.5
- parent: 2
- - uid: 16225
- components:
- - type: Transform
- pos: -85.5,-74.5
- parent: 2
- uid: 16226
components:
- type: Transform
@@ -20651,46 +20056,16 @@ entities:
- type: Transform
pos: -96.5,-74.5
parent: 2
- - uid: 16230
- components:
- - type: Transform
- pos: -92.5,-74.5
- parent: 2
- uid: 16231
components:
- type: Transform
pos: -91.5,-74.5
parent: 2
- - uid: 16237
- components:
- - type: Transform
- pos: -87.5,-75.5
- parent: 2
- uid: 16239
components:
- type: Transform
pos: -86.5,-75.5
parent: 2
- - uid: 16240
- components:
- - type: Transform
- pos: -85.5,-75.5
- parent: 2
- - uid: 16242
- components:
- - type: Transform
- pos: -84.5,-75.5
- parent: 2
- - uid: 16244
- components:
- - type: Transform
- pos: -80.5,-75.5
- parent: 2
- - uid: 16245
- components:
- - type: Transform
- pos: -79.5,-75.5
- parent: 2
- uid: 16246
components:
- type: Transform
@@ -20706,36 +20081,6 @@ entities:
- type: Transform
pos: -94.5,-75.5
parent: 2
- - uid: 16250
- components:
- - type: Transform
- pos: -91.5,-75.5
- parent: 2
- - uid: 16251
- components:
- - type: Transform
- pos: -90.5,-75.5
- parent: 2
- - uid: 16252
- components:
- - type: Transform
- pos: -89.5,-75.5
- parent: 2
- - uid: 16253
- components:
- - type: Transform
- pos: -88.5,-75.5
- parent: 2
- - uid: 16254
- components:
- - type: Transform
- pos: -77.5,-76.5
- parent: 2
- - uid: 16255
- components:
- - type: Transform
- pos: -75.5,-76.5
- parent: 2
- uid: 16257
components:
- type: Transform
@@ -20751,11 +20096,6 @@ entities:
- type: Transform
pos: -84.5,-76.5
parent: 2
- - uid: 16265
- components:
- - type: Transform
- pos: -76.5,-76.5
- parent: 2
- uid: 16266
components:
- type: Transform
@@ -20801,65 +20141,40 @@ entities:
- type: Transform
pos: -84.5,-77.5
parent: 2
- - uid: 16286
- components:
- - type: Transform
- pos: -80.5,-77.5
- parent: 2
- uid: 16287
components:
- type: Transform
- pos: -79.5,-77.5
- parent: 2
- - uid: 16288
- components:
- - type: Transform
- pos: -78.5,-77.5
+ pos: -99.5,-5.5
parent: 2
- uid: 16289
components:
- type: Transform
- pos: -77.5,-77.5
- parent: 2
- - uid: 16290
- components:
- - type: Transform
- pos: -76.5,-77.5
- parent: 2
- - uid: 16291
- components:
- - type: Transform
- pos: -75.5,-77.5
+ pos: -90.5,-5.5
parent: 2
- uid: 16294
components:
- type: Transform
pos: -136.5,-23.5
parent: 2
- - uid: 16298
- components:
- - type: Transform
- pos: -71.5,-78.5
- parent: 2
- uid: 16299
components:
- type: Transform
- pos: -69.5,-78.5
+ pos: -90.5,-3.5
parent: 2
- - uid: 16302
+ - uid: 16301
components:
- type: Transform
- pos: -70.5,-78.5
+ pos: -99.5,-4.5
parent: 2
- - uid: 16304
+ - uid: 16305
components:
- type: Transform
- pos: -70.5,-75.5
+ pos: -87.5,-78.5
parent: 2
- - uid: 16305
+ - uid: 16307
components:
- type: Transform
- pos: -87.5,-78.5
+ pos: -99.5,-3.5
parent: 2
- uid: 16308
components:
@@ -20881,12 +20196,7 @@ entities:
- type: Transform
pos: -73.5,-78.5
parent: 2
- - uid: 16313
- components:
- - type: Transform
- pos: -72.5,-78.5
- parent: 2
- - uid: 16314
+ - uid: 16314
components:
- type: Transform
pos: -89.5,-78.5
@@ -20901,46 +20211,6 @@ entities:
- type: Transform
pos: -86.5,-78.5
parent: 2
- - uid: 16330
- components:
- - type: Transform
- pos: -69.5,-79.5
- parent: 2
- - uid: 16331
- components:
- - type: Transform
- pos: -68.5,-79.5
- parent: 2
- - uid: 16332
- components:
- - type: Transform
- pos: -67.5,-79.5
- parent: 2
- - uid: 16333
- components:
- - type: Transform
- pos: -65.5,-79.5
- parent: 2
- - uid: 16334
- components:
- - type: Transform
- pos: -66.5,-79.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- pos: -64.5,-79.5
- parent: 2
- - uid: 16337
- components:
- - type: Transform
- pos: -63.5,-79.5
- parent: 2
- - uid: 16338
- components:
- - type: Transform
- pos: -62.5,-79.5
- parent: 2
- uid: 16339
components:
- type: Transform
@@ -21066,21 +20336,6 @@ entities:
- type: Transform
pos: -66.5,-81.5
parent: 2
- - uid: 16381
- components:
- - type: Transform
- pos: -87.5,-61.5
- parent: 2
- - uid: 16382
- components:
- - type: Transform
- pos: -86.5,-59.5
- parent: 2
- - uid: 16383
- components:
- - type: Transform
- pos: -85.5,-60.5
- parent: 2
- uid: 16384
components:
- type: Transform
@@ -21094,33 +20349,13 @@ entities:
- uid: 16388
components:
- type: Transform
- pos: -81.5,-60.5
- parent: 2
- - uid: 16389
- components:
- - type: Transform
- pos: -82.5,-60.5
+ pos: -106.5,-35.5
parent: 2
- uid: 16390
components:
- type: Transform
pos: -83.5,-61.5
parent: 2
- - uid: 16391
- components:
- - type: Transform
- pos: -85.5,-61.5
- parent: 2
- - uid: 16424
- components:
- - type: Transform
- pos: -82.5,-61.5
- parent: 2
- - uid: 16425
- components:
- - type: Transform
- pos: -82.5,-62.5
- parent: 2
- uid: 16426
components:
- type: Transform
@@ -21156,11 +20391,6 @@ entities:
- type: Transform
pos: -78.5,-63.5
parent: 2
- - uid: 16433
- components:
- - type: Transform
- pos: -79.5,-58.5
- parent: 2
- uid: 16434
components:
- type: Transform
@@ -21181,61 +20411,26 @@ entities:
- type: Transform
pos: -79.5,-61.5
parent: 2
- - uid: 16438
- components:
- - type: Transform
- pos: -80.5,-58.5
- parent: 2
- uid: 16439
components:
- type: Transform
- pos: -80.5,-59.5
+ pos: -100.5,-3.5
parent: 2
- uid: 16440
components:
- type: Transform
pos: -79.5,-62.5
parent: 2
- - uid: 16441
- components:
- - type: Transform
- pos: -80.5,-60.5
- parent: 2
- - uid: 16442
- components:
- - type: Transform
- pos: -80.5,-61.5
- parent: 2
- - uid: 16443
- components:
- - type: Transform
- pos: -80.5,-62.5
- parent: 2
- uid: 16444
components:
- type: Transform
pos: -80.5,-63.5
parent: 2
- - uid: 16445
- components:
- - type: Transform
- pos: -101.5,-58.5
- parent: 2
- - uid: 16448
- components:
- - type: Transform
- pos: -81.5,-61.5
- parent: 2
- uid: 16449
components:
- type: Transform
pos: -79.5,-63.5
parent: 2
- - uid: 16450
- components:
- - type: Transform
- pos: -81.5,-62.5
- parent: 2
- uid: 16451
components:
- type: Transform
@@ -21396,51 +20591,11 @@ entities:
- type: Transform
pos: -48.5,-79.5
parent: 2
- - uid: 16657
- components:
- - type: Transform
- pos: -80.5,-69.5
- parent: 2
- - uid: 16658
- components:
- - type: Transform
- pos: -80.5,-68.5
- parent: 2
- - uid: 16659
- components:
- - type: Transform
- pos: -79.5,-67.5
- parent: 2
- uid: 16660
components:
- type: Transform
pos: -81.5,-64.5
parent: 2
- - uid: 16661
- components:
- - type: Transform
- pos: -80.5,-70.5
- parent: 2
- - uid: 16662
- components:
- - type: Transform
- pos: -81.5,-65.5
- parent: 2
- - uid: 16663
- components:
- - type: Transform
- pos: -81.5,-66.5
- parent: 2
- - uid: 16664
- components:
- - type: Transform
- pos: -81.5,-68.5
- parent: 2
- - uid: 16665
- components:
- - type: Transform
- pos: -81.5,-69.5
- parent: 2
- uid: 16666
components:
- type: Transform
@@ -21451,41 +20606,6 @@ entities:
- type: Transform
pos: -82.5,-64.5
parent: 2
- - uid: 16668
- components:
- - type: Transform
- pos: -82.5,-65.5
- parent: 2
- - uid: 16669
- components:
- - type: Transform
- pos: -82.5,-66.5
- parent: 2
- - uid: 16670
- components:
- - type: Transform
- pos: -81.5,-67.5
- parent: 2
- - uid: 16671
- components:
- - type: Transform
- pos: -82.5,-67.5
- parent: 2
- - uid: 16672
- components:
- - type: Transform
- pos: -82.5,-68.5
- parent: 2
- - uid: 16673
- components:
- - type: Transform
- pos: -82.5,-69.5
- parent: 2
- - uid: 16674
- components:
- - type: Transform
- pos: -82.5,-70.5
- parent: 2
- uid: 16675
components:
- type: Transform
@@ -21516,235 +20636,70 @@ entities:
- type: Transform
pos: -79.5,-64.5
parent: 2
- - uid: 16683
- components:
- - type: Transform
- pos: -79.5,-65.5
- parent: 2
- - uid: 16684
- components:
- - type: Transform
- pos: -79.5,-66.5
- parent: 2
- - uid: 16685
- components:
- - type: Transform
- pos: -79.5,-68.5
- parent: 2
- - uid: 16688
- components:
- - type: Transform
- pos: -80.5,-65.5
- parent: 2
- uid: 16689
components:
- type: Transform
pos: -80.5,-64.5
parent: 2
- - uid: 16690
- components:
- - type: Transform
- pos: -80.5,-66.5
- parent: 2
- - uid: 16691
- components:
- - type: Transform
- pos: -80.5,-67.5
- parent: 2
- - uid: 16692
- components:
- - type: Transform
- pos: -81.5,-71.5
- parent: 2
- - uid: 16694
- components:
- - type: Transform
- pos: -80.5,-72.5
- parent: 2
- - uid: 16696
- components:
- - type: Transform
- pos: -78.5,-70.5
- parent: 2
- - uid: 16697
- components:
- - type: Transform
- pos: -78.5,-71.5
- parent: 2
- - uid: 16698
- components:
- - type: Transform
- pos: -78.5,-72.5
- parent: 2
- - uid: 16699
- components:
- - type: Transform
- pos: -77.5,-71.5
- parent: 2
- - uid: 16700
- components:
- - type: Transform
- pos: -75.5,-71.5
- parent: 2
- - uid: 16701
- components:
- - type: Transform
- pos: -80.5,-71.5
- parent: 2
- - uid: 16702
- components:
- - type: Transform
- pos: -77.5,-72.5
- parent: 2
- - uid: 16706
- components:
- - type: Transform
- pos: -74.5,-71.5
- parent: 2
- - uid: 16709
- components:
- - type: Transform
- pos: -71.5,-76.5
- parent: 2
- uid: 16715
components:
- type: Transform
pos: -64.5,-73.5
parent: 2
- - uid: 16719
- components:
- - type: Transform
- pos: -77.5,-70.5
- parent: 2
- - uid: 16720
- components:
- - type: Transform
- pos: -77.5,-73.5
- parent: 2
- - uid: 16724
- components:
- - type: Transform
- pos: -72.5,-74.5
- parent: 2
- - uid: 16732
+ - uid: 16729
components:
- type: Transform
- pos: -70.5,-68.5
+ pos: -74.5,-67.5
parent: 2
- uid: 16734
components:
- type: Transform
- pos: -70.5,-69.5
+ pos: -62.5,-75.5
parent: 2
- uid: 16735
components:
- type: Transform
- pos: -70.5,-71.5
+ pos: -62.5,-70.5
parent: 2
- uid: 16736
components:
- type: Transform
- pos: -70.5,-70.5
+ pos: -59.5,-72.5
parent: 2
- uid: 16737
components:
- type: Transform
- pos: -70.5,-72.5
+ pos: -59.5,-71.5
parent: 2
- uid: 16739
components:
- type: Transform
- pos: -69.5,-69.5
- parent: 2
- - uid: 16742
- components:
- - type: Transform
- pos: -71.5,-69.5
+ pos: -58.5,-67.5
parent: 2
- uid: 16743
components:
- type: Transform
- pos: -71.5,-70.5
+ pos: -57.5,-67.5
parent: 2
- uid: 16744
components:
- type: Transform
- pos: -71.5,-71.5
- parent: 2
- - uid: 16745
- components:
- - type: Transform
- pos: -71.5,-68.5
+ pos: -59.5,-67.5
parent: 2
- uid: 16749
components:
- type: Transform
- pos: -74.5,-70.5
- parent: 2
- - uid: 16750
- components:
- - type: Transform
- pos: -72.5,-68.5
- parent: 2
- - uid: 16751
- components:
- - type: Transform
- pos: -72.5,-70.5
- parent: 2
- - uid: 16753
- components:
- - type: Transform
- pos: -72.5,-69.5
- parent: 2
- - uid: 16754
- components:
- - type: Transform
- pos: -72.5,-76.5
- parent: 2
- - uid: 16758
- components:
- - type: Transform
- pos: -73.5,-69.5
- parent: 2
- - uid: 16759
- components:
- - type: Transform
- pos: -73.5,-70.5
- parent: 2
- - uid: 16760
- components:
- - type: Transform
- pos: -75.5,-70.5
- parent: 2
- - uid: 16765
- components:
- - type: Transform
- pos: -74.5,-69.5
- parent: 2
- - uid: 16768
- components:
- - type: Transform
- pos: -75.5,-75.5
- parent: 2
- - uid: 16771
- components:
- - type: Transform
- pos: -75.5,-69.5
- parent: 2
- - uid: 16772
- components:
- - type: Transform
- pos: -77.5,-68.5
+ pos: -60.5,-67.5
parent: 2
- uid: 16774
components:
- type: Transform
- pos: -77.5,-74.5
+ pos: -61.5,-68.5
parent: 2
- uid: 16781
components:
- type: Transform
- pos: -70.5,-74.5
+ pos: -75.5,-70.5
parent: 2
- uid: 16782
components:
@@ -21779,7 +20734,7 @@ entities:
- uid: 16790
components:
- type: Transform
- pos: -70.5,-73.5
+ pos: -73.5,-69.5
parent: 2
- uid: 16791
components:
@@ -21789,88 +20744,18 @@ entities:
- uid: 16801
components:
- type: Transform
- pos: -65.5,-68.5
+ pos: -62.5,-69.5
parent: 2
- uid: 16803
components:
- type: Transform
- pos: -65.5,-69.5
- parent: 2
- - uid: 16805
- components:
- - type: Transform
- pos: -73.5,-76.5
- parent: 2
- - uid: 16814
- components:
- - type: Transform
- pos: -75.5,-74.5
- parent: 2
- - uid: 16815
- components:
- - type: Transform
- pos: -69.5,-68.5
- parent: 2
- - uid: 16817
- components:
- - type: Transform
- pos: -70.5,-76.5
- parent: 2
- - uid: 16819
- components:
- - type: Transform
- pos: -73.5,-74.5
- parent: 2
- - uid: 16827
- components:
- - type: Transform
- pos: -74.5,-74.5
- parent: 2
- - uid: 16830
- components:
- - type: Transform
- pos: -75.5,-73.5
+ pos: -61.5,-71.5
parent: 2
- uid: 16831
components:
- type: Transform
pos: -127.5,19.5
parent: 2
- - uid: 16835
- components:
- - type: Transform
- pos: -47.5,-66.5
- parent: 2
- - uid: 16837
- components:
- - type: Transform
- pos: -49.5,-67.5
- parent: 2
- - uid: 16845
- components:
- - type: Transform
- pos: -49.5,-68.5
- parent: 2
- - uid: 16862
- components:
- - type: Transform
- pos: -92.5,-72.5
- parent: 2
- - uid: 16863
- components:
- - type: Transform
- pos: -92.5,-73.5
- parent: 2
- - uid: 16902
- components:
- - type: Transform
- pos: -51.5,-72.5
- parent: 2
- - uid: 16913
- components:
- - type: Transform
- pos: -73.5,-40.5
- parent: 2
- uid: 16918
components:
- type: Transform
@@ -21901,136 +20786,16 @@ entities:
- type: Transform
pos: -49.5,-77.5
parent: 2
- - uid: 16935
- components:
- - type: Transform
- pos: -52.5,-76.5
- parent: 2
- uid: 16937
components:
- type: Transform
pos: -53.5,-77.5
parent: 2
- - uid: 16938
- components:
- - type: Transform
- pos: -62.5,-77.5
- parent: 2
- - uid: 16949
- components:
- - type: Transform
- pos: -64.5,-76.5
- parent: 2
- - uid: 16952
- components:
- - type: Transform
- pos: -64.5,-77.5
- parent: 2
- - uid: 16953
- components:
- - type: Transform
- pos: -63.5,-77.5
- parent: 2
- - uid: 16968
- components:
- - type: Transform
- pos: -65.5,-78.5
- parent: 2
- - uid: 16969
- components:
- - type: Transform
- pos: -59.5,-78.5
- parent: 2
- - uid: 16970
- components:
- - type: Transform
- pos: -64.5,-78.5
- parent: 2
- - uid: 16971
- components:
- - type: Transform
- pos: -63.5,-78.5
- parent: 2
- - uid: 16972
- components:
- - type: Transform
- pos: -61.5,-78.5
- parent: 2
- - uid: 16973
- components:
- - type: Transform
- pos: -60.5,-78.5
- parent: 2
- - uid: 16975
- components:
- - type: Transform
- pos: -62.5,-78.5
- parent: 2
- - uid: 16979
- components:
- - type: Transform
- pos: -61.5,-79.5
- parent: 2
- - uid: 16983
- components:
- - type: Transform
- pos: -47.5,-73.5
- parent: 2
- - uid: 16988
- components:
- - type: Transform
- pos: -57.5,-67.5
- parent: 2
- - uid: 16991
- components:
- - type: Transform
- pos: -47.5,-72.5
- parent: 2
- - uid: 16992
- components:
- - type: Transform
- pos: -47.5,-71.5
- parent: 2
- - uid: 17000
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - uid: 17004
- components:
- - type: Transform
- pos: -49.5,-72.5
- parent: 2
- - uid: 17009
- components:
- - type: Transform
- pos: -50.5,-72.5
- parent: 2
- - uid: 17082
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - uid: 17120
- components:
- - type: Transform
- pos: -56.5,-64.5
- parent: 2
- uid: 17121
components:
- type: Transform
pos: -57.5,-64.5
parent: 2
- - uid: 17122
- components:
- - type: Transform
- pos: -56.5,-63.5
- parent: 2
- - uid: 17128
- components:
- - type: Transform
- pos: -57.5,-63.5
- parent: 2
- uid: 17144
components:
- type: Transform
@@ -22051,80 +20816,15 @@ entities:
- type: Transform
pos: -136.5,5.5
parent: 2
- - uid: 17178
- components:
- - type: Transform
- pos: -47.5,-65.5
- parent: 2
- - uid: 17182
- components:
- - type: Transform
- pos: -47.5,-70.5
- parent: 2
- - uid: 17188
- components:
- - type: Transform
- pos: -51.5,-69.5
- parent: 2
- uid: 17189
components:
- type: Transform
- pos: -50.5,-69.5
- parent: 2
- - uid: 17190
- components:
- - type: Transform
- pos: -49.5,-69.5
- parent: 2
- - uid: 17192
- components:
- - type: Transform
- pos: -50.5,-67.5
+ pos: -79.5,-70.5
parent: 2
- uid: 17195
components:
- type: Transform
- pos: -50.5,-68.5
- parent: 2
- - uid: 17198
- components:
- - type: Transform
- pos: -52.5,-67.5
- parent: 2
- - uid: 17199
- components:
- - type: Transform
- pos: -53.5,-67.5
- parent: 2
- - uid: 17200
- components:
- - type: Transform
- pos: -50.5,-70.5
- parent: 2
- - uid: 17201
- components:
- - type: Transform
- pos: -51.5,-70.5
- parent: 2
- - uid: 17207
- components:
- - type: Transform
- pos: -49.5,-70.5
- parent: 2
- - uid: 17209
- components:
- - type: Transform
- pos: -47.5,-67.5
- parent: 2
- - uid: 17211
- components:
- - type: Transform
- pos: -59.5,-67.5
- parent: 2
- - uid: 17216
- components:
- - type: Transform
- pos: -60.5,-67.5
+ pos: -79.5,-71.5
parent: 2
- uid: 17340
components:
@@ -22171,11 +20871,6 @@ entities:
- type: Transform
pos: -70.5,-67.5
parent: 2
- - uid: 17546
- components:
- - type: Transform
- pos: -77.5,-60.5
- parent: 2
- uid: 17549
components:
- type: Transform
@@ -22201,40 +20896,20 @@ entities:
- type: Transform
pos: -21.5,-62.5
parent: 2
- - uid: 17610
- components:
- - type: Transform
- pos: -21.5,-66.5
- parent: 2
- - uid: 17611
- components:
- - type: Transform
- pos: -21.5,-65.5
- parent: 2
- - uid: 17658
- components:
- - type: Transform
- pos: -13.5,-60.5
- parent: 2
- - uid: 17746
- components:
- - type: Transform
- pos: -13.5,-61.5
- parent: 2
- - uid: 17747
+ - uid: 18043
components:
- type: Transform
- pos: -21.5,-64.5
+ pos: -81.5,-76.5
parent: 2
- - uid: 17808
+ - uid: 18074
components:
- type: Transform
- pos: -66.5,-67.5
+ pos: -79.5,-76.5
parent: 2
- - uid: 18241
+ - uid: 18216
components:
- type: Transform
- pos: -62.5,-67.5
+ pos: -49.5,-67.5
parent: 2
- uid: 18246
components:
@@ -22246,25 +20921,25 @@ entities:
- type: Transform
pos: -118.5,-34.5
parent: 2
- - uid: 18268
+ - uid: 18404
components:
- type: Transform
- pos: -117.5,-31.5
+ pos: -56.5,-67.5
parent: 2
- - uid: 18275
+ - uid: 18601
components:
- type: Transform
- pos: -116.5,-31.5
+ pos: -50.5,-66.5
parent: 2
- - uid: 18747
+ - uid: 18702
components:
- type: Transform
- pos: -58.5,-67.5
+ pos: -93.5,-59.5
parent: 2
- - uid: 18822
+ - uid: 18713
components:
- type: Transform
- pos: -77.5,-61.5
+ pos: -118.5,-28.5
parent: 2
- uid: 18830
components:
@@ -22276,25 +20951,20 @@ entities:
- type: Transform
pos: -108.5,-55.5
parent: 2
- - uid: 18901
- components:
- - type: Transform
- pos: -109.5,-54.5
- parent: 2
- - uid: 18909
+ - uid: 18864
components:
- type: Transform
- pos: -132.5,-29.5
+ pos: -83.5,-60.5
parent: 2
- - uid: 18949
+ - uid: 18901
components:
- type: Transform
- pos: -77.5,-67.5
+ pos: -109.5,-54.5
parent: 2
- - uid: 18951
+ - uid: 18955
components:
- type: Transform
- pos: -77.5,-66.5
+ pos: -100.5,-2.5
parent: 2
- uid: 18971
components:
@@ -22346,40 +21016,20 @@ entities:
- type: Transform
pos: -134.5,-28.5
parent: 2
- - uid: 19507
- components:
- - type: Transform
- pos: -77.5,-63.5
- parent: 2
- - uid: 19540
- components:
- - type: Transform
- pos: -77.5,-64.5
- parent: 2
- - uid: 19637
- components:
- - type: Transform
- pos: -77.5,-62.5
- parent: 2
- - uid: 19719
+ - uid: 19720
components:
- type: Transform
- pos: -77.5,-65.5
+ pos: -90.5,-2.5
parent: 2
- uid: 19749
components:
- type: Transform
pos: -98.5,-15.5
parent: 2
- - uid: 19762
- components:
- - type: Transform
- pos: -99.5,-9.5
- parent: 2
- - uid: 20028
+ - uid: 20037
components:
- type: Transform
- pos: -16.5,12.5
+ pos: -84.5,-58.5
parent: 2
- uid: 20081
components:
@@ -22391,6 +21041,11 @@ entities:
- type: Transform
pos: -106.5,33.5
parent: 2
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: -77.5,-61.5
+ parent: 2
- uid: 20312
components:
- type: Transform
@@ -22451,11 +21106,6 @@ entities:
- type: Transform
pos: -124.5,36.5
parent: 2
- - uid: 20459
- components:
- - type: Transform
- pos: -115.5,37.5
- parent: 2
- uid: 20465
components:
- type: Transform
@@ -22466,61 +21116,26 @@ entities:
- type: Transform
pos: -116.5,36.5
parent: 2
- - uid: 20893
- components:
- - type: Transform
- pos: -114.5,37.5
- parent: 2
- uid: 20894
components:
- type: Transform
pos: -111.5,38.5
parent: 2
- - uid: 21001
- components:
- - type: Transform
- pos: -117.5,37.5
- parent: 2
- - uid: 21333
- components:
- - type: Transform
- pos: -12.5,-57.5
- parent: 2
- - uid: 21357
- components:
- - type: Transform
- pos: -22.5,-67.5
- parent: 2
- - uid: 21358
- components:
- - type: Transform
- pos: -19.5,-57.5
- parent: 2
- - uid: 21423
+ - uid: 20945
components:
- type: Transform
- pos: -90.5,-69.5
+ pos: -48.5,-65.5
parent: 2
- - uid: 21424
+ - uid: 21001
components:
- type: Transform
- pos: -91.5,-70.5
+ pos: -117.5,37.5
parent: 2
- uid: 21426
components:
- type: Transform
pos: -93.5,-70.5
parent: 2
- - uid: 21427
- components:
- - type: Transform
- pos: -89.5,-69.5
- parent: 2
- - uid: 21431
- components:
- - type: Transform
- pos: -88.5,-69.5
- parent: 2
- uid: 21443
components:
- type: Transform
@@ -22531,11 +21146,6 @@ entities:
- type: Transform
pos: -123.5,36.5
parent: 2
- - uid: 21458
- components:
- - type: Transform
- pos: -115.5,36.5
- parent: 2
- uid: 21460
components:
- type: Transform
@@ -22551,26 +21161,11 @@ entities:
- type: Transform
pos: -110.5,38.5
parent: 2
- - uid: 21487
- components:
- - type: Transform
- pos: -109.5,35.5
- parent: 2
- - uid: 21565
- components:
- - type: Transform
- pos: -19.5,-58.5
- parent: 2
- uid: 21597
components:
- type: Transform
pos: -18.5,-62.5
parent: 2
- - uid: 21598
- components:
- - type: Transform
- pos: -12.5,-56.5
- parent: 2
- uid: 21599
components:
- type: Transform
@@ -22581,20 +21176,10 @@ entities:
- type: Transform
pos: -11.5,-54.5
parent: 2
- - uid: 21601
- components:
- - type: Transform
- pos: -22.5,-64.5
- parent: 2
- - uid: 21770
- components:
- - type: Transform
- pos: -110.5,37.5
- parent: 2
- - uid: 21771
+ - uid: 21673
components:
- type: Transform
- pos: -109.5,34.5
+ pos: -77.5,-54.5
parent: 2
- uid: 21772
components:
@@ -22616,16 +21201,6 @@ entities:
- type: Transform
pos: -106.5,-39.5
parent: 2
- - uid: 21862
- components:
- - type: Transform
- pos: -109.5,-38.5
- parent: 2
- - uid: 21863
- components:
- - type: Transform
- pos: -108.5,-38.5
- parent: 2
- uid: 21869
components:
- type: Transform
@@ -22671,16 +21246,6 @@ entities:
- type: Transform
pos: -35.5,4.5
parent: 2
- - uid: 21950
- components:
- - type: Transform
- pos: -21.5,-67.5
- parent: 2
- - uid: 21951
- components:
- - type: Transform
- pos: -22.5,-65.5
- parent: 2
- uid: 21952
components:
- type: Transform
@@ -22691,6 +21256,11 @@ entities:
- type: Transform
pos: -20.5,-61.5
parent: 2
+ - uid: 22006
+ components:
+ - type: Transform
+ pos: -84.5,-59.5
+ parent: 2
- uid: 22019
components:
- type: Transform
@@ -22706,6 +21276,16 @@ entities:
- type: Transform
pos: -35.5,7.5
parent: 2
+ - uid: 22133
+ components:
+ - type: Transform
+ pos: -98.5,-3.5
+ parent: 2
+ - uid: 22134
+ components:
+ - type: Transform
+ pos: -50.5,-67.5
+ parent: 2
- uid: 22144
components:
- type: Transform
@@ -22746,140 +21326,110 @@ entities:
- type: Transform
pos: -107.5,38.5
parent: 2
- - uid: 22427
- components:
- - type: Transform
- pos: -127.5,33.5
- parent: 2
- - uid: 22428
- components:
- - type: Transform
- pos: -127.5,34.5
- parent: 2
- - uid: 22429
- components:
- - type: Transform
- pos: -129.5,33.5
- parent: 2
- - uid: 22670
- components:
- - type: Transform
- pos: -138.5,30.5
- parent: 2
- - uid: 22672
- components:
- - type: Transform
- pos: -88.5,-59.5
- parent: 2
- - uid: 22798
- components:
- - type: Transform
- pos: -88.5,-60.5
- parent: 2
- - uid: 22817
+ - uid: 22358
components:
- type: Transform
- pos: -135.5,3.5
+ pos: -47.5,-66.5
parent: 2
- - uid: 22881
+ - uid: 22410
components:
- type: Transform
- pos: -61.5,-67.5
+ pos: -83.5,-79.5
parent: 2
- - uid: 22896
+ - uid: 22427
components:
- type: Transform
- pos: -96.5,-59.5
+ pos: -127.5,33.5
parent: 2
- - uid: 22902
+ - uid: 22428
components:
- type: Transform
- pos: -90.5,-59.5
+ pos: -127.5,34.5
parent: 2
- - uid: 22907
+ - uid: 22429
components:
- type: Transform
- pos: -89.5,-59.5
+ pos: -129.5,33.5
parent: 2
- - uid: 22909
+ - uid: 22463
components:
- type: Transform
- pos: -96.5,-60.5
+ pos: -84.5,-79.5
parent: 2
- - uid: 23055
+ - uid: 22496
components:
- type: Transform
- pos: -13.5,9.5
+ pos: -91.5,-1.5
parent: 2
- - uid: 23076
+ - uid: 22498
components:
- type: Transform
- pos: -16.5,9.5
+ pos: -91.5,1.5
parent: 2
- - uid: 23077
+ - uid: 22499
components:
- type: Transform
- pos: -63.5,-76.5
+ pos: -100.5,-1.5
parent: 2
- - uid: 23078
+ - uid: 22500
components:
- type: Transform
- pos: -57.5,-74.5
+ pos: -91.5,-2.5
parent: 2
- - uid: 23080
+ - uid: 22501
components:
- type: Transform
- pos: -59.5,-76.5
+ pos: -91.5,0.5
parent: 2
- - uid: 23083
+ - uid: 22670
components:
- type: Transform
- pos: -56.5,-74.5
+ pos: -138.5,30.5
parent: 2
- - uid: 23087
+ - uid: 22671
components:
- type: Transform
- pos: -55.5,-74.5
+ pos: -96.5,-3.5
parent: 2
- - uid: 23088
+ - uid: 22672
components:
- type: Transform
- pos: -61.5,-77.5
+ pos: -98.5,-4.5
parent: 2
- - uid: 23089
+ - uid: 22687
components:
- type: Transform
- pos: -61.5,-76.5
+ pos: -97.5,-3.5
parent: 2
- - uid: 23090
+ - uid: 22817
components:
- type: Transform
- pos: -61.5,-74.5
+ pos: -135.5,3.5
parent: 2
- - uid: 23091
+ - uid: 22876
components:
- type: Transform
- pos: -60.5,-77.5
+ pos: -49.5,-66.5
parent: 2
- - uid: 23092
+ - uid: 22881
components:
- type: Transform
- pos: -61.5,-75.5
+ pos: -52.5,-67.5
parent: 2
- - uid: 23093
+ - uid: 22892
components:
- type: Transform
- pos: -60.5,-76.5
+ pos: -71.5,-43.5
parent: 2
- - uid: 23094
+ - uid: 23055
components:
- type: Transform
- pos: -60.5,-74.5
+ pos: -13.5,9.5
parent: 2
- - uid: 23095
+ - uid: 23076
components:
- type: Transform
- pos: -59.5,-77.5
+ pos: -16.5,9.5
parent: 2
- uid: 23096
components:
@@ -22891,66 +21441,76 @@ entities:
- type: Transform
pos: -59.5,-75.5
parent: 2
- - uid: 23098
+ - uid: 23112
components:
- type: Transform
- pos: -59.5,-74.5
+ pos: -106.5,-51.5
parent: 2
- - uid: 23102
+ - uid: 23122
components:
- type: Transform
- pos: -58.5,-74.5
+ pos: -78.5,-69.5
parent: 2
- - uid: 23106
+ - uid: 23123
components:
- type: Transform
- pos: -53.5,-76.5
+ pos: -133.5,34.5
parent: 2
- - uid: 23107
+ - uid: 23125
components:
- type: Transform
- pos: -53.5,-74.5
+ pos: -78.5,-70.5
parent: 2
- - uid: 23110
+ - uid: 23127
components:
- type: Transform
- pos: -54.5,-74.5
+ pos: -14.5,9.5
parent: 2
- - uid: 23111
+ - uid: 23172
components:
- type: Transform
- pos: -53.5,-75.5
+ pos: -15.5,9.5
parent: 2
- - uid: 23112
+ - uid: 23173
components:
- type: Transform
- pos: -106.5,-51.5
+ pos: -75.5,-35.5
parent: 2
- - uid: 23123
+ - uid: 23206
components:
- type: Transform
- pos: -133.5,34.5
+ pos: -91.5,-0.5
parent: 2
- - uid: 23127
+ - uid: 23274
components:
- type: Transform
- pos: -14.5,9.5
+ pos: -83.5,-76.5
parent: 2
- - uid: 23164
+ - uid: 23458
components:
- type: Transform
- pos: -82.5,9.5
+ pos: -94.5,-59.5
parent: 2
- - uid: 23172
+ - uid: 23459
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -48.5,-66.5
+ parent: 2
+ - uid: 23461
+ components:
+ - type: Transform
+ pos: -82.5,-75.5
parent: 2
- uid: 23674
components:
- type: Transform
pos: -73.5,-32.5
parent: 2
+ - uid: 23717
+ components:
+ - type: Transform
+ pos: -65.5,-69.5
+ parent: 2
- uid: 23779
components:
- type: Transform
@@ -22971,20 +21531,15 @@ entities:
- type: Transform
pos: -106.5,-19.5
parent: 2
- - uid: 24103
- components:
- - type: Transform
- pos: -19.5,-69.5
- parent: 2
- - uid: 24105
+ - uid: 24003
components:
- type: Transform
- pos: -22.5,-68.5
+ pos: -106.5,-34.5
parent: 2
- - uid: 24108
+ - uid: 24103
components:
- type: Transform
- pos: -22.5,-66.5
+ pos: -19.5,-69.5
parent: 2
- uid: 24111
components:
@@ -23021,36 +21576,16 @@ entities:
- type: Transform
pos: -43.5,-76.5
parent: 2
- - uid: 24386
- components:
- - type: Transform
- pos: -43.5,-75.5
- parent: 2
- - uid: 24389
- components:
- - type: Transform
- pos: -42.5,-75.5
- parent: 2
- - uid: 24455
+ - uid: 24455
components:
- type: Transform
pos: -76.5,-24.5
parent: 2
- - uid: 24523
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- uid: 24528
components:
- type: Transform
pos: -44.5,-76.5
parent: 2
- - uid: 24537
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- uid: 24541
components:
- type: Transform
@@ -23066,11 +21601,6 @@ entities:
- type: Transform
pos: -73.5,-29.5
parent: 2
- - uid: 24813
- components:
- - type: Transform
- pos: -46.5,-75.5
- parent: 2
- uid: 24816
components:
- type: Transform
@@ -23086,150 +21616,1857 @@ entities:
- type: Transform
pos: -45.5,-76.5
parent: 2
- - uid: 24824
+ - uid: 24825
components:
- type: Transform
- pos: -41.5,-75.5
+ pos: -41.5,-76.5
parent: 2
- - uid: 24825
+ - uid: 25447
components:
- type: Transform
- pos: -41.5,-76.5
+ pos: -106.5,-48.5
parent: 2
- - uid: 24826
+ - uid: 25453
+ components:
+ - type: Transform
+ pos: -89.5,-15.5
+ parent: 2
+ - uid: 25783
+ components:
+ - type: Transform
+ pos: -10.5,-56.5
+ parent: 2
+ - uid: 25787
+ components:
+ - type: Transform
+ pos: -11.5,-60.5
+ parent: 2
+ - uid: 25791
+ components:
+ - type: Transform
+ pos: -12.5,-63.5
+ parent: 2
+ - uid: 25833
+ components:
+ - type: Transform
+ pos: -9.5,-55.5
+ parent: 2
+ - uid: 25834
+ components:
+ - type: Transform
+ pos: -9.5,-56.5
+ parent: 2
+ - uid: 25835
+ components:
+ - type: Transform
+ pos: -10.5,-57.5
+ parent: 2
+ - uid: 25836
+ components:
+ - type: Transform
+ pos: -10.5,-58.5
+ parent: 2
+ - uid: 25837
+ components:
+ - type: Transform
+ pos: -10.5,-59.5
+ parent: 2
+ - uid: 25838
+ components:
+ - type: Transform
+ pos: -10.5,-60.5
+ parent: 2
+ - uid: 25839
+ components:
+ - type: Transform
+ pos: -11.5,-61.5
+ parent: 2
+ - uid: 25840
+ components:
+ - type: Transform
+ pos: -11.5,-62.5
+ parent: 2
+- proto: AsteroidRockMining
+ entities:
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -113.5,34.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -109.5,37.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -97.5,-50.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -91.5,-69.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -97.5,-51.5
+ parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -97.5,-49.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ pos: -93.5,-68.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: -92.5,-70.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: -109.5,36.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: -110.5,34.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -114.5,35.5
+ parent: 2
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: -92.5,-71.5
+ parent: 2
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: -100.5,-63.5
+ parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: -101.5,-63.5
+ parent: 2
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: -18.5,-57.5
+ parent: 2
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: -133.5,33.5
+ parent: 2
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: -110.5,-35.5
+ parent: 2
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: -109.5,-35.5
+ parent: 2
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: -135.5,31.5
+ parent: 2
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: -97.5,-64.5
+ parent: 2
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: -110.5,-38.5
+ parent: 2
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: -96.5,-61.5
+ parent: 2
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: -98.5,-64.5
+ parent: 2
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: -99.5,-64.5
+ parent: 2
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: -97.5,-60.5
+ parent: 2
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: -52.5,-75.5
+ parent: 2
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: -98.5,-65.5
+ parent: 2
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: -51.5,-75.5
+ parent: 2
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: -50.5,-75.5
+ parent: 2
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: -53.5,-75.5
+ parent: 2
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: -81.5,-69.5
+ parent: 2
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: -102.5,-63.5
+ parent: 2
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: -79.5,-65.5
+ parent: 2
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: -80.5,-65.5
+ parent: 2
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: -110.5,-37.5
+ parent: 2
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: -110.5,-36.5
+ parent: 2
+ - uid: 1839
+ components:
+ - type: Transform
+ pos: -109.5,-37.5
+ parent: 2
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: -83.5,-66.5
+ parent: 2
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: -63.5,-76.5
+ parent: 2
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: -92.5,-68.5
+ parent: 2
+ - uid: 1875
+ components:
+ - type: Transform
+ pos: -86.5,-59.5
+ parent: 2
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -55.5,-75.5
+ parent: 2
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: -83.5,-69.5
+ parent: 2
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: -83.5,-67.5
+ parent: 2
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: -91.5,-59.5
+ parent: 2
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: -83.5,-68.5
+ parent: 2
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: -99.5,-65.5
+ parent: 2
+ - uid: 2123
+ components:
+ - type: Transform
+ pos: -94.5,-67.5
+ parent: 2
+ - uid: 2131
+ components:
+ - type: Transform
+ pos: -83.5,-65.5
+ parent: 2
+ - uid: 2159
+ components:
+ - type: Transform
+ pos: -82.5,-65.5
+ parent: 2
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: -87.5,-59.5
+ parent: 2
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: -94.5,-66.5
+ parent: 2
+ - uid: 2314
+ components:
+ - type: Transform
+ pos: -93.5,-67.5
+ parent: 2
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: -81.5,-65.5
+ parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: -90.5,-68.5
+ parent: 2
+ - uid: 2380
+ components:
+ - type: Transform
+ pos: -94.5,-62.5
+ parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: -94.5,-65.5
+ parent: 2
+ - uid: 2418
+ components:
+ - type: Transform
+ pos: -79.5,-66.5
+ parent: 2
+ - uid: 2566
+ components:
+ - type: Transform
+ pos: -92.5,-59.5
+ parent: 2
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: -98.5,-66.5
+ parent: 2
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: -97.5,-65.5
+ parent: 2
+ - uid: 2570
+ components:
+ - type: Transform
+ pos: -97.5,-66.5
+ parent: 2
+ - uid: 2572
+ components:
+ - type: Transform
+ pos: -16.5,11.5
+ parent: 2
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: -47.5,-71.5
+ parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -47.5,-69.5
+ parent: 2
+ - uid: 2575
+ components:
+ - type: Transform
+ pos: -47.5,-68.5
+ parent: 2
+ - uid: 2580
+ components:
+ - type: Transform
+ pos: -79.5,-67.5
+ parent: 2
+ - uid: 2581
+ components:
+ - type: Transform
+ pos: -94.5,-61.5
+ parent: 2
+ - uid: 2586
+ components:
+ - type: Transform
+ pos: -85.5,-61.5
+ parent: 2
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: -93.5,-61.5
+ parent: 2
+ - uid: 2628
+ components:
+ - type: Transform
+ pos: -16.5,16.5
+ parent: 2
+ - uid: 2630
+ components:
+ - type: Transform
+ pos: -82.5,-69.5
+ parent: 2
+ - uid: 2640
+ components:
+ - type: Transform
+ pos: -70.5,-68.5
+ parent: 2
+ - uid: 2642
+ components:
+ - type: Transform
+ pos: -68.5,-68.5
+ parent: 2
+ - uid: 2652
+ components:
+ - type: Transform
+ pos: -69.5,-68.5
+ parent: 2
+ - uid: 2731
+ components:
+ - type: Transform
+ pos: -49.5,-75.5
+ parent: 2
+ - uid: 2739
+ components:
+ - type: Transform
+ pos: -47.5,-70.5
+ parent: 2
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: -47.5,-75.5
+ parent: 2
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: -48.5,-75.5
+ parent: 2
+ - uid: 3347
+ components:
+ - type: Transform
+ pos: -56.5,-75.5
+ parent: 2
+ - uid: 3366
+ components:
+ - type: Transform
+ pos: -54.5,-75.5
+ parent: 2
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: -57.5,-75.5
+ parent: 2
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: -99.5,-49.5
+ parent: 2
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: -13.5,-59.5
+ parent: 2
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: -17.5,-57.5
+ parent: 2
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: -96.5,-62.5
+ parent: 2
+ - uid: 3522
+ components:
+ - type: Transform
+ pos: -96.5,-60.5
+ parent: 2
+ - uid: 3628
+ components:
+ - type: Transform
+ pos: -81.5,-74.5
+ parent: 2
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: -77.5,-75.5
+ parent: 2
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: -77.5,-71.5
+ parent: 2
+ - uid: 3644
+ components:
+ - type: Transform
+ pos: -74.5,-72.5
+ parent: 2
+ - uid: 3686
+ components:
+ - type: Transform
+ pos: -75.5,-71.5
+ parent: 2
+ - uid: 3699
+ components:
+ - type: Transform
+ pos: -89.5,-68.5
+ parent: 2
+ - uid: 3701
+ components:
+ - type: Transform
+ pos: -73.5,-74.5
+ parent: 2
+ - uid: 3707
+ components:
+ - type: Transform
+ pos: -75.5,-75.5
+ parent: 2
+ - uid: 3708
+ components:
+ - type: Transform
+ pos: -78.5,-72.5
+ parent: 2
+ - uid: 3709
+ components:
+ - type: Transform
+ pos: -73.5,-73.5
+ parent: 2
+ - uid: 3735
+ components:
+ - type: Transform
+ pos: -17.5,-56.5
+ parent: 2
+ - uid: 3762
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 3807
+ components:
+ - type: Transform
+ pos: -72.5,-70.5
+ parent: 2
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: -73.5,-72.5
+ parent: 2
+ - uid: 3920
+ components:
+ - type: Transform
+ pos: -83.5,-70.5
+ parent: 2
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: -76.5,-71.5
+ parent: 2
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: -74.5,-71.5
+ parent: 2
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: -76.5,-75.5
+ parent: 2
+ - uid: 3927
+ components:
+ - type: Transform
+ pos: -74.5,-75.5
+ parent: 2
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: -15.5,19.5
+ parent: 2
+ - uid: 4002
+ components:
+ - type: Transform
+ pos: -13.5,15.5
+ parent: 2
+ - uid: 4012
+ components:
+ - type: Transform
+ pos: -21.5,-68.5
+ parent: 2
+ - uid: 4024
+ components:
+ - type: Transform
+ pos: -19.5,-56.5
+ parent: 2
+ - uid: 4035
+ components:
+ - type: Transform
+ pos: -72.5,-72.5
+ parent: 2
+ - uid: 4146
+ components:
+ - type: Transform
+ pos: -13.5,16.5
+ parent: 2
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: -16.5,15.5
+ parent: 2
+ - uid: 4148
+ components:
+ - type: Transform
+ pos: -15.5,15.5
+ parent: 2
+ - uid: 4149
+ components:
+ - type: Transform
+ pos: -14.5,19.5
+ parent: 2
+ - uid: 4151
+ components:
+ - type: Transform
+ pos: -14.5,15.5
+ parent: 2
+ - uid: 4153
+ components:
+ - type: Transform
+ pos: -82.5,10.5
+ parent: 2
+ - uid: 4155
+ components:
+ - type: Transform
+ pos: -133.5,32.5
+ parent: 2
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: -72.5,-71.5
+ parent: 2
+ - uid: 4248
+ components:
+ - type: Transform
+ pos: -49.5,-68.5
+ parent: 2
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: -79.5,-69.5
+ parent: 2
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: -58.5,-69.5
+ parent: 2
+ - uid: 4278
+ components:
+ - type: Transform
+ pos: -82.5,8.5
+ parent: 2
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: -134.5,31.5
+ parent: 2
+ - uid: 4318
+ components:
+ - type: Transform
+ pos: -77.5,-69.5
+ parent: 2
+ - uid: 4357
+ components:
+ - type: Transform
+ pos: -18.5,-56.5
+ parent: 2
+ - uid: 4434
+ components:
+ - type: Transform
+ pos: -12.5,-55.5
+ parent: 2
+ - uid: 4435
+ components:
+ - type: Transform
+ pos: -16.5,13.5
+ parent: 2
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: -13.5,14.5
+ parent: 2
+ - uid: 4485
+ components:
+ - type: Transform
+ pos: -99.5,-50.5
+ parent: 2
+ - uid: 4502
+ components:
+ - type: Transform
+ pos: -99.5,-51.5
+ parent: 2
+ - uid: 4503
+ components:
+ - type: Transform
+ pos: -98.5,-51.5
+ parent: 2
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: -98.5,-49.5
+ parent: 2
+ - uid: 4519
+ components:
+ - type: Transform
+ pos: -16.5,14.5
+ parent: 2
+ - uid: 4525
+ components:
+ - type: Transform
+ pos: -15.5,13.5
+ parent: 2
+ - uid: 4661
+ components:
+ - type: Transform
+ pos: -83.5,-74.5
+ parent: 2
+ - uid: 4764
+ components:
+ - type: Transform
+ pos: -75.5,-67.5
+ parent: 2
+ - uid: 4804
+ components:
+ - type: Transform
+ pos: -77.5,-67.5
+ parent: 2
+ - uid: 4816
+ components:
+ - type: Transform
+ pos: -133.5,31.5
+ parent: 2
+ - uid: 4851
+ components:
+ - type: Transform
+ pos: -112.5,33.5
+ parent: 2
+ - uid: 5559
+ components:
+ - type: Transform
+ pos: -14.5,14.5
+ parent: 2
+ - uid: 5632
+ components:
+ - type: Transform
+ pos: -76.5,-69.5
+ parent: 2
+ - uid: 5970
+ components:
+ - type: Transform
+ pos: -72.5,-77.5
+ parent: 2
+ - uid: 6107
+ components:
+ - type: Transform
+ pos: -77.5,-68.5
+ parent: 2
+ - uid: 6116
+ components:
+ - type: Transform
+ pos: -12.5,-46.5
+ parent: 2
+ - uid: 6117
+ components:
+ - type: Transform
+ pos: -11.5,-48.5
+ parent: 2
+ - uid: 6126
+ components:
+ - type: Transform
+ pos: -111.5,33.5
+ parent: 2
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: -11.5,-47.5
+ parent: 2
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: -11.5,-50.5
+ parent: 2
+ - uid: 6278
+ components:
+ - type: Transform
+ pos: -11.5,-49.5
+ parent: 2
+ - uid: 6606
+ components:
+ - type: Transform
+ pos: -11.5,-46.5
+ parent: 2
+ - uid: 6799
+ components:
+ - type: Transform
+ pos: -75.5,-68.5
+ parent: 2
+ - uid: 6846
+ components:
+ - type: Transform
+ pos: -75.5,-69.5
+ parent: 2
+ - uid: 6908
+ components:
+ - type: Transform
+ pos: -11.5,-51.5
+ parent: 2
+ - uid: 6957
+ components:
+ - type: Transform
+ pos: -85.5,-70.5
+ parent: 2
+ - uid: 6966
+ components:
+ - type: Transform
+ pos: -84.5,-70.5
+ parent: 2
+ - uid: 6975
+ components:
+ - type: Transform
+ pos: -11.5,-45.5
+ parent: 2
+ - uid: 6998
+ components:
+ - type: Transform
+ pos: -82.5,-71.5
+ parent: 2
+ - uid: 7003
+ components:
+ - type: Transform
+ pos: -113.5,33.5
+ parent: 2
+ - uid: 7004
+ components:
+ - type: Transform
+ pos: -114.5,34.5
+ parent: 2
+ - uid: 7011
+ components:
+ - type: Transform
+ pos: -115.5,35.5
+ parent: 2
+ - uid: 7012
+ components:
+ - type: Transform
+ pos: -85.5,-71.5
+ parent: 2
+ - uid: 7014
+ components:
+ - type: Transform
+ pos: -85.5,-72.5
+ parent: 2
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: -81.5,-71.5
+ parent: 2
+ - uid: 7036
+ components:
+ - type: Transform
+ pos: -81.5,-72.5
+ parent: 2
+ - uid: 7045
+ components:
+ - type: Transform
+ pos: -12.5,-45.5
+ parent: 2
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: -85.5,-73.5
+ parent: 2
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: -135.5,33.5
+ parent: 2
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: -12.5,-52.5
+ parent: 2
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: -12.5,-53.5
+ parent: 2
+ - uid: 7421
+ components:
+ - type: Transform
+ pos: -12.5,-54.5
+ parent: 2
+ - uid: 7467
+ components:
+ - type: Transform
+ pos: -85.5,-74.5
+ parent: 2
+ - uid: 7468
+ components:
+ - type: Transform
+ pos: -85.5,-75.5
+ parent: 2
+ - uid: 7469
+ components:
+ - type: Transform
+ pos: -80.5,-69.5
+ parent: 2
+ - uid: 7472
+ components:
+ - type: Transform
+ pos: -84.5,-75.5
+ parent: 2
+ - uid: 7483
+ components:
+ - type: Transform
+ pos: -12.5,-51.5
+ parent: 2
+ - uid: 7572
+ components:
+ - type: Transform
+ pos: -58.5,-71.5
+ parent: 2
+ - uid: 7576
+ components:
+ - type: Transform
+ pos: -87.5,-68.5
+ parent: 2
+ - uid: 7614
+ components:
+ - type: Transform
+ pos: -86.5,-67.5
+ parent: 2
+ - uid: 7617
+ components:
+ - type: Transform
+ pos: -86.5,-68.5
+ parent: 2
+ - uid: 7659
+ components:
+ - type: Transform
+ pos: -87.5,-69.5
+ parent: 2
+ - uid: 7661
+ components:
+ - type: Transform
+ pos: -85.5,-66.5
+ parent: 2
+ - uid: 7893
+ components:
+ - type: Transform
+ pos: -85.5,-67.5
+ parent: 2
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: -85.5,-65.5
+ parent: 2
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: -85.5,-64.5
+ parent: 2
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: -135.5,32.5
+ parent: 2
+ - uid: 8477
+ components:
+ - type: Transform
+ pos: -134.5,33.5
+ parent: 2
+ - uid: 8483
+ components:
+ - type: Transform
+ pos: -85.5,-63.5
+ parent: 2
+ - uid: 8484
+ components:
+ - type: Transform
+ pos: -85.5,-62.5
+ parent: 2
+ - uid: 8489
+ components:
+ - type: Transform
+ pos: -58.5,-70.5
+ parent: 2
+ - uid: 8497
+ components:
+ - type: Transform
+ pos: -58.5,-72.5
+ parent: 2
+ - uid: 8504
+ components:
+ - type: Transform
+ pos: -115.5,37.5
+ parent: 2
+ - uid: 8505
+ components:
+ - type: Transform
+ pos: -51.5,-68.5
+ parent: 2
+ - uid: 8508
+ components:
+ - type: Transform
+ pos: -114.5,37.5
+ parent: 2
+ - uid: 8510
+ components:
+ - type: Transform
+ pos: -57.5,-72.5
+ parent: 2
+ - uid: 8512
+ components:
+ - type: Transform
+ pos: -115.5,36.5
+ parent: 2
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -82.5,-70.5
+ parent: 2
+ - uid: 8516
+ components:
+ - type: Transform
+ pos: -109.5,35.5
+ parent: 2
+ - uid: 8517
+ components:
+ - type: Transform
+ pos: -53.5,-68.5
+ parent: 2
+ - uid: 8544
+ components:
+ - type: Transform
+ pos: -96.5,-66.5
+ parent: 2
+ - uid: 8674
+ components:
+ - type: Transform
+ pos: -96.5,-64.5
+ parent: 2
+ - uid: 8676
+ components:
+ - type: Transform
+ pos: -96.5,-63.5
+ parent: 2
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: -96.5,-65.5
+ parent: 2
+ - uid: 8681
+ components:
+ - type: Transform
+ pos: -72.5,-75.5
+ parent: 2
+ - uid: 8685
+ components:
+ - type: Transform
+ pos: -72.5,-76.5
+ parent: 2
+ - uid: 8692
+ components:
+ - type: Transform
+ pos: -110.5,37.5
+ parent: 2
+ - uid: 8827
+ components:
+ - type: Transform
+ pos: -72.5,-74.5
+ parent: 2
+ - uid: 8829
+ components:
+ - type: Transform
+ pos: -72.5,-73.5
+ parent: 2
+ - uid: 8841
+ components:
+ - type: Transform
+ pos: -16.5,-56.5
+ parent: 2
+ - uid: 8891
+ components:
+ - type: Transform
+ pos: -16.5,-55.5
+ parent: 2
+ - uid: 8892
+ components:
+ - type: Transform
+ pos: -16.5,-54.5
+ parent: 2
+ - uid: 8916
+ components:
+ - type: Transform
+ pos: -67.5,-68.5
+ parent: 2
+ - uid: 8918
+ components:
+ - type: Transform
+ pos: -72.5,-69.5
+ parent: 2
+ - uid: 8919
+ components:
+ - type: Transform
+ pos: -57.5,-74.5
+ parent: 2
+ - uid: 9108
+ components:
+ - type: Transform
+ pos: -57.5,-73.5
+ parent: 2
+ - uid: 9176
+ components:
+ - type: Transform
+ pos: -109.5,34.5
+ parent: 2
+ - uid: 9208
+ components:
+ - type: Transform
+ pos: -55.5,-68.5
+ parent: 2
+ - uid: 9213
+ components:
+ - type: Transform
+ pos: -76.5,-67.5
+ parent: 2
+ - uid: 9216
+ components:
+ - type: Transform
+ pos: -58.5,-68.5
+ parent: 2
+ - uid: 9252
+ components:
+ - type: Transform
+ pos: -109.5,-38.5
+ parent: 2
+ - uid: 9295
+ components:
+ - type: Transform
+ pos: -62.5,-76.5
+ parent: 2
+ - uid: 9368
+ components:
+ - type: Transform
+ pos: -61.5,-76.5
+ parent: 2
+ - uid: 9369
+ components:
+ - type: Transform
+ pos: -94.5,-63.5
+ parent: 2
+ - uid: 9370
+ components:
+ - type: Transform
+ pos: -94.5,-64.5
+ parent: 2
+ - uid: 9379
+ components:
+ - type: Transform
+ pos: -99.5,-66.5
+ parent: 2
+ - uid: 9386
+ components:
+ - type: Transform
+ pos: -87.5,-70.5
+ parent: 2
+ - uid: 9389
+ components:
+ - type: Transform
+ pos: -86.5,-70.5
+ parent: 2
+ - uid: 9406
+ components:
+ - type: Transform
+ pos: -79.5,-75.5
+ parent: 2
+ - uid: 9408
+ components:
+ - type: Transform
+ pos: -86.5,-71.5
+ parent: 2
+ - uid: 9410
+ components:
+ - type: Transform
+ pos: -86.5,-72.5
+ parent: 2
+ - uid: 9411
+ components:
+ - type: Transform
+ pos: -86.5,-73.5
+ parent: 2
+ - uid: 9412
+ components:
+ - type: Transform
+ pos: -86.5,-74.5
+ parent: 2
+ - uid: 9413
+ components:
+ - type: Transform
+ pos: -87.5,-74.5
+ parent: 2
+ - uid: 9448
+ components:
+ - type: Transform
+ pos: -92.5,-74.5
+ parent: 2
+ - uid: 9458
+ components:
+ - type: Transform
+ pos: -81.5,-73.5
+ parent: 2
+ - uid: 9461
+ components:
+ - type: Transform
+ pos: -87.5,-75.5
+ parent: 2
+ - uid: 9512
+ components:
+ - type: Transform
+ pos: -79.5,-74.5
+ parent: 2
+ - uid: 9533
+ components:
+ - type: Transform
+ pos: -79.5,-72.5
+ parent: 2
+ - uid: 9541
+ components:
+ - type: Transform
+ pos: -78.5,-75.5
+ parent: 2
+ - uid: 9546
+ components:
+ - type: Transform
+ pos: -82.5,-74.5
+ parent: 2
+ - uid: 9621
+ components:
+ - type: Transform
+ pos: -91.5,-75.5
+ parent: 2
+ - uid: 9965
+ components:
+ - type: Transform
+ pos: -90.5,-75.5
+ parent: 2
+ - uid: 10090
+ components:
+ - type: Transform
+ pos: -82.5,9.5
+ parent: 2
+ - uid: 10122
+ components:
+ - type: Transform
+ pos: -89.5,-75.5
+ parent: 2
+ - uid: 10124
+ components:
+ - type: Transform
+ pos: -78.5,-71.5
+ parent: 2
+ - uid: 10125
+ components:
+ - type: Transform
+ pos: -88.5,-75.5
+ parent: 2
+ - uid: 10132
+ components:
+ - type: Transform
+ pos: -72.5,-78.5
+ parent: 2
+ - uid: 10152
+ components:
+ - type: Transform
+ pos: -64.5,-79.5
+ parent: 2
+ - uid: 10160
+ components:
+ - type: Transform
+ pos: -83.5,-75.5
+ parent: 2
+ - uid: 10631
+ components:
+ - type: Transform
+ pos: -79.5,-73.5
+ parent: 2
+ - uid: 10632
+ components:
+ - type: Transform
+ pos: -74.5,-74.5
+ parent: 2
+ - uid: 10637
+ components:
+ - type: Transform
+ pos: -63.5,-79.5
+ parent: 2
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: -62.5,-79.5
+ parent: 2
+ - uid: 12633
+ components:
+ - type: Transform
+ pos: -52.5,-68.5
+ parent: 2
+ - uid: 13572
+ components:
+ - type: Transform
+ pos: -71.5,-68.5
+ parent: 2
+ - uid: 13660
+ components:
+ - type: Transform
+ pos: -50.5,-68.5
+ parent: 2
+ - uid: 13694
+ components:
+ - type: Transform
+ pos: -54.5,-68.5
+ parent: 2
+ - uid: 14138
+ components:
+ - type: Transform
+ pos: -48.5,-68.5
+ parent: 2
+ - uid: 14174
+ components:
+ - type: Transform
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 14178
+ components:
+ - type: Transform
+ pos: -92.5,-72.5
+ parent: 2
+ - uid: 14181
+ components:
+ - type: Transform
+ pos: -92.5,-73.5
+ parent: 2
+ - uid: 14298
+ components:
+ - type: Transform
+ pos: -62.5,-77.5
+ parent: 2
+ - uid: 14299
+ components:
+ - type: Transform
+ pos: -64.5,-76.5
+ parent: 2
+ - uid: 14491
+ components:
+ - type: Transform
+ pos: -64.5,-77.5
+ parent: 2
+ - uid: 14496
+ components:
+ - type: Transform
+ pos: -63.5,-77.5
+ parent: 2
+ - uid: 14687
+ components:
+ - type: Transform
+ pos: -64.5,-78.5
+ parent: 2
+ - uid: 14694
+ components:
+ - type: Transform
+ pos: -63.5,-78.5
+ parent: 2
+ - uid: 14697
+ components:
+ - type: Transform
+ pos: -61.5,-78.5
+ parent: 2
+ - uid: 14702
+ components:
+ - type: Transform
+ pos: -62.5,-78.5
+ parent: 2
+ - uid: 14703
+ components:
+ - type: Transform
+ pos: -61.5,-79.5
+ parent: 2
+ - uid: 14714
+ components:
+ - type: Transform
+ pos: -21.5,-66.5
+ parent: 2
+ - uid: 14715
+ components:
+ - type: Transform
+ pos: -21.5,-65.5
+ parent: 2
+ - uid: 14757
+ components:
+ - type: Transform
+ pos: -13.5,-60.5
+ parent: 2
+ - uid: 14964
+ components:
+ - type: Transform
+ pos: -13.5,-61.5
+ parent: 2
+ - uid: 15253
+ components:
+ - type: Transform
+ pos: -21.5,-64.5
+ parent: 2
+ - uid: 15255
+ components:
+ - type: Transform
+ pos: -92.5,-60.5
+ parent: 2
+ - uid: 15256
+ components:
+ - type: Transform
+ pos: -88.5,-68.5
+ parent: 2
+ - uid: 15258
+ components:
+ - type: Transform
+ pos: -16.5,12.5
+ parent: 2
+ - uid: 15259
+ components:
+ - type: Transform
+ pos: -91.5,-68.5
+ parent: 2
+ - uid: 15261
+ components:
+ - type: Transform
+ pos: -12.5,-57.5
+ parent: 2
+ - uid: 16027
+ components:
+ - type: Transform
+ pos: -22.5,-67.5
+ parent: 2
+ - uid: 16029
+ components:
+ - type: Transform
+ pos: -19.5,-57.5
+ parent: 2
+ - uid: 16100
+ components:
+ - type: Transform
+ pos: -90.5,-69.5
+ parent: 2
+ - uid: 16144
+ components:
+ - type: Transform
+ pos: -91.5,-70.5
+ parent: 2
+ - uid: 16146
+ components:
+ - type: Transform
+ pos: -89.5,-69.5
+ parent: 2
+ - uid: 16167
+ components:
+ - type: Transform
+ pos: -88.5,-69.5
+ parent: 2
+ - uid: 16168
+ components:
+ - type: Transform
+ pos: -19.5,-58.5
+ parent: 2
+ - uid: 16209
+ components:
+ - type: Transform
+ pos: -12.5,-56.5
+ parent: 2
+ - uid: 16216
+ components:
+ - type: Transform
+ pos: -22.5,-64.5
+ parent: 2
+ - uid: 16219
+ components:
+ - type: Transform
+ pos: -71.5,-69.5
+ parent: 2
+ - uid: 16230
+ components:
+ - type: Transform
+ pos: -21.5,-67.5
+ parent: 2
+ - uid: 16237
+ components:
+ - type: Transform
+ pos: -22.5,-65.5
+ parent: 2
+ - uid: 16250
+ components:
+ - type: Transform
+ pos: -61.5,-77.5
+ parent: 2
+ - uid: 16251
+ components:
+ - type: Transform
+ pos: -60.5,-76.5
+ parent: 2
+ - uid: 16252
+ components:
+ - type: Transform
+ pos: -86.5,-60.5
+ parent: 2
+ - uid: 16253
+ components:
+ - type: Transform
+ pos: -86.5,-61.5
+ parent: 2
+ - uid: 16313
+ components:
+ - type: Transform
+ pos: -93.5,-60.5
+ parent: 2
+ - uid: 16335
+ components:
+ - type: Transform
+ pos: -22.5,-68.5
+ parent: 2
+ - uid: 16337
+ components:
+ - type: Transform
+ pos: -22.5,-66.5
+ parent: 2
+ - uid: 16338
+ components:
+ - type: Transform
+ pos: -43.5,-75.5
+ parent: 2
+ - uid: 16724
+ components:
+ - type: Transform
+ pos: -42.5,-75.5
+ parent: 2
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: -79.5,-68.5
+ parent: 2
+ - uid: 16758
+ components:
+ - type: Transform
+ pos: -45.5,-75.5
+ parent: 2
+ - uid: 16759
+ components:
+ - type: Transform
+ pos: -44.5,-75.5
+ parent: 2
+ - uid: 16810
+ components:
+ - type: Transform
+ pos: -46.5,-75.5
+ parent: 2
+ - uid: 16814
+ components:
+ - type: Transform
+ pos: -41.5,-75.5
+ parent: 2
+ - uid: 16829
components:
- type: Transform
pos: -41.5,-74.5
parent: 2
- - uid: 24827
+ - uid: 16862
components:
- type: Transform
pos: -41.5,-73.5
parent: 2
- - uid: 24828
+ - uid: 16863
components:
- type: Transform
pos: -41.5,-72.5
parent: 2
- - uid: 24829
+ - uid: 16938
components:
- type: Transform
pos: -41.5,-71.5
parent: 2
- - uid: 24830
+ - uid: 16949
components:
- type: Transform
pos: -42.5,-71.5
parent: 2
- - uid: 24831
+ - uid: 16952
components:
- type: Transform
pos: -43.5,-71.5
parent: 2
- - uid: 24832
+ - uid: 16953
components:
- type: Transform
pos: -44.5,-71.5
parent: 2
- - uid: 24833
+ - uid: 16970
components:
- type: Transform
pos: -46.5,-71.5
parent: 2
- - uid: 24834
+ - uid: 16971
components:
- type: Transform
pos: -45.5,-71.5
parent: 2
- - uid: 24835
+ - uid: 16972
components:
- type: Transform
- pos: -46.5,-72.5
+ pos: -13.5,-58.5
parent: 2
- - uid: 24836
+ - uid: 16975
components:
- type: Transform
- pos: -46.5,-73.5
+ pos: -13.5,-57.5
parent: 2
- - uid: 24837
+ - uid: 16979
components:
- type: Transform
- pos: -46.5,-74.5
+ pos: -98.5,-61.5
parent: 2
- - uid: 25447
+ - uid: 17403
components:
- type: Transform
- pos: -106.5,-48.5
+ pos: -99.5,-61.5
parent: 2
- - uid: 25453
+ - uid: 17546
components:
- type: Transform
- pos: -89.5,-15.5
+ pos: -97.5,-61.5
parent: 2
- - uid: 25780
+ - uid: 17610
components:
- type: Transform
- pos: -13.5,-58.5
+ pos: -47.5,-73.5
parent: 2
- - uid: 25781
+ - uid: 17611
components:
- type: Transform
- pos: -13.5,-57.5
+ pos: -47.5,-74.5
parent: 2
- - uid: 25783
+ - uid: 17658
components:
- type: Transform
- pos: -10.5,-56.5
+ pos: -97.5,-62.5
parent: 2
- - uid: 25787
+ - uid: 17746
components:
- type: Transform
- pos: -11.5,-60.5
+ pos: -98.5,-63.5
parent: 2
- - uid: 25791
+ - uid: 17747
components:
- type: Transform
- pos: -12.5,-63.5
+ pos: -99.5,-63.5
parent: 2
- - uid: 25833
+ - uid: 18637
components:
- type: Transform
- pos: -9.5,-55.5
+ pos: -97.5,-63.5
parent: 2
- - uid: 25834
+ - uid: 18723
components:
- type: Transform
- pos: -9.5,-56.5
+ pos: -99.5,-62.5
parent: 2
- - uid: 25835
+ - uid: 18786
components:
- type: Transform
- pos: -10.5,-57.5
+ pos: -62.5,-74.5
parent: 2
- - uid: 25836
+ - uid: 20028
components:
- type: Transform
- pos: -10.5,-58.5
+ pos: -16.5,20.5
parent: 2
- - uid: 25837
+ - uid: 20529
components:
- type: Transform
- pos: -10.5,-59.5
+ pos: -61.5,-74.5
parent: 2
- - uid: 25838
+ - uid: 20782
components:
- type: Transform
- pos: -10.5,-60.5
+ pos: -60.5,-73.5
parent: 2
- - uid: 25839
+ - uid: 21333
components:
- type: Transform
- pos: -11.5,-61.5
+ pos: -16.5,19.5
parent: 2
- - uid: 25840
+ - uid: 21357
components:
- type: Transform
- pos: -11.5,-62.5
+ pos: -15.5,20.5
+ parent: 2
+ - uid: 21358
+ components:
+ - type: Transform
+ pos: -60.5,-74.5
+ parent: 2
+ - uid: 21423
+ components:
+ - type: Transform
+ pos: -60.5,-72.5
+ parent: 2
+ - uid: 21424
+ components:
+ - type: Transform
+ pos: -62.5,-72.5
+ parent: 2
+ - uid: 21427
+ components:
+ - type: Transform
+ pos: -61.5,-72.5
+ parent: 2
+ - uid: 21431
+ components:
+ - type: Transform
+ pos: -82.5,-60.5
+ parent: 2
+ - uid: 21565
+ components:
+ - type: Transform
+ pos: -80.5,-60.5
+ parent: 2
+ - uid: 21598
+ components:
+ - type: Transform
+ pos: -82.5,-61.5
+ parent: 2
+ - uid: 21601
+ components:
+ - type: Transform
+ pos: -82.5,-62.5
+ parent: 2
+ - uid: 21667
+ components:
+ - type: Transform
+ pos: -80.5,-61.5
+ parent: 2
+ - uid: 21670
+ components:
+ - type: Transform
+ pos: -80.5,-62.5
+ parent: 2
+ - uid: 21770
+ components:
+ - type: Transform
+ pos: -81.5,-62.5
+ parent: 2
+ - uid: 21771
+ components:
+ - type: Transform
+ pos: -59.5,-78.5
+ parent: 2
+ - uid: 21862
+ components:
+ - type: Transform
+ pos: -60.5,-78.5
+ parent: 2
+ - uid: 21950
+ components:
+ - type: Transform
+ pos: -47.5,-72.5
+ parent: 2
+ - uid: 21951
+ components:
+ - type: Transform
+ pos: -62.5,-73.5
+ parent: 2
+ - uid: 22348
+ components:
+ - type: Transform
+ pos: -59.5,-76.5
+ parent: 2
+ - uid: 23066
+ components:
+ - type: Transform
+ pos: -60.5,-77.5
+ parent: 2
+ - uid: 23080
+ components:
+ - type: Transform
+ pos: -59.5,-77.5
+ parent: 2
+ - uid: 23088
+ components:
+ - type: Transform
+ pos: -46.5,-72.5
+ parent: 2
+ - uid: 23091
+ components:
+ - type: Transform
+ pos: -46.5,-73.5
+ parent: 2
+ - uid: 23093
+ components:
+ - type: Transform
+ pos: -46.5,-74.5
+ parent: 2
+ - uid: 23095
+ components:
+ - type: Transform
+ pos: -81.5,-60.5
parent: 2
- proto: AtmosDeviceFanDirectional
entities:
@@ -23269,76 +23506,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,-65.5
parent: 2
- - uid: 12421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-35.5
- parent: 2
- - uid: 12452
- components:
- - type: Transform
- pos: -81.5,-82.5
- parent: 2
- - uid: 22368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,19.5
- parent: 2
- - uid: 22369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,12.5
- parent: 2
- - uid: 22370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,20.5
- parent: 2
- - uid: 22371
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-37.5
- parent: 2
- - uid: 22372
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-18.5
- parent: 2
- - uid: 22985
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-16.5
- parent: 2
- - uid: 22986
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-8.5
- parent: 2
- - uid: 22987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-10.5
- parent: 2
- - uid: 22988
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,18.5
- parent: 2
- - uid: 22989
- components:
- - type: Transform
- pos: -83.5,-82.5
- parent: 2
- uid: 22991
components:
- type: Transform
@@ -23807,11 +23974,6 @@ entities:
- type: Transform
pos: -87.5,-5.5
parent: 2
- - uid: 4510
- components:
- - type: Transform
- pos: -86.5,2.5
- parent: 2
- uid: 4511
components:
- type: Transform
@@ -23847,11 +24009,6 @@ entities:
- type: Transform
pos: -85.5,1.5
parent: 2
- - uid: 4519
- components:
- - type: Transform
- pos: -85.5,2.5
- parent: 2
- uid: 4520
components:
- type: Transform
@@ -23867,11 +24024,6 @@ entities:
- type: Transform
pos: -86.5,0.5
parent: 2
- - uid: 4525
- components:
- - type: Transform
- pos: -84.5,2.5
- parent: 2
- uid: 4527
components:
- type: Transform
@@ -23983,6 +24135,13 @@ entities:
- type: Transform
pos: -110.5,1.5
parent: 2
+- proto: AtmosMonitoringComputerCircuitboard
+ entities:
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: -116.5044,-32.550922
+ parent: 2
- proto: Autolathe
entities:
- uid: 5871
@@ -24000,12 +24159,26 @@ entities:
- type: Transform
pos: -121.5,-37.5
parent: 2
+- proto: AutolatheMachineCircuitboard
+ entities:
+ - uid: 2537
+ components:
+ - type: Transform
+ pos: -116.43733,-30.501385
+ parent: 2
+- proto: BananaPhoneInstrument
+ entities:
+ - uid: 25889
+ components:
+ - type: Transform
+ pos: -113.51352,29.580717
+ parent: 2
- proto: BannerCargo
entities:
- - uid: 15922
+ - uid: 10722
components:
- type: Transform
- pos: -102.5,8.5
+ pos: -101.5,6.5
parent: 2
- proto: BannerEngineering
entities:
@@ -24042,6 +24215,18 @@ entities:
- type: Transform
pos: -95.5,-17.5
parent: 2
+- proto: BannerSyndicate
+ entities:
+ - uid: 2409
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
- proto: BarberScissors
entities:
- uid: 3403
@@ -24050,27 +24235,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,-38.5
parent: 2
-- proto: Barricade
+- proto: BarSignComboCafe
entities:
- - uid: 2132
- components:
- - type: Transform
- pos: -75.5,-49.5
- parent: 2
- - uid: 3314
- components:
- - type: Transform
- pos: -73.5,-49.5
- parent: 2
- - uid: 25695
- components:
- - type: Transform
- pos: -74.5,-49.5
- parent: 2
- - uid: 25907
+ - uid: 9228
components:
- type: Transform
- pos: -76.5,-49.5
+ pos: -70.5,-34.5
parent: 2
- proto: BarSignEngineChange
entities:
@@ -24130,6 +24300,42 @@ entities:
- type: Transform
pos: -82.5,-7.5
parent: 2
+- proto: BaseUplinkRadio
+ entities:
+ - uid: 2504
+ components:
+ - type: MetaData
+ desc: A suspicious old radio. It doesn't seem to do anything, but you can TELL it's nefarious just by looking at it.
+ name: old radio
+ - type: Transform
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: RadioMicrophone
+ - type: TelecomExempt
+ - type: RadioSpeaker
+ channels:
+ - Common
+ - type: Speech
+ suffixSpeechVerbs:
+ chat-speech-verb-suffix-exclamation-strong: DefaultExclamationStrong
+ chat-speech-verb-suffix-exclamation: DefaultExclamation
+ chat-speech-verb-suffix-question: DefaultQuestion
+ chat-speech-verb-suffix-stutter: DefaultStutter
+ chat-speech-verb-suffix-mumble: DefaultMumble
+ allowedEmotes: []
+ - type: InsideEntityStorage
+ missingComponents:
+ - UserInterface
+ - ActivatableUI
+ - Store
+- proto: Basketball
+ entities:
+ - uid: 9418
+ components:
+ - type: Transform
+ pos: -85.414406,-44.58086
+ parent: 2
- proto: BeachBall
entities:
- uid: 2492
@@ -24137,6 +24343,11 @@ entities:
- type: Transform
pos: -45.5,-9.5
parent: 2
+ - uid: 9433
+ components:
+ - type: Transform
+ pos: -88.52135,-46.29961
+ parent: 2
- proto: Beaker
entities:
- uid: 3952
@@ -24201,6 +24412,19 @@ entities:
- type: Transform
pos: -98.5,-34.5
parent: 2
+ - uid: 2516
+ components:
+ - type: MetaData
+ desc: A normal bed, but there's a syndicate logo on the sticker - therefore making it highly illegal contraband.
+ name: syndicate bed
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
- uid: 2894
components:
- type: Transform
@@ -24231,16 +24455,6 @@ entities:
- type: Transform
pos: -44.5,-51.5
parent: 2
- - uid: 4146
- components:
- - type: Transform
- pos: -17.5,-49.5
- parent: 2
- - uid: 4147
- components:
- - type: Transform
- pos: -17.5,-53.5
- parent: 2
- uid: 4201
components:
- type: Transform
@@ -24306,21 +24520,36 @@ entities:
- type: Transform
pos: -67.5,-26.5
parent: 2
- - uid: 17834
+ - uid: 16042
components:
- type: Transform
- pos: -86.5,-42.5
+ pos: -18.5,-52.5
parent: 2
- - uid: 17835
+ - uid: 16243
components:
- type: Transform
- pos: -90.5,-42.5
+ pos: -18.5,-48.5
+ parent: 2
+ - uid: 18686
+ components:
+ - type: Transform
+ pos: -82.5,-42.5
+ parent: 2
+ - uid: 18690
+ components:
+ - type: Transform
+ pos: -78.5,-42.5
parent: 2
- uid: 20635
components:
- type: Transform
pos: -37.5,-56.5
parent: 2
+ - uid: 21509
+ components:
+ - type: Transform
+ pos: -86.5,-42.5
+ parent: 2
- proto: BedsheetBrown
entities:
- uid: 2048
@@ -24391,16 +24620,6 @@ entities:
parent: 2
- proto: BedsheetMedical
entities:
- - uid: 4148
- components:
- - type: Transform
- pos: -17.5,-53.5
- parent: 2
- - uid: 4149
- components:
- - type: Transform
- pos: -17.5,-49.5
- parent: 2
- uid: 4202
components:
- type: Transform
@@ -24449,6 +24668,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-31.5
parent: 2
+ - uid: 16038
+ components:
+ - type: Transform
+ pos: -18.5,-52.5
+ parent: 2
+ - uid: 16043
+ components:
+ - type: Transform
+ pos: -18.5,-48.5
+ parent: 2
- proto: BedsheetOrange
entities:
- uid: 7040
@@ -24469,15 +24698,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -98.5,-30.5
parent: 2
- - uid: 17833
+ - uid: 18094
components:
- type: Transform
- pos: -86.5,-42.5
+ pos: -78.5,-42.5
parent: 2
- - uid: 17836
+ - uid: 18725
components:
- type: Transform
- pos: -90.5,-42.5
+ pos: -82.5,-42.5
+ parent: 2
+ - uid: 20774
+ components:
+ - type: Transform
+ pos: -86.5,-42.5
parent: 2
- proto: BedsheetQM
entities:
@@ -24535,6 +24769,18 @@ entities:
- type: Transform
pos: -37.5,-56.5
parent: 2
+- proto: BedsheetSyndie
+ entities:
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
- proto: BenchBlueComfy
entities:
- uid: 4976
@@ -24670,6 +24916,11 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 20188
+ components:
+ - type: Transform
+ pos: -38.5,-70.5
+ parent: 2
- uid: 23169
components:
- type: Transform
@@ -24850,27 +25101,21 @@ entities:
- type: Transform
pos: -26.5,-49.5
parent: 2
- - uid: 4818
+ - uid: 5113
components:
- type: Transform
- pos: -90.5,-36.5
+ pos: -91.5,-36.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - uid: 6659
+ - uid: 5391
components:
- type: Transform
pos: -92.5,-36.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6757
+ - uid: 5581
components:
- type: Transform
- pos: -91.5,-36.5
+ pos: -90.5,-36.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 9642
components:
- type: Transform
@@ -24878,6 +25123,13 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 17192
+ components:
+ - type: Transform
+ pos: -111.5,-44.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
- uid: 17813
components:
- type: Transform
@@ -24892,6 +25144,20 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 18724
+ components:
+ - type: Transform
+ pos: -111.5,-45.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 22284
+ components:
+ - type: Transform
+ pos: -111.5,-46.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
- proto: BlockGameArcade
entities:
- uid: 9587
@@ -24940,6 +25206,8 @@ entities:
- type: Transform
pos: -55.51698,-77.4413
parent: 2
+ - type: Item
+ size: Huge
missingComponents:
- Blueprint
- StaticPrice
@@ -24947,10 +25215,11 @@ entities:
- DamageExaminable
- proto: Bonfire
entities:
- - uid: 16729
+ - uid: 19824
components:
- type: Transform
- pos: -67.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,-74.5
parent: 2
- proto: BookRandomStory
entities:
@@ -25033,8 +25302,10 @@ entities:
- uid: 11630
components:
- type: Transform
- pos: -26.492687,8.519552
- parent: 2
+ parent: 8669
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: BoozeDispenser
entities:
- uid: 8791
@@ -25054,6 +25325,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,-31.5
parent: 2
+ - uid: 24445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -132.5,-29.5
+ parent: 2
- proto: BorgCharger
entities:
- uid: 7320
@@ -25100,25 +25377,15 @@ entities:
- type: Transform
pos: -69.69247,-26.289198
parent: 2
- - uid: 22282
- components:
- - type: Transform
- pos: -82.74675,-22.28722
- parent: 2
- - uid: 22283
- components:
- - type: Transform
- pos: -82.3405,-22.271595
- parent: 2
- - uid: 22284
+ - uid: 16442
components:
- type: Transform
- pos: -82.731125,-22.69347
+ pos: -82.23979,-21.728704
parent: 2
- - uid: 22285
+ - uid: 25883
components:
- type: Transform
- pos: -82.356125,-22.69347
+ pos: -82.23979,-21.384954
parent: 2
- proto: BoxBodyBag
entities:
@@ -25141,6 +25408,11 @@ entities:
parent: 2
- proto: BoxFolderBlue
entities:
+ - uid: 6020
+ components:
+ - type: Transform
+ pos: -94.518295,0.5016465
+ parent: 2
- uid: 9351
components:
- type: Transform
@@ -25185,6 +25457,11 @@ entities:
- type: Transform
pos: -52.54664,-7.3773193
parent: 2
+ - uid: 25892
+ components:
+ - type: Transform
+ pos: -114.472176,29.576769
+ parent: 2
- proto: BoxFolderRed
entities:
- uid: 9043
@@ -25238,11 +25515,10 @@ entities:
parent: 2
- proto: BoxingBell
entities:
- - uid: 16101
+ - uid: 20947
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-72.5
+ pos: -56.5,-68.5
parent: 2
- proto: BoxLatexGloves
entities:
@@ -25251,28 +25527,6 @@ entities:
- type: Transform
pos: -22.202202,-48.277267
parent: 2
-- proto: BoxLethalshot
- entities:
- - uid: 22278
- components:
- - type: Transform
- pos: -82.731125,-21.66222
- parent: 2
- - uid: 22279
- components:
- - type: Transform
- pos: -82.403,-21.66222
- parent: 2
- - uid: 22280
- components:
- - type: Transform
- pos: -82.778,-21.365345
- parent: 2
- - uid: 22281
- components:
- - type: Transform
- pos: -82.403,-21.365345
- parent: 2
- proto: BoxLightbulb
entities:
- uid: 3383
@@ -25351,42 +25605,66 @@ entities:
parent: 2
- proto: BrigTimer
entities:
- - uid: 368
+ - uid: 5396
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,4.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 357:
+ 8661:
+ - Timer: Open
- Timer: AutoClose
- Start: Close
+ - uid: 14643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,8.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8660:
- Timer: Open
- - uid: 516
+ - Timer: AutoClose
+ - Start: Close
+ - uid: 15254
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-26.5
+ pos: -97.5,-32.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 915:
- - Timer: AutoClose
+ 357:
- Start: Close
- Timer: Open
- - uid: 517
+ - Timer: AutoClose
+ - uid: 22692
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-22.5
+ pos: -97.5,-24.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
512:
+ - Start: Close
+ - Timer: Open
- Timer: AutoClose
+ - uid: 22696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-28.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 915:
- Start: Close
- Timer: Open
+ - Timer: AutoClose
- proto: Brutepack
entities:
- uid: 20642
@@ -25401,11 +25679,6 @@ entities:
parent: 2
- proto: Bucket
entities:
- - uid: 4819
- components:
- - type: Transform
- pos: -82.43224,-49.377106
- parent: 2
- uid: 8165
components:
- type: Transform
@@ -25417,6 +25690,11 @@ entities:
- type: Transform
pos: -50.30467,-19.362368
parent: 2
+ - uid: 20901
+ components:
+ - type: Transform
+ pos: -80.42632,-49.478905
+ parent: 2
- proto: ButtonFrameCaution
entities:
- uid: 1343
@@ -25424,6 +25702,18 @@ entities:
- type: Transform
pos: -102.5,31.5
parent: 2
+ - uid: 1930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-1.5
+ parent: 2
+ - uid: 1931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-69.5
+ parent: 2
- uid: 2549
components:
- type: Transform
@@ -25493,7 +25783,7 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,4.25
+ pos: -60.5,4.5
parent: 2
- uid: 21089
components:
@@ -25519,6 +25809,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -83.5,22.5
parent: 2
+ - uid: 25988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -131.5,-48.8
+ parent: 2
- proto: ButtonFrameCautionSecurity
entities:
- uid: 5327
@@ -25548,12 +25844,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -152.5,-6.5
parent: 2
- - uid: 6920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-35.5
- parent: 2
- proto: ButtonFrameExit
entities:
- uid: 2446
@@ -25567,6 +25857,17 @@ entities:
- type: Transform
pos: -31.5,-22.5
parent: 2
+ - uid: 15343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,-42.5
+ parent: 2
+ - uid: 22689
+ components:
+ - type: Transform
+ pos: -112.5,-48.5
+ parent: 2
- uid: 25631
components:
- type: Transform
@@ -25604,22 +25905,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -56.5,-24.5
parent: 2
- - uid: 13712
+ - uid: 8981
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -87.5,13.5
- parent: 2
- - uid: 16467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -116.5,-42.5
+ pos: -89.5,-39.5
parent: 2
- - uid: 16487
+ - uid: 13712
components:
- type: Transform
- pos: -116.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,13.5
parent: 2
- uid: 22377
components:
@@ -25627,17 +25923,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -22.5,19.5
parent: 2
- - uid: 24167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,-40.5
- parent: 2
- uid: 24962
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -131.5,-48.5
+ pos: -131.5,-48.2
parent: 2
- uid: 26037
components:
@@ -25768,11 +26058,31 @@ entities:
- type: Transform
pos: -15.5,-68.5
parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: -81.5,-38.5
+ parent: 2
- uid: 1486
components:
- type: Transform
pos: -31.5,-45.5
parent: 2
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: -79.5,-38.5
+ parent: 2
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: -79.5,-39.5
+ parent: 2
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -80.5,-38.5
+ parent: 2
- uid: 1642
components:
- type: Transform
@@ -25798,6 +26108,11 @@ entities:
- type: Transform
pos: -138.5,-46.5
parent: 2
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: -82.5,-44.5
+ parent: 2
- uid: 1755
components:
- type: Transform
@@ -25808,20 +26123,15 @@ entities:
- type: Transform
pos: -42.5,-64.5
parent: 2
- - uid: 1878
- components:
- - type: Transform
- pos: -42.5,-67.5
- parent: 2
- - uid: 1930
+ - uid: 1833
components:
- type: Transform
- pos: -31.5,-2.5
+ pos: -80.5,-44.5
parent: 2
- - uid: 1931
+ - uid: 1878
components:
- type: Transform
- pos: -31.5,-3.5
+ pos: -42.5,-67.5
parent: 2
- uid: 1938
components:
@@ -25838,35 +26148,15 @@ entities:
- type: Transform
pos: -64.5,1.5
parent: 2
- - uid: 2390
- components:
- - type: Transform
- pos: -130.5,-32.5
- parent: 2
- - uid: 2406
- components:
- - type: Transform
- pos: -96.5,-2.5
- parent: 2
- - uid: 2407
- components:
- - type: Transform
- pos: -95.5,-2.5
- parent: 2
- - uid: 2409
- components:
- - type: Transform
- pos: -95.5,-1.5
- parent: 2
- - uid: 2410
+ - uid: 2373
components:
- type: Transform
- pos: -95.5,-0.5
+ pos: -84.5,-44.5
parent: 2
- - uid: 2411
+ - uid: 2390
components:
- type: Transform
- pos: -95.5,-3.5
+ pos: -130.5,-32.5
parent: 2
- uid: 2422
components:
@@ -25943,11 +26233,6 @@ entities:
- type: Transform
pos: -15.5,-6.5
parent: 2
- - uid: 2646
- components:
- - type: Transform
- pos: -76.5,-55.5
- parent: 2
- uid: 2744
components:
- type: Transform
@@ -26098,31 +26383,11 @@ entities:
- type: Transform
pos: -55.5,5.5
parent: 2
- - uid: 2800
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- uid: 2972
components:
- type: Transform
pos: -15.5,-7.5
parent: 2
- - uid: 2989
- components:
- - type: Transform
- pos: -76.5,-54.5
- parent: 2
- - uid: 2990
- components:
- - type: Transform
- pos: -76.5,-57.5
- parent: 2
- - uid: 3010
- components:
- - type: Transform
- pos: -76.5,-58.5
- parent: 2
- uid: 3030
components:
- type: Transform
@@ -26448,11 +26713,6 @@ entities:
- type: Transform
pos: -70.5,-3.5
parent: 2
- - uid: 3253
- components:
- - type: Transform
- pos: -48.5,-64.5
- parent: 2
- uid: 3255
components:
- type: Transform
@@ -26508,10 +26768,10 @@ entities:
- type: Transform
pos: -61.5,-12.5
parent: 2
- - uid: 3347
+ - uid: 3306
components:
- type: Transform
- pos: -75.5,-54.5
+ pos: -74.5,-56.5
parent: 2
- uid: 3396
components:
@@ -26523,51 +26783,21 @@ entities:
- type: Transform
pos: -98.5,32.5
parent: 2
- - uid: 3404
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- uid: 3417
components:
- type: Transform
pos: -135.5,-39.5
parent: 2
- - uid: 3424
- components:
- - type: Transform
- pos: -92.5,-64.5
- parent: 2
- - uid: 3429
- components:
- - type: Transform
- pos: -95.5,-4.5
- parent: 2
- uid: 3433
components:
- type: Transform
pos: -129.5,-39.5
parent: 2
- - uid: 3437
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- uid: 3455
components:
- type: Transform
pos: -131.5,-39.5
parent: 2
- - uid: 3493
- components:
- - type: Transform
- pos: -93.5,-2.5
- parent: 2
- - uid: 3501
- components:
- - type: Transform
- pos: -99.5,-2.5
- parent: 2
- uid: 3508
components:
- type: Transform
@@ -26623,6 +26853,11 @@ entities:
- type: Transform
pos: -68.5,-18.5
parent: 2
+ - uid: 3744
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
+ parent: 2
- uid: 3767
components:
- type: Transform
@@ -26633,26 +26868,11 @@ entities:
- type: Transform
pos: -24.5,-39.5
parent: 2
- - uid: 3795
- components:
- - type: Transform
- pos: -92.5,-62.5
- parent: 2
- uid: 3797
components:
- type: Transform
pos: -25.5,-38.5
parent: 2
- - uid: 3816
- components:
- - type: Transform
- pos: -92.5,-63.5
- parent: 2
- - uid: 3835
- components:
- - type: Transform
- pos: -97.5,-2.5
- parent: 2
- uid: 3839
components:
- type: Transform
@@ -26661,7 +26881,7 @@ entities:
- uid: 3840
components:
- type: Transform
- pos: -98.5,-2.5
+ pos: -77.5,-56.5
parent: 2
- uid: 3843
components:
@@ -26673,15 +26893,10 @@ entities:
- type: Transform
pos: -104.5,-64.5
parent: 2
- - uid: 3938
- components:
- - type: Transform
- pos: -93.5,-64.5
- parent: 2
- - uid: 3951
+ - uid: 3964
components:
- type: Transform
- pos: -91.5,-64.5
+ pos: -62.5,-57.5
parent: 2
- uid: 4006
components:
@@ -26693,21 +26908,66 @@ entities:
- type: Transform
pos: -26.5,-8.5
parent: 2
+ - uid: 4095
+ components:
+ - type: Transform
+ pos: -73.5,-54.5
+ parent: 2
+ - uid: 4107
+ components:
+ - type: Transform
+ pos: -49.5,-71.5
+ parent: 2
+ - uid: 4112
+ components:
+ - type: Transform
+ pos: -53.5,-71.5
+ parent: 2
- uid: 4126
components:
- type: Transform
pos: -13.5,5.5
parent: 2
+ - uid: 4156
+ components:
+ - type: Transform
+ pos: -72.5,-62.5
+ parent: 2
- uid: 4215
components:
- type: Transform
pos: -23.5,-9.5
parent: 2
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: -52.5,-71.5
+ parent: 2
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: -51.5,-71.5
+ parent: 2
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: -50.5,-71.5
+ parent: 2
- uid: 4324
components:
- type: Transform
pos: -124.5,-32.5
parent: 2
+ - uid: 4326
+ components:
+ - type: Transform
+ pos: -62.5,-58.5
+ parent: 2
+ - uid: 4402
+ components:
+ - type: Transform
+ pos: -75.5,-56.5
+ parent: 2
- uid: 4414
components:
- type: Transform
@@ -26753,6 +27013,11 @@ entities:
- type: Transform
pos: -88.5,-8.5
parent: 2
+ - uid: 4558
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
- uid: 4587
components:
- type: Transform
@@ -26833,11 +27098,6 @@ entities:
- type: Transform
pos: -19.5,-2.5
parent: 2
- - uid: 4811
- components:
- - type: Transform
- pos: -76.5,-37.5
- parent: 2
- uid: 4849
components:
- type: Transform
@@ -27098,11 +27358,6 @@ entities:
- type: Transform
pos: -42.5,-62.5
parent: 2
- - uid: 5581
- components:
- - type: Transform
- pos: -48.5,-65.5
- parent: 2
- uid: 5597
components:
- type: Transform
@@ -27243,6 +27498,11 @@ entities:
- type: Transform
pos: -123.5,-22.5
parent: 2
+ - uid: 6436
+ components:
+ - type: Transform
+ pos: -70.5,-57.5
+ parent: 2
- uid: 6520
components:
- type: Transform
@@ -27258,15 +27518,50 @@ entities:
- type: Transform
pos: -43.5,-16.5
parent: 2
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: -87.5,-44.5
+ parent: 2
- uid: 6693
components:
- type: Transform
- pos: -76.5,-66.5
+ pos: -85.5,-44.5
parent: 2
- - uid: 6806
+ - uid: 6706
components:
- type: Transform
- pos: -76.5,-69.5
+ pos: -86.5,-44.5
+ parent: 2
+ - uid: 6709
+ components:
+ - type: Transform
+ pos: -83.5,-44.5
+ parent: 2
+ - uid: 6725
+ components:
+ - type: Transform
+ pos: -70.5,-58.5
+ parent: 2
+ - uid: 6784
+ components:
+ - type: Transform
+ pos: -55.5,-71.5
+ parent: 2
+ - uid: 6795
+ components:
+ - type: Transform
+ pos: -93.5,-0.5
+ parent: 2
+ - uid: 6805
+ components:
+ - type: Transform
+ pos: -95.5,-0.5
+ parent: 2
+ - uid: 6817
+ components:
+ - type: Transform
+ pos: -74.5,-38.5
parent: 2
- uid: 6869
components:
@@ -27378,11 +27673,36 @@ entities:
- type: Transform
pos: -140.5,-39.5
parent: 2
+ - uid: 7491
+ components:
+ - type: Transform
+ pos: -71.5,-38.5
+ parent: 2
+ - uid: 7507
+ components:
+ - type: Transform
+ pos: -69.5,-38.5
+ parent: 2
+ - uid: 7511
+ components:
+ - type: Transform
+ pos: -68.5,-38.5
+ parent: 2
- uid: 7518
components:
- type: Transform
pos: -35.5,-39.5
parent: 2
+ - uid: 7563
+ components:
+ - type: Transform
+ pos: -91.5,-44.5
+ parent: 2
+ - uid: 7573
+ components:
+ - type: Transform
+ pos: -88.5,-44.5
+ parent: 2
- uid: 7680
components:
- type: Transform
@@ -27488,6 +27808,11 @@ entities:
- type: Transform
pos: -134.5,-39.5
parent: 2
+ - uid: 7845
+ components:
+ - type: Transform
+ pos: -90.5,-44.5
+ parent: 2
- uid: 7847
components:
- type: Transform
@@ -27503,6 +27828,11 @@ entities:
- type: Transform
pos: -104.5,28.5
parent: 2
+ - uid: 7889
+ components:
+ - type: Transform
+ pos: -89.5,-44.5
+ parent: 2
- uid: 7895
components:
- type: Transform
@@ -27513,6 +27843,11 @@ entities:
- type: Transform
pos: -104.5,25.5
parent: 2
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: -91.5,-45.5
+ parent: 2
- uid: 8092
components:
- type: Transform
@@ -27708,6 +28043,16 @@ entities:
- type: Transform
pos: -115.5,-41.5
parent: 2
+ - uid: 8145
+ components:
+ - type: Transform
+ pos: -91.5,-47.5
+ parent: 2
+ - uid: 8159
+ components:
+ - type: Transform
+ pos: -91.5,-42.5
+ parent: 2
- uid: 8311
components:
- type: Transform
@@ -27753,11 +28098,6 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
- - uid: 8567
- components:
- - type: Transform
- pos: -76.5,-67.5
- parent: 2
- uid: 8816
components:
- type: Transform
@@ -27773,11 +28113,36 @@ entities:
- type: Transform
pos: -21.5,-30.5
parent: 2
+ - uid: 8901
+ components:
+ - type: Transform
+ pos: -91.5,-39.5
+ parent: 2
+ - uid: 8903
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
- uid: 8946
components:
- type: Transform
pos: -122.5,-14.5
parent: 2
+ - uid: 8952
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - uid: 8964
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
+ - uid: 8978
+ components:
+ - type: Transform
+ pos: -89.5,-38.5
+ parent: 2
- uid: 9027
components:
- type: Transform
@@ -27813,6 +28178,11 @@ entities:
- type: Transform
pos: -19.5,-30.5
parent: 2
+ - uid: 9427
+ components:
+ - type: Transform
+ pos: -57.5,-68.5
+ parent: 2
- uid: 9527
components:
- type: Transform
@@ -27833,6 +28203,11 @@ entities:
- type: Transform
pos: -126.5,0.5
parent: 2
+ - uid: 9606
+ components:
+ - type: Transform
+ pos: -96.5,-0.5
+ parent: 2
- uid: 9615
components:
- type: Transform
@@ -27843,6 +28218,26 @@ entities:
- type: Transform
pos: -128.5,3.5
parent: 2
+ - uid: 9635
+ components:
+ - type: Transform
+ pos: -94.5,-0.5
+ parent: 2
+ - uid: 9645
+ components:
+ - type: Transform
+ pos: -54.5,-71.5
+ parent: 2
+ - uid: 9647
+ components:
+ - type: Transform
+ pos: -57.5,-70.5
+ parent: 2
+ - uid: 9649
+ components:
+ - type: Transform
+ pos: -57.5,-71.5
+ parent: 2
- uid: 9678
components:
- type: Transform
@@ -27853,11 +28248,21 @@ entities:
- type: Transform
pos: -52.5,-36.5
parent: 2
+ - uid: 9731
+ components:
+ - type: Transform
+ pos: -57.5,-69.5
+ parent: 2
- uid: 9786
components:
- type: Transform
pos: -35.5,-61.5
parent: 2
+ - uid: 9787
+ components:
+ - type: Transform
+ pos: -56.5,-71.5
+ parent: 2
- uid: 9791
components:
- type: Transform
@@ -27973,6 +28378,11 @@ entities:
- type: Transform
pos: -120.5,16.5
parent: 2
+ - uid: 9967
+ components:
+ - type: Transform
+ pos: -73.5,-62.5
+ parent: 2
- uid: 9972
components:
- type: Transform
@@ -28028,21 +28438,6 @@ entities:
- type: Transform
pos: -98.5,33.5
parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 2
- - uid: 10631
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 2
- - uid: 10632
- components:
- - type: Transform
- pos: -32.5,-4.5
- parent: 2
- uid: 10633
components:
- type: Transform
@@ -28053,30 +28448,15 @@ entities:
- type: Transform
pos: -35.5,-4.5
parent: 2
- - uid: 10636
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 2
- - uid: 10637
- components:
- - type: Transform
- pos: -31.5,-7.5
- parent: 2
- - uid: 10638
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 2
- - uid: 10639
+ - uid: 10723
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: -38.5,-13.5
parent: 2
- - uid: 10640
+ - uid: 10737
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -39.5,-13.5
parent: 2
- uid: 10753
components:
@@ -28093,11 +28473,6 @@ entities:
- type: Transform
pos: -101.5,26.5
parent: 2
- - uid: 11050
- components:
- - type: Transform
- pos: -65.5,-64.5
- parent: 2
- uid: 11058
components:
- type: Transform
@@ -28108,6 +28483,11 @@ entities:
- type: Transform
pos: -55.5,-59.5
parent: 2
+ - uid: 11115
+ components:
+ - type: Transform
+ pos: -40.5,-13.5
+ parent: 2
- uid: 11120
components:
- type: Transform
@@ -28473,6 +28853,11 @@ entities:
- type: Transform
pos: -38.5,-61.5
parent: 2
+ - uid: 12617
+ components:
+ - type: Transform
+ pos: -42.5,-13.5
+ parent: 2
- uid: 12726
components:
- type: Transform
@@ -29673,11 +30058,6 @@ entities:
- type: Transform
pos: -133.5,-32.5
parent: 2
- - uid: 13722
- components:
- - type: Transform
- pos: -88.5,2.5
- parent: 2
- uid: 13728
components:
- type: Transform
@@ -29708,10 +30088,10 @@ entities:
- type: Transform
pos: -141.5,-45.5
parent: 2
- - uid: 13803
+ - uid: 13743
components:
- type: Transform
- pos: -88.5,3.5
+ pos: -41.5,-13.5
parent: 2
- uid: 13808
components:
@@ -30293,6 +30673,11 @@ entities:
- type: Transform
pos: -138.5,-40.5
parent: 2
+ - uid: 14184
+ components:
+ - type: Transform
+ pos: -72.5,-38.5
+ parent: 2
- uid: 14217
components:
- type: Transform
@@ -30333,11 +30718,6 @@ entities:
- type: Transform
pos: -12.5,-36.5
parent: 2
- - uid: 14608
- components:
- - type: Transform
- pos: -71.5,-59.5
- parent: 2
- uid: 14625
components:
- type: Transform
@@ -30353,11 +30733,41 @@ entities:
- type: Transform
pos: -68.5,-33.5
parent: 2
+ - uid: 14746
+ components:
+ - type: Transform
+ pos: -72.5,-54.5
+ parent: 2
- uid: 14750
components:
- type: Transform
pos: -122.5,9.5
parent: 2
+ - uid: 14764
+ components:
+ - type: Transform
+ pos: -97.5,-0.5
+ parent: 2
+ - uid: 14775
+ components:
+ - type: Transform
+ pos: -74.5,-37.5
+ parent: 2
+ - uid: 14836
+ components:
+ - type: Transform
+ pos: -74.5,-62.5
+ parent: 2
+ - uid: 14837
+ components:
+ - type: Transform
+ pos: -74.5,-60.5
+ parent: 2
+ - uid: 14838
+ components:
+ - type: Transform
+ pos: -74.5,-63.5
+ parent: 2
- uid: 14880
components:
- type: Transform
@@ -31618,6 +32028,11 @@ entities:
- type: Transform
pos: -47.5,-12.5
parent: 2
+ - uid: 15850
+ components:
+ - type: Transform
+ pos: -98.5,0.5
+ parent: 2
- uid: 15853
components:
- type: Transform
@@ -31708,6 +32123,16 @@ entities:
- type: Transform
pos: -100.5,31.5
parent: 2
+ - uid: 15999
+ components:
+ - type: Transform
+ pos: -35.5,-3.5
+ parent: 2
+ - uid: 16013
+ components:
+ - type: Transform
+ pos: -74.5,-59.5
+ parent: 2
- uid: 16030
components:
- type: Transform
@@ -31723,11 +32148,41 @@ entities:
- type: Transform
pos: -145.5,-43.5
parent: 2
+ - uid: 16045
+ components:
+ - type: Transform
+ pos: -89.5,-60.5
+ parent: 2
+ - uid: 16046
+ components:
+ - type: Transform
+ pos: -35.5,-2.5
+ parent: 2
+ - uid: 16092
+ components:
+ - type: Transform
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 16104
+ components:
+ - type: Transform
+ pos: -89.5,-61.5
+ parent: 2
- uid: 16114
components:
- type: Transform
pos: -15.5,0.5
parent: 2
+ - uid: 16171
+ components:
+ - type: Transform
+ pos: -89.5,4.5
+ parent: 2
+ - uid: 16173
+ components:
+ - type: Transform
+ pos: -89.5,5.5
+ parent: 2
- uid: 16175
components:
- type: Transform
@@ -31743,6 +32198,21 @@ entities:
- type: Transform
pos: -41.5,-2.5
parent: 2
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: -89.5,-59.5
+ parent: 2
+ - uid: 16210
+ components:
+ - type: Transform
+ pos: -89.5,2.5
+ parent: 2
+ - uid: 16217
+ components:
+ - type: Transform
+ pos: -89.5,1.5
+ parent: 2
- uid: 16232
components:
- type: Transform
@@ -31758,11 +32228,31 @@ entities:
- type: Transform
pos: -94.5,22.5
parent: 2
+ - uid: 16443
+ components:
+ - type: Transform
+ pos: -89.5,3.5
+ parent: 2
+ - uid: 16461
+ components:
+ - type: Transform
+ pos: -114.5,-31.5
+ parent: 2
+ - uid: 16467
+ components:
+ - type: Transform
+ pos: -115.5,-31.5
+ parent: 2
- uid: 16486
components:
- type: Transform
pos: -128.5,13.5
parent: 2
+ - uid: 16487
+ components:
+ - type: Transform
+ pos: -113.5,-31.5
+ parent: 2
- uid: 16497
components:
- type: Transform
@@ -31793,11 +32283,6 @@ entities:
- type: Transform
pos: -33.5,-65.5
parent: 2
- - uid: 16503
- components:
- - type: Transform
- pos: -73.5,-58.5
- parent: 2
- uid: 16555
components:
- type: Transform
@@ -31813,6 +32298,46 @@ entities:
- type: Transform
pos: -85.5,-8.5
parent: 2
+ - uid: 16659
+ components:
+ - type: Transform
+ pos: -108.5,-30.5
+ parent: 2
+ - uid: 16662
+ components:
+ - type: Transform
+ pos: -108.5,-31.5
+ parent: 2
+ - uid: 16668
+ components:
+ - type: Transform
+ pos: -109.5,-31.5
+ parent: 2
+ - uid: 16673
+ components:
+ - type: Transform
+ pos: -74.5,-55.5
+ parent: 2
+ - uid: 16674
+ components:
+ - type: Transform
+ pos: -110.5,-31.5
+ parent: 2
+ - uid: 16683
+ components:
+ - type: Transform
+ pos: -111.5,-31.5
+ parent: 2
+ - uid: 16684
+ components:
+ - type: Transform
+ pos: -112.5,-31.5
+ parent: 2
+ - uid: 16685
+ components:
+ - type: Transform
+ pos: -107.5,-31.5
+ parent: 2
- uid: 16708
components:
- type: Transform
@@ -31908,20 +32433,30 @@ entities:
- type: Transform
pos: -94.5,18.5
parent: 2
+ - uid: 16807
+ components:
+ - type: Transform
+ pos: -74.5,-64.5
+ parent: 2
- uid: 16818
components:
- type: Transform
pos: -104.5,-46.5
parent: 2
- - uid: 16824
+ - uid: 16821
components:
- type: Transform
- pos: -104.5,-45.5
+ pos: -88.5,-47.5
parent: 2
- - uid: 16829
+ - uid: 16823
components:
- type: Transform
- pos: -104.5,-47.5
+ pos: -87.5,-47.5
+ parent: 2
+ - uid: 16824
+ components:
+ - type: Transform
+ pos: -104.5,-45.5
parent: 2
- uid: 16834
components:
@@ -31938,15 +32473,25 @@ entities:
- type: Transform
pos: -36.5,-38.5
parent: 2
+ - uid: 16969
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
+ - uid: 16973
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
- uid: 16978
components:
- type: Transform
pos: -88.5,-6.5
parent: 2
- - uid: 16994
+ - uid: 17004
components:
- type: Transform
- pos: -92.5,-65.5
+ pos: -74.5,-58.5
parent: 2
- uid: 17008
components:
@@ -31993,6 +32538,11 @@ entities:
- type: Transform
pos: -87.5,-8.5
parent: 2
+ - uid: 17128
+ components:
+ - type: Transform
+ pos: -72.5,-65.5
+ parent: 2
- uid: 17129
components:
- type: Transform
@@ -32123,11 +32673,36 @@ entities:
- type: Transform
pos: -16.5,-65.5
parent: 2
+ - uid: 17808
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
+ - uid: 17827
+ components:
+ - type: Transform
+ pos: -74.5,-57.5
+ parent: 2
+ - uid: 17829
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
+ - uid: 17836
+ components:
+ - type: Transform
+ pos: -70.5,-38.5
+ parent: 2
- uid: 17975
components:
- type: Transform
pos: -24.5,-2.5
parent: 2
+ - uid: 18103
+ components:
+ - type: Transform
+ pos: -70.5,-65.5
+ parent: 2
- uid: 18174
components:
- type: Transform
@@ -32138,11 +32713,56 @@ entities:
- type: Transform
pos: -73.5,-21.5
parent: 2
+ - uid: 18206
+ components:
+ - type: Transform
+ pos: -93.5,-8.5
+ parent: 2
+ - uid: 18211
+ components:
+ - type: Transform
+ pos: -93.5,-5.5
+ parent: 2
+ - uid: 18212
+ components:
+ - type: Transform
+ pos: -86.5,-63.5
+ parent: 2
+ - uid: 18214
+ components:
+ - type: Transform
+ pos: -87.5,-63.5
+ parent: 2
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: -10.5,-28.5
+ parent: 2
+ - uid: 18217
+ components:
+ - type: Transform
+ pos: -91.5,-63.5
+ parent: 2
+ - uid: 18218
+ components:
+ - type: Transform
+ pos: -96.5,-5.5
+ parent: 2
+ - uid: 18221
+ components:
+ - type: Transform
+ pos: -90.5,-63.5
+ parent: 2
- uid: 18260
components:
- type: Transform
pos: -125.5,-32.5
parent: 2
+ - uid: 18349
+ components:
+ - type: Transform
+ pos: -88.5,-63.5
+ parent: 2
- uid: 18475
components:
- type: Transform
@@ -32738,241 +33358,6 @@ entities:
- type: Transform
pos: -88.5,-36.5
parent: 2
- - uid: 18594
- components:
- - type: Transform
- pos: -88.5,-37.5
- parent: 2
- - uid: 18595
- components:
- - type: Transform
- pos: -88.5,-38.5
- parent: 2
- - uid: 18596
- components:
- - type: Transform
- pos: -89.5,-38.5
- parent: 2
- - uid: 18597
- components:
- - type: Transform
- pos: -90.5,-38.5
- parent: 2
- - uid: 18598
- components:
- - type: Transform
- pos: -92.5,-38.5
- parent: 2
- - uid: 18599
- components:
- - type: Transform
- pos: -93.5,-38.5
- parent: 2
- - uid: 18600
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- - uid: 18601
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- - uid: 18602
- components:
- - type: Transform
- pos: -86.5,-38.5
- parent: 2
- - uid: 18603
- components:
- - type: Transform
- pos: -84.5,-38.5
- parent: 2
- - uid: 18604
- components:
- - type: Transform
- pos: -83.5,-38.5
- parent: 2
- - uid: 18605
- components:
- - type: Transform
- pos: -82.5,-38.5
- parent: 2
- - uid: 18606
- components:
- - type: Transform
- pos: -81.5,-43.5
- parent: 2
- - uid: 18607
- components:
- - type: Transform
- pos: -80.5,-43.5
- parent: 2
- - uid: 18608
- components:
- - type: Transform
- pos: -85.5,-38.5
- parent: 2
- - uid: 18609
- components:
- - type: Transform
- pos: -83.5,-39.5
- parent: 2
- - uid: 18610
- components:
- - type: Transform
- pos: -83.5,-40.5
- parent: 2
- - uid: 18611
- components:
- - type: Transform
- pos: -83.5,-41.5
- parent: 2
- - uid: 18612
- components:
- - type: Transform
- pos: -82.5,-41.5
- parent: 2
- - uid: 18613
- components:
- - type: Transform
- pos: -91.5,-39.5
- parent: 2
- - uid: 18614
- components:
- - type: Transform
- pos: -91.5,-40.5
- parent: 2
- - uid: 18615
- components:
- - type: Transform
- pos: -91.5,-42.5
- parent: 2
- - uid: 18616
- components:
- - type: Transform
- pos: -91.5,-43.5
- parent: 2
- - uid: 18617
- components:
- - type: Transform
- pos: -91.5,-44.5
- parent: 2
- - uid: 18618
- components:
- - type: Transform
- pos: -91.5,-41.5
- parent: 2
- - uid: 18619
- components:
- - type: Transform
- pos: -91.5,-45.5
- parent: 2
- - uid: 18620
- components:
- - type: Transform
- pos: -88.5,-45.5
- parent: 2
- - uid: 18621
- components:
- - type: Transform
- pos: -90.5,-45.5
- parent: 2
- - uid: 18622
- components:
- - type: Transform
- pos: -89.5,-45.5
- parent: 2
- - uid: 18623
- components:
- - type: Transform
- pos: -87.5,-45.5
- parent: 2
- - uid: 18624
- components:
- - type: Transform
- pos: -86.5,-45.5
- parent: 2
- - uid: 18625
- components:
- - type: Transform
- pos: -85.5,-45.5
- parent: 2
- - uid: 18626
- components:
- - type: Transform
- pos: -84.5,-45.5
- parent: 2
- - uid: 18627
- components:
- - type: Transform
- pos: -83.5,-45.5
- parent: 2
- - uid: 18628
- components:
- - type: Transform
- pos: -82.5,-45.5
- parent: 2
- - uid: 18629
- components:
- - type: Transform
- pos: -82.5,-44.5
- parent: 2
- - uid: 18630
- components:
- - type: Transform
- pos: -82.5,-43.5
- parent: 2
- - uid: 18631
- components:
- - type: Transform
- pos: -82.5,-42.5
- parent: 2
- - uid: 18632
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - uid: 18633
- components:
- - type: Transform
- pos: -79.5,-44.5
- parent: 2
- - uid: 18634
- components:
- - type: Transform
- pos: -79.5,-45.5
- parent: 2
- - uid: 18635
- components:
- - type: Transform
- pos: -79.5,-47.5
- parent: 2
- - uid: 18636
- components:
- - type: Transform
- pos: -79.5,-48.5
- parent: 2
- - uid: 18637
- components:
- - type: Transform
- pos: -79.5,-49.5
- parent: 2
- - uid: 18638
- components:
- - type: Transform
- pos: -79.5,-46.5
- parent: 2
- - uid: 18639
- components:
- - type: Transform
- pos: -91.5,-46.5
- parent: 2
- - uid: 18640
- components:
- - type: Transform
- pos: -91.5,-47.5
- parent: 2
- uid: 18641
components:
- type: Transform
@@ -32988,36 +33373,6 @@ entities:
- type: Transform
pos: -91.5,-48.5
parent: 2
- - uid: 18644
- components:
- - type: Transform
- pos: -88.5,-49.5
- parent: 2
- - uid: 18645
- components:
- - type: Transform
- pos: -88.5,-48.5
- parent: 2
- - uid: 18646
- components:
- - type: Transform
- pos: -88.5,-47.5
- parent: 2
- - uid: 18647
- components:
- - type: Transform
- pos: -88.5,-46.5
- parent: 2
- - uid: 18648
- components:
- - type: Transform
- pos: -85.5,-46.5
- parent: 2
- - uid: 18649
- components:
- - type: Transform
- pos: -85.5,-47.5
- parent: 2
- uid: 18650
components:
- type: Transform
@@ -33178,65 +33533,40 @@ entities:
- type: Transform
pos: -101.5,-40.5
parent: 2
- - uid: 18682
- components:
- - type: Transform
- pos: -100.5,-27.5
- parent: 2
- - uid: 18683
- components:
- - type: Transform
- pos: -100.5,-29.5
- parent: 2
- - uid: 18684
- components:
- - type: Transform
- pos: -100.5,-28.5
- parent: 2
- - uid: 18686
- components:
- - type: Transform
- pos: -100.5,-25.5
- parent: 2
- - uid: 18687
- components:
- - type: Transform
- pos: -100.5,-24.5
- parent: 2
- - uid: 18688
+ - uid: 18715
components:
- type: Transform
- pos: -100.5,-23.5
+ pos: -73.5,-38.5
parent: 2
- - uid: 18689
+ - uid: 18728
components:
- type: Transform
- pos: -100.5,-26.5
+ pos: -36.5,-37.5
parent: 2
- - uid: 18690
+ - uid: 18784
components:
- type: Transform
- pos: -100.5,-31.5
+ pos: -138.5,-9.5
parent: 2
- - uid: 18691
+ - uid: 18833
components:
- type: Transform
- pos: -100.5,-30.5
+ pos: -83.5,-38.5
parent: 2
- - uid: 18692
+ - uid: 18834
components:
- type: Transform
- pos: -100.5,-32.5
+ pos: -10.5,-29.5
parent: 2
- - uid: 18728
+ - uid: 18835
components:
- type: Transform
- pos: -36.5,-37.5
+ pos: -92.5,-63.5
parent: 2
- - uid: 18784
+ - uid: 18865
components:
- type: Transform
- pos: -138.5,-9.5
+ pos: -98.5,1.5
parent: 2
- uid: 18972
components:
@@ -34193,11 +34523,6 @@ entities:
- type: Transform
pos: -108.5,-5.5
parent: 2
- - uid: 19447
- components:
- - type: Transform
- pos: -88.5,4.5
- parent: 2
- uid: 19452
components:
- type: Transform
@@ -34213,6 +34538,11 @@ entities:
- type: Transform
pos: -68.5,-31.5
parent: 2
+ - uid: 19622
+ components:
+ - type: Transform
+ pos: -89.5,-62.5
+ parent: 2
- uid: 19626
components:
- type: Transform
@@ -34228,11 +34558,6 @@ entities:
- type: Transform
pos: -54.5,-36.5
parent: 2
- - uid: 19720
- components:
- - type: Transform
- pos: -71.5,-58.5
- parent: 2
- uid: 19733
components:
- type: Transform
@@ -34263,11 +34588,21 @@ entities:
- type: Transform
pos: -75.5,-25.5
parent: 2
+ - uid: 19763
+ components:
+ - type: Transform
+ pos: -69.5,-65.5
+ parent: 2
- uid: 19802
components:
- type: Transform
pos: -94.5,23.5
parent: 2
+ - uid: 19809
+ components:
+ - type: Transform
+ pos: -89.5,-63.5
+ parent: 2
- uid: 19813
components:
- type: Transform
@@ -34793,6 +35128,16 @@ entities:
- type: Transform
pos: -102.5,12.5
parent: 2
+ - uid: 20148
+ components:
+ - type: Transform
+ pos: -74.5,-61.5
+ parent: 2
+ - uid: 20266
+ components:
+ - type: Transform
+ pos: -81.5,-44.5
+ parent: 2
- uid: 20341
components:
- type: Transform
@@ -34858,11 +35203,71 @@ entities:
- type: Transform
pos: -10.5,-43.5
parent: 2
+ - uid: 20459
+ components:
+ - type: Transform
+ pos: -66.5,-65.5
+ parent: 2
+ - uid: 20515
+ components:
+ - type: Transform
+ pos: -91.5,-43.5
+ parent: 2
+ - uid: 20516
+ components:
+ - type: Transform
+ pos: -91.5,-46.5
+ parent: 2
+ - uid: 20517
+ components:
+ - type: Transform
+ pos: -91.5,-40.5
+ parent: 2
+ - uid: 20518
+ components:
+ - type: Transform
+ pos: -91.5,-41.5
+ parent: 2
+ - uid: 20519
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
+ parent: 2
+ - uid: 20520
+ components:
+ - type: Transform
+ pos: -84.5,-47.5
+ parent: 2
+ - uid: 20521
+ components:
+ - type: Transform
+ pos: -89.5,-47.5
+ parent: 2
+ - uid: 20522
+ components:
+ - type: Transform
+ pos: -90.5,-47.5
+ parent: 2
+ - uid: 20536
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
- uid: 20542
components:
- type: Transform
pos: -48.5,-52.5
parent: 2
+ - uid: 20543
+ components:
+ - type: Transform
+ pos: -79.5,-44.5
+ parent: 2
+ - uid: 20564
+ components:
+ - type: Transform
+ pos: -79.5,-42.5
+ parent: 2
- uid: 20598
components:
- type: Transform
@@ -34913,10 +35318,40 @@ entities:
- type: Transform
pos: -109.5,-10.5
parent: 2
- - uid: 20728
+ - uid: 20731
components:
- type: Transform
- pos: -71.5,-57.5
+ pos: -67.5,-65.5
+ parent: 2
+ - uid: 20791
+ components:
+ - type: Transform
+ pos: -74.5,-36.5
+ parent: 2
+ - uid: 20806
+ components:
+ - type: Transform
+ pos: -86.5,-47.5
+ parent: 2
+ - uid: 20807
+ components:
+ - type: Transform
+ pos: -83.5,-45.5
+ parent: 2
+ - uid: 20809
+ components:
+ - type: Transform
+ pos: -83.5,-47.5
+ parent: 2
+ - uid: 20810
+ components:
+ - type: Transform
+ pos: -85.5,-47.5
+ parent: 2
+ - uid: 20827
+ components:
+ - type: Transform
+ pos: -83.5,-46.5
parent: 2
- uid: 20872
components:
@@ -35018,6 +35453,11 @@ entities:
- type: Transform
pos: -28.5,-59.5
parent: 2
+ - uid: 20893
+ components:
+ - type: Transform
+ pos: -68.5,-65.5
+ parent: 2
- uid: 20899
components:
- type: Transform
@@ -35258,11 +35698,6 @@ entities:
- type: Transform
pos: -118.5,-4.5
parent: 2
- - uid: 21499
- components:
- - type: Transform
- pos: -73.5,-57.5
- parent: 2
- uid: 21500
components:
- type: Transform
@@ -35308,16 +35743,6 @@ entities:
- type: Transform
pos: -65.5,-56.5
parent: 2
- - uid: 21509
- components:
- - type: Transform
- pos: -73.5,-56.5
- parent: 2
- - uid: 21510
- components:
- - type: Transform
- pos: -71.5,-56.5
- parent: 2
- uid: 21511
components:
- type: Transform
@@ -35338,11 +35763,6 @@ entities:
- type: Transform
pos: -67.5,-56.5
parent: 2
- - uid: 21515
- components:
- - type: Transform
- pos: -72.5,-56.5
- parent: 2
- uid: 21516
components:
- type: Transform
@@ -35503,11 +35923,6 @@ entities:
- type: Transform
pos: -67.5,-54.5
parent: 2
- - uid: 21554
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- uid: 21716
components:
- type: Transform
@@ -35543,6 +35958,11 @@ entities:
- type: Transform
pos: -68.5,-21.5
parent: 2
+ - uid: 22115
+ components:
+ - type: Transform
+ pos: -79.5,-41.5
+ parent: 2
- uid: 22124
components:
- type: Transform
@@ -35613,6 +36033,11 @@ entities:
- type: Transform
pos: -18.5,-28.5
parent: 2
+ - uid: 22478
+ components:
+ - type: Transform
+ pos: -98.5,-0.5
+ parent: 2
- uid: 22486
components:
- type: Transform
@@ -35648,61 +36073,6 @@ entities:
- type: Transform
pos: -121.5,-4.5
parent: 2
- - uid: 22494
- components:
- - type: Transform
- pos: -109.5,-28.5
- parent: 2
- - uid: 22495
- components:
- - type: Transform
- pos: -109.5,-30.5
- parent: 2
- - uid: 22496
- components:
- - type: Transform
- pos: -109.5,-31.5
- parent: 2
- - uid: 22497
- components:
- - type: Transform
- pos: -109.5,-29.5
- parent: 2
- - uid: 22498
- components:
- - type: Transform
- pos: -109.5,-32.5
- parent: 2
- - uid: 22499
- components:
- - type: Transform
- pos: -110.5,-31.5
- parent: 2
- - uid: 22500
- components:
- - type: Transform
- pos: -111.5,-31.5
- parent: 2
- - uid: 22501
- components:
- - type: Transform
- pos: -113.5,-31.5
- parent: 2
- - uid: 22502
- components:
- - type: Transform
- pos: -114.5,-31.5
- parent: 2
- - uid: 22503
- components:
- - type: Transform
- pos: -112.5,-31.5
- parent: 2
- - uid: 22504
- components:
- - type: Transform
- pos: -108.5,-31.5
- parent: 2
- uid: 22505
components:
- type: Transform
@@ -36138,11 +36508,6 @@ entities:
- type: Transform
pos: -106.5,25.5
parent: 2
- - uid: 22692
- components:
- - type: Transform
- pos: -106.5,26.5
- parent: 2
- uid: 22710
components:
- type: Transform
@@ -36718,11 +37083,6 @@ entities:
- type: Transform
pos: -101.5,-56.5
parent: 2
- - uid: 22876
- components:
- - type: Transform
- pos: -77.5,-56.5
- parent: 2
- uid: 22900
components:
- type: Transform
@@ -36858,20 +37218,15 @@ entities:
- type: Transform
pos: -27.5,-67.5
parent: 2
- - uid: 22950
- components:
- - type: Transform
- pos: -26.5,-64.5
- parent: 2
- - uid: 22951
+ - uid: 22952
components:
- type: Transform
- pos: -26.5,-65.5
+ pos: -58.5,-33.5
parent: 2
- - uid: 22952
+ - uid: 23111
components:
- type: Transform
- pos: -58.5,-33.5
+ pos: -104.5,-47.5
parent: 2
- uid: 23124
components:
@@ -36888,6 +37243,16 @@ entities:
- type: Transform
pos: -135.5,24.5
parent: 2
+ - uid: 23187
+ components:
+ - type: Transform
+ pos: -98.5,3.5
+ parent: 2
+ - uid: 23188
+ components:
+ - type: Transform
+ pos: -98.5,2.5
+ parent: 2
- uid: 23191
components:
- type: Transform
@@ -36918,170 +37283,15 @@ entities:
- type: Transform
pos: -50.5,-63.5
parent: 2
- - uid: 23206
- components:
- - type: Transform
- pos: -48.5,-66.5
- parent: 2
- - uid: 23208
- components:
- - type: Transform
- pos: -48.5,-67.5
- parent: 2
- - uid: 23209
- components:
- - type: Transform
- pos: -48.5,-68.5
- parent: 2
- - uid: 23210
- components:
- - type: Transform
- pos: -48.5,-69.5
- parent: 2
- - uid: 23211
- components:
- - type: Transform
- pos: -48.5,-70.5
- parent: 2
- - uid: 23212
- components:
- - type: Transform
- pos: -48.5,-71.5
- parent: 2
- - uid: 23213
- components:
- - type: Transform
- pos: -49.5,-71.5
- parent: 2
- - uid: 23214
- components:
- - type: Transform
- pos: -50.5,-71.5
- parent: 2
- - uid: 23215
- components:
- - type: Transform
- pos: -52.5,-71.5
- parent: 2
- - uid: 23216
- components:
- - type: Transform
- pos: -53.5,-71.5
- parent: 2
- - uid: 23217
- components:
- - type: Transform
- pos: -54.5,-71.5
- parent: 2
- uid: 23218
components:
- type: Transform
- pos: -55.5,-71.5
+ pos: -93.5,-10.5
parent: 2
- uid: 23219
components:
- type: Transform
- pos: -56.5,-71.5
- parent: 2
- - uid: 23220
- components:
- - type: Transform
- pos: -57.5,-71.5
- parent: 2
- - uid: 23221
- components:
- - type: Transform
- pos: -58.5,-71.5
- parent: 2
- - uid: 23222
- components:
- - type: Transform
- pos: -51.5,-71.5
- parent: 2
- - uid: 23223
- components:
- - type: Transform
- pos: -59.5,-71.5
- parent: 2
- - uid: 23224
- components:
- - type: Transform
- pos: -60.5,-71.5
- parent: 2
- - uid: 23225
- components:
- - type: Transform
- pos: -60.5,-70.5
- parent: 2
- - uid: 23226
- components:
- - type: Transform
- pos: -60.5,-69.5
- parent: 2
- - uid: 23227
- components:
- - type: Transform
- pos: -57.5,-72.5
- parent: 2
- - uid: 23228
- components:
- - type: Transform
- pos: -76.5,-59.5
- parent: 2
- - uid: 23229
- components:
- - type: Transform
- pos: -76.5,-61.5
- parent: 2
- - uid: 23230
- components:
- - type: Transform
- pos: -76.5,-62.5
- parent: 2
- - uid: 23231
- components:
- - type: Transform
- pos: -76.5,-63.5
- parent: 2
- - uid: 23232
- components:
- - type: Transform
- pos: -76.5,-64.5
- parent: 2
- - uid: 23233
- components:
- - type: Transform
- pos: -76.5,-65.5
- parent: 2
- - uid: 23234
- components:
- - type: Transform
- pos: -76.5,-60.5
- parent: 2
- - uid: 23235
- components:
- - type: Transform
- pos: -75.5,-65.5
- parent: 2
- - uid: 23236
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- - uid: 23237
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- - uid: 23238
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- - uid: 23242
- components:
- - type: Transform
- pos: -72.5,-65.5
+ pos: -93.5,-63.5
parent: 2
- uid: 23253
components:
@@ -37143,175 +37353,45 @@ entities:
- type: Transform
pos: -47.5,-59.5
parent: 2
- - uid: 23266
- components:
- - type: Transform
- pos: -76.5,-70.5
- parent: 2
- - uid: 23267
- components:
- - type: Transform
- pos: -76.5,-71.5
- parent: 2
- - uid: 23268
- components:
- - type: Transform
- pos: -76.5,-72.5
- parent: 2
- - uid: 23269
- components:
- - type: Transform
- pos: -76.5,-73.5
- parent: 2
- - uid: 23270
- components:
- - type: Transform
- pos: -76.5,-74.5
- parent: 2
- - uid: 23271
- components:
- - type: Transform
- pos: -76.5,-75.5
- parent: 2
- - uid: 23272
- components:
- - type: Transform
- pos: -76.5,-68.5
- parent: 2
- - uid: 23273
- components:
- - type: Transform
- pos: -77.5,-75.5
- parent: 2
- - uid: 23274
- components:
- - type: Transform
- pos: -78.5,-75.5
- parent: 2
- - uid: 23275
- components:
- - type: Transform
- pos: -78.5,-76.5
- parent: 2
- - uid: 23276
- components:
- - type: Transform
- pos: -79.5,-76.5
- parent: 2
- - uid: 23277
- components:
- - type: Transform
- pos: -81.5,-76.5
- parent: 2
- - uid: 23278
- components:
- - type: Transform
- pos: -82.5,-76.5
- parent: 2
- - uid: 23279
- components:
- - type: Transform
- pos: -80.5,-76.5
- parent: 2
- uid: 23280
components:
- type: Transform
- pos: -82.5,-77.5
- parent: 2
- - uid: 23281
- components:
- - type: Transform
- pos: -82.5,-78.5
+ pos: -78.5,-44.5
parent: 2
- uid: 23282
components:
- type: Transform
- pos: -82.5,-79.5
- parent: 2
- - uid: 23283
- components:
- - type: Transform
- pos: -82.5,-80.5
- parent: 2
- - uid: 23284
- components:
- - type: Transform
- pos: -82.5,-81.5
- parent: 2
- - uid: 23300
- components:
- - type: Transform
- pos: -76.5,-44.5
- parent: 2
- - uid: 23301
- components:
- - type: Transform
- pos: -76.5,-43.5
- parent: 2
- - uid: 23302
- components:
- - type: Transform
- pos: -76.5,-50.5
- parent: 2
- - uid: 23303
- components:
- - type: Transform
- pos: -76.5,-41.5
+ pos: -93.5,-7.5
parent: 2
- - uid: 23304
+ - uid: 23286
components:
- type: Transform
- pos: -76.5,-39.5
+ pos: -94.5,-10.5
parent: 2
- - uid: 23305
+ - uid: 23287
components:
- type: Transform
- pos: -76.5,-38.5
+ pos: -93.5,-9.5
parent: 2
- - uid: 23306
+ - uid: 23294
components:
- type: Transform
- pos: -76.5,-42.5
+ pos: -92.5,-5.5
parent: 2
- - uid: 23307
+ - uid: 23297
components:
- type: Transform
- pos: -76.5,-40.5
+ pos: -93.5,-6.5
parent: 2
- uid: 23309
components:
- type: Transform
- pos: -76.5,-52.5
+ pos: -95.5,-5.5
parent: 2
- uid: 23310
components:
- type: Transform
- pos: -76.5,-51.5
- parent: 2
- - uid: 23311
- components:
- - type: Transform
- pos: -76.5,-49.5
- parent: 2
- - uid: 23312
- components:
- - type: Transform
- pos: -76.5,-48.5
- parent: 2
- - uid: 23313
- components:
- - type: Transform
- pos: -76.5,-47.5
- parent: 2
- - uid: 23314
- components:
- - type: Transform
- pos: -76.5,-46.5
- parent: 2
- - uid: 23315
- components:
- - type: Transform
- pos: -76.5,-45.5
+ pos: -94.5,-5.5
parent: 2
- uid: 23316
components:
@@ -37378,6 +37458,21 @@ entities:
- type: Transform
pos: -68.5,-27.5
parent: 2
+ - uid: 23395
+ components:
+ - type: Transform
+ pos: -86.5,-38.5
+ parent: 2
+ - uid: 23435
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
+ - uid: 23455
+ components:
+ - type: Transform
+ pos: -79.5,-40.5
+ parent: 2
- uid: 23465
components:
- type: Transform
@@ -37518,11 +37613,6 @@ entities:
- type: Transform
pos: -94.5,32.5
parent: 2
- - uid: 23519
- components:
- - type: Transform
- pos: -72.5,-38.5
- parent: 2
- uid: 23520
components:
- type: Transform
@@ -37908,6 +37998,16 @@ entities:
- type: Transform
pos: -68.5,-35.5
parent: 2
+ - uid: 23676
+ components:
+ - type: Transform
+ pos: -82.5,-38.5
+ parent: 2
+ - uid: 23707
+ components:
+ - type: Transform
+ pos: -85.5,-38.5
+ parent: 2
- uid: 23775
components:
- type: Transform
@@ -38573,30 +38673,25 @@ entities:
- type: Transform
pos: -44.5,-63.5
parent: 2
- - uid: 24434
- components:
- - type: Transform
- pos: -99.5,-1.5
- parent: 2
- - uid: 24438
+ - uid: 24389
components:
- type: Transform
- pos: -100.5,-1.5
+ pos: -104.5,-48.5
parent: 2
- - uid: 24607
+ - uid: 24447
components:
- type: Transform
- pos: -91.5,-60.5
+ pos: -104.5,-50.5
parent: 2
- - uid: 24608
+ - uid: 24523
components:
- type: Transform
- pos: -92.5,-60.5
+ pos: -104.5,-51.5
parent: 2
- - uid: 24609
+ - uid: 24537
components:
- type: Transform
- pos: -92.5,-61.5
+ pos: -104.5,-49.5
parent: 2
- uid: 24629
components:
@@ -38728,6 +38823,21 @@ entities:
- type: Transform
pos: -94.5,45.5
parent: 2
+ - uid: 24813
+ components:
+ - type: Transform
+ pos: -104.5,-52.5
+ parent: 2
+ - uid: 24836
+ components:
+ - type: Transform
+ pos: -86.5,-36.5
+ parent: 2
+ - uid: 24837
+ components:
+ - type: Transform
+ pos: -86.5,-37.5
+ parent: 2
- uid: 25114
components:
- type: Transform
@@ -38993,6 +39103,11 @@ entities:
- type: Transform
pos: -94.5,39.5
parent: 2
+ - uid: 25968
+ components:
+ - type: Transform
+ pos: -117.5,26.5
+ parent: 2
- uid: 25970
components:
- type: Transform
@@ -39063,75 +39178,40 @@ entities:
- type: Transform
pos: -73.5,-35.5
parent: 2
- - uid: 25984
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- - uid: 25985
- components:
- - type: Transform
- pos: -75.5,-35.5
- parent: 2
- - uid: 25986
- components:
- - type: Transform
- pos: -76.5,-35.5
- parent: 2
- - uid: 25987
- components:
- - type: Transform
- pos: -76.5,-36.5
- parent: 2
- - uid: 25988
- components:
- - type: Transform
- pos: -76.5,-37.5
- parent: 2
- - uid: 25989
- components:
- - type: Transform
- pos: -75.5,-37.5
- parent: 2
- - uid: 25990
- components:
- - type: Transform
- pos: -74.5,-37.5
- parent: 2
- - uid: 25991
- components:
- - type: Transform
- pos: -73.5,-37.5
- parent: 2
- uid: 25992
components:
- type: Transform
- pos: -72.5,-37.5
+ pos: -133.5,-13.5
parent: 2
- uid: 25993
components:
- type: Transform
- pos: -71.5,-37.5
+ pos: -133.5,-14.5
parent: 2
- uid: 25994
components:
- type: Transform
- pos: -70.5,-37.5
+ pos: -133.5,-15.5
parent: 2
- uid: 25995
components:
- type: Transform
- pos: -69.5,-37.5
+ pos: -133.5,-16.5
+ parent: 2
+ - uid: 25996
+ components:
+ - type: Transform
+ pos: -133.5,-17.5
parent: 2
- uid: 25997
components:
- type: Transform
- pos: -72.5,-39.5
+ pos: -133.5,-19.5
parent: 2
- uid: 25998
components:
- type: Transform
- pos: -72.5,-40.5
+ pos: -133.5,-20.5
parent: 2
- uid: 25999
components:
@@ -39298,11 +39378,26 @@ entities:
- type: Transform
pos: -33.5,6.5
parent: 2
+ - uid: 26038
+ components:
+ - type: Transform
+ pos: -133.5,-21.5
+ parent: 2
+ - uid: 26039
+ components:
+ - type: Transform
+ pos: -133.5,-22.5
+ parent: 2
- uid: 26040
components:
- type: Transform
pos: -39.5,2.5
parent: 2
+ - uid: 26041
+ components:
+ - type: Transform
+ pos: -133.5,-23.5
+ parent: 2
- uid: 26042
components:
- type: Transform
@@ -39348,6 +39443,56 @@ entities:
- type: Transform
pos: -40.5,0.5
parent: 2
+ - uid: 26051
+ components:
+ - type: Transform
+ pos: -133.5,-18.5
+ parent: 2
+ - uid: 26052
+ components:
+ - type: Transform
+ pos: -133.5,-24.5
+ parent: 2
+ - uid: 26054
+ components:
+ - type: Transform
+ pos: -133.5,-26.5
+ parent: 2
+ - uid: 26055
+ components:
+ - type: Transform
+ pos: -133.5,-25.5
+ parent: 2
+ - uid: 26056
+ components:
+ - type: Transform
+ pos: -133.5,-27.5
+ parent: 2
+ - uid: 26057
+ components:
+ - type: Transform
+ pos: -132.5,-27.5
+ parent: 2
+ - uid: 26058
+ components:
+ - type: Transform
+ pos: -131.5,-27.5
+ parent: 2
+ - uid: 26059
+ components:
+ - type: Transform
+ pos: -130.5,-27.5
+ parent: 2
+ - uid: 26060
+ components:
+ - type: Transform
+ pos: -128.5,-27.5
+ parent: 2
+ - uid: 26098
+ components:
+ - type: Transform
+ pos: -127.5,-27.5
+ parent: 2
- uid: 26181
components:
- type: Transform
@@ -39373,6 +39518,71 @@ entities:
- type: Transform
pos: -130.5,-52.5
parent: 2
+ - uid: 26186
+ components:
+ - type: Transform
+ pos: -126.5,-27.5
+ parent: 2
+ - uid: 26187
+ components:
+ - type: Transform
+ pos: -125.5,-27.5
+ parent: 2
+ - uid: 26188
+ components:
+ - type: Transform
+ pos: -124.5,-27.5
+ parent: 2
+ - uid: 26189
+ components:
+ - type: Transform
+ pos: -123.5,-27.5
+ parent: 2
+ - uid: 26190
+ components:
+ - type: Transform
+ pos: -129.5,-27.5
+ parent: 2
+ - uid: 26191
+ components:
+ - type: Transform
+ pos: -122.5,-27.5
+ parent: 2
+ - uid: 26192
+ components:
+ - type: Transform
+ pos: -121.5,-27.5
+ parent: 2
+ - uid: 26204
+ components:
+ - type: Transform
+ pos: -25.5,-63.5
+ parent: 2
+ - uid: 26205
+ components:
+ - type: Transform
+ pos: -25.5,-64.5
+ parent: 2
+ - uid: 26206
+ components:
+ - type: Transform
+ pos: -25.5,-66.5
+ parent: 2
+ - uid: 26207
+ components:
+ - type: Transform
+ pos: -25.5,-67.5
+ parent: 2
+ - uid: 26208
+ components:
+ - type: Transform
+ pos: -25.5,-65.5
+ parent: 2
+ - uid: 26209
+ components:
+ - type: Transform
+ pos: -26.5,-67.5
+ parent: 2
- proto: CableApcStack
entities:
- uid: 4360
@@ -39380,6 +39590,11 @@ entities:
- type: Transform
pos: -26.681332,-6.5260487
parent: 2
+ - uid: 23304
+ components:
+ - type: Transform
+ pos: -112.261406,-29.224083
+ parent: 2
- proto: CableApcStack1
entities:
- uid: 21068
@@ -39448,11 +39663,6 @@ entities:
- type: Transform
pos: -77.5,-8.5
parent: 2
- - uid: 507
- components:
- - type: Transform
- pos: -88.5,4.5
- parent: 2
- uid: 525
components:
- type: Transform
@@ -39478,6 +39688,11 @@ entities:
- type: Transform
pos: -26.5,-57.5
parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -59.5,-68.5
+ parent: 2
- uid: 990
components:
- type: Transform
@@ -39498,11 +39713,6 @@ entities:
- type: Transform
pos: -153.5,18.5
parent: 2
- - uid: 1723
- components:
- - type: Transform
- pos: -76.5,-36.5
- parent: 2
- uid: 1787
components:
- type: Transform
@@ -39553,11 +39763,6 @@ entities:
- type: Transform
pos: -93.5,-44.5
parent: 2
- - uid: 1919
- components:
- - type: Transform
- pos: -101.5,-24.5
- parent: 2
- uid: 1948
components:
- type: Transform
@@ -39650,11 +39855,6 @@ entities:
- type: Transform
pos: -86.5,-17.5
parent: 2
- - uid: 2083
- components:
- - type: Transform
- pos: -78.5,-44.5
- parent: 2
- uid: 2084
components:
- type: Transform
@@ -39930,11 +40130,6 @@ entities:
- type: Transform
pos: -98.5,-27.5
parent: 2
- - uid: 2361
- components:
- - type: Transform
- pos: -100.5,-27.5
- parent: 2
- uid: 2383
components:
- type: Transform
@@ -39985,75 +40180,20 @@ entities:
- type: Transform
pos: -111.5,-10.5
parent: 2
- - uid: 2563
- components:
- - type: Transform
- pos: -78.5,-35.5
- parent: 2
- - uid: 2572
- components:
- - type: Transform
- pos: -78.5,-36.5
- parent: 2
- - uid: 2573
- components:
- - type: Transform
- pos: -78.5,-37.5
- parent: 2
- - uid: 2576
- components:
- - type: Transform
- pos: -78.5,-47.5
- parent: 2
- - uid: 2578
- components:
- - type: Transform
- pos: -78.5,-46.5
- parent: 2
- - uid: 2579
- components:
- - type: Transform
- pos: -78.5,-38.5
- parent: 2
- - uid: 2580
- components:
- - type: Transform
- pos: -78.5,-48.5
- parent: 2
- - uid: 2583
- components:
- - type: Transform
- pos: -78.5,-49.5
- parent: 2
- - uid: 2584
- components:
- - type: Transform
- pos: -78.5,-40.5
- parent: 2
- - uid: 2585
- components:
- - type: Transform
- pos: -78.5,-41.5
- parent: 2
- - uid: 2586
- components:
- - type: Transform
- pos: -78.5,-50.5
- parent: 2
- - uid: 2587
+ - uid: 2561
components:
- type: Transform
- pos: -78.5,-51.5
+ pos: -59.5,-66.5
parent: 2
- - uid: 2603
+ - uid: 2562
components:
- type: Transform
- pos: -80.5,-38.5
+ pos: -59.5,-67.5
parent: 2
- - uid: 2608
+ - uid: 2629
components:
- type: Transform
- pos: -92.5,-44.5
+ pos: -59.5,-69.5
parent: 2
- uid: 2635
components:
@@ -40065,11 +40205,6 @@ entities:
- type: Transform
pos: -94.5,-49.5
parent: 2
- - uid: 2676
- components:
- - type: Transform
- pos: -78.5,-39.5
- parent: 2
- uid: 2805
components:
- type: Transform
@@ -40460,16 +40595,6 @@ entities:
- type: Transform
pos: -57.5,-80.5
parent: 2
- - uid: 3421
- components:
- - type: Transform
- pos: -88.5,1.5
- parent: 2
- - uid: 3423
- components:
- - type: Transform
- pos: -88.5,0.5
- parent: 2
- uid: 3425
components:
- type: Transform
@@ -40520,11 +40645,6 @@ entities:
- type: Transform
pos: -90.5,-27.5
parent: 2
- - uid: 3720
- components:
- - type: Transform
- pos: -78.5,-34.5
- parent: 2
- uid: 3740
components:
- type: Transform
@@ -40535,36 +40655,6 @@ entities:
- type: Transform
pos: 0.5,6.5
parent: 2
- - uid: 3812
- components:
- - type: Transform
- pos: -84.5,-38.5
- parent: 2
- - uid: 3946
- components:
- - type: Transform
- pos: -82.5,-42.5
- parent: 2
- - uid: 3948
- components:
- - type: Transform
- pos: -82.5,-41.5
- parent: 2
- - uid: 3961
- components:
- - type: Transform
- pos: -82.5,-40.5
- parent: 2
- - uid: 3962
- components:
- - type: Transform
- pos: -82.5,-39.5
- parent: 2
- - uid: 3964
- components:
- - type: Transform
- pos: -91.5,-37.5
- parent: 2
- uid: 3971
components:
- type: Transform
@@ -40580,11 +40670,6 @@ entities:
- type: Transform
pos: -91.5,-30.5
parent: 2
- - uid: 4000
- components:
- - type: Transform
- pos: -101.5,-26.5
- parent: 2
- uid: 4001
components:
- type: Transform
@@ -40620,11 +40705,6 @@ entities:
- type: Transform
pos: -97.5,-27.5
parent: 2
- - uid: 4024
- components:
- - type: Transform
- pos: -101.5,-27.5
- parent: 2
- uid: 4025
components:
- type: Transform
@@ -40710,11 +40790,6 @@ entities:
- type: Transform
pos: -94.5,-51.5
parent: 2
- - uid: 4277
- components:
- - type: Transform
- pos: -48.5,-65.5
- parent: 2
- uid: 4289
components:
- type: Transform
@@ -40820,11 +40895,6 @@ entities:
- type: Transform
pos: -72.5,-35.5
parent: 2
- - uid: 4568
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- uid: 4571
components:
- type: Transform
@@ -40840,16 +40910,6 @@ entities:
- type: Transform
pos: -105.5,15.5
parent: 2
- - uid: 4664
- components:
- - type: Transform
- pos: -105.5,6.5
- parent: 2
- - uid: 4687
- components:
- - type: Transform
- pos: -104.5,5.5
- parent: 2
- uid: 4701
components:
- type: Transform
@@ -41860,6 +41920,11 @@ entities:
- type: Transform
pos: -28.5,2.5
parent: 2
+ - uid: 5105
+ components:
+ - type: Transform
+ pos: -58.5,-69.5
+ parent: 2
- uid: 5173
components:
- type: Transform
@@ -42270,21 +42335,11 @@ entities:
- type: Transform
pos: -149.5,-32.5
parent: 2
- - uid: 5611
- components:
- - type: Transform
- pos: -105.5,10.5
- parent: 2
- uid: 5620
components:
- type: Transform
pos: -136.5,13.5
parent: 2
- - uid: 5697
- components:
- - type: Transform
- pos: -48.5,-64.5
- parent: 2
- uid: 5706
components:
- type: Transform
@@ -42380,16 +42435,6 @@ entities:
- type: Transform
pos: -103.5,-2.5
parent: 2
- - uid: 6127
- components:
- - type: Transform
- pos: -105.5,9.5
- parent: 2
- - uid: 6128
- components:
- - type: Transform
- pos: -105.5,8.5
- parent: 2
- uid: 6129
components:
- type: Transform
@@ -42620,26 +42665,11 @@ entities:
- type: Transform
pos: -92.5,-18.5
parent: 2
- - uid: 6494
- components:
- - type: Transform
- pos: -101.5,-25.5
- parent: 2
- - uid: 6495
- components:
- - type: Transform
- pos: -101.5,-23.5
- parent: 2
- uid: 6496
components:
- type: Transform
pos: -97.5,-26.5
parent: 2
- - uid: 6501
- components:
- - type: Transform
- pos: -101.5,-22.5
- parent: 2
- uid: 6618
components:
- type: Transform
@@ -42710,86 +42740,11 @@ entities:
- type: Transform
pos: -57.5,-11.5
parent: 2
- - uid: 6653
- components:
- - type: Transform
- pos: -76.5,-49.5
- parent: 2
- - uid: 6654
- components:
- - type: Transform
- pos: -76.5,-54.5
- parent: 2
- - uid: 6655
- components:
- - type: Transform
- pos: -76.5,-52.5
- parent: 2
- - uid: 6656
- components:
- - type: Transform
- pos: -76.5,-44.5
- parent: 2
- - uid: 6657
- components:
- - type: Transform
- pos: -76.5,-42.5
- parent: 2
- - uid: 6660
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- - uid: 6675
- components:
- - type: Transform
- pos: -78.5,-42.5
- parent: 2
- - uid: 6676
- components:
- - type: Transform
- pos: -78.5,-43.5
- parent: 2
- - uid: 6677
- components:
- - type: Transform
- pos: -78.5,-45.5
- parent: 2
- - uid: 6678
+ - uid: 6721
components:
- type: Transform
pos: -76.5,-39.5
parent: 2
- - uid: 6680
- components:
- - type: Transform
- pos: -76.5,-47.5
- parent: 2
- - uid: 6681
- components:
- - type: Transform
- pos: -76.5,-43.5
- parent: 2
- - uid: 6687
- components:
- - type: Transform
- pos: -76.5,-53.5
- parent: 2
- - uid: 6688
- components:
- - type: Transform
- pos: -76.5,-38.5
- parent: 2
- - uid: 6690
- components:
- - type: Transform
- pos: -76.5,-50.5
- parent: 2
- - uid: 6691
- components:
- - type: Transform
- pos: -76.5,-51.5
- parent: 2
- uid: 6759
components:
- type: Transform
@@ -42810,36 +42765,16 @@ entities:
- type: Transform
pos: -97.5,-32.5
parent: 2
- - uid: 6784
- components:
- - type: Transform
- pos: -101.5,-32.5
- parent: 2
- - uid: 6785
- components:
- - type: Transform
- pos: -101.5,-29.5
- parent: 2
- uid: 6787
components:
- type: Transform
pos: -97.5,-24.5
parent: 2
- - uid: 6788
- components:
- - type: Transform
- pos: -101.5,-31.5
- parent: 2
- uid: 6789
components:
- type: Transform
pos: -97.5,-31.5
parent: 2
- - uid: 6792
- components:
- - type: Transform
- pos: -101.5,-28.5
- parent: 2
- uid: 6800
components:
- type: Transform
@@ -42850,11 +42785,6 @@ entities:
- type: Transform
pos: -97.5,-29.5
parent: 2
- - uid: 6816
- components:
- - type: Transform
- pos: -101.5,-30.5
- parent: 2
- uid: 6838
components:
- type: Transform
@@ -42930,6 +42860,11 @@ entities:
- type: Transform
pos: -82.5,-52.5
parent: 2
+ - uid: 7032
+ components:
+ - type: Transform
+ pos: -74.5,-65.5
+ parent: 2
- uid: 7035
components:
- type: Transform
@@ -43160,11 +43095,6 @@ entities:
- type: Transform
pos: -153.5,9.5
parent: 2
- - uid: 7478
- components:
- - type: Transform
- pos: -52.5,-68.5
- parent: 2
- uid: 7479
components:
- type: Transform
@@ -43285,6 +43215,21 @@ entities:
- type: Transform
pos: -106.5,7.5
parent: 2
+ - uid: 7909
+ components:
+ - type: Transform
+ pos: -103.5,7.5
+ parent: 2
+ - uid: 7920
+ components:
+ - type: Transform
+ pos: -106.5,11.5
+ parent: 2
+ - uid: 7922
+ components:
+ - type: Transform
+ pos: -104.5,11.5
+ parent: 2
- uid: 7925
components:
- type: Transform
@@ -43415,11 +43360,6 @@ entities:
- type: Transform
pos: -105.5,17.5
parent: 2
- - uid: 8551
- components:
- - type: Transform
- pos: -105.5,7.5
- parent: 2
- uid: 8552
components:
- type: Transform
@@ -43515,6 +43455,16 @@ entities:
- type: Transform
pos: -133.5,-21.5
parent: 2
+ - uid: 9057
+ components:
+ - type: Transform
+ pos: -99.5,-23.5
+ parent: 2
+ - uid: 9087
+ components:
+ - type: Transform
+ pos: -99.5,-31.5
+ parent: 2
- uid: 9118
components:
- type: Transform
@@ -43535,15 +43485,15 @@ entities:
- type: Transform
pos: -133.5,-14.5
parent: 2
- - uid: 9216
+ - uid: 9126
components:
- type: Transform
- pos: -88.5,3.5
+ pos: -98.5,-31.5
parent: 2
- - uid: 9220
+ - uid: 9170
components:
- type: Transform
- pos: -88.5,2.5
+ pos: -100.5,-31.5
parent: 2
- uid: 9275
components:
@@ -43655,6 +43605,16 @@ entities:
- type: Transform
pos: -143.5,15.5
parent: 2
+ - uid: 9831
+ components:
+ - type: Transform
+ pos: -77.5,-37.5
+ parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ pos: -76.5,-52.5
+ parent: 2
- uid: 10091
components:
- type: Transform
@@ -43690,6 +43650,11 @@ entities:
- type: Transform
pos: -105.5,21.5
parent: 2
+ - uid: 10711
+ components:
+ - type: Transform
+ pos: -76.5,-38.5
+ parent: 2
- uid: 10757
components:
- type: Transform
@@ -43710,11 +43675,26 @@ entities:
- type: Transform
pos: -105.5,13.5
parent: 2
+ - uid: 10860
+ components:
+ - type: Transform
+ pos: -95.5,-24.5
+ parent: 2
- uid: 11033
components:
- type: Transform
pos: -145.5,15.5
parent: 2
+ - uid: 11052
+ components:
+ - type: Transform
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 11054
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
- uid: 11099
components:
- type: Transform
@@ -44315,6 +44295,11 @@ entities:
- type: Transform
pos: -89.5,-52.5
parent: 2
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: -76.5,-50.5
+ parent: 2
- uid: 12767
components:
- type: Transform
@@ -44345,26 +44330,6 @@ entities:
- type: Transform
pos: -130.5,-9.5
parent: 2
- - uid: 13556
- components:
- - type: Transform
- pos: -79.5,-52.5
- parent: 2
- - uid: 13557
- components:
- - type: Transform
- pos: -78.5,-52.5
- parent: 2
- - uid: 13591
- components:
- - type: Transform
- pos: -91.5,-40.5
- parent: 2
- - uid: 13592
- components:
- - type: Transform
- pos: -86.5,-38.5
- parent: 2
- uid: 13593
components:
- type: Transform
@@ -44480,11 +44445,6 @@ entities:
- type: Transform
pos: -153.5,-29.5
parent: 2
- - uid: 13885
- components:
- - type: Transform
- pos: -91.5,-43.5
- parent: 2
- uid: 13901
components:
- type: Transform
@@ -44600,6 +44560,16 @@ entities:
- type: Transform
pos: -140.5,-14.5
parent: 2
+ - uid: 14179
+ components:
+ - type: Transform
+ pos: -103.5,9.5
+ parent: 2
+ - uid: 14203
+ components:
+ - type: Transform
+ pos: -103.5,10.5
+ parent: 2
- uid: 14265
components:
- type: Transform
@@ -44625,36 +44595,11 @@ entities:
- type: Transform
pos: -95.5,-16.5
parent: 2
- - uid: 14298
- components:
- - type: Transform
- pos: -91.5,-41.5
- parent: 2
- - uid: 14299
- components:
- - type: Transform
- pos: -91.5,-42.5
- parent: 2
- uid: 14363
components:
- type: Transform
pos: -91.5,-31.5
parent: 2
- - uid: 14364
- components:
- - type: Transform
- pos: -92.5,-36.5
- parent: 2
- - uid: 14540
- components:
- - type: Transform
- pos: -90.5,-36.5
- parent: 2
- - uid: 14543
- components:
- - type: Transform
- pos: -91.5,-39.5
- parent: 2
- uid: 14588
components:
- type: Transform
@@ -44680,31 +44625,6 @@ entities:
- type: Transform
pos: -72.5,-28.5
parent: 2
- - uid: 14813
- components:
- - type: Transform
- pos: -90.5,-38.5
- parent: 2
- - uid: 14832
- components:
- - type: Transform
- pos: -88.5,-38.5
- parent: 2
- - uid: 14835
- components:
- - type: Transform
- pos: -89.5,-38.5
- parent: 2
- - uid: 14837
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- - uid: 14839
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- uid: 14997
components:
- type: Transform
@@ -44715,15 +44635,15 @@ entities:
- type: Transform
pos: -73.5,-25.5
parent: 2
- - uid: 15056
+ - uid: 15052
components:
- type: Transform
- pos: -100.5,5.5
+ pos: -106.5,10.5
parent: 2
- - uid: 15061
+ - uid: 15056
components:
- type: Transform
- pos: -83.5,-38.5
+ pos: -100.5,5.5
parent: 2
- uid: 15069
components:
@@ -44745,15 +44665,15 @@ entities:
- type: Transform
pos: -119.5,-26.5
parent: 2
- - uid: 15311
+ - uid: 15244
components:
- type: Transform
- pos: -105.5,14.5
+ pos: -103.5,6.5
parent: 2
- - uid: 15313
+ - uid: 15311
components:
- type: Transform
- pos: -105.5,5.5
+ pos: -105.5,14.5
parent: 2
- uid: 15319
components:
@@ -44865,60 +44785,55 @@ entities:
- type: Transform
pos: -41.5,-41.5
parent: 2
- - uid: 16041
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - uid: 16043
+ - uid: 15914
components:
- type: Transform
- pos: -82.5,-43.5
+ pos: -79.5,-52.5
parent: 2
- - uid: 16046
+ - uid: 15990
components:
- type: Transform
- pos: -80.5,-43.5
+ pos: -76.5,-42.5
parent: 2
- - uid: 16053
+ - uid: 15991
components:
- type: Transform
- pos: -83.5,-43.5
+ pos: -76.5,-49.5
parent: 2
- uid: 16139
components:
- type: Transform
pos: -22.5,-59.5
parent: 2
- - uid: 16348
+ - uid: 16342
components:
- type: Transform
- pos: -80.5,-26.5
+ pos: -100.5,-28.5
parent: 2
- - uid: 16392
+ - uid: 16348
components:
- type: Transform
- pos: -76.5,-45.5
+ pos: -80.5,-26.5
parent: 2
- - uid: 16393
+ - uid: 16407
components:
- type: Transform
- pos: -76.5,-46.5
+ pos: -79.5,-26.5
parent: 2
- - uid: 16394
+ - uid: 16408
components:
- type: Transform
- pos: -76.5,-40.5
+ pos: -76.5,-47.5
parent: 2
- - uid: 16395
+ - uid: 16413
components:
- type: Transform
- pos: -76.5,-48.5
+ pos: -103.5,8.5
parent: 2
- - uid: 16407
+ - uid: 16419
components:
- type: Transform
- pos: -79.5,-26.5
+ pos: -97.5,-31.5
parent: 2
- uid: 16454
components:
@@ -44935,16 +44850,86 @@ entities:
- type: Transform
pos: -82.5,-26.5
parent: 2
+ - uid: 16693
+ components:
+ - type: Transform
+ pos: -77.5,-36.5
+ parent: 2
+ - uid: 16694
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
+ parent: 2
+ - uid: 16696
+ components:
+ - type: Transform
+ pos: -100.5,-27.5
+ parent: 2
+ - uid: 16697
+ components:
+ - type: Transform
+ pos: -100.5,-32.5
+ parent: 2
+ - uid: 16698
+ components:
+ - type: Transform
+ pos: -96.5,-23.5
+ parent: 2
+ - uid: 16700
+ components:
+ - type: Transform
+ pos: -95.5,-28.5
+ parent: 2
+ - uid: 16701
+ components:
+ - type: Transform
+ pos: -96.5,-31.5
+ parent: 2
+ - uid: 16813
+ components:
+ - type: Transform
+ pos: -103.5,11.5
+ parent: 2
+ - uid: 16835
+ components:
+ - type: Transform
+ pos: -98.5,-23.5
+ parent: 2
- uid: 16890
components:
- type: Transform
pos: -72.5,-32.5
parent: 2
+ - uid: 16902
+ components:
+ - type: Transform
+ pos: -95.5,-26.5
+ parent: 2
- uid: 16951
components:
- type: Transform
pos: -109.5,-49.5
parent: 2
+ - uid: 16968
+ components:
+ - type: Transform
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 16976
+ components:
+ - type: Transform
+ pos: -95.5,-30.5
+ parent: 2
+ - uid: 16983
+ components:
+ - type: Transform
+ pos: -97.5,-23.5
+ parent: 2
+ - uid: 16988
+ components:
+ - type: Transform
+ pos: -95.5,-31.5
+ parent: 2
- uid: 16996
components:
- type: Transform
@@ -44965,11 +44950,41 @@ entities:
- type: Transform
pos: -123.5,-2.5
parent: 2
+ - uid: 17081
+ components:
+ - type: Transform
+ pos: -76.5,-51.5
+ parent: 2
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: -77.5,-52.5
+ parent: 2
+ - uid: 17093
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 17098
+ components:
+ - type: Transform
+ pos: -76.5,-40.5
+ parent: 2
- uid: 17185
components:
- type: Transform
pos: -103.5,-26.5
parent: 2
+ - uid: 17201
+ components:
+ - type: Transform
+ pos: -76.5,-45.5
+ parent: 2
+ - uid: 17207
+ components:
+ - type: Transform
+ pos: -78.5,-52.5
+ parent: 2
- uid: 17341
components:
- type: Transform
@@ -45105,6 +45120,11 @@ entities:
- type: Transform
pos: -133.5,8.5
parent: 2
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: -95.5,-25.5
+ parent: 2
- uid: 17476
components:
- type: Transform
@@ -45175,6 +45195,11 @@ entities:
- type: Transform
pos: -145.5,-23.5
parent: 2
+ - uid: 17518
+ components:
+ - type: Transform
+ pos: -95.5,-23.5
+ parent: 2
- uid: 17522
components:
- type: Transform
@@ -45735,40 +45760,95 @@ entities:
- type: Transform
pos: -151.5,18.5
parent: 2
- - uid: 17837
+ - uid: 17877
components:
- type: Transform
- pos: -84.5,-43.5
+ pos: -100.5,-23.5
parent: 2
- - uid: 17838
+ - uid: 18042
components:
- type: Transform
- pos: -81.5,-43.5
+ pos: -143.5,13.5
parent: 2
- - uid: 17843
+ - uid: 18128
components:
- type: Transform
- pos: -85.5,-38.5
+ pos: -76.5,-46.5
parent: 2
- - uid: 17844
+ - uid: 18209
components:
- type: Transform
- pos: -85.5,-37.5
+ pos: -74.5,-41.5
parent: 2
- - uid: 17845
+ - uid: 18210
components:
- type: Transform
- pos: -85.5,-39.5
+ pos: -74.5,-35.5
parent: 2
- - uid: 18042
+ - uid: 18358
components:
- type: Transform
- pos: -143.5,13.5
+ pos: -74.5,-44.5
parent: 2
- - uid: 18103
+ - uid: 18429
components:
- type: Transform
- pos: -79.5,-38.5
+ pos: -70.5,-65.5
+ parent: 2
+ - uid: 18431
+ components:
+ - type: Transform
+ pos: -74.5,-57.5
+ parent: 2
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: -74.5,-36.5
+ parent: 2
+ - uid: 18603
+ components:
+ - type: Transform
+ pos: -74.5,-47.5
+ parent: 2
+ - uid: 18604
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
+ - uid: 18606
+ components:
+ - type: Transform
+ pos: -74.5,-61.5
+ parent: 2
+ - uid: 18608
+ components:
+ - type: Transform
+ pos: -74.5,-46.5
+ parent: 2
+ - uid: 18617
+ components:
+ - type: Transform
+ pos: -74.5,-55.5
+ parent: 2
+ - uid: 18634
+ components:
+ - type: Transform
+ pos: -74.5,-53.5
+ parent: 2
+ - uid: 18635
+ components:
+ - type: Transform
+ pos: -74.5,-64.5
+ parent: 2
+ - uid: 18636
+ components:
+ - type: Transform
+ pos: -74.5,-59.5
+ parent: 2
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: -76.5,-37.5
parent: 2
- uid: 18752
components:
@@ -46020,11 +46100,6 @@ entities:
- type: Transform
pos: -153.5,16.5
parent: 2
- - uid: 19885
- components:
- - type: Transform
- pos: -91.5,-44.5
- parent: 2
- uid: 20095
components:
- type: Transform
@@ -46035,11 +46110,6 @@ entities:
- type: Transform
pos: -147.5,-24.5
parent: 2
- - uid: 20330
- components:
- - type: Transform
- pos: -82.5,-38.5
- parent: 2
- uid: 20352
components:
- type: Transform
@@ -46050,6 +46120,21 @@ entities:
- type: Transform
pos: -125.5,-88.5
parent: 2
+ - uid: 20524
+ components:
+ - type: Transform
+ pos: -95.5,-29.5
+ parent: 2
+ - uid: 20527
+ components:
+ - type: Transform
+ pos: -100.5,-24.5
+ parent: 2
+ - uid: 20532
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
- uid: 20669
components:
- type: Transform
@@ -46270,6 +46355,11 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
+ - uid: 20734
+ components:
+ - type: Transform
+ pos: -100.5,-22.5
+ parent: 2
- uid: 20735
components:
- type: Transform
@@ -46405,11 +46495,6 @@ entities:
- type: Transform
pos: -59.5,-65.5
parent: 2
- - uid: 20763
- components:
- - type: Transform
- pos: -75.5,-65.5
- parent: 2
- uid: 20764
components:
- type: Transform
@@ -46435,86 +46520,6 @@ entities:
- type: Transform
pos: -69.5,-65.5
parent: 2
- - uid: 20769
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- - uid: 20770
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- - uid: 20771
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- - uid: 20772
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- - uid: 20773
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- - uid: 20774
- components:
- - type: Transform
- pos: -76.5,-65.5
- parent: 2
- - uid: 20775
- components:
- - type: Transform
- pos: -76.5,-60.5
- parent: 2
- - uid: 20776
- components:
- - type: Transform
- pos: -76.5,-64.5
- parent: 2
- - uid: 20777
- components:
- - type: Transform
- pos: -76.5,-63.5
- parent: 2
- - uid: 20778
- components:
- - type: Transform
- pos: -76.5,-62.5
- parent: 2
- - uid: 20779
- components:
- - type: Transform
- pos: -76.5,-61.5
- parent: 2
- - uid: 20780
- components:
- - type: Transform
- pos: -76.5,-59.5
- parent: 2
- - uid: 20781
- components:
- - type: Transform
- pos: -76.5,-58.5
- parent: 2
- - uid: 20782
- components:
- - type: Transform
- pos: -76.5,-57.5
- parent: 2
- - uid: 20783
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- - uid: 20784
- components:
- - type: Transform
- pos: -76.5,-55.5
- parent: 2
- uid: 20850
components:
- type: Transform
@@ -46550,11 +46555,6 @@ entities:
- type: Transform
pos: -10.5,-82.5
parent: 2
- - uid: 21087
- components:
- - type: Transform
- pos: -81.5,-38.5
- parent: 2
- uid: 21095
components:
- type: Transform
@@ -47025,6 +47025,11 @@ entities:
- type: Transform
pos: -27.5,-56.5
parent: 2
+ - uid: 21554
+ components:
+ - type: Transform
+ pos: -74.5,-43.5
+ parent: 2
- uid: 21596
components:
- type: Transform
@@ -47210,11 +47215,6 @@ entities:
- type: Transform
pos: -91.5,-56.5
parent: 2
- - uid: 21712
- components:
- - type: Transform
- pos: -77.5,-56.5
- parent: 2
- uid: 21713
components:
- type: Transform
@@ -47230,16 +47230,51 @@ entities:
- type: Transform
pos: -55.5,-80.5
parent: 2
+ - uid: 22286
+ components:
+ - type: Transform
+ pos: -74.5,-49.5
+ parent: 2
+ - uid: 22342
+ components:
+ - type: Transform
+ pos: -74.5,-51.5
+ parent: 2
+ - uid: 22344
+ components:
+ - type: Transform
+ pos: -74.5,-52.5
+ parent: 2
+ - uid: 22363
+ components:
+ - type: Transform
+ pos: -74.5,-60.5
+ parent: 2
- uid: 22405
components:
- type: Transform
pos: -120.5,-59.5
parent: 2
+ - uid: 22479
+ components:
+ - type: Transform
+ pos: -77.5,-35.5
+ parent: 2
- uid: 22481
components:
- type: Transform
pos: -143.5,8.5
parent: 2
+ - uid: 22493
+ components:
+ - type: Transform
+ pos: -78.5,-34.5
+ parent: 2
+ - uid: 22494
+ components:
+ - type: Transform
+ pos: -78.5,-35.5
+ parent: 2
- uid: 22632
components:
- type: Transform
@@ -47250,75 +47285,100 @@ entities:
- type: Transform
pos: -149.5,19.5
parent: 2
+ - uid: 22703
+ components:
+ - type: Transform
+ pos: -89.5,2.5
+ parent: 2
+ - uid: 22704
+ components:
+ - type: Transform
+ pos: -89.5,4.5
+ parent: 2
- uid: 22813
components:
- type: Transform
pos: -29.5,-57.5
parent: 2
+ - uid: 22896
+ components:
+ - type: Transform
+ pos: -74.5,-48.5
+ parent: 2
+ - uid: 22898
+ components:
+ - type: Transform
+ pos: -74.5,-42.5
+ parent: 2
+ - uid: 22899
+ components:
+ - type: Transform
+ pos: -73.5,-65.5
+ parent: 2
- uid: 22901
components:
- type: Transform
pos: -149.5,17.5
parent: 2
- - uid: 23129
+ - uid: 22909
components:
- type: Transform
- pos: -48.5,-66.5
+ pos: -57.5,-69.5
parent: 2
- - uid: 23131
+ - uid: 22968
components:
- type: Transform
- pos: -48.5,-67.5
+ pos: -74.5,-39.5
parent: 2
- - uid: 23132
+ - uid: 22993
components:
- type: Transform
- pos: -48.5,-68.5
+ pos: -74.5,-62.5
parent: 2
- - uid: 23133
+ - uid: 23050
components:
- type: Transform
- pos: -48.5,-70.5
+ pos: -74.5,-45.5
parent: 2
- - uid: 23134
+ - uid: 23064
components:
- type: Transform
- pos: -48.5,-71.5
+ pos: -74.5,-63.5
parent: 2
- - uid: 23135
+ - uid: 23077
components:
- type: Transform
- pos: -48.5,-69.5
+ pos: -74.5,-56.5
parent: 2
- - uid: 23136
+ - uid: 23078
components:
- type: Transform
- pos: -49.5,-71.5
+ pos: -74.5,-50.5
parent: 2
- - uid: 23137
+ - uid: 23083
components:
- type: Transform
- pos: -50.5,-71.5
+ pos: -74.5,-40.5
parent: 2
- - uid: 23138
+ - uid: 23087
components:
- type: Transform
- pos: -51.5,-71.5
+ pos: -74.5,-37.5
parent: 2
- - uid: 23139
+ - uid: 23089
components:
- type: Transform
- pos: -52.5,-71.5
+ pos: -74.5,-38.5
parent: 2
- - uid: 23140
+ - uid: 23090
components:
- type: Transform
- pos: -52.5,-70.5
+ pos: -74.5,-58.5
parent: 2
- - uid: 23141
+ - uid: 23110
components:
- type: Transform
- pos: -52.5,-69.5
+ pos: -71.5,-65.5
parent: 2
- uid: 23147
components:
@@ -47355,21 +47415,46 @@ entities:
- type: Transform
pos: -137.5,-14.5
parent: 2
+ - uid: 23165
+ components:
+ - type: Transform
+ pos: -89.5,1.5
+ parent: 2
- uid: 23186
components:
- type: Transform
pos: -151.5,19.5
parent: 2
- - uid: 23363
+ - uid: 23227
components:
- type: Transform
- pos: -76.5,-37.5
+ pos: -72.5,-65.5
+ parent: 2
+ - uid: 23230
+ components:
+ - type: Transform
+ pos: -75.5,-56.5
+ parent: 2
+ - uid: 23268
+ components:
+ - type: Transform
+ pos: -77.5,-56.5
+ parent: 2
+ - uid: 23272
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
parent: 2
- uid: 23412
components:
- type: Transform
pos: -108.5,-45.5
parent: 2
+ - uid: 23737
+ components:
+ - type: Transform
+ pos: -89.5,0.5
+ parent: 2
- uid: 23842
components:
- type: Transform
@@ -47390,11 +47475,6 @@ entities:
- type: Transform
pos: -78.5,-24.5
parent: 2
- - uid: 24019
- components:
- - type: Transform
- pos: -76.5,-35.5
- parent: 2
- uid: 24194
components:
- type: Transform
@@ -47425,10 +47505,10 @@ entities:
- type: Transform
pos: -147.5,18.5
parent: 2
- - uid: 24457
+ - uid: 24454
components:
- type: Transform
- pos: -75.5,-35.5
+ pos: -89.5,3.5
parent: 2
- uid: 24531
components:
@@ -47450,6 +47530,21 @@ entities:
- type: Transform
pos: -19.5,-8.5
parent: 2
+ - uid: 24833
+ components:
+ - type: Transform
+ pos: -15.5,-58.5
+ parent: 2
+ - uid: 24834
+ components:
+ - type: Transform
+ pos: -15.5,-57.5
+ parent: 2
+ - uid: 24835
+ components:
+ - type: Transform
+ pos: -15.5,-56.5
+ parent: 2
- uid: 24844
components:
- type: Transform
@@ -48149,6 +48244,16 @@ entities:
- type: Transform
pos: -120.5,-40.5
parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -74.5,-45.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
- uid: 755
components:
- type: Transform
@@ -48234,20 +48339,15 @@ entities:
- type: Transform
pos: -68.5,-25.5
parent: 2
- - uid: 1840
- components:
- - type: Transform
- pos: -28.5,2.5
- parent: 2
- - uid: 1867
+ - uid: 1707
components:
- type: Transform
- pos: -100.5,-2.5
+ pos: -97.5,5.5
parent: 2
- - uid: 1877
+ - uid: 1840
components:
- type: Transform
- pos: -99.5,-2.5
+ pos: -28.5,2.5
parent: 2
- uid: 2071
components:
@@ -48264,11 +48364,6 @@ entities:
- type: Transform
pos: -87.5,5.5
parent: 2
- - uid: 2379
- components:
- - type: Transform
- pos: -88.5,3.5
- parent: 2
- uid: 2408
components:
- type: Transform
@@ -48344,11 +48439,6 @@ entities:
- type: Transform
pos: -60.5,-56.5
parent: 2
- - uid: 2645
- components:
- - type: Transform
- pos: -76.5,-58.5
- parent: 2
- uid: 2661
components:
- type: Transform
@@ -48374,6 +48464,11 @@ entities:
- type: Transform
pos: -28.5,12.5
parent: 2
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: -57.5,-68.5
+ parent: 2
- uid: 3033
components:
- type: Transform
@@ -48764,11 +48859,6 @@ entities:
- type: Transform
pos: -65.5,-32.5
parent: 2
- - uid: 3741
- components:
- - type: Transform
- pos: -76.5,-45.5
- parent: 2
- uid: 3799
components:
- type: Transform
@@ -48779,16 +48869,41 @@ entities:
- type: Transform
pos: -23.5,-30.5
parent: 2
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: -62.5,-57.5
+ parent: 2
+ - uid: 3835
+ components:
+ - type: Transform
+ pos: -62.5,-58.5
+ parent: 2
- uid: 3883
components:
- type: Transform
pos: -22.5,-30.5
parent: 2
+ - uid: 4038
+ components:
+ - type: Transform
+ pos: -76.5,-56.5
+ parent: 2
+ - uid: 4041
+ components:
+ - type: Transform
+ pos: -74.5,-56.5
+ parent: 2
- uid: 4088
components:
- type: Transform
pos: -133.5,-0.5
parent: 2
+ - uid: 4092
+ components:
+ - type: Transform
+ pos: -77.5,-56.5
+ parent: 2
- uid: 4093
components:
- type: Transform
@@ -48884,11 +48999,6 @@ entities:
- type: Transform
pos: -84.5,-10.5
parent: 2
- - uid: 4581
- components:
- - type: Transform
- pos: -74.5,-35.5
- parent: 2
- uid: 4589
components:
- type: Transform
@@ -49004,36 +49114,16 @@ entities:
- type: Transform
pos: -44.5,1.5
parent: 2
- - uid: 5391
- components:
- - type: Transform
- pos: -99.5,-1.5
- parent: 2
- - uid: 5396
- components:
- - type: Transform
- pos: -114.5,-10.5
- parent: 2
- uid: 5421
components:
- type: Transform
pos: -110.5,-47.5
parent: 2
- - uid: 5558
- components:
- - type: Transform
- pos: -112.5,-10.5
- parent: 2
- uid: 5600
components:
- type: Transform
pos: -119.5,6.5
parent: 2
- - uid: 5609
- components:
- - type: Transform
- pos: -113.5,-10.5
- parent: 2
- uid: 5615
components:
- type: Transform
@@ -49059,90 +49149,100 @@ entities:
- type: Transform
pos: -125.5,-19.5
parent: 2
- - uid: 6958
+ - uid: 6654
components:
- type: Transform
- pos: -17.5,2.5
+ pos: -72.5,-65.5
parent: 2
- - uid: 6979
+ - uid: 6655
components:
- type: Transform
- pos: -119.5,14.5
+ pos: -70.5,-65.5
parent: 2
- - uid: 7082
+ - uid: 6656
components:
- type: Transform
- pos: -119.5,16.5
+ pos: -71.5,-65.5
parent: 2
- - uid: 7311
+ - uid: 6657
components:
- type: Transform
- pos: -134.5,-36.5
+ pos: -74.5,-59.5
parent: 2
- - uid: 7312
+ - uid: 6659
components:
- type: Transform
- pos: -134.5,-37.5
+ pos: -74.5,-65.5
parent: 2
- - uid: 7452
+ - uid: 6660
components:
- type: Transform
- pos: -72.5,-26.5
+ pos: -74.5,-64.5
parent: 2
- - uid: 7464
+ - uid: 6661
components:
- type: Transform
- pos: -88.5,0.5
+ pos: -73.5,-65.5
parent: 2
- - uid: 7467
+ - uid: 6712
components:
- type: Transform
- pos: -88.5,1.5
+ pos: -74.5,-55.5
parent: 2
- - uid: 7481
+ - uid: 6716
components:
- type: Transform
- pos: -61.5,-73.5
+ pos: -73.5,-54.5
parent: 2
- - uid: 7483
+ - uid: 6726
components:
- type: Transform
- pos: -61.5,-71.5
+ pos: -72.5,-54.5
parent: 2
- - uid: 7487
+ - uid: 6843
components:
- type: Transform
- pos: -61.5,-70.5
+ pos: -74.5,-52.5
parent: 2
- - uid: 7488
+ - uid: 6852
components:
- type: Transform
- pos: -61.5,-69.5
+ pos: -74.5,-47.5
parent: 2
- - uid: 7489
+ - uid: 6958
components:
- type: Transform
- pos: -61.5,-68.5
+ pos: -17.5,2.5
parent: 2
- - uid: 7490
+ - uid: 6979
components:
- type: Transform
- pos: -60.5,-68.5
+ pos: -119.5,14.5
parent: 2
- - uid: 7491
+ - uid: 7082
components:
- type: Transform
- pos: -59.5,-68.5
+ pos: -119.5,16.5
parent: 2
- - uid: 7505
+ - uid: 7311
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: -134.5,-36.5
parent: 2
- - uid: 7507
+ - uid: 7312
components:
- type: Transform
- pos: -61.5,-72.5
+ pos: -134.5,-37.5
+ parent: 2
+ - uid: 7452
+ components:
+ - type: Transform
+ pos: -72.5,-26.5
+ parent: 2
+ - uid: 7505
+ components:
+ - type: Transform
+ pos: -45.5,-45.5
parent: 2
- uid: 7513
components:
@@ -49174,16 +49274,6 @@ entities:
- type: Transform
pos: -17.5,-28.5
parent: 2
- - uid: 7750
- components:
- - type: Transform
- pos: -57.5,-68.5
- parent: 2
- - uid: 7753
- components:
- - type: Transform
- pos: -56.5,-68.5
- parent: 2
- uid: 7817
components:
- type: Transform
@@ -49209,11 +49299,6 @@ entities:
- type: Transform
pos: -127.5,-41.5
parent: 2
- - uid: 7830
- components:
- - type: Transform
- pos: -56.5,-69.5
- parent: 2
- uid: 7831
components:
- type: Transform
@@ -49234,11 +49319,6 @@ entities:
- type: Transform
pos: -123.5,-38.5
parent: 2
- - uid: 7845
- components:
- - type: Transform
- pos: -58.5,-68.5
- parent: 2
- uid: 7849
components:
- type: Transform
@@ -49289,56 +49369,11 @@ entities:
- type: Transform
pos: -120.5,-44.5
parent: 2
- - uid: 7889
- components:
- - type: Transform
- pos: -56.5,-70.5
- parent: 2
- - uid: 7890
- components:
- - type: Transform
- pos: -55.5,-71.5
- parent: 2
- uid: 7891
components:
- type: Transform
pos: -69.5,-9.5
parent: 2
- - uid: 7893
- components:
- - type: Transform
- pos: -54.5,-71.5
- parent: 2
- - uid: 7899
- components:
- - type: Transform
- pos: -53.5,-71.5
- parent: 2
- - uid: 7900
- components:
- - type: Transform
- pos: -56.5,-71.5
- parent: 2
- - uid: 7909
- components:
- - type: Transform
- pos: -52.5,-70.5
- parent: 2
- - uid: 7912
- components:
- - type: Transform
- pos: -52.5,-69.5
- parent: 2
- - uid: 7920
- components:
- - type: Transform
- pos: -52.5,-68.5
- parent: 2
- - uid: 7922
- components:
- - type: Transform
- pos: -52.5,-71.5
- parent: 2
- uid: 7935
components:
- type: Transform
@@ -49639,6 +49674,11 @@ entities:
- type: Transform
pos: -29.5,-44.5
parent: 2
+ - uid: 8983
+ components:
+ - type: Transform
+ pos: -57.5,-69.5
+ parent: 2
- uid: 8998
components:
- type: Transform
@@ -49764,35 +49804,40 @@ entities:
- type: Transform
pos: -28.5,-30.5
parent: 2
- - uid: 9256
+ - uid: 9308
components:
- type: Transform
- pos: -76.5,-57.5
+ pos: -74.5,-40.5
parent: 2
- - uid: 9259
+ - uid: 9435
components:
- type: Transform
- pos: -74.5,-56.5
+ pos: -57.5,-71.5
parent: 2
- uid: 9499
components:
- type: Transform
pos: -26.5,-30.5
parent: 2
+ - uid: 9516
+ components:
+ - type: Transform
+ pos: -110.5,-29.5
+ parent: 2
- uid: 9547
components:
- type: Transform
pos: -25.5,-30.5
parent: 2
- - uid: 9593
+ - uid: 9569
components:
- type: Transform
- pos: -133.5,-8.5
+ pos: -110.5,-30.5
parent: 2
- - uid: 9597
+ - uid: 9593
components:
- type: Transform
- pos: -60.5,-73.5
+ pos: -133.5,-8.5
parent: 2
- uid: 9598
components:
@@ -49879,6 +49924,11 @@ entities:
- type: Transform
pos: -23.5,0.5
parent: 2
+ - uid: 10120
+ components:
+ - type: Transform
+ pos: -57.5,-70.5
+ parent: 2
- uid: 10274
components:
- type: Transform
@@ -49889,6 +49939,26 @@ entities:
- type: Transform
pos: -70.5,-9.5
parent: 2
+ - uid: 10499
+ components:
+ - type: Transform
+ pos: -89.5,1.5
+ parent: 2
+ - uid: 10630
+ components:
+ - type: Transform
+ pos: -89.5,2.5
+ parent: 2
+ - uid: 10640
+ components:
+ - type: Transform
+ pos: -98.5,5.5
+ parent: 2
+ - uid: 10848
+ components:
+ - type: Transform
+ pos: -109.5,-30.5
+ parent: 2
- uid: 11022
components:
- type: Transform
@@ -49904,15 +49974,20 @@ entities:
- type: Transform
pos: -48.5,-48.5
parent: 2
+ - uid: 11050
+ components:
+ - type: Transform
+ pos: -108.5,-30.5
+ parent: 2
- uid: 11125
components:
- type: Transform
pos: -123.5,-52.5
parent: 2
- - uid: 11228
+ - uid: 11171
components:
- type: Transform
- pos: -39.5,-4.5
+ pos: -74.5,-39.5
parent: 2
- uid: 11284
components:
@@ -50254,6 +50329,11 @@ entities:
- type: Transform
pos: -7.5,-6.5
parent: 2
+ - uid: 11791
+ components:
+ - type: Transform
+ pos: -110.5,-28.5
+ parent: 2
- uid: 11796
components:
- type: Transform
@@ -50939,6 +51019,21 @@ entities:
- type: Transform
pos: -45.5,-43.5
parent: 2
+ - uid: 13592
+ components:
+ - type: Transform
+ pos: -89.5,-57.5
+ parent: 2
+ - uid: 13595
+ components:
+ - type: Transform
+ pos: -89.5,-58.5
+ parent: 2
+ - uid: 13605
+ components:
+ - type: Transform
+ pos: -89.5,-59.5
+ parent: 2
- uid: 13622
components:
- type: Transform
@@ -50954,11 +51049,6 @@ entities:
- type: Transform
pos: -136.5,-36.5
parent: 2
- - uid: 13692
- components:
- - type: Transform
- pos: -56.5,-72.5
- parent: 2
- uid: 13697
components:
- type: Transform
@@ -50969,11 +51059,6 @@ entities:
- type: Transform
pos: -135.5,-36.5
parent: 2
- - uid: 13707
- components:
- - type: Transform
- pos: -58.5,-73.5
- parent: 2
- uid: 13727
components:
- type: Transform
@@ -51009,15 +51094,25 @@ entities:
- type: Transform
pos: -55.5,-28.5
parent: 2
- - uid: 14111
+ - uid: 14172
components:
- type: Transform
- pos: -59.5,-73.5
+ pos: -40.5,-41.5
parent: 2
- - uid: 14172
+ - uid: 14182
components:
- type: Transform
- pos: -40.5,-41.5
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 14183
+ components:
+ - type: Transform
+ pos: -74.5,-48.5
+ parent: 2
+ - uid: 14186
+ components:
+ - type: Transform
+ pos: -74.5,-46.5
parent: 2
- uid: 14216
components:
@@ -51044,20 +51139,20 @@ entities:
- type: Transform
pos: -10.5,-14.5
parent: 2
- - uid: 14653
+ - uid: 14667
components:
- type: Transform
- pos: -57.5,-73.5
+ pos: -65.5,-28.5
parent: 2
- - uid: 14667
+ - uid: 14765
components:
- type: Transform
- pos: -65.5,-28.5
+ pos: -74.5,-62.5
parent: 2
- - uid: 15008
+ - uid: 14982
components:
- type: Transform
- pos: -76.5,-35.5
+ pos: -53.5,-73.5
parent: 2
- uid: 15009
components:
@@ -51074,50 +51169,40 @@ entities:
- type: Transform
pos: -133.5,-6.5
parent: 2
- - uid: 15052
- components:
- - type: Transform
- pos: -76.5,-37.5
- parent: 2
- - uid: 15054
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- - uid: 15055
+ - uid: 15194
components:
- type: Transform
- pos: -76.5,-38.5
+ pos: -119.5,-21.5
parent: 2
- - uid: 15058
+ - uid: 15246
components:
- type: Transform
- pos: -76.5,-42.5
+ pos: -56.5,-71.5
parent: 2
- - uid: 15059
+ - uid: 15247
components:
- type: Transform
- pos: -76.5,-39.5
+ pos: -53.5,-70.5
parent: 2
- - uid: 15063
+ - uid: 15248
components:
- type: Transform
- pos: -76.5,-40.5
+ pos: -52.5,-74.5
parent: 2
- - uid: 15064
+ - uid: 15313
components:
- type: Transform
- pos: -76.5,-55.5
+ pos: -34.5,-5.5
parent: 2
- - uid: 15065
+ - uid: 15344
components:
- type: Transform
- pos: -76.5,-43.5
+ pos: -38.5,-5.5
parent: 2
- - uid: 15194
+ - uid: 15363
components:
- type: Transform
- pos: -119.5,-21.5
+ pos: -50.5,-74.5
parent: 2
- uid: 15426
components:
@@ -51437,7 +51522,7 @@ entities:
- uid: 15624
components:
- type: Transform
- pos: -76.5,-54.5
+ pos: -49.5,-73.5
parent: 2
- uid: 15700
components:
@@ -51454,11 +51539,31 @@ entities:
- type: Transform
pos: -45.5,-46.5
parent: 2
+ - uid: 15859
+ components:
+ - type: Transform
+ pos: -74.5,-60.5
+ parent: 2
- uid: 15923
components:
- type: Transform
pos: -68.5,-21.5
parent: 2
+ - uid: 15929
+ components:
+ - type: Transform
+ pos: -39.5,-5.5
+ parent: 2
+ - uid: 15937
+ components:
+ - type: Transform
+ pos: -51.5,-69.5
+ parent: 2
+ - uid: 15960
+ components:
+ - type: Transform
+ pos: -48.5,-71.5
+ parent: 2
- uid: 15978
components:
- type: Transform
@@ -51474,6 +51579,26 @@ entities:
- type: Transform
pos: -95.5,22.5
parent: 2
+ - uid: 15987
+ components:
+ - type: Transform
+ pos: -53.5,-69.5
+ parent: 2
+ - uid: 16000
+ components:
+ - type: Transform
+ pos: -36.5,-5.5
+ parent: 2
+ - uid: 16028
+ components:
+ - type: Transform
+ pos: -94.5,5.5
+ parent: 2
+ - uid: 16041
+ components:
+ - type: Transform
+ pos: -92.5,5.5
+ parent: 2
- uid: 16088
components:
- type: Transform
@@ -51504,6 +51629,31 @@ entities:
- type: Transform
pos: -50.5,-63.5
parent: 2
+ - uid: 16145
+ components:
+ - type: Transform
+ pos: -40.5,-5.5
+ parent: 2
+ - uid: 16147
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 2
+ - uid: 16151
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 2
+ - uid: 16158
+ components:
+ - type: Transform
+ pos: -32.5,-5.5
+ parent: 2
+ - uid: 16170
+ components:
+ - type: Transform
+ pos: -37.5,-5.5
+ parent: 2
- uid: 16205
components:
- type: Transform
@@ -51519,40 +51669,70 @@ entities:
- type: Transform
pos: -72.5,-35.5
parent: 2
+ - uid: 16382
+ components:
+ - type: Transform
+ pos: -48.5,-70.5
+ parent: 2
+ - uid: 16410
+ components:
+ - type: Transform
+ pos: -52.5,-69.5
+ parent: 2
+ - uid: 16411
+ components:
+ - type: Transform
+ pos: -49.5,-70.5
+ parent: 2
+ - uid: 16438
+ components:
+ - type: Transform
+ pos: -50.5,-69.5
+ parent: 2
- uid: 16490
components:
- type: Transform
pos: -73.5,-35.5
parent: 2
- - uid: 16778
+ - uid: 16699
components:
- type: Transform
- pos: -72.5,-34.5
+ pos: -48.5,-73.5
parent: 2
- - uid: 16820
+ - uid: 16750
components:
- type: Transform
- pos: -72.5,-32.5
+ pos: -53.5,-74.5
parent: 2
- - uid: 16841
+ - uid: 16765
components:
- type: Transform
- pos: -45.5,-44.5
+ pos: -49.5,-74.5
parent: 2
- - uid: 16860
+ - uid: 16768
components:
- type: Transform
- pos: -76.5,-56.5
+ pos: -51.5,-74.5
parent: 2
- - uid: 16914
+ - uid: 16778
components:
- type: Transform
- pos: -75.5,-35.5
+ pos: -72.5,-34.5
parent: 2
- - uid: 16915
+ - uid: 16817
components:
- type: Transform
- pos: -76.5,-36.5
+ pos: -48.5,-72.5
+ parent: 2
+ - uid: 16820
+ components:
+ - type: Transform
+ pos: -72.5,-32.5
+ parent: 2
+ - uid: 16841
+ components:
+ - type: Transform
+ pos: -45.5,-44.5
parent: 2
- uid: 16960
components:
@@ -51574,11 +51754,6 @@ entities:
- type: Transform
pos: -123.5,-2.5
parent: 2
- - uid: 17137
- components:
- - type: Transform
- pos: -73.5,-58.5
- parent: 2
- uid: 17159
components:
- type: Transform
@@ -51604,6 +51779,11 @@ entities:
- type: Transform
pos: -72.5,-28.5
parent: 2
+ - uid: 17400
+ components:
+ - type: Transform
+ pos: -74.5,-51.5
+ parent: 2
- uid: 17404
components:
- type: Transform
@@ -51614,15 +51794,10 @@ entities:
- type: Transform
pos: -29.5,-51.5
parent: 2
- - uid: 17488
- components:
- - type: Transform
- pos: -88.5,4.5
- parent: 2
- - uid: 17492
+ - uid: 17416
components:
- type: Transform
- pos: -88.5,2.5
+ pos: -49.5,-69.5
parent: 2
- uid: 17493
components:
@@ -51674,15 +51849,35 @@ entities:
- type: Transform
pos: -15.5,-63.5
parent: 2
+ - uid: 17835
+ components:
+ - type: Transform
+ pos: -74.5,-50.5
+ parent: 2
+ - uid: 17844
+ components:
+ - type: Transform
+ pos: -74.5,-41.5
+ parent: 2
+ - uid: 17845
+ components:
+ - type: Transform
+ pos: -74.5,-38.5
+ parent: 2
+ - uid: 17853
+ components:
+ - type: Transform
+ pos: -74.5,-44.5
+ parent: 2
- uid: 18106
components:
- type: Transform
pos: -27.5,-56.5
parent: 2
- - uid: 18359
+ - uid: 18213
components:
- type: Transform
- pos: -111.5,-10.5
+ pos: -53.5,-72.5
parent: 2
- uid: 18409
components:
@@ -51784,26 +51979,6 @@ entities:
- type: Transform
pos: -91.5,-36.5
parent: 2
- - uid: 18429
- components:
- - type: Transform
- pos: -91.5,-37.5
- parent: 2
- - uid: 18430
- components:
- - type: Transform
- pos: -90.5,-37.5
- parent: 2
- - uid: 18431
- components:
- - type: Transform
- pos: -89.5,-37.5
- parent: 2
- - uid: 18432
- components:
- - type: Transform
- pos: -88.5,-37.5
- parent: 2
- uid: 18433
components:
- type: Transform
@@ -52004,11 +52179,46 @@ entities:
- type: Transform
pos: -86.5,-18.5
parent: 2
+ - uid: 18610
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
+ parent: 2
+ - uid: 18630
+ components:
+ - type: Transform
+ pos: -74.5,-49.5
+ parent: 2
- uid: 18693
components:
- type: Transform
pos: -45.5,-41.5
parent: 2
+ - uid: 18701
+ components:
+ - type: Transform
+ pos: -74.5,-42.5
+ parent: 2
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: -74.5,-43.5
+ parent: 2
+ - uid: 18714
+ components:
+ - type: Transform
+ pos: -74.5,-61.5
+ parent: 2
+ - uid: 18744
+ components:
+ - type: Transform
+ pos: -74.5,-53.5
+ parent: 2
+ - uid: 18953
+ components:
+ - type: Transform
+ pos: -74.5,-36.5
+ parent: 2
- uid: 18991
components:
- type: Transform
@@ -52359,21 +52569,6 @@ entities:
- type: Transform
pos: -119.5,-3.5
parent: 2
- - uid: 19097
- components:
- - type: Transform
- pos: -109.5,-10.5
- parent: 2
- - uid: 19098
- components:
- - type: Transform
- pos: -107.5,-10.5
- parent: 2
- - uid: 19099
- components:
- - type: Transform
- pos: -110.5,-10.5
- parent: 2
- uid: 19100
components:
- type: Transform
@@ -52499,6 +52694,11 @@ entities:
- type: Transform
pos: -19.5,-9.5
parent: 2
+ - uid: 19719
+ components:
+ - type: Transform
+ pos: -90.5,5.5
+ parent: 2
- uid: 19821
components:
- type: Transform
@@ -52774,6 +52974,11 @@ entities:
- type: Transform
pos: -92.5,14.5
parent: 2
+ - uid: 20034
+ components:
+ - type: Transform
+ pos: -91.5,5.5
+ parent: 2
- uid: 20351
components:
- type: Transform
@@ -52784,6 +52989,21 @@ entities:
- type: Transform
pos: -133.5,22.5
parent: 2
+ - uid: 20496
+ components:
+ - type: Transform
+ pos: -86.5,-37.5
+ parent: 2
+ - uid: 20506
+ components:
+ - type: Transform
+ pos: -86.5,-38.5
+ parent: 2
+ - uid: 20511
+ components:
+ - type: Transform
+ pos: -74.5,-63.5
+ parent: 2
- uid: 20712
components:
- type: Transform
@@ -52879,11 +53099,6 @@ entities:
- type: Transform
pos: -72.5,-56.5
parent: 2
- - uid: 20791
- components:
- - type: Transform
- pos: -73.5,-56.5
- parent: 2
- uid: 20792
components:
- type: Transform
@@ -52934,50 +53149,15 @@ entities:
- type: Transform
pos: -65.5,-56.5
parent: 2
- - uid: 20802
- components:
- - type: Transform
- pos: -73.5,-57.5
- parent: 2
- uid: 20805
components:
- type: Transform
pos: -29.5,-52.5
parent: 2
- - uid: 20807
- components:
- - type: Transform
- pos: -76.5,-59.5
- parent: 2
- - uid: 20808
- components:
- - type: Transform
- pos: -76.5,-60.5
- parent: 2
- - uid: 20809
- components:
- - type: Transform
- pos: -76.5,-61.5
- parent: 2
- - uid: 20810
- components:
- - type: Transform
- pos: -76.5,-62.5
- parent: 2
- - uid: 20811
- components:
- - type: Transform
- pos: -76.5,-64.5
- parent: 2
- - uid: 20812
- components:
- - type: Transform
- pos: -76.5,-65.5
- parent: 2
- uid: 20813
components:
- type: Transform
- pos: -76.5,-63.5
+ pos: -87.5,-38.5
parent: 2
- uid: 20814
components:
@@ -53039,36 +53219,6 @@ entities:
- type: Transform
pos: -57.5,-65.5
parent: 2
- - uid: 20826
- components:
- - type: Transform
- pos: -75.5,-65.5
- parent: 2
- - uid: 20827
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- - uid: 20828
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- - uid: 20829
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- - uid: 20830
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- - uid: 20831
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- uid: 20832
components:
- type: Transform
@@ -53184,11 +53334,21 @@ entities:
- type: Transform
pos: -133.5,19.5
parent: 2
+ - uid: 21003
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
- uid: 21010
components:
- type: Transform
pos: -133.5,21.5
parent: 2
+ - uid: 21043
+ components:
+ - type: Transform
+ pos: -89.5,-38.5
+ parent: 2
- uid: 21091
components:
- type: Transform
@@ -53204,6 +53364,11 @@ entities:
- type: Transform
pos: -21.5,-1.5
parent: 2
+ - uid: 21510
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
- uid: 21551
components:
- type: Transform
@@ -53239,15 +53404,30 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
+ - uid: 22010
+ components:
+ - type: Transform
+ pos: -89.5,0.5
+ parent: 2
- uid: 22141
components:
- type: Transform
pos: -72.5,-21.5
parent: 2
- - uid: 22163
+ - uid: 22283
components:
- type: Transform
- pos: -76.5,-53.5
+ pos: -32.5,-3.5
+ parent: 2
+ - uid: 22291
+ components:
+ - type: Transform
+ pos: -31.5,-3.5
+ parent: 2
+ - uid: 22299
+ components:
+ - type: Transform
+ pos: -53.5,-71.5
parent: 2
- uid: 22349
components:
@@ -53259,10 +53439,15 @@ entities:
- type: Transform
pos: -18.5,-9.5
parent: 2
- - uid: 22476
+ - uid: 22388
components:
- type: Transform
- pos: -56.5,-73.5
+ pos: -93.5,5.5
+ parent: 2
+ - uid: 22497
+ components:
+ - type: Transform
+ pos: -86.5,-36.5
parent: 2
- uid: 22524
components:
@@ -53469,31 +53654,11 @@ entities:
- type: Transform
pos: -110.5,-27.5
parent: 2
- - uid: 22568
- components:
- - type: Transform
- pos: -109.5,-27.5
- parent: 2
- uid: 22569
components:
- type: Transform
pos: -114.5,-27.5
parent: 2
- - uid: 22570
- components:
- - type: Transform
- pos: -109.5,-28.5
- parent: 2
- - uid: 22629
- components:
- - type: Transform
- pos: -76.5,-46.5
- parent: 2
- - uid: 22630
- components:
- - type: Transform
- pos: -76.5,-44.5
- parent: 2
- uid: 22661
components:
- type: Transform
@@ -53524,26 +53689,11 @@ entities:
- type: Transform
pos: -119.5,5.5
parent: 2
- - uid: 22667
- components:
- - type: Transform
- pos: -102.5,-2.5
- parent: 2
- - uid: 22671
- components:
- - type: Transform
- pos: -103.5,-8.5
- parent: 2
- uid: 22674
components:
- type: Transform
pos: -119.5,2.5
parent: 2
- - uid: 22677
- components:
- - type: Transform
- pos: -103.5,-6.5
- parent: 2
- uid: 22678
components:
- type: Transform
@@ -53584,25 +53734,10 @@ entities:
- type: Transform
pos: -119.5,23.5
parent: 2
- - uid: 22688
- components:
- - type: Transform
- pos: -116.5,25.5
- parent: 2
- - uid: 22689
- components:
- - type: Transform
- pos: -107.5,25.5
- parent: 2
- - uid: 22690
- components:
- - type: Transform
- pos: -106.5,25.5
- parent: 2
- uid: 22693
components:
- type: Transform
- pos: -108.5,25.5
+ pos: -32.5,-4.5
parent: 2
- uid: 22694
components:
@@ -53614,90 +53749,30 @@ entities:
- type: Transform
pos: -117.5,25.5
parent: 2
- - uid: 22696
- components:
- - type: Transform
- pos: -115.5,25.5
- parent: 2
- - uid: 22697
- components:
- - type: Transform
- pos: -114.5,25.5
- parent: 2
- uid: 22698
components:
- type: Transform
- pos: -113.5,25.5
- parent: 2
- - uid: 22699
- components:
- - type: Transform
- pos: -112.5,25.5
+ pos: -101.5,5.5
parent: 2
- uid: 22700
components:
- type: Transform
- pos: -111.5,25.5
- parent: 2
- - uid: 22701
- components:
- - type: Transform
- pos: -110.5,25.5
- parent: 2
- - uid: 22702
- components:
- - type: Transform
- pos: -109.5,25.5
- parent: 2
- - uid: 22704
- components:
- - type: Transform
- pos: -106.5,26.5
+ pos: -99.5,5.5
parent: 2
- uid: 22808
components:
- type: Transform
pos: -133.5,20.5
parent: 2
- - uid: 22878
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- - uid: 22892
- components:
- - type: Transform
- pos: -103.5,-10.5
- parent: 2
- - uid: 22894
- components:
- - type: Transform
- pos: -101.5,-2.5
- parent: 2
- - uid: 22895
- components:
- - type: Transform
- pos: -106.5,-10.5
- parent: 2
- - uid: 22898
- components:
- - type: Transform
- pos: -103.5,-2.5
- parent: 2
- - uid: 22899
- components:
- - type: Transform
- pos: -104.5,-10.5
- parent: 2
- - uid: 22903
+ - uid: 22902
components:
- type: Transform
- pos: -103.5,-9.5
+ pos: -55.5,-71.5
parent: 2
- uid: 22905
components:
- type: Transform
- pos: -103.5,-4.5
+ pos: -54.5,-71.5
parent: 2
- uid: 22910
components:
@@ -53759,10 +53834,40 @@ entities:
- type: Transform
pos: -26.5,-60.5
parent: 2
- - uid: 23168
+ - uid: 23177
components:
- type: Transform
- pos: -108.5,-10.5
+ pos: -95.5,5.5
+ parent: 2
+ - uid: 23180
+ components:
+ - type: Transform
+ pos: -96.5,5.5
+ parent: 2
+ - uid: 23181
+ components:
+ - type: Transform
+ pos: -98.5,3.5
+ parent: 2
+ - uid: 23182
+ components:
+ - type: Transform
+ pos: -97.5,4.5
+ parent: 2
+ - uid: 23184
+ components:
+ - type: Transform
+ pos: -97.5,3.5
+ parent: 2
+ - uid: 23189
+ components:
+ - type: Transform
+ pos: -89.5,5.5
+ parent: 2
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: -74.5,-57.5
parent: 2
- uid: 23248
components:
@@ -53784,6 +53889,26 @@ entities:
- type: Transform
pos: -126.5,25.5
parent: 2
+ - uid: 23266
+ components:
+ - type: Transform
+ pos: -74.5,-58.5
+ parent: 2
+ - uid: 23273
+ components:
+ - type: Transform
+ pos: -89.5,4.5
+ parent: 2
+ - uid: 23281
+ components:
+ - type: Transform
+ pos: -73.5,-56.5
+ parent: 2
+ - uid: 23315
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
- uid: 23332
components:
- type: Transform
@@ -53794,15 +53919,10 @@ entities:
- type: Transform
pos: -70.5,-25.5
parent: 2
- - uid: 23426
- components:
- - type: Transform
- pos: -105.5,-10.5
- parent: 2
- - uid: 23441
+ - uid: 23408
components:
- type: Transform
- pos: -103.5,-3.5
+ pos: -91.5,-37.5
parent: 2
- uid: 23626
components:
@@ -53824,6 +53944,16 @@ entities:
- type: Transform
pos: -67.5,-12.5
parent: 2
+ - uid: 23663
+ components:
+ - type: Transform
+ pos: -74.5,-37.5
+ parent: 2
+ - uid: 23667
+ components:
+ - type: Transform
+ pos: -75.5,-56.5
+ parent: 2
- uid: 23673
components:
- type: Transform
@@ -53944,11 +54074,6 @@ entities:
- type: Transform
pos: -75.5,-10.5
parent: 2
- - uid: 23716
- components:
- - type: Transform
- pos: -103.5,-5.5
- parent: 2
- uid: 23721
components:
- type: Transform
@@ -53959,10 +54084,10 @@ entities:
- type: Transform
pos: -50.5,-33.5
parent: 2
- - uid: 23795
+ - uid: 23786
components:
- type: Transform
- pos: -103.5,-7.5
+ pos: -89.5,3.5
parent: 2
- uid: 23836
components:
@@ -54134,35 +54259,90 @@ entities:
- type: Transform
pos: -17.5,-33.5
parent: 2
- - uid: 24430
+ - uid: 24449
components:
- type: Transform
- pos: -115.5,-10.5
+ pos: -102.5,5.5
parent: 2
- - uid: 24431
+ - uid: 24457
components:
- type: Transform
- pos: -116.5,-10.5
+ pos: -103.5,5.5
parent: 2
- - uid: 24432
+ - uid: 24461
components:
- type: Transform
- pos: -117.5,-10.5
+ pos: -86.5,5.5
parent: 2
- - uid: 24433
+ - uid: 24464
components:
- type: Transform
- pos: -118.5,-10.5
+ pos: -100.5,5.5
parent: 2
- - uid: 24461
+ - uid: 24473
components:
- type: Transform
- pos: -86.5,5.5
+ pos: -103.5,-4.5
+ parent: 2
+ - uid: 24474
+ components:
+ - type: Transform
+ pos: -103.5,-5.5
+ parent: 2
+ - uid: 24475
+ components:
+ - type: Transform
+ pos: -103.5,-6.5
+ parent: 2
+ - uid: 24477
+ components:
+ - type: Transform
+ pos: -103.5,-9.5
+ parent: 2
+ - uid: 24480
+ components:
+ - type: Transform
+ pos: -103.5,-7.5
+ parent: 2
+ - uid: 24481
+ components:
+ - type: Transform
+ pos: -103.5,-10.5
+ parent: 2
+ - uid: 24491
+ components:
+ - type: Transform
+ pos: -103.5,-11.5
+ parent: 2
+ - uid: 24492
+ components:
+ - type: Transform
+ pos: -103.5,-12.5
+ parent: 2
+ - uid: 24529
+ components:
+ - type: Transform
+ pos: -103.5,-8.5
+ parent: 2
+ - uid: 24532
+ components:
+ - type: Transform
+ pos: -103.5,-13.5
+ parent: 2
+ - uid: 24533
+ components:
+ - type: Transform
+ pos: -103.5,4.5
+ parent: 2
+ - uid: 24542
+ components:
+ - type: Transform
+ pos: -103.5,3.5
parent: 2
- uid: 24586
components:
- type: Transform
- pos: -77.5,-56.5
+ pos: -103.5,1.5
parent: 2
- uid: 24587
components:
@@ -54227,42 +54407,67 @@ entities:
- uid: 24599
components:
- type: Transform
- pos: -90.5,-56.5
+ pos: -103.5,0.5
parent: 2
- uid: 24600
components:
- type: Transform
- pos: -91.5,-56.5
+ pos: -103.5,-0.5
parent: 2
- uid: 24601
components:
- type: Transform
- pos: -92.5,-56.5
+ pos: -103.5,2.5
parent: 2
- uid: 24602
components:
- type: Transform
- pos: -92.5,-57.5
+ pos: -103.5,-1.5
parent: 2
- uid: 24603
components:
- type: Transform
- pos: -92.5,-58.5
+ pos: -103.5,-2.5
parent: 2
- uid: 24604
components:
- type: Transform
- pos: -92.5,-59.5
+ pos: -103.5,-3.5
parent: 2
- uid: 24605
components:
- type: Transform
- pos: -92.5,-60.5
+ pos: -93.5,-13.5
parent: 2
- uid: 24606
components:
- type: Transform
- pos: -91.5,-60.5
+ pos: -102.5,-13.5
+ parent: 2
+ - uid: 24607
+ components:
+ - type: Transform
+ pos: -101.5,-13.5
+ parent: 2
+ - uid: 24608
+ components:
+ - type: Transform
+ pos: -99.5,-13.5
+ parent: 2
+ - uid: 24609
+ components:
+ - type: Transform
+ pos: -98.5,-13.5
+ parent: 2
+ - uid: 24616
+ components:
+ - type: Transform
+ pos: -97.5,-13.5
+ parent: 2
+ - uid: 24624
+ components:
+ - type: Transform
+ pos: -96.5,-13.5
parent: 2
- uid: 24628
components:
@@ -54294,11 +54499,76 @@ entities:
- type: Transform
pos: -13.5,5.5
parent: 2
+ - uid: 24663
+ components:
+ - type: Transform
+ pos: -95.5,-13.5
+ parent: 2
- uid: 24665
components:
- type: Transform
pos: -17.5,11.5
parent: 2
+ - uid: 24672
+ components:
+ - type: Transform
+ pos: -100.5,-13.5
+ parent: 2
+ - uid: 24676
+ components:
+ - type: Transform
+ pos: -94.5,-13.5
+ parent: 2
+ - uid: 24699
+ components:
+ - type: Transform
+ pos: -93.5,-12.5
+ parent: 2
+ - uid: 24700
+ components:
+ - type: Transform
+ pos: -93.5,-11.5
+ parent: 2
+ - uid: 24718
+ components:
+ - type: Transform
+ pos: -93.5,-10.5
+ parent: 2
+ - uid: 24719
+ components:
+ - type: Transform
+ pos: -94.5,-10.5
+ parent: 2
+ - uid: 24721
+ components:
+ - type: Transform
+ pos: -75.5,-12.5
+ parent: 2
+ - uid: 24801
+ components:
+ - type: Transform
+ pos: -75.5,-13.5
+ parent: 2
+ - uid: 24907
+ components:
+ - type: Transform
+ pos: -85.5,-13.5
+ parent: 2
+ - uid: 24910
+ components:
+ - type: Transform
+ pos: -87.5,-13.5
+ parent: 2
+ - uid: 24913
+ components:
+ - type: Transform
+ pos: -86.5,-13.5
+ parent: 2
+ - uid: 24914
+ components:
+ - type: Transform
+ pos: -88.5,-13.5
+ parent: 2
- uid: 25111
components:
- type: Transform
@@ -54367,32 +54637,47 @@ entities:
- uid: 25437
components:
- type: Transform
- pos: -76.5,-51.5
+ pos: -89.5,-13.5
parent: 2
- uid: 25438
components:
- type: Transform
- pos: -76.5,-50.5
+ pos: -90.5,-13.5
parent: 2
- uid: 25439
components:
- type: Transform
- pos: -76.5,-49.5
+ pos: -91.5,-13.5
parent: 2
- uid: 25440
components:
- type: Transform
- pos: -76.5,-48.5
+ pos: -92.5,-13.5
parent: 2
- uid: 25441
components:
- type: Transform
- pos: -76.5,-52.5
+ pos: -76.5,-13.5
parent: 2
- uid: 25442
components:
- type: Transform
- pos: -76.5,-47.5
+ pos: -77.5,-13.5
+ parent: 2
+ - uid: 25450
+ components:
+ - type: Transform
+ pos: -78.5,-13.5
+ parent: 2
+ - uid: 25451
+ components:
+ - type: Transform
+ pos: -80.5,-13.5
+ parent: 2
+ - uid: 25452
+ components:
+ - type: Transform
+ pos: -81.5,-13.5
parent: 2
- uid: 25458
components:
@@ -54404,6 +54689,46 @@ entities:
- type: Transform
pos: -71.5,-25.5
parent: 2
+ - uid: 25675
+ components:
+ - type: Transform
+ pos: -82.5,-13.5
+ parent: 2
+ - uid: 25676
+ components:
+ - type: Transform
+ pos: -83.5,-13.5
+ parent: 2
+ - uid: 25683
+ components:
+ - type: Transform
+ pos: -84.5,-13.5
+ parent: 2
+ - uid: 25695
+ components:
+ - type: Transform
+ pos: -79.5,-13.5
+ parent: 2
+ - uid: 25699
+ components:
+ - type: Transform
+ pos: -31.5,-2.5
+ parent: 2
+ - uid: 25709
+ components:
+ - type: Transform
+ pos: -31.5,-1.5
+ parent: 2
+ - uid: 25710
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 2
+ - uid: 25711
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
+ parent: 2
- uid: 25851
components:
- type: Transform
@@ -54429,6 +54754,11 @@ entities:
- type: Transform
pos: -117.5,-67.5
parent: 2
+ - uid: 25863
+ components:
+ - type: Transform
+ pos: -31.5,-7.5
+ parent: 2
- uid: 25865
components:
- type: Transform
@@ -54449,6 +54779,16 @@ entities:
- type: Transform
pos: -135.5,-27.5
parent: 2
+ - uid: 25869
+ components:
+ - type: Transform
+ pos: -31.5,-8.5
+ parent: 2
+ - uid: 25871
+ components:
+ - type: Transform
+ pos: -31.5,-9.5
+ parent: 2
- uid: 25950
components:
- type: Transform
@@ -54464,15 +54804,10 @@ entities:
- type: Transform
pos: -73.5,-11.5
parent: 2
- - uid: 25968
- components:
- - type: Transform
- pos: -75.5,-54.5
- parent: 2
- uid: 25969
components:
- type: Transform
- pos: -74.5,-54.5
+ pos: -117.5,26.5
parent: 2
- uid: 26111
components:
@@ -54619,10 +54954,27 @@ entities:
parent: 2
- proto: CandyBowl
entities:
- - uid: 3927
+ - uid: 24157
components:
- type: Transform
- pos: -39.443195,-16.486511
+ pos: -38.552986,-16.48195
+ parent: 2
+- proto: CapacitorStockPart
+ entities:
+ - uid: 4751
+ components:
+ - type: Transform
+ pos: -111.480156,-33.17495
+ parent: 2
+ - uid: 4818
+ components:
+ - type: Transform
+ pos: -111.74578,-33.346825
+ parent: 2
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: -30.511707,-65.506226
parent: 2
- proto: CaptainIDCard
entities:
@@ -54730,11 +55082,6 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,-46.5
parent: 2
- - uid: 6719
- components:
- - type: Transform
- pos: -62.5,-31.5
- parent: 2
- uid: 6749
components:
- type: Transform
@@ -54783,11 +55130,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -77.5,-29.5
parent: 2
- - uid: 7085
- components:
- - type: Transform
- pos: -62.5,-32.5
- parent: 2
- uid: 7090
components:
- type: Transform
@@ -54842,11 +55184,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-29.5
parent: 2
- - uid: 7537
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- uid: 8388
components:
- type: Transform
@@ -55048,36 +55385,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -50.5,-43.5
parent: 2
- - uid: 14529
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- - uid: 14530
- components:
- - type: Transform
- pos: -61.5,-31.5
- parent: 2
- - uid: 14531
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 14532
- components:
- - type: Transform
- pos: -60.5,-31.5
- parent: 2
- - uid: 14533
- components:
- - type: Transform
- pos: -60.5,-32.5
- parent: 2
- - uid: 14534
- components:
- - type: Transform
- pos: -61.5,-32.5
- parent: 2
- uid: 14535
components:
- type: Transform
@@ -55824,41 +56131,47 @@ entities:
parent: 2
- proto: CarpetGreen
entities:
- - uid: 5719
+ - uid: 1328
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-1.5
parent: 2
- - uid: 16017
+ - uid: 1977
components:
- type: Transform
- pos: -111.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-0.5
parent: 2
- - uid: 16018
+ - uid: 5719
components:
- type: Transform
- pos: -111.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-56.5
parent: 2
- - uid: 16019
+ - uid: 16020
components:
- type: Transform
- pos: -110.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-0.5
parent: 2
- - uid: 16020
+ - uid: 16023
components:
- type: Transform
- pos: -110.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-1.5
parent: 2
- - uid: 16021
+ - uid: 16201
components:
- type: Transform
- pos: -110.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-1.5
parent: 2
- - uid: 16022
+ - uid: 16256
components:
- type: Transform
- pos: -111.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-0.5
parent: 2
- uid: 17846
components:
@@ -56143,20 +56456,15 @@ entities:
rot: 3.141592653589793 rad
pos: -83.5,5.5
parent: 2
- - uid: 338
- components:
- - type: Transform
- pos: -107.5,-27.5
- parent: 2
- - uid: 361
+ - uid: 764
components:
- type: Transform
- pos: -92.5,-60.5
+ pos: -74.5,-52.5
parent: 2
- - uid: 366
+ - uid: 769
components:
- type: Transform
- pos: -92.5,-59.5
+ pos: -74.5,-42.5
parent: 2
- uid: 826
components:
@@ -56190,11 +56498,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,-10.5
parent: 2
- - uid: 974
+ - uid: 938
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,7.5
+ pos: -74.5,-44.5
parent: 2
- uid: 989
components:
@@ -56213,12 +56520,22 @@ entities:
- type: Transform
pos: -85.5,-11.5
parent: 2
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: -93.5,-11.5
+ parent: 2
- uid: 1106
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -108.5,-10.5
parent: 2
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: -93.5,-9.5
+ parent: 2
- uid: 1154
components:
- type: Transform
@@ -56230,6 +56547,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -92.5,15.5
parent: 2
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: -93.5,-10.5
+ parent: 2
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: -74.5,-57.5
+ parent: 2
- uid: 1902
components:
- type: Transform
@@ -56271,6 +56598,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -126.5,-10.5
parent: 2
+ - uid: 2291
+ components:
+ - type: Transform
+ pos: -89.5,-60.5
+ parent: 2
- uid: 2324
components:
- type: Transform
@@ -56282,6 +56614,16 @@ entities:
- type: Transform
pos: -141.5,-54.5
parent: 2
+ - uid: 2564
+ components:
+ - type: Transform
+ pos: -74.5,-59.5
+ parent: 2
+ - uid: 2615
+ components:
+ - type: Transform
+ pos: -74.5,-47.5
+ parent: 2
- uid: 2619
components:
- type: Transform
@@ -56294,12 +56636,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-3.5
parent: 2
- - uid: 2628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-1.5
- parent: 2
- uid: 2714
components:
- type: Transform
@@ -56312,12 +56648,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-6.5
parent: 2
- - uid: 2739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-2.5
- parent: 2
- uid: 3165
components:
- type: Transform
@@ -56354,29 +56684,16 @@ entities:
- type: Transform
pos: -21.5,2.5
parent: 2
- - uid: 3735
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-45.5
- parent: 2
- - uid: 3762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,-45.5
- parent: 2
- - uid: 3805
+ - uid: 4114
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-40.5
+ pos: -74.5,-58.5
parent: 2
- - uid: 3807
+ - uid: 4286
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,-31.5
parent: 2
- uid: 4569
components:
@@ -56419,18 +56736,6 @@ entities:
- type: Transform
pos: -141.5,-56.5
parent: 2
- - uid: 4816
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,1.5
- parent: 2
- - uid: 4827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,2.5
- parent: 2
- uid: 4832
components:
- type: Transform
@@ -56443,12 +56748,6 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,2.5
parent: 2
- - uid: 4851
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,3.5
- parent: 2
- uid: 4853
components:
- type: Transform
@@ -56461,6 +56760,11 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,2.5
parent: 2
+ - uid: 5107
+ components:
+ - type: Transform
+ pos: -74.5,-49.5
+ parent: 2
- uid: 5348
components:
- type: Transform
@@ -57043,16 +57347,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -140.5,-27.5
parent: 2
- - uid: 7511
+ - uid: 7619
components:
- type: Transform
- pos: -52.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: -129.5,-4.5
parent: 2
- - uid: 7619
+ - uid: 7746
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -129.5,-4.5
+ pos: -74.5,-65.5
parent: 2
- uid: 7913
components:
@@ -57156,29 +57461,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -123.5,-27.5
parent: 2
- - uid: 9160
+ - uid: 9030
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,45.5
+ pos: -74.5,-45.5
parent: 2
- - uid: 9236
+ - uid: 9050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,6.5
+ pos: -70.5,-65.5
parent: 2
- - uid: 9241
+ - uid: 9160
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,43.5
+ pos: -94.5,45.5
parent: 2
- - uid: 9252
+ - uid: 9241
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,43.5
parent: 2
- uid: 9254
components:
@@ -57192,11 +57495,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,44.5
parent: 2
- - uid: 9446
+ - uid: 9301
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,5.5
+ pos: -74.5,-62.5
parent: 2
- uid: 9486
components:
@@ -57213,12 +57515,6 @@ entities:
- type: Transform
pos: -143.5,13.5
parent: 2
- - uid: 9606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-35.5
- parent: 2
- uid: 9732
components:
- type: Transform
@@ -57321,12 +57617,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,-10.5
parent: 2
- - uid: 10711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,-10.5
- parent: 2
- uid: 10712
components:
- type: Transform
@@ -57369,35 +57659,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -99.5,-13.5
parent: 2
- - uid: 10719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-13.5
- parent: 2
- uid: 10720
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -104.5,10.5
parent: 2
- uid: 10721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-13.5
- parent: 2
- - uid: 10722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-13.5
- parent: 2
- - uid: 10723
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -104.5,11.5
parent: 2
- uid: 10725
components:
@@ -57462,14 +57734,7 @@ entities:
- uid: 10736
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-14.5
- parent: 2
- - uid: 10737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-15.5
+ pos: -101.5,1.5
parent: 2
- uid: 10795
components:
@@ -57477,17 +57742,16 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,4.5
parent: 2
- - uid: 11122
+ - uid: 10859
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -134.5,13.5
+ pos: -73.5,-65.5
parent: 2
- - uid: 11133
+ - uid: 11122
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -134.5,13.5
parent: 2
- uid: 11315
components:
@@ -57519,12 +57783,52 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,5.5
parent: 2
+ - uid: 11771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,11.5
+ parent: 2
+ - uid: 11897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-13.5
+ parent: 2
+ - uid: 12607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-13.5
+ parent: 2
+ - uid: 12614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-13.5
+ parent: 2
+ - uid: 12615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-13.5
+ parent: 2
- uid: 12727
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -43.5,-12.5
parent: 2
+ - uid: 12895
+ components:
+ - type: Transform
+ pos: -93.5,-7.5
+ parent: 2
+ - uid: 12924
+ components:
+ - type: Transform
+ pos: -93.5,-6.5
+ parent: 2
- uid: 12951
components:
- type: Transform
@@ -57533,8 +57837,7 @@ entities:
- uid: 13041
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,-23.5
+ pos: -40.5,-13.5
parent: 2
- uid: 13042
components:
@@ -57554,52 +57857,67 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,1.5
parent: 2
+ - uid: 13120
+ components:
+ - type: Transform
+ pos: -39.5,-13.5
+ parent: 2
- uid: 13481
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -140.5,2.5
parent: 2
- - uid: 13623
+ - uid: 13554
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -121.5,-27.5
+ pos: -93.5,-8.5
parent: 2
- - uid: 13715
+ - uid: 13560
components:
- type: Transform
- pos: -141.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,-11.5
parent: 2
- - uid: 13723
+ - uid: 13564
components:
- type: Transform
- pos: -141.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: -123.5,-12.5
parent: 2
- - uid: 13739
+ - uid: 13565
components:
- type: Transform
- pos: -105.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-11.5
parent: 2
- - uid: 13743
+ - uid: 13568
components:
- type: Transform
- pos: -104.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -123.5,-11.5
parent: 2
- - uid: 13745
+ - uid: 13623
components:
- type: Transform
- pos: -104.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -121.5,-27.5
parent: 2
- - uid: 13746
+ - uid: 13715
components:
- type: Transform
- pos: -104.5,-33.5
+ pos: -141.5,-55.5
parent: 2
- - uid: 13747
+ - uid: 13723
components:
- type: Transform
- pos: -104.5,-34.5
+ pos: -141.5,-57.5
+ parent: 2
+ - uid: 13739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-13.5
parent: 2
- uid: 13748
components:
@@ -57636,91 +57954,16 @@ entities:
- type: Transform
pos: -104.5,-26.5
parent: 2
- - uid: 13755
- components:
- - type: Transform
- pos: -104.5,-45.5
- parent: 2
- - uid: 13756
- components:
- - type: Transform
- pos: -104.5,-43.5
- parent: 2
- - uid: 13757
- components:
- - type: Transform
- pos: -104.5,-42.5
- parent: 2
- - uid: 13758
- components:
- - type: Transform
- pos: -104.5,-41.5
- parent: 2
- - uid: 13759
- components:
- - type: Transform
- pos: -104.5,-40.5
- parent: 2
- - uid: 13760
- components:
- - type: Transform
- pos: -104.5,-39.5
- parent: 2
- - uid: 13761
- components:
- - type: Transform
- pos: -104.5,-38.5
- parent: 2
- - uid: 13762
- components:
- - type: Transform
- pos: -104.5,-44.5
- parent: 2
- - uid: 13764
- components:
- - type: Transform
- pos: -103.5,-22.5
- parent: 2
- - uid: 13766
- components:
- - type: Transform
- pos: -103.5,-19.5
- parent: 2
- - uid: 13767
- components:
- - type: Transform
- pos: -103.5,-18.5
- parent: 2
- - uid: 13768
- components:
- - type: Transform
- pos: -103.5,-17.5
- parent: 2
- uid: 13769
components:
- type: Transform
pos: -103.5,-16.5
parent: 2
- - uid: 13770
- components:
- - type: Transform
- pos: -103.5,-15.5
- parent: 2
- uid: 13771
components:
- type: Transform
pos: -103.5,-14.5
parent: 2
- - uid: 13772
- components:
- - type: Transform
- pos: -103.5,-20.5
- parent: 2
- - uid: 13773
- components:
- - type: Transform
- pos: -104.5,-46.5
- parent: 2
- uid: 13774
components:
- type: Transform
@@ -57829,6 +58072,12 @@ entities:
- type: Transform
pos: -153.5,-16.5
parent: 2
+ - uid: 13966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,5.5
+ parent: 2
- uid: 14019
components:
- type: Transform
@@ -57870,17 +58119,23 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,-56.5
parent: 2
- - uid: 14642
+ - uid: 14506
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -113.5,-68.5
parent: 2
- - uid: 14644
+ - uid: 14532
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,-35.5
+ pos: -94.5,5.5
+ parent: 2
+ - uid: 14642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,-44.5
parent: 2
- uid: 14649
components:
@@ -57977,54 +58232,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-13.5
parent: 2
- - uid: 14687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-13.5
- parent: 2
- uid: 14688
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,-13.5
parent: 2
- - uid: 14689
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-13.5
- parent: 2
- - uid: 14690
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-13.5
- parent: 2
- - uid: 14691
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-13.5
- parent: 2
- - uid: 14692
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-13.5
- parent: 2
- - uid: 14693
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-13.5
- parent: 2
- - uid: 14694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-13.5
- parent: 2
- uid: 14695
components:
- type: Transform
@@ -58037,48 +58250,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,-13.5
parent: 2
- - uid: 14697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-13.5
- parent: 2
- uid: 14698
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,-13.5
parent: 2
- - uid: 14699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-13.5
- parent: 2
- - uid: 14700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-13.5
- parent: 2
- - uid: 14701
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-13.5
- parent: 2
- - uid: 14702
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-13.5
- parent: 2
- - uid: 14703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-13.5
- parent: 2
- uid: 14704
components:
- type: Transform
@@ -58097,12 +58274,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,-13.5
parent: 2
- - uid: 14707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-13.5
- parent: 2
- uid: 14708
components:
- type: Transform
@@ -58139,24 +58310,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -15.5,-11.5
parent: 2
- - uid: 14714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-14.5
- parent: 2
- - uid: 14715
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-15.5
- parent: 2
- - uid: 14716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-12.5
- parent: 2
- uid: 14718
components:
- type: Transform
@@ -58187,12 +58340,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -29.5,-5.5
parent: 2
- - uid: 14723
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-11.5
- parent: 2
- uid: 14724
components:
- type: Transform
@@ -58265,17 +58412,40 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-11.5
parent: 2
+ - uid: 14770
+ components:
+ - type: Transform
+ pos: -74.5,-40.5
+ parent: 2
- uid: 15002
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -140.5,-10.5
parent: 2
- - uid: 15326
+ - uid: 15059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-15.5
+ parent: 2
+ - uid: 15060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,-10.5
+ parent: 2
+ - uid: 15061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-9.5
+ parent: 2
+ - uid: 15243
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -103.5,4.5
+ pos: -66.5,-11.5
parent: 2
- uid: 15583
components:
@@ -58297,18 +58467,6 @@ entities:
- type: Transform
pos: -94.5,24.5
parent: 2
- - uid: 15934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,11.5
- parent: 2
- - uid: 15960
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-37.5
- parent: 2
- uid: 16064
components:
- type: Transform
@@ -58435,12 +58593,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,-56.5
parent: 2
- - uid: 16092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-36.5
- parent: 2
- uid: 16142
components:
- type: Transform
@@ -58451,71 +58603,66 @@ entities:
- type: Transform
pos: -94.5,19.5
parent: 2
- - uid: 16284
+ - uid: 16206
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-28.5
+ pos: -89.5,-59.5
parent: 2
- - uid: 16285
+ - uid: 16244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -154.5,-34.5
+ pos: -89.5,-63.5
parent: 2
- - uid: 16292
+ - uid: 16265
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-32.5
+ pos: -89.5,-58.5
parent: 2
- - uid: 16403
+ - uid: 16284
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,-25.5
+ pos: -72.5,-28.5
parent: 2
- - uid: 16416
+ - uid: 16285
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -78.5,-56.5
+ pos: -154.5,-34.5
parent: 2
- - uid: 16417
+ - uid: 16291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-56.5
+ pos: -89.5,-61.5
parent: 2
- - uid: 16418
+ - uid: 16292
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -75.5,-56.5
+ pos: -72.5,-32.5
parent: 2
- - uid: 16419
+ - uid: 16298
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-58.5
+ pos: -89.5,-57.5
parent: 2
- - uid: 16420
+ - uid: 16403
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,-57.5
+ pos: -72.5,-25.5
parent: 2
- - uid: 16421
+ - uid: 16416
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,-55.5
+ pos: -78.5,-56.5
parent: 2
- - uid: 16422
+ - uid: 16445
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,-54.5
+ pos: -65.5,-65.5
parent: 2
- uid: 16463
components:
@@ -58564,6 +58711,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-27.5
parent: 2
+ - uid: 16815
+ components:
+ - type: Transform
+ pos: -74.5,-56.5
+ parent: 2
- uid: 16847
components:
- type: Transform
@@ -58687,36 +58839,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-29.5
parent: 2
- - uid: 17073
- components:
- - type: Transform
- pos: -76.5,-48.5
- parent: 2
- - uid: 17079
- components:
- - type: Transform
- pos: -76.5,-50.5
- parent: 2
- - uid: 17081
- components:
- - type: Transform
- pos: -76.5,-51.5
- parent: 2
- - uid: 17098
- components:
- - type: Transform
- pos: -76.5,-52.5
- parent: 2
- uid: 17130
components:
- type: Transform
pos: -62.5,-65.5
parent: 2
- - uid: 17133
- components:
- - type: Transform
- pos: -76.5,-46.5
- parent: 2
- uid: 17327
components:
- type: Transform
@@ -58846,42 +58973,87 @@ entities:
rot: -1.5707963267948966 rad
pos: -154.5,-20.5
parent: 2
+ - uid: 17825
+ components:
+ - type: Transform
+ pos: -71.5,-65.5
+ parent: 2
- uid: 17841
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -143.5,5.5
parent: 2
+ - uid: 17865
+ components:
+ - type: Transform
+ pos: -74.5,-55.5
+ parent: 2
- uid: 17872
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -103.5,-26.5
parent: 2
- - uid: 17990
+ - uid: 17993
components:
- type: Transform
- pos: -76.5,-45.5
+ pos: -74.5,-50.5
parent: 2
- - uid: 17993
+ - uid: 18205
components:
- type: Transform
- pos: -76.5,-47.5
+ pos: -15.5,-16.5
parent: 2
- - uid: 18043
+ - uid: 18220
components:
- type: Transform
- pos: -48.5,-65.5
+ pos: -15.5,3.5
parent: 2
- - uid: 18221
+ - uid: 18278
components:
- type: Transform
- pos: -48.5,-64.5
+ pos: -15.5,-10.5
parent: 2
- - uid: 18357
+ - uid: 18430
components:
- type: Transform
- pos: -76.5,-49.5
+ pos: -56.5,-71.5
+ parent: 2
+ - uid: 18432
+ components:
+ - type: Transform
+ pos: -57.5,-71.5
+ parent: 2
+ - uid: 18602
+ components:
+ - type: Transform
+ pos: -54.5,-71.5
+ parent: 2
+ - uid: 18607
+ components:
+ - type: Transform
+ pos: -55.5,-71.5
+ parent: 2
+ - uid: 18619
+ components:
+ - type: Transform
+ pos: -57.5,-70.5
+ parent: 2
+ - uid: 18622
+ components:
+ - type: Transform
+ pos: -74.5,-35.5
+ parent: 2
+ - uid: 18684
+ components:
+ - type: Transform
+ pos: -74.5,-63.5
+ parent: 2
+ - uid: 18747
+ components:
+ - type: Transform
+ pos: -77.5,-56.5
parent: 2
- uid: 18751
components:
@@ -58908,15 +59080,10 @@ entities:
- type: Transform
pos: -133.5,-8.5
parent: 2
- - uid: 18780
- components:
- - type: Transform
- pos: -92.5,-61.5
- parent: 2
- - uid: 18781
+ - uid: 18773
components:
- type: Transform
- pos: -92.5,-63.5
+ pos: -74.5,-60.5
parent: 2
- uid: 18796
components:
@@ -58948,15 +59115,20 @@ entities:
rot: 3.141592653589793 rad
pos: -132.5,22.5
parent: 2
- - uid: 18833
+ - uid: 18863
components:
- type: Transform
- pos: -92.5,-62.5
+ pos: -148.5,13.5
parent: 2
- - uid: 18863
+ - uid: 18940
components:
- type: Transform
- pos: -148.5,13.5
+ pos: -74.5,-61.5
+ parent: 2
+ - uid: 18943
+ components:
+ - type: Transform
+ pos: -74.5,-48.5
parent: 2
- uid: 19091
components:
@@ -58985,12 +59157,6 @@ entities:
- type: Transform
pos: -125.5,1.5
parent: 2
- - uid: 19474
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,9.5
- parent: 2
- uid: 19476
components:
- type: Transform
@@ -59021,11 +59187,15 @@ entities:
- type: Transform
pos: -15.5,2.5
parent: 2
- - uid: 19763
+ - uid: 19621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,5.5
+ pos: -89.5,-62.5
+ parent: 2
+ - uid: 19637
+ components:
+ - type: Transform
+ pos: -89.5,-64.5
parent: 2
- uid: 19820
components:
@@ -59037,12 +59207,6 @@ entities:
- type: Transform
pos: -28.5,-2.5
parent: 2
- - uid: 19973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,5.5
- parent: 2
- uid: 20102
components:
- type: Transform
@@ -59081,11 +59245,6 @@ entities:
- type: Transform
pos: -109.5,-45.5
parent: 2
- - uid: 20454
- components:
- - type: Transform
- pos: -110.5,-45.5
- parent: 2
- uid: 20486
components:
- type: Transform
@@ -59122,10 +59281,15 @@ entities:
rot: 3.141592653589793 rad
pos: -130.5,-36.5
parent: 2
- - uid: 20944
+ - uid: 20811
components:
- type: Transform
- pos: -92.5,-58.5
+ pos: -74.5,-46.5
+ parent: 2
+ - uid: 20812
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
parent: 2
- uid: 20960
components:
@@ -59909,6 +60073,11 @@ entities:
- type: Transform
pos: -133.5,0.5
parent: 2
+ - uid: 21418
+ components:
+ - type: Transform
+ pos: -74.5,-51.5
+ parent: 2
- uid: 21428
components:
- type: Transform
@@ -60320,11 +60489,6 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
- - uid: 21625
- components:
- - type: Transform
- pos: -92.5,-57.5
- parent: 2
- uid: 21626
components:
- type: Transform
@@ -60505,70 +60669,10 @@ entities:
- type: Transform
pos: -69.5,-65.5
parent: 2
- - uid: 21663
- components:
- - type: Transform
- pos: -70.5,-65.5
- parent: 2
- - uid: 21664
- components:
- - type: Transform
- pos: -71.5,-65.5
- parent: 2
- - uid: 21665
- components:
- - type: Transform
- pos: -72.5,-65.5
- parent: 2
- - uid: 21666
- components:
- - type: Transform
- pos: -73.5,-65.5
- parent: 2
- - uid: 21667
- components:
- - type: Transform
- pos: -74.5,-65.5
- parent: 2
- - uid: 21668
- components:
- - type: Transform
- pos: -65.5,-65.5
- parent: 2
- - uid: 21669
- components:
- - type: Transform
- pos: -75.5,-65.5
- parent: 2
- - uid: 21670
- components:
- - type: Transform
- pos: -76.5,-65.5
- parent: 2
- uid: 21671
components:
- type: Transform
- pos: -76.5,-64.5
- parent: 2
- - uid: 21672
- components:
- - type: Transform
- pos: -76.5,-63.5
- parent: 2
- - uid: 21673
- components:
- - type: Transform
- pos: -76.5,-61.5
- parent: 2
- - uid: 21674
- components:
- - type: Transform
- pos: -76.5,-60.5
- parent: 2
- - uid: 21675
- components:
- - type: Transform
- pos: -76.5,-62.5
+ pos: -74.5,-41.5
parent: 2
- uid: 21715
components:
@@ -60581,18 +60685,6 @@ entities:
- type: Transform
pos: -18.5,-59.5
parent: 2
- - uid: 22009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,-27.5
- parent: 2
- - uid: 22010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-27.5
- parent: 2
- uid: 22013
components:
- type: Transform
@@ -60761,12 +60853,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -133.5,-17.5
parent: 2
- - uid: 22122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,10.5
- parent: 2
- uid: 22191
components:
- type: Transform
@@ -60802,18 +60888,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -72.5,-30.5
parent: 2
- - uid: 22323
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-2.5
- parent: 2
- - uid: 22344
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-2.5
- parent: 2
- uid: 22367
components:
- type: Transform
@@ -60846,137 +60920,108 @@ entities:
rot: 1.5707963267948966 rad
pos: -104.5,-53.5
parent: 2
- - uid: 22908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -150.5,1.5
- parent: 2
- - uid: 22957
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -152.5,1.5
- parent: 2
- - uid: 23146
+ - uid: 22907
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -153.5,5.5
+ pos: -59.5,-66.5
parent: 2
- - uid: 23151
+ - uid: 22908
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -151.5,1.5
+ pos: -150.5,1.5
parent: 2
- - uid: 23155
+ - uid: 22957
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -144.5,1.5
- parent: 2
- - uid: 23162
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-35.5
+ pos: -152.5,1.5
parent: 2
- - uid: 23163
+ - uid: 23098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-35.5
+ pos: -74.5,-53.5
parent: 2
- - uid: 23173
+ - uid: 23121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-66.5
+ pos: -76.5,-56.5
parent: 2
- - uid: 23175
+ - uid: 23141
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-67.5
+ pos: -89.5,-65.5
parent: 2
- - uid: 23176
+ - uid: 23146
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-68.5
+ pos: -153.5,5.5
parent: 2
- - uid: 23177
+ - uid: 23151
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-69.5
+ pos: -151.5,1.5
parent: 2
- - uid: 23178
+ - uid: 23155
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-71.5
+ pos: -144.5,1.5
parent: 2
- - uid: 23179
+ - uid: 23162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-35.5
parent: 2
- - uid: 23180
+ - uid: 23208
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-71.5
+ pos: -93.5,-12.5
parent: 2
- - uid: 23181
+ - uid: 23222
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-71.5
+ pos: -74.5,-37.5
parent: 2
- - uid: 23182
+ - uid: 23229
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-71.5
+ pos: -74.5,-43.5
parent: 2
- - uid: 23183
+ - uid: 23231
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-71.5
+ pos: -74.5,-64.5
parent: 2
- - uid: 23184
+ - uid: 23246
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-70.5
+ pos: -72.5,-65.5
parent: 2
- - uid: 23187
+ - uid: 23267
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-71.5
+ pos: -74.5,-38.5
parent: 2
- - uid: 23188
+ - uid: 23279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-71.5
+ pos: -74.5,-39.5
parent: 2
- - uid: 23189
+ - uid: 23284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-71.5
+ pos: -74.5,-36.5
parent: 2
- - uid: 23408
+ - uid: 23303
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-31.5
parent: 2
- uid: 23430
components:
@@ -61014,12 +61059,6 @@ entities:
- type: Transform
pos: -14.5,6.5
parent: 2
- - uid: 23893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,8.5
- parent: 2
- uid: 23896
components:
- type: Transform
@@ -61284,41 +61323,6 @@ entities:
- type: Transform
pos: -110.5,5.5
parent: 2
- - uid: 24354
- components:
- - type: Transform
- pos: -76.5,-44.5
- parent: 2
- - uid: 24355
- components:
- - type: Transform
- pos: -76.5,-43.5
- parent: 2
- - uid: 24356
- components:
- - type: Transform
- pos: -76.5,-42.5
- parent: 2
- - uid: 24357
- components:
- - type: Transform
- pos: -76.5,-41.5
- parent: 2
- - uid: 24358
- components:
- - type: Transform
- pos: -76.5,-40.5
- parent: 2
- - uid: 24359
- components:
- - type: Transform
- pos: -76.5,-39.5
- parent: 2
- - uid: 24360
- components:
- - type: Transform
- pos: -76.5,-38.5
- parent: 2
- uid: 24380
components:
- type: Transform
@@ -61608,12 +61612,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -108.5,-68.5
parent: 2
- - uid: 24914
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -113.5,-68.5
- parent: 2
- uid: 25055
components:
- type: Transform
@@ -62167,6 +62165,16 @@ entities:
- type: Transform
pos: -15.5,-62.5
parent: 2
+ - uid: 25908
+ components:
+ - type: Transform
+ pos: -117.5,-4.5
+ parent: 2
+ - uid: 25909
+ components:
+ - type: Transform
+ pos: -118.5,-4.5
+ parent: 2
- uid: 25933
components:
- type: Transform
@@ -62185,36 +62193,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -137.5,-4.5
parent: 2
- - uid: 26038
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-2.5
- parent: 2
- - uid: 26039
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,-2.5
- parent: 2
- - uid: 26041
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,-2.5
- parent: 2
- - uid: 26051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,-2.5
- parent: 2
- - uid: 26052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-2.5
- parent: 2
- uid: 26123
components:
- type: Transform
@@ -62337,6 +62315,12 @@ entities:
- type: Transform
pos: -26.5,-17.5
parent: 2
+ - uid: 1160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-69.5
+ parent: 2
- uid: 1237
components:
- type: Transform
@@ -62373,6 +62357,48 @@ entities:
rot: 3.141592653589793 rad
pos: -87.5,-34.5
parent: 2
+ - uid: 1657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-73.5
+ parent: 2
+ - uid: 1674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-69.5
+ parent: 2
+ - uid: 1687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-70.5
+ parent: 2
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-70.5
+ parent: 2
+ - uid: 1919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-73.5
+ parent: 2
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-74.5
+ parent: 2
+ - uid: 1959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-74.5
+ parent: 2
- uid: 2670
components:
- type: Transform
@@ -62394,6 +62420,24 @@ entities:
- type: Transform
pos: -50.5,-11.5
parent: 2
+ - uid: 3316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,-77.5
+ parent: 2
+ - uid: 3327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,-77.5
+ parent: 2
+ - uid: 3328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-77.5
+ parent: 2
- uid: 3550
components:
- type: Transform
@@ -62507,36 +62551,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -35.5,-50.5
parent: 2
- - uid: 4250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-70.5
- parent: 2
- - uid: 4251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-73.5
- parent: 2
- - uid: 4252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-72.5
- parent: 2
- - uid: 4263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-70.5
- parent: 2
- - uid: 4279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-73.5
- parent: 2
- uid: 4448
components:
- type: Transform
@@ -62570,18 +62584,6 @@ entities:
rot: 3.141592653589793 rad
pos: -95.5,9.5
parent: 2
- - uid: 5108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-72.5
- parent: 2
- - uid: 5113
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-69.5
- parent: 2
- uid: 5116
components:
- type: Transform
@@ -62629,24 +62631,6 @@ entities:
rot: 3.141592653589793 rad
pos: -147.5,-44.5
parent: 2
- - uid: 6545
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-32.5
- parent: 2
- - uid: 6606
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-32.5
- parent: 2
- - uid: 6607
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-32.5
- parent: 2
- uid: 6723
components:
- type: Transform
@@ -62682,21 +62666,6 @@ entities:
- type: Transform
pos: -147.5,-46.5
parent: 2
- - uid: 7562
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - uid: 7572
- components:
- - type: Transform
- pos: -60.5,-30.5
- parent: 2
- - uid: 7573
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- uid: 8264
components:
- type: Transform
@@ -62868,6 +62837,12 @@ entities:
- type: Transform
pos: -10.5,-2.5
parent: 2
+ - uid: 8686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-74.5
+ parent: 2
- uid: 9120
components:
- type: Transform
@@ -62897,6 +62872,11 @@ entities:
- type: Transform
pos: -31.5,17.5
parent: 2
+ - uid: 9306
+ components:
+ - type: Transform
+ pos: -90.5,-39.5
+ parent: 2
- uid: 9331
components:
- type: Transform
@@ -62926,11 +62906,6 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,14.5
parent: 2
- - uid: 9455
- components:
- - type: Transform
- pos: -81.5,-38.5
- parent: 2
- uid: 9722
components:
- type: Transform
@@ -62948,11 +62923,6 @@ entities:
rot: 3.141592653589793 rad
pos: -93.5,27.5
parent: 2
- - uid: 10863
- components:
- - type: Transform
- pos: -84.5,-38.5
- parent: 2
- uid: 11010
components:
- type: Transform
@@ -62974,10 +62944,15 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,14.5
parent: 2
- - uid: 11052
+ - uid: 11085
components:
- type: Transform
- pos: -83.5,-38.5
+ pos: -92.5,-39.5
+ parent: 2
+ - uid: 11133
+ components:
+ - type: Transform
+ pos: -91.5,-39.5
parent: 2
- uid: 11632
components:
@@ -63002,22 +62977,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -53.5,-43.5
parent: 2
- - uid: 14791
+ - uid: 14732
components:
- type: Transform
- pos: -44.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-77.5
parent: 2
- - uid: 15013
+ - uid: 14758
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-76.5
parent: 2
- - uid: 15016
+ - uid: 14759
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-76.5
+ parent: 2
+ - uid: 14791
+ components:
+ - type: Transform
+ pos: -44.5,-46.5
parent: 2
- uid: 15333
components:
@@ -63037,41 +63018,34 @@ entities:
rot: -1.5707963267948966 rad
pos: -129.5,-58.5
parent: 2
- - uid: 15847
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-34.5
- parent: 2
- - uid: 16042
+ - uid: 15785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-41.5
+ pos: -100.5,8.5
parent: 2
- - uid: 16044
+ - uid: 15847
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-34.5
parent: 2
- - uid: 16711
+ - uid: 16309
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-43.5
parent: 2
- - uid: 16712
+ - uid: 16317
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-45.5
parent: 2
- - uid: 16823
+ - uid: 16318
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-44.5
parent: 2
- uid: 16893
components:
@@ -63084,12 +63058,6 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,27.5
parent: 2
- - uid: 16948
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-75.5
- parent: 2
- uid: 17057
components:
- type: Transform
@@ -63161,10 +63129,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-32.5
parent: 2
- - uid: 17827
+ - uid: 19167
components:
- type: Transform
- pos: -80.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,-76.5
+ parent: 2
+ - uid: 19283
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 19724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,-76.5
parent: 2
- uid: 19776
components:
@@ -63225,24 +63205,17 @@ entities:
- type: Transform
pos: -48.5,-36.5
parent: 2
- - uid: 21048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-73.5
- parent: 2
- - uid: 21049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-73.5
- parent: 2
- uid: 21484
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -120.5,36.5
parent: 2
+ - uid: 21515
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
- uid: 22387
components:
- type: Transform
@@ -63260,17 +63233,11 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,-25.5
parent: 2
- - uid: 22965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-8.5
- parent: 2
- - uid: 22970
+ - uid: 22442
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-8.5
+ pos: -77.5,-74.5
parent: 2
- uid: 22997
components:
@@ -63287,18 +63254,6 @@ entities:
- type: Transform
pos: -8.5,-35.5
parent: 2
- - uid: 23121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-69.5
- parent: 2
- - uid: 23373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-45.5
- parent: 2
- uid: 23432
components:
- type: Transform
@@ -63310,29 +63265,15 @@ entities:
- type: Transform
pos: -134.5,-0.5
parent: 2
- - uid: 23458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-76.5
- parent: 2
- - uid: 23459
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-76.5
- parent: 2
- - uid: 23460
+ - uid: 23719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,-76.5
+ pos: -99.5,8.5
parent: 2
- - uid: 23461
+ - uid: 23728
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-76.5
+ pos: -98.5,8.5
parent: 2
- uid: 24452
components:
@@ -63433,10 +63374,40 @@ entities:
parent: 2
- proto: ChairFolding
entities:
- - uid: 26054
+ - uid: 3504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-61.5
+ parent: 2
+ - uid: 16117
+ components:
+ - type: Transform
+ pos: -91.40397,-60.489017
+ parent: 2
+ - uid: 24357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -128.49933,-28.332848
+ parent: 2
+ - uid: 24358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -128.49933,-29.270348
+ parent: 2
+ - uid: 24359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -130.53058,-29.317223
+ parent: 2
+ - uid: 24360
components:
- type: Transform
- pos: -94.532234,-61.424862
+ rot: 1.5707963267948966 rad
+ pos: -130.5462,-28.364098
parent: 2
- proto: ChairOfficeDark
entities:
@@ -63446,6 +63417,17 @@ entities:
rot: 3.141592653589793 rad
pos: -110.43836,-14.410664
parent: 2
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,1.5
+ parent: 2
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: -97.5,-0.5
+ parent: 2
- uid: 2597
components:
- type: Transform
@@ -63514,12 +63496,6 @@ entities:
- type: Transform
pos: -52.49605,-6.624262
parent: 2
- - uid: 3316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-43.5
- parent: 2
- uid: 3983
components:
- type: Transform
@@ -63630,24 +63606,12 @@ entities:
rot: 3.141592653589793 rad
pos: -43.5,-67.5
parent: 2
- - uid: 9213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-30.5
- parent: 2
- uid: 9513
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -96.5,-40.5
parent: 2
- - uid: 9706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,28.5
- parent: 2
- uid: 9707
components:
- type: Transform
@@ -63696,12 +63660,6 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,-5.5
parent: 2
- - uid: 16009
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-31.5
- parent: 2
- uid: 16525
components:
- type: Transform
@@ -63720,6 +63678,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -34.5,-41.5
parent: 2
+ - uid: 17122
+ components:
+ - type: Transform
+ pos: -77.5,-32.5
+ parent: 2
- uid: 17131
components:
- type: Transform
@@ -63815,15 +63778,15 @@ entities:
parent: 2
- proto: ChairOfficeLight
entities:
- - uid: 1560
+ - uid: 6088
components:
- type: Transform
- pos: -113.5,-30.5
+ pos: -94.5,1.5
parent: 2
- - uid: 6865
+ - uid: 6119
components:
- type: Transform
- pos: -114.5,-30.5
+ pos: -95.5,1.5
parent: 2
- proto: ChairPilotSeat
entities:
@@ -63909,6 +63872,51 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,-28.5
parent: 2
+ - uid: 13710
+ components:
+ - type: Transform
+ pos: -62.5,-30.5
+ parent: 2
+ - uid: 13711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-32.5
+ parent: 2
+ - uid: 14534
+ components:
+ - type: Transform
+ pos: -61.5,-30.5
+ parent: 2
+ - uid: 14540
+ components:
+ - type: Transform
+ pos: -60.5,-30.5
+ parent: 2
+ - uid: 14608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-32.5
+ parent: 2
+ - uid: 19099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-40.5
+ parent: 2
+ - uid: 19257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-32.5
+ parent: 2
+ - uid: 19348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,-40.5
+ parent: 2
- uid: 20949
components:
- type: Transform
@@ -64063,6 +64071,13 @@ entities:
- type: Transform
pos: -120.5,-37.5
parent: 2
+- proto: CircuitImprinterMachineCircuitboard
+ entities:
+ - uid: 16653
+ components:
+ - type: Transform
+ pos: -116.54148,-30.643776
+ parent: 2
- proto: CleanerDispenser
entities:
- uid: 25668
@@ -64107,10 +64122,10 @@ entities:
- type: Transform
pos: -80.5,-29.5
parent: 2
- - uid: 7843
+ - uid: 20513
components:
- type: Transform
- pos: -142.5,-38.5
+ pos: -142.5,-48.5
parent: 2
- proto: ClosetChefFilled
entities:
@@ -64133,11 +64148,6 @@ entities:
- type: Transform
pos: -104.5,24.5
parent: 2
- - uid: 4318
- components:
- - type: Transform
- pos: -127.5,-29.5
- parent: 2
- uid: 4319
components:
- type: Transform
@@ -64198,11 +64208,21 @@ entities:
- type: Transform
pos: -58.5,2.5
parent: 2
+ - uid: 14771
+ components:
+ - type: Transform
+ pos: -142.5,-40.5
+ parent: 2
- uid: 17069
components:
- type: Transform
pos: -36.5,-69.5
parent: 2
+ - uid: 17200
+ components:
+ - type: Transform
+ pos: -75.5,-60.5
+ parent: 2
- uid: 20398
components:
- type: Transform
@@ -64228,11 +64248,6 @@ entities:
- type: Transform
pos: -76.5,-9.5
parent: 2
- - uid: 23395
- components:
- - type: Transform
- pos: -97.5,4.5
- parent: 2
- uid: 23919
components:
- type: Transform
@@ -64265,15 +64280,15 @@ entities:
- type: Transform
pos: -134.5,-18.5
parent: 2
- - uid: 4661
+ - uid: 11128
components:
- type: Transform
- pos: -128.5,-29.5
+ pos: -139.5,-51.5
parent: 2
- - uid: 11128
+ - uid: 11164
components:
- type: Transform
- pos: -139.5,-51.5
+ pos: -75.5,-61.5
parent: 2
- proto: ClosetFire
entities:
@@ -64299,11 +64314,6 @@ entities:
- type: Transform
pos: -134.5,-19.5
parent: 2
- - uid: 4662
- components:
- - type: Transform
- pos: -129.5,-29.5
- parent: 2
- uid: 5537
components:
- type: Transform
@@ -64314,6 +64324,11 @@ entities:
- type: Transform
pos: -115.5,-8.5
parent: 2
+ - uid: 6796
+ components:
+ - type: Transform
+ pos: -142.5,-38.5
+ parent: 2
- uid: 9325
components:
- type: Transform
@@ -64357,15 +64372,15 @@ entities:
- type: Transform
pos: -14.5,7.5
parent: 2
- - uid: 17093
+ - uid: 16794
components:
- type: Transform
- pos: -68.5,-64.5
+ pos: -112.5,-26.5
parent: 2
- - uid: 17101
+ - uid: 18628
components:
- type: Transform
- pos: -74.5,-61.5
+ pos: -75.5,-62.5
parent: 2
- uid: 18828
components:
@@ -64418,10 +64433,10 @@ entities:
parent: 2
- proto: ClosetL3ScienceFilled
entities:
- - uid: 5998
+ - uid: 14783
components:
- type: Transform
- pos: -142.5,-39.5
+ pos: -142.5,-47.5
parent: 2
- proto: ClosetL3SecurityFilled
entities:
@@ -64444,6 +64459,11 @@ entities:
parent: 2
- proto: ClosetMaintenanceFilledRandom
entities:
+ - uid: 991
+ components:
+ - type: Transform
+ pos: -68.5,-79.5
+ parent: 2
- uid: 1512
components:
- type: Transform
@@ -64469,21 +64489,11 @@ entities:
- type: Transform
pos: -139.5,-54.5
parent: 2
- - uid: 4820
- components:
- - type: Transform
- pos: -67.5,-78.5
- parent: 2
- uid: 8817
components:
- type: Transform
pos: -10.5,-40.5
parent: 2
- - uid: 8842
- components:
- - type: Transform
- pos: -73.5,-34.5
- parent: 2
- uid: 9083
components:
- type: Transform
@@ -64494,6 +64504,11 @@ entities:
- type: Transform
pos: -16.5,4.5
parent: 2
+ - uid: 9240
+ components:
+ - type: Transform
+ pos: -61.5,-64.5
+ parent: 2
- uid: 10082
components:
- type: Transform
@@ -64514,6 +64529,11 @@ entities:
- type: Transform
pos: -14.5,-64.5
parent: 2
+ - uid: 18687
+ components:
+ - type: Transform
+ pos: -73.5,-37.5
+ parent: 2
- uid: 19034
components:
- type: Transform
@@ -64554,25 +64574,25 @@ entities:
- type: Transform
pos: -14.5,2.5
parent: 2
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 7844
+ - uid: 26198
components:
- type: Transform
- pos: -142.5,-40.5
+ pos: -73.5,-34.5
parent: 2
-- proto: ClosetSteelBase
+- proto: ClosetRadiationSuitFilled
entities:
- - uid: 4151
+ - uid: 14774
components:
- type: Transform
- pos: -19.5,-48.5
+ pos: -142.5,-46.5
parent: 2
- - uid: 4153
+ - uid: 19097
components:
- type: Transform
- pos: -19.5,-52.5
+ pos: -125.5,-24.5
parent: 2
+- proto: ClosetSteelBase
+ entities:
- uid: 9728
components:
- type: Transform
@@ -64608,6 +64628,16 @@ entities:
showEnts: False
occludes: True
ent: null
+ - uid: 10719
+ components:
+ - type: Transform
+ pos: -18.5,-54.5
+ parent: 2
+ - uid: 13745
+ components:
+ - type: Transform
+ pos: -18.5,-50.5
+ parent: 2
- uid: 26157
components:
- type: Transform
@@ -64678,16 +64708,6 @@ entities:
- type: Transform
pos: -124.5,-58.5
parent: 2
- - uid: 20734
- components:
- - type: Transform
- pos: -70.5,-64.5
- parent: 2
- - uid: 22342
- components:
- - type: Transform
- pos: -118.5,-28.5
- parent: 2
- uid: 23254
components:
- type: Transform
@@ -64708,6 +64728,23 @@ entities:
- type: Transform
pos: -119.5,36.5
parent: 2
+- proto: ClosetWallOrange
+ entities:
+ - uid: 8987
+ components:
+ - type: Transform
+ pos: -99.5,-25.5
+ parent: 2
+ - uid: 16405
+ components:
+ - type: Transform
+ pos: -99.5,-21.5
+ parent: 2
+ - uid: 16459
+ components:
+ - type: Transform
+ pos: -99.5,-29.5
+ parent: 2
- proto: ClothingBackpackDuffelSurgeryFilled
entities:
- uid: 3894
@@ -64774,17 +64811,17 @@ entities:
parent: 2
- proto: ClothingHandsGlovesBoxingBlue
entities:
- - uid: 1706
+ - uid: 18615
components:
- type: Transform
- pos: -57.5,-72.5
+ pos: -49.440575,-73.53511
parent: 2
- proto: ClothingHandsGlovesBoxingRed
entities:
- - uid: 3965
+ - uid: 18616
components:
- type: Transform
- pos: -60.5,-69.5
+ pos: -52.471825,-70.581985
parent: 2
- proto: ClothingHandsGlovesColorYellow
entities:
@@ -64793,17 +64830,49 @@ entities:
- type: Transform
pos: -26.49561,-5.6866364
parent: 2
- - uid: 23452
+ - uid: 4687
components:
- type: Transform
- pos: -67.5,-69.5
+ rot: 6.283185307179586 rad
+ pos: -112.52703,-33.284325
+ parent: 2
+ - uid: 9643
+ components:
+ - type: Transform
+ pos: -131.63904,-5.5664
+ parent: 2
+ - uid: 18219
+ components:
+ - type: Transform
+ pos: -131.46716,-5.28515
+ parent: 2
+- proto: ClothingHandsGlovesCombat
+ entities:
+ - uid: 24004
+ components:
+ - type: Transform
+ pos: -131.53043,-18.302956
+ parent: 2
+- proto: ClothingHandsGlovesConducting
+ entities:
+ - uid: 22989
+ components:
+ - type: Transform
+ pos: -68.491066,-70.45232
+ parent: 2
+- proto: ClothingHandsTacticalMaidGloves
+ entities:
+ - uid: 18949
+ components:
+ - type: Transform
+ pos: -77.53495,-38.737625
parent: 2
- proto: ClothingHeadFishCap
entities:
- - uid: 3305
+ - uid: 22287
components:
- type: Transform
- pos: -71.51768,-42.386246
+ pos: -70.57546,-42.33612
parent: 2
- proto: ClothingHeadHatCone
entities:
@@ -64825,17 +64894,17 @@ entities:
- uid: 22979
components:
- type: Transform
- pos: -120.50319,-28.503174
+ pos: -120.7869,-28.483788
parent: 2
- uid: 22980
components:
- type: Transform
- pos: -119.643814,-28.300049
+ pos: -119.982414,-28.344303
parent: 2
- uid: 22981
components:
- type: Transform
- pos: -118.95027,-28.066614
+ pos: -119.21679,-28.188053
parent: 2
- proto: ClothingHeadHatPirate
entities:
@@ -64844,6 +64913,13 @@ entities:
- type: Transform
pos: -24.954203,-70.19411
parent: 2
+- proto: ClothingHeadHatTacticalMaidHeadband
+ entities:
+ - uid: 18941
+ components:
+ - type: Transform
+ pos: -77.5037,-38.19075
+ parent: 2
- proto: ClothingHeadHatUshanka
entities:
- uid: 11625
@@ -64851,15 +64927,39 @@ entities:
- type: Transform
pos: -23.908735,4.571392
parent: 2
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 14777
+ components:
+ - type: Transform
+ pos: -82.23979,-22.63572
+ parent: 2
+ - uid: 22120
+ components:
+ - type: Transform
+ pos: -82.27104,-22.26072
+ parent: 2
- proto: ClothingMaskGasAtmos
entities:
- uid: 18813
components:
- type: Transform
- pos: -116.44845,12.663849
+ pos: -116.47996,12.489793
+ parent: 2
+- proto: ClothingNeckCloakLesbian
+ entities:
+ - uid: 22951
+ components:
+ - type: Transform
+ pos: -24.48211,-68.415665
parent: 2
- proto: ClothingNeckGoldAutismPin
entities:
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: -21.527897,-69.71385
+ parent: 2
- uid: 9590
components:
- type: Transform
@@ -64881,6 +64981,48 @@ entities:
- type: Transform
pos: -97.616005,-43.298306
parent: 2
+- proto: ClothingNeckScarfStripedSyndieGreen
+ entities:
+ - uid: 2415
+ components:
+ - type: Transform
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingNeckScarfStripedSyndieRed
+ entities:
+ - uid: 2493
+ components:
+ - type: Transform
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterArmorBulletproof
+ entities:
+ - uid: 25881
+ components:
+ - type: Transform
+ pos: -82.45854,-21.33808
+ parent: 2
+ - uid: 25882
+ components:
+ - type: Transform
+ pos: -82.47417,-21.697454
+ parent: 2
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 14730
+ components:
+ - type: Transform
+ pos: -82.25542,-22.745094
+ parent: 2
+ - uid: 14987
+ components:
+ - type: Transform
+ pos: -82.23979,-22.432594
+ parent: 2
- proto: ClothingOuterCoatPirate
entities:
- uid: 24562
@@ -64888,6 +65030,18 @@ entities:
- type: Transform
pos: -24.922953,-70.55348
parent: 2
+- proto: ClothingOuterVestHazard
+ entities:
+ - uid: 25848
+ components:
+ - type: Transform
+ pos: -107.49455,-15.437063
+ parent: 2
+ - uid: 25991
+ components:
+ - type: Transform
+ pos: -107.47893,-15.437063
+ parent: 2
- proto: ClothingOuterWinterEngi
entities:
- uid: 12180
@@ -64895,6 +65049,13 @@ entities:
- type: Transform
pos: -86.49207,-7.485811
parent: 2
+- proto: ClothingShoesBootsCombatFilled
+ entities:
+ - uid: 23784
+ components:
+ - type: Transform
+ pos: -127.52387,-21.458458
+ parent: 2
- proto: ClothingShoesBootsMag
entities:
- uid: 24375
@@ -64930,32 +65091,77 @@ entities:
parent: 2
- proto: ClothingUniformJumpskirtJanimaidmini
entities:
- - uid: 1859
+ - uid: 9655
components:
- type: Transform
- pos: -15.489,17.553165
+ parent: 9728
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 10121
+ components:
+ - type: Transform
+ pos: -81.46719,-67.41165
parent: 2
- - uid: 9655
+- proto: ClothingUniformJumpskirtOperative
+ entities:
+ - uid: 2423
components:
- type: Transform
- parent: 9728
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtSyndieFormalDress
+ entities:
+ - uid: 2480
+ components:
+ - type: Transform
+ parent: 2411
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingUniformJumpskirtTacticalMaid
+ entities:
+ - uid: 23270
+ components:
+ - type: Transform
+ pos: -77.47245,-38.472
+ parent: 2
- proto: ClothingUniformJumpsuitJournalist
entities:
- - uid: 16015
+ - uid: 20528
components:
- type: Transform
- pos: -109.5954,-33.615555
+ rot: 6.283185307179586 rad
+ pos: -99.355385,0.6056731
parent: 2
+- proto: ClothingUniformJumpsuitOperative
+ entities:
+ - uid: 2501
+ components:
+ - type: Transform
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ClothingUniformJumpsuitReporter
entities:
- - uid: 16014
+ - uid: 874
components:
- type: Transform
- pos: -109.43915,-33.53743
+ rot: 6.283185307179586 rad
+ pos: -99.605385,0.49629807
parent: 2
+- proto: ClothingUniformJumpsuitSyndieFormal
+ entities:
+ - uid: 2432
+ components:
+ - type: Transform
+ parent: 2411
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: ComfyChair
entities:
- uid: 1641
@@ -65039,6 +65245,13 @@ entities:
- type: Transform
pos: -118.489746,-74.612564
parent: 2
+- proto: CommsComputerCircuitboard
+ entities:
+ - uid: 4263
+ components:
+ - type: Transform
+ pos: -116.39651,-31.471237
+ parent: 2
- proto: ComputerAlert
entities:
- uid: 2505
@@ -65357,11 +65570,11 @@ entities:
parent: 2
- proto: ComputerMassMedia
entities:
- - uid: 15990
+ - uid: 1165
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -111.5,-31.5
+ pos: -98.5,-0.5
parent: 2
- proto: ComputerMedicalRecords
entities:
@@ -65518,6 +65731,13 @@ entities:
rot: 3.141592653589793 rad
pos: -133.5,-48.5
parent: 2
+- proto: ComputerSalvageExpedition
+ entities:
+ - uid: 22987
+ components:
+ - type: Transform
+ pos: -95.5,35.5
+ parent: 2
- proto: ComputerShuttleCargo
entities:
- uid: 2711
@@ -65610,11 +65830,11 @@ entities:
parent: 2
- proto: ComputerSurveillanceWirelessCameraMonitor
entities:
- - uid: 15991
+ - uid: 2621
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -111.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,1.5
parent: 2
- proto: ComputerTelevision
entities:
@@ -65624,12 +65844,6 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-53.5
parent: 2
- - uid: 6799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-47.5
- parent: 2
- uid: 8171
components:
- type: Transform
@@ -65653,6 +65867,17 @@ entities:
rot: 3.141592653589793 rad
pos: -50.5,-4.5
parent: 2
+ - uid: 15797
+ components:
+ - type: Transform
+ pos: -126.5,-42.5
+ parent: 2
+ - uid: 16690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-48.5
+ parent: 2
- uid: 22267
components:
- type: Transform
@@ -66085,6 +66310,12 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,35.5
parent: 2
+ - uid: 14781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,23.5
+ parent: 2
- uid: 14873
components:
- type: Transform
@@ -66169,11 +66400,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -109.5,24.5
parent: 2
- - uid: 22205
- components:
- - type: Transform
- pos: -100.5,23.5
- parent: 2
- uid: 23417
components:
- type: Transform
@@ -66392,6 +66618,11 @@ entities:
ent: null
- proto: CrateEngineeringCableBulk
entities:
+ - uid: 4802
+ components:
+ - type: Transform
+ pos: -110.5,-33.5
+ parent: 2
- uid: 15433
components:
- type: Transform
@@ -66426,22 +66657,19 @@ entities:
- type: Transform
pos: -32.5,-69.5
parent: 2
-- proto: CrateFilledSpawner
+- proto: CrateEngineeringSingularityCollector
entities:
- - uid: 609
- components:
- - type: Transform
- pos: -90.5,12.5
- parent: 2
- - uid: 1856
+ - uid: 22278
components:
- type: Transform
- pos: -21.5,-0.5
+ pos: -114.5,36.5
parent: 2
- - uid: 4357
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 609
components:
- type: Transform
- pos: -22.5,-0.5
+ pos: -90.5,12.5
parent: 2
- uid: 4648
components:
@@ -66576,16 +66804,16 @@ entities:
- type: Transform
pos: -126.5,-58.5
parent: 2
- - uid: 23466
+ - uid: 21499
components:
- type: Transform
- pos: -71.5,-46.5
+ pos: -70.5,-46.5
parent: 2
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 293.14673
+ temperature: 293.1465
moles:
- 1.7459903
- 6.568249
@@ -66610,6 +66838,43 @@ entities:
showEnts: False
occludes: True
ent: null
+ - uid: 24431
+ components:
+ - type: Transform
+ pos: -132.5,-26.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:
+ - 24438
+ - 24434
+ - 24433
+ - 24432
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateFunToyBox
entities:
- uid: 9711
@@ -66657,11 +66922,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 6250
- components:
- - type: Transform
- pos: -124.5,-24.5
- parent: 2
- uid: 8271
components:
- type: Transform
@@ -66687,11 +66947,40 @@ entities:
- type: Transform
pos: -63.5,-63.5
parent: 2
- - uid: 17089
+ - uid: 20514
components:
- type: Transform
- pos: -95.5,32.5
+ pos: -123.5,-24.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ 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:
+ - 6249
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- uid: 21255
components:
- type: Transform
@@ -66730,6 +67019,11 @@ entities:
parent: 2
- proto: CrateMaterialRandom
entities:
+ - uid: 23718
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
+ parent: 2
- uid: 26144
components:
- type: Transform
@@ -66883,12 +67177,19 @@ entities:
- type: Transform
pos: -46.5,-49.5
parent: 2
+- proto: CrewMonitoringComputerCircuitboard
+ entities:
+ - uid: 22690
+ components:
+ - type: Transform
+ pos: -116.64046,-31.738293
+ parent: 2
- proto: CrewMonitoringServer
entities:
- - uid: 10499
+ - uid: 21868
components:
- type: Transform
- pos: -86.5,1.5
+ pos: -84.5,2.5
parent: 2
- proto: Crowbar
entities:
@@ -66914,10 +67215,10 @@ entities:
parent: 2
- proto: CrowbarRed
entities:
- - uid: 23122
+ - uid: 22135
components:
- type: Transform
- pos: -55.319935,-68.58057
+ pos: -54.47556,-70.52867
parent: 2
- proto: CrowbarYellow
entities:
@@ -67088,6 +67389,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,-26.5
parent: 2
+- proto: DawInstrumentMachineCircuitboard
+ entities:
+ - uid: 25902
+ components:
+ - type: Transform
+ pos: -55.52777,-37.595306
+ parent: 2
- proto: DefaultStationBeacon
entities:
- uid: 18947
@@ -67268,7 +67576,7 @@ entities:
parent: 2
- proto: DefaultStationBeaconCryosleep
entities:
- - uid: 24676
+ - uid: 6690
components:
- type: Transform
pos: -70.5,-20.5
@@ -67280,6 +67588,13 @@ entities:
- type: Transform
pos: -97.5,-39.5
parent: 2
+- proto: DefaultStationBeaconDisposals
+ entities:
+ - uid: 9625
+ components:
+ - type: Transform
+ pos: -100.5,22.5
+ parent: 2
- proto: DefaultStationBeaconDorms
entities:
- uid: 22166
@@ -67289,20 +67604,38 @@ entities:
parent: 2
- proto: DefaultStationBeaconEngineering
entities:
- - uid: 3522
+ - uid: 6798
components:
- type: Transform
- pos: -95.5,-2.5
+ pos: -93.5,-5.5
parent: 2
- type: NavMapBeacon
text: 'Plasma Pit #045'
- type: WarpPoint
location: 'Plasma Pit #045'
+ - uid: 9528
+ components:
+ - type: Transform
+ pos: -111.5,-31.5
+ parent: 2
+ - type: NavMapBeacon
+ text: Tech Storage
+ - type: WarpPoint
+ location: Tech Storage
- uid: 12927
components:
- type: Transform
pos: -112.5,-16.5
parent: 2
+ - uid: 16105
+ components:
+ - type: Transform
+ pos: -89.5,-65.5
+ parent: 2
+ - type: NavMapBeacon
+ text: 'Plasma Pit #046'
+ - type: WarpPoint
+ location: 'Plasma Pit #046'
- proto: DefaultStationBeaconEscapePod
entities:
- uid: 4563
@@ -67422,13 +67755,6 @@ entities:
- type: Transform
pos: -43.5,-36.5
parent: 2
-- proto: DefaultStationBeaconPermaBrig
- entities:
- - uid: 22181
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- proto: DefaultStationBeaconPowerBank
entities:
- uid: 18948
@@ -67450,6 +67776,13 @@ entities:
- type: Transform
pos: -133.5,-46.5
parent: 2
+- proto: DefaultStationBeaconReporter
+ entities:
+ - uid: 16223
+ components:
+ - type: Transform
+ pos: -97.5,1.5
+ parent: 2
- proto: DefaultStationBeaconRND
entities:
- uid: 22185
@@ -67492,17 +67825,6 @@ entities:
- type: Transform
pos: -24.5,6.5
parent: 2
-- proto: DefaultStationBeaconService
- entities:
- - uid: 8596
- components:
- - type: Transform
- pos: -110.5,-31.5
- parent: 2
- - type: NavMapBeacon
- text: Newsroom
- - type: WarpPoint
- location: Newsroom
- proto: DefaultStationBeaconSolars
entities:
- uid: 1843
@@ -67604,11 +67926,11 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,-41.5
parent: 2
- - uid: 9176
+ - uid: 13768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-33.5
parent: 2
- proto: DeployableBarrier
entities:
@@ -67617,21 +67939,6 @@ entities:
- type: Transform
pos: -77.5,-27.5
parent: 2
- - uid: 17791
- components:
- - type: Transform
- pos: -92.5,-35.5
- parent: 2
- - uid: 17792
- components:
- - type: Transform
- pos: -93.5,-35.5
- parent: 2
- - uid: 17793
- components:
- - type: Transform
- pos: -94.5,-35.5
- parent: 2
- uid: 20191
components:
- type: Transform
@@ -67642,6 +67949,11 @@ entities:
- type: Transform
pos: -24.5,1.5
parent: 2
+ - uid: 20526
+ components:
+ - type: Transform
+ pos: -94.5,-35.5
+ parent: 2
- proto: DeskBell
entities:
- uid: 2942
@@ -67654,6 +67966,56 @@ entities:
- type: Transform
pos: -92.52145,-24.442335
parent: 2
+ - uid: 22985
+ components:
+ - type: Transform
+ pos: -99.95677,12.58157
+ parent: 2
+ - uid: 22986
+ components:
+ - type: Transform
+ pos: -93.50802,-18.397871
+ parent: 2
+ - uid: 26229
+ components:
+ - type: Transform
+ pos: -109.466736,-13.371529
+ parent: 2
+ - uid: 26230
+ components:
+ - type: Transform
+ pos: -119.46937,-42.42088
+ parent: 2
+ - uid: 26231
+ components:
+ - type: Transform
+ pos: -121.45374,-48.454586
+ parent: 2
+ - uid: 26232
+ components:
+ - type: Transform
+ pos: -56.468803,-29.385876
+ parent: 2
+ - uid: 26233
+ components:
+ - type: Transform
+ pos: -56.531303,-21.472557
+ parent: 2
+ - uid: 26234
+ components:
+ - type: Transform
+ pos: -37.491085,-16.41949
+ parent: 2
+ - uid: 26235
+ components:
+ - type: Transform
+ pos: -37.53796,-26.494999
+ parent: 2
+ - uid: 26236
+ components:
+ - type: Transform
+ pos: -20.523346,-4.445061
+ parent: 2
- proto: DiseaseDiagnoser
entities:
- uid: 4173
@@ -67772,7 +68134,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,-16.5
+ pos: -111.5,-16.5
parent: 2
- uid: 6363
components:
@@ -67835,11 +68197,6 @@ entities:
- type: Transform
pos: -121.5,-40.5
parent: 2
- - uid: 7674
- components:
- - type: Transform
- pos: -101.5,13.5
- parent: 2
- uid: 7873
components:
- type: Transform
@@ -68136,23 +68493,6 @@ entities:
- type: Transform
pos: -21.5,-19.5
parent: 2
- - uid: 14203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,-9.5
- parent: 2
- - uid: 14245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,-15.5
- parent: 2
- - uid: 14274
- components:
- - type: Transform
- pos: -98.5,-9.5
- parent: 2
- uid: 14305
components:
- type: Transform
@@ -68250,12 +68590,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-5.5
parent: 2
- - uid: 14753
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,-11.5
- parent: 2
- uid: 14760
components:
- type: Transform
@@ -68279,12 +68613,68 @@ entities:
rot: 1.5707963267948966 rad
pos: -76.5,-14.5
parent: 2
+ - uid: 14852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-9.5
+ parent: 2
+ - uid: 14853
+ components:
+ - type: Transform
+ pos: -97.5,-9.5
+ parent: 2
- uid: 14874
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -104.5,26.5
parent: 2
+ - uid: 15008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,11.5
+ parent: 2
+ - uid: 15013
+ components:
+ - type: Transform
+ pos: -102.5,13.5
+ parent: 2
+ - uid: 15016
+ components:
+ - type: Transform
+ pos: -103.5,11.5
+ parent: 2
+ - uid: 15054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-15.5
+ parent: 2
+ - uid: 15057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-8.5
+ parent: 2
+ - uid: 15062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-16.5
+ parent: 2
+ - uid: 15064
+ components:
+ - type: Transform
+ pos: -101.5,-8.5
+ parent: 2
+ - uid: 15100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-11.5
+ parent: 2
- uid: 15281
components:
- type: Transform
@@ -68409,11 +68799,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-63.5
parent: 2
- - uid: 22803
+ - uid: 22568
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-16.5
parent: 2
- uid: 23170
components:
@@ -68432,26 +68822,14 @@ entities:
- type: Transform
pos: -102.5,26.5
parent: 2
- - uid: 25905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-52.5
- parent: 2
- - uid: 25906
+ - uid: 24832
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -75.5,-52.5
+ pos: -15.5,-59.5
parent: 2
- proto: DisposalJunction
entities:
- - uid: 3748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-13.5
- parent: 2
- uid: 4549
components:
- type: Transform
@@ -68557,12 +68935,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -87.5,-27.5
parent: 2
- - uid: 15937
+ - uid: 14974
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -105.5,25.5
parent: 2
+ - uid: 22503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,5.5
+ parent: 2
- proto: DisposalJunctionFlipped
entities:
- uid: 3746
@@ -68735,24 +69119,8 @@ entities:
rot: -1.5707963267948966 rad
pos: -55.5,-56.5
parent: 2
- - uid: 22388
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-39.5
- parent: 2
- proto: DisposalPipe
entities:
- - uid: 444
- components:
- - type: Transform
- pos: -105.5,7.5
- parent: 2
- - uid: 460
- components:
- - type: Transform
- pos: -105.5,6.5
- parent: 2
- uid: 499
components:
- type: Transform
@@ -68807,18 +69175,6 @@ entities:
rot: 3.141592653589793 rad
pos: -107.5,27.5
parent: 2
- - uid: 2145
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-12.5
- parent: 2
- - uid: 2159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-11.5
- parent: 2
- uid: 2455
components:
- type: Transform
@@ -68874,12 +69230,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-15.5
parent: 2
- - uid: 2663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-15.5
- parent: 2
- uid: 2664
components:
- type: Transform
@@ -68892,6 +69242,30 @@ entities:
rot: -1.5707963267948966 rad
pos: -98.5,-15.5
parent: 2
+ - uid: 2990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-56.5
+ parent: 2
+ - uid: 3010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-56.5
+ parent: 2
+ - uid: 3305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-56.5
+ parent: 2
+ - uid: 3307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-56.5
+ parent: 2
- uid: 3706
components:
- type: Transform
@@ -68908,6 +69282,12 @@ entities:
- type: Transform
pos: -94.5,11.5
parent: 2
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-9.5
+ parent: 2
- uid: 4578
components:
- type: Transform
@@ -69328,7 +69708,13 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -112.5,-15.5
+ pos: -111.5,-15.5
+ parent: 2
+ - uid: 6357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-16.5
parent: 2
- uid: 6358
components:
@@ -70163,12 +70549,6 @@ entities:
- type: Transform
pos: -103.5,-0.5
parent: 2
- - uid: 7755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,13.5
- parent: 2
- uid: 7782
components:
- type: Transform
@@ -70277,6 +70657,18 @@ entities:
rot: 3.141592653589793 rad
pos: -119.5,-48.5
parent: 2
+ - uid: 7899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,6.5
+ parent: 2
+ - uid: 7900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,7.5
+ parent: 2
- uid: 7982
components:
- type: Transform
@@ -70508,16 +70900,23 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,23.5
parent: 2
+ - uid: 8982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,8.5
+ parent: 2
- uid: 9152
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -38.5,-49.5
parent: 2
- - uid: 9158
+ - uid: 9203
components:
- type: Transform
- pos: -105.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,9.5
parent: 2
- uid: 9581
components:
@@ -71624,18 +72023,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -70.5,-56.5
parent: 2
- - uid: 10860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-56.5
- parent: 2
- - uid: 10861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-56.5
- parent: 2
- uid: 10865
components:
- type: Transform
@@ -72186,12 +72573,6 @@ entities:
- type: Transform
pos: -61.5,-7.5
parent: 2
- - uid: 11054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-56.5
- parent: 2
- uid: 11126
components:
- type: Transform
@@ -72239,11 +72620,6 @@ entities:
- type: Transform
pos: -129.5,-50.5
parent: 2
- - uid: 11281
- components:
- - type: Transform
- pos: -105.5,9.5
- parent: 2
- uid: 11293
components:
- type: Transform
@@ -72784,46 +73160,23 @@ entities:
- type: Transform
pos: -125.5,23.5
parent: 2
- - uid: 14202
+ - uid: 13838
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -104.5,-10.5
- parent: 2
- - uid: 14204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -103.5,-9.5
- parent: 2
- - uid: 14205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-9.5
+ pos: -102.5,-13.5
parent: 2
- - uid: 14207
+ - uid: 13882
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -103.5,-15.5
- parent: 2
- - uid: 14208
- components:
- - type: Transform
- pos: -104.5,-14.5
- parent: 2
- - uid: 14209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,-13.5
+ pos: -103.5,-11.5
parent: 2
- - uid: 14210
+ - uid: 13885
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -104.5,-12.5
+ pos: -102.5,-12.5
parent: 2
- uid: 14212
components:
@@ -72959,12 +73312,6 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,-21.5
parent: 2
- - uid: 14243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-16.5
- parent: 2
- uid: 14244
components:
- type: Transform
@@ -72977,12 +73324,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -90.5,-11.5
parent: 2
- - uid: 14247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,9.5
- parent: 2
- uid: 14248
components:
- type: Transform
@@ -72995,18 +73336,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-15.5
parent: 2
- - uid: 14251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-9.5
- parent: 2
- - uid: 14252
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,11.5
- parent: 2
- uid: 14253
components:
- type: Transform
@@ -73025,11 +73354,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -86.5,-11.5
parent: 2
- - uid: 14256
- components:
- - type: Transform
- pos: -98.5,-10.5
- parent: 2
- uid: 14257
components:
- type: Transform
@@ -73054,24 +73378,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,-11.5
parent: 2
- - uid: 14261
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,-11.5
- parent: 2
- - uid: 14262
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,-11.5
- parent: 2
- - uid: 14263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-9.5
- parent: 2
- uid: 14270
components:
- type: Transform
@@ -73084,6 +73390,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -99.5,-15.5
parent: 2
+ - uid: 14274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,10.5
+ parent: 2
- uid: 14302
components:
- type: Transform
@@ -74048,149 +74360,150 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
- - uid: 14764
+ - uid: 14832
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,10.5
+ pos: -102.5,11.5
parent: 2
- - uid: 14765
+ - uid: 14839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,3.5
+ pos: -102.5,10.5
parent: 2
- - uid: 14766
+ - uid: 14845
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -104.5,-11.5
parent: 2
- - uid: 14767
+ - uid: 14882
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -115.5,-22.5
parent: 2
- - uid: 14768
+ - uid: 14969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-13.5
parent: 2
- - uid: 14769
+ - uid: 15004
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,11.5
parent: 2
- - uid: 14770
+ - uid: 15007
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-41.5
parent: 2
- - uid: 14771
+ - uid: 15058
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -101.5,6.5
+ pos: -102.5,-14.5
parent: 2
- - uid: 14772
+ - uid: 15063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,0.5
+ pos: -102.5,-0.5
parent: 2
- - uid: 14773
+ - uid: 15065
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,7.5
+ pos: -102.5,1.5
parent: 2
- - uid: 14774
+ - uid: 15067
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-9.5
parent: 2
- - uid: 14775
+ - uid: 15070
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,5.5
parent: 2
- - uid: 14776
+ - uid: 15086
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -101.5,-7.5
+ pos: -110.5,23.5
parent: 2
- - uid: 14777
+ - uid: 15102
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-9.5
parent: 2
- - uid: 14778
+ - uid: 15109
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-4.5
+ pos: -102.5,0.5
parent: 2
- - uid: 14779
+ - uid: 15160
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-3.5
+ pos: -102.5,-5.5
parent: 2
- - uid: 14780
+ - uid: 15201
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-2.5
+ pos: -102.5,4.5
parent: 2
- - uid: 14781
+ - uid: 15227
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-1.5
+ pos: -102.5,-7.5
parent: 2
- - uid: 14782
+ - uid: 15228
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-0.5
+ pos: -102.5,-6.5
parent: 2
- - uid: 14783
+ - uid: 15229
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,12.5
+ pos: -102.5,-4.5
parent: 2
- - uid: 14882
+ - uid: 15230
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -115.5,-22.5
+ pos: -102.5,-3.5
parent: 2
- - uid: 15007
+ - uid: 15231
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-41.5
+ pos: -102.5,2.5
parent: 2
- - uid: 15070
+ - uid: 15232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,5.5
+ pos: -102.5,-2.5
parent: 2
- - uid: 15086
+ - uid: 15233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -110.5,23.5
+ pos: -102.5,-1.5
+ parent: 2
+ - uid: 15238
+ components:
+ - type: Transform
+ pos: -102.5,5.5
+ parent: 2
+ - uid: 15241
+ components:
+ - type: Transform
+ pos: -102.5,12.5
+ parent: 2
+ - uid: 15242
+ components:
+ - type: Transform
+ pos: -102.5,3.5
parent: 2
- uid: 15272
components:
@@ -74323,15 +74636,10 @@ entities:
rot: 3.141592653589793 rad
pos: -110.5,22.5
parent: 2
- - uid: 15622
- components:
- - type: Transform
- pos: -105.5,8.5
- parent: 2
- uid: 15626
components:
- type: Transform
- pos: -105.5,10.5
+ pos: -102.5,-10.5
parent: 2
- uid: 15889
components:
@@ -74447,43 +74755,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -131.5,22.5
parent: 2
- - uid: 16151
- components:
- - type: Transform
- pos: -75.5,-40.5
- parent: 2
- - uid: 16166
- components:
- - type: Transform
- pos: -75.5,-43.5
- parent: 2
- - uid: 16187
- components:
- - type: Transform
- pos: -75.5,-41.5
- parent: 2
- - uid: 16188
- components:
- - type: Transform
- pos: -75.5,-42.5
- parent: 2
- uid: 16263
components:
- type: Transform
pos: -64.5,-27.5
parent: 2
- - uid: 16401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-56.5
- parent: 2
- - uid: 16402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-56.5
- parent: 2
- uid: 16406
components:
- type: Transform
@@ -74496,6 +74772,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -72.5,-56.5
parent: 2
+ - uid: 17125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-56.5
+ parent: 2
- uid: 17244
components:
- type: Transform
@@ -74587,12 +74869,6 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,25.5
parent: 2
- - uid: 19622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,5.5
- parent: 2
- uid: 19625
components:
- type: Transform
@@ -74616,6 +74892,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -33.5,-49.5
parent: 2
+ - uid: 20535
+ components:
+ - type: Transform
+ pos: -102.5,6.5
+ parent: 2
+ - uid: 20541
+ components:
+ - type: Transform
+ pos: -102.5,7.5
+ parent: 2
+ - uid: 20552
+ components:
+ - type: Transform
+ pos: -102.5,8.5
+ parent: 2
- uid: 20999
components:
- type: Transform
@@ -75567,6 +75858,12 @@ entities:
- type: Transform
pos: -42.5,-60.5
parent: 2
+ - uid: 22132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-10.5
+ parent: 2
- uid: 22238
components:
- type: Transform
@@ -75577,15 +75874,10 @@ entities:
- type: Transform
pos: -102.5,-25.5
parent: 2
- - uid: 22802
- components:
- - type: Transform
- pos: -75.5,-50.5
- parent: 2
- - uid: 22804
+ - uid: 23221
components:
- type: Transform
- pos: -75.5,-49.5
+ pos: -102.5,9.5
parent: 2
- uid: 23244
components:
@@ -75599,6 +75891,12 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,24.5
parent: 2
+ - uid: 23460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-11.5
+ parent: 2
- uid: 23511
components:
- type: Transform
@@ -75634,107 +75932,59 @@ entities:
rot: 3.141592653589793 rad
pos: -103.5,-22.5
parent: 2
- - uid: 25461
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-25.5
- parent: 2
- - uid: 25462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-25.5
- parent: 2
- - uid: 25863
- components:
- - type: Transform
- pos: -75.5,-44.5
- parent: 2
- - uid: 25869
- components:
- - type: Transform
- pos: -75.5,-51.5
- parent: 2
- - uid: 25889
- components:
- - type: Transform
- pos: -75.5,-45.5
- parent: 2
- - uid: 25890
- components:
- - type: Transform
- pos: -75.5,-46.5
- parent: 2
- - uid: 25891
- components:
- - type: Transform
- pos: -75.5,-47.5
- parent: 2
- - uid: 25892
- components:
- - type: Transform
- pos: -75.5,-48.5
- parent: 2
- - uid: 25893
- components:
- - type: Transform
- pos: -76.5,-51.5
- parent: 2
- - uid: 25894
- components:
- - type: Transform
- pos: -76.5,-50.5
- parent: 2
- - uid: 25895
- components:
- - type: Transform
- pos: -76.5,-49.5
- parent: 2
- - uid: 25896
+ - uid: 24824
components:
- type: Transform
- pos: -76.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-59.5
parent: 2
- - uid: 25897
+ - uid: 24826
components:
- type: Transform
- pos: -76.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-59.5
parent: 2
- - uid: 25898
+ - uid: 24827
components:
- type: Transform
- pos: -76.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-59.5
parent: 2
- - uid: 25899
+ - uid: 24828
components:
- type: Transform
- pos: -76.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-59.5
parent: 2
- - uid: 25900
+ - uid: 24829
components:
- type: Transform
- pos: -76.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-58.5
parent: 2
- - uid: 25901
+ - uid: 24830
components:
- type: Transform
- pos: -76.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-57.5
parent: 2
- - uid: 25902
+ - uid: 24831
components:
- type: Transform
- pos: -76.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-56.5
parent: 2
- - uid: 25903
+ - uid: 25461
components:
- type: Transform
- pos: -76.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-25.5
parent: 2
- - uid: 25904
+ - uid: 25462
components:
- type: Transform
- pos: -76.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-25.5
parent: 2
- proto: DisposalPipeBroken
entities:
@@ -75768,33 +76018,6 @@ entities:
- Science
- proto: DisposalRouterFlipped
entities:
- - uid: 7751
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,-11.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Engineering
- - uid: 14206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-15.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Science
- - uid: 14272
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,-9.5
- parent: 2
- - type: DisposalRouter
- tags:
- - Cargo
- uid: 14320
components:
- type: Transform
@@ -75856,6 +76079,33 @@ entities:
- type: DisposalRouter
tags:
- Nerd
+ - uid: 15011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-15.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Science
+ - uid: 15055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-11.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Engineering
+ - uid: 15225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-9.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Cargo
- proto: DisposalTagger
entities:
- uid: 11775
@@ -75892,11 +76142,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -115.5,-0.5
parent: 2
- - uid: 6357
- components:
- - type: Transform
- pos: -112.5,-14.5
- parent: 2
- uid: 6371
components:
- type: Transform
@@ -76212,6 +76457,11 @@ entities:
rot: 3.141592653589793 rad
pos: -32.5,-50.5
parent: 2
+ - uid: 23893
+ components:
+ - type: Transform
+ pos: -111.5,-14.5
+ parent: 2
- proto: DisposalUnit
entities:
- uid: 696
@@ -76304,11 +76554,6 @@ entities:
- type: Transform
pos: -118.5,-50.5
parent: 2
- - uid: 9057
- components:
- - type: Transform
- pos: -102.5,24.5
- parent: 2
- uid: 9224
components:
- type: Transform
@@ -76502,15 +76747,15 @@ entities:
parent: 2
- proto: DonkpocketBoxSpawner
entities:
- - uid: 7627
+ - uid: 9150
components:
- type: Transform
- pos: -126.5,-42.5
+ pos: -34.5,-50.5
parent: 2
- - uid: 9150
+ - uid: 18268
components:
- type: Transform
- pos: -34.5,-50.5
+ pos: -125.5,-42.5
parent: 2
- uid: 18986
components:
@@ -76635,17 +76880,27 @@ entities:
parent: 2
- proto: DrinkBeerCan
entities:
- - uid: 26056
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: -91.5,-61.5
+ parent: 2
+ - uid: 24439
components:
- type: Transform
- pos: -93.52491,-61.357502
+ pos: -129.67844,-28.442205
+ parent: 2
+ - uid: 24448
+ components:
+ - type: Transform
+ pos: -129.38156,-28.58283
parent: 2
- proto: DrinkCanPack
entities:
- uid: 23495
components:
- type: Transform
- parent: 23466
+ parent: 21499
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -76903,6 +77158,58 @@ entities:
rot: -1.5707963267948966 rad
pos: -114.5,5.5
parent: 2
+ - uid: 24306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-33.5
+ parent: 2
+ - uid: 24307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-34.5
+ parent: 2
+ - uid: 24308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-38.5
+ parent: 2
+ - uid: 24310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-58.5
+ parent: 2
+ - uid: 24311
+ components:
+ - type: Transform
+ pos: -110.5,-43.5
+ parent: 2
+ - uid: 24313
+ components:
+ - type: Transform
+ pos: -132.5,-37.5
+ parent: 2
+ - uid: 24315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -123.5,-53.5
+ parent: 2
+ - uid: 24316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-50.5
+ parent: 2
+ - uid: 24317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-40.5
+ parent: 2
- proto: ExtinguisherCabinetFilled
entities:
- uid: 3936
@@ -76928,6 +77235,29 @@ entities:
rot: 3.141592653589793 rad
pos: -11.5,-21.5
parent: 2
+ - uid: 20952
+ components:
+ - type: Transform
+ pos: -116.5,-13.5
+ parent: 2
+ - uid: 23939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,-23.5
+ parent: 2
+ - uid: 24321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -135.5,-6.5
+ parent: 2
+ - uid: 24354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -135.5,-15.5
+ parent: 2
- proto: FaxMachineBase
entities:
- uid: 3
@@ -76941,6 +77271,11 @@ entities:
currentLabel: Chief Medical Officer
- type: NameModifier
baseName: long range fax machine
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: -96.5,-1.5
+ parent: 2
- uid: 3012
components:
- type: MetaData
@@ -76956,6 +77291,8 @@ entities:
- type: Transform
pos: -40.5,-20.5
parent: 2
+ - type: FaxMachine
+ name: Chemistry
- uid: 5738
components:
- type: MetaData
@@ -77012,11 +77349,6 @@ entities:
- type: FaxMachine
name: Lawyer
- type: Label
- - uid: 16028
- components:
- - type: Transform
- pos: -109.5,-29.5
- parent: 2
- uid: 17656
components:
- type: Transform
@@ -77102,14 +77434,11 @@ entities:
- uid: 22831
components:
- type: MetaData
- name: long range fax machine (Arrivals Checkpoint)
+ name: long range fax machine
- type: Transform
pos: -24.5,8.5
parent: 2
- type: Label
- currentLabel: Arrivals Checkpoint
- - type: NameModifier
- baseName: long range fax machine
- uid: 23251
components:
- type: MetaData
@@ -77151,6 +77480,13 @@ entities:
parent: 2
- type: FaxMachine
name: Bar
+ - uid: 25890
+ components:
+ - type: Transform
+ pos: -115.5,29.5
+ parent: 2
+ - type: FaxMachine
+ name: Clown
- proto: FaxMachineCaptain
entities:
- uid: 2865
@@ -77270,11 +77606,6 @@ entities:
- type: Transform
pos: -99.5,-41.5
parent: 2
- - uid: 24718
- components:
- - type: Transform
- pos: -74.5,-42.5
- parent: 2
- proto: filingCabinetTallRandom
entities:
- uid: 6294
@@ -77461,11 +77792,9 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 8961
- 8955
- 13485
- 19610
- - 8950
- uid: 13736
components:
- type: Transform
@@ -77553,6 +77882,27 @@ entities:
- 11809
- 23126
- 11802
+ - uid: 16688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-39.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 15855
+ - 15709
+ - 1782
+ - 14356
+ - 14353
+ - 24035
+ - 24167
+ - 14606
+ - 14599
+ - 14598
+ - 14597
+ - 24130
+ - 24743
- uid: 17419
components:
- type: Transform
@@ -77576,6 +77926,32 @@ entities:
- 11743
- 11936
- 17436
+ - 14618
+ - 20370
+ - uid: 17833
+ components:
+ - type: Transform
+ pos: -116.5,-42.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 507
+ - 431
+ - 21467
+ - 21468
+ - 21466
+ - 21471
+ - 21470
+ - 21469
+ - 25580
+ - 21463
+ - 12746
+ - 9109
+ - 9095
+ - 25594
+ - 25593
+ - 20380
+ - 20371
- uid: 17850
components:
- type: Transform
@@ -77615,9 +77991,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -142.5,-11.5
parent: 2
- - type: DeviceList
- devices:
- - 13489
- uid: 19506
components:
- type: MetaData
@@ -77694,6 +78067,66 @@ entities:
- 11230
- 11231
- 14980
+ - uid: 24300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,-24.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 1658
+ - 1667
+ - 9674
+ - 14636
+ - 14637
+ - 14638
+ - 14640
+ - 15855
+ - 15709
+ - 24123
+ - 14945
+ - 14944
+ - 14943
+ - 14942
+ - 14946
+ - 14952
+ - 14951
+ - 14950
+ - 19471
+ - 7046
+ - 16965
+ - 15848
+ - 16404
+ - 23865
+ - 15365
+ - uid: 24309
+ components:
+ - type: Transform
+ pos: -71.5,-54.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 14606
+ - 14599
+ - 24149
+ - 24150
+ - 22802
+ - 22797
+ - 15417
+ - uid: 24312
+ components:
+ - type: Transform
+ pos: -128.5,-41.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 20373
+ - 25580
+ - 25581
+ - 14162
+ - 11743
+ - 25584
- uid: 24784
components:
- type: Transform
@@ -77923,6 +78356,11 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,1.5
parent: 2
+ - uid: 25990
+ components:
+ - type: Transform
+ pos: -117.5,18.5
+ parent: 2
- proto: FireExtinguisher
entities:
- uid: 9441
@@ -77966,11 +78404,22 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25647
- - uid: 893
+ - uid: 910
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-59.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-62.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-62.5
+ parent: 2
+ - uid: 932
+ components:
+ - type: Transform
+ pos: -16.5,-25.5
parent: 2
- uid: 1122
components:
@@ -78117,18 +78566,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7346
- - uid: 3628
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,-36.5
- parent: 2
- - uid: 3644
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,-21.5
- parent: 2
- uid: 4471
components:
- type: Transform
@@ -78143,6 +78580,17 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25647
+ - uid: 5108
+ components:
+ - type: Transform
+ pos: -73.5,-53.5
+ parent: 2
+ - uid: 5114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-36.5
+ parent: 2
- uid: 5742
components:
- type: Transform
@@ -78248,6 +78696,7 @@ entities:
deviceLists:
- 12151
- 9253
+ - 24300
- uid: 7345
components:
- type: Transform
@@ -78348,6 +78797,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,6.5
parent: 2
+ - uid: 9417
+ components:
+ - type: Transform
+ pos: -73.5,-64.5
+ parent: 2
- uid: 9579
components:
- type: Transform
@@ -78359,6 +78813,11 @@ entities:
- type: Transform
pos: -134.5,2.5
parent: 2
+ - uid: 9626
+ components:
+ - type: Transform
+ pos: -110.5,-28.5
+ parent: 2
- uid: 10089
components:
- type: Transform
@@ -78483,6 +78942,11 @@ entities:
deviceLists:
- 24785
- 22168
+ - uid: 11281
+ components:
+ - type: Transform
+ pos: -107.5,-31.5
+ parent: 2
- uid: 11727
components:
- type: Transform
@@ -78551,15 +79015,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 13492
- - uid: 13489
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -152.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18819
- uid: 13629
components:
- type: Transform
@@ -78578,35 +79033,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -74.5,-16.5
parent: 2
- - uid: 13636
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-36.5
- parent: 2
- uid: 13642
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -76.5,-26.5
parent: 2
- - uid: 13657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-37.5
- parent: 2
- uid: 13659
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -75.5,-23.5
parent: 2
- - uid: 13660
+ - uid: 13757
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-65.5
parent: 2
- uid: 13856
components:
@@ -78636,6 +79079,9 @@ entities:
- type: Transform
pos: -129.5,-49.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24312
- uid: 14354
components:
- type: Transform
@@ -78646,6 +79092,11 @@ entities:
deviceLists:
- 14953
- 14954
+ - uid: 14767
+ components:
+ - type: Transform
+ pos: -74.5,-64.5
+ parent: 2
- uid: 14946
components:
- type: Transform
@@ -78656,6 +79107,7 @@ entities:
deviceLists:
- 12151
- 25649
+ - 24300
- uid: 14947
components:
- type: Transform
@@ -78695,40 +79147,34 @@ entities:
rot: 1.5707963267948966 rad
pos: -103.5,-36.5
parent: 2
- - uid: 16411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-55.5
- parent: 2
- - uid: 16412
+ - uid: 16009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-21.5
parent: 2
- - uid: 16413
+ - uid: 16010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-21.5
parent: 2
- - uid: 16414
+ - uid: 16792
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-66.5
parent: 2
- - uid: 16415
+ - uid: 16866
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-55.5
+ pos: -134.5,-7.5
parent: 2
- - uid: 16866
+ - uid: 16948
components:
- type: Transform
- pos: -134.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-21.5
parent: 2
- uid: 17427
components:
@@ -78755,6 +79201,12 @@ entities:
- type: DeviceNetwork
deviceLists:
- 17420
+ - uid: 18609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-36.5
+ parent: 2
- uid: 19517
components:
- type: Transform
@@ -78826,17 +79278,21 @@ entities:
rot: 3.141592653589793 rad
pos: -87.5,32.5
parent: 2
- - uid: 20434
+ - uid: 20498
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -55.5,-62.5
+ pos: -92.5,-36.5
parent: 2
- - uid: 20435
+ - uid: 20829
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-53.5
+ pos: -74.5,-59.5
+ parent: 2
+ - uid: 21397
+ components:
+ - type: Transform
+ pos: -73.5,-59.5
parent: 2
- uid: 21464
components:
@@ -78853,6 +79309,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21467
components:
- type: Transform
@@ -78862,6 +79319,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21468
components:
- type: Transform
@@ -78871,6 +79329,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21469
components:
- type: Transform
@@ -78880,6 +79339,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21470
components:
- type: Transform
@@ -78889,6 +79349,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21471
components:
- type: Transform
@@ -78898,6 +79359,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 21866
components:
- type: Transform
@@ -78909,6 +79371,11 @@ entities:
- type: Transform
pos: -29.5,-69.5
parent: 2
+ - uid: 22495
+ components:
+ - type: Transform
+ pos: -74.5,-53.5
+ parent: 2
- uid: 22573
components:
- type: Transform
@@ -78936,12 +79403,6 @@ entities:
deviceLists:
- 3288
- 3287
- - uid: 23130
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-53.5
- parent: 2
- uid: 23411
components:
- type: Transform
@@ -79026,6 +79487,7 @@ entities:
deviceLists:
- 12151
- 15364
+ - 24300
- uid: 24124
components:
- type: Transform
@@ -79083,6 +79545,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
+ - 16688
- uid: 24131
components:
- type: Transform
@@ -79101,18 +79564,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -56.5,-56.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24309
- uid: 24150
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -64.5,-58.5
parent: 2
- - uid: 24152
+ - type: DeviceNetwork
+ deviceLists:
+ - 24309
+ - uid: 24167
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-38.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
- uid: 24444
components:
- type: Transform
@@ -79125,18 +79597,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -108.5,-27.5
parent: 2
- - uid: 24699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-31.5
- parent: 2
- - uid: 24700
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-28.5
- parent: 2
- uid: 25511
components:
- type: Transform
@@ -79199,6 +79659,9 @@ entities:
rot: 3.141592653589793 rad
pos: -131.5,-45.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24312
- uid: 25586
components:
- type: Transform
@@ -79229,12 +79692,18 @@ entities:
rot: 3.141592653589793 rad
pos: -109.5,-47.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
- uid: 25594
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -109.5,-43.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
- uid: 25595
components:
- type: Transform
@@ -79256,18 +79725,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25649
- - uid: 25699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-62.5
- parent: 2
- - uid: 25871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-66.5
- parent: 2
- uid: 25872
components:
- type: Transform
@@ -79469,6 +79926,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
+ - 16688
- uid: 2979
components:
- type: Transform
@@ -79601,6 +80059,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 13444
components:
- type: Transform
@@ -79654,6 +80113,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
+ - 16688
- uid: 14356
components:
- type: Transform
@@ -79663,6 +80123,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 9253
+ - 16688
- uid: 14936
components:
- type: Transform
@@ -79703,6 +80164,7 @@ entities:
deviceLists:
- 12151
- 25649
+ - 24300
- uid: 14943
components:
- type: Transform
@@ -79713,6 +80175,7 @@ entities:
deviceLists:
- 12151
- 25649
+ - 24300
- uid: 14944
components:
- type: Transform
@@ -79723,6 +80186,7 @@ entities:
deviceLists:
- 12151
- 25649
+ - 24300
- uid: 14945
components:
- type: Transform
@@ -79733,6 +80197,7 @@ entities:
deviceLists:
- 12151
- 25649
+ - 24300
- uid: 14950
components:
- type: Transform
@@ -79746,6 +80211,7 @@ entities:
- 5898
- 9430
- 12151
+ - 24300
- uid: 14951
components:
- type: Transform
@@ -79759,6 +80225,7 @@ entities:
- 5898
- 9430
- 12151
+ - 24300
- uid: 14952
components:
- type: Transform
@@ -79772,6 +80239,7 @@ entities:
- 5898
- 9430
- 12151
+ - 24300
- uid: 15032
components:
- type: Transform
@@ -79788,6 +80256,7 @@ entities:
deviceLists:
- 12151
- 9253
+ - 24300
- uid: 16404
components:
- type: Transform
@@ -79798,6 +80267,7 @@ entities:
deviceLists:
- 12151
- 9253
+ - 24300
- uid: 16965
components:
- type: Transform
@@ -79808,6 +80278,7 @@ entities:
deviceLists:
- 12151
- 9253
+ - 24300
- uid: 19777
components:
- type: Transform
@@ -79820,12 +80291,6 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,12.5
parent: 2
- - uid: 21045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-76.5
- parent: 2
- uid: 21463
components:
- type: Transform
@@ -79835,6 +80300,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 20316
+ - 17833
- uid: 22713
components:
- type: Transform
@@ -79846,12 +80312,6 @@ entities:
- 7346
- 11893
- 24784
- - uid: 23246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-69.5
- parent: 2
- uid: 23865
components:
- type: Transform
@@ -79862,6 +80322,7 @@ entities:
deviceLists:
- 12151
- 9253
+ - 24300
- uid: 23895
components:
- type: Transform
@@ -79873,6 +80334,12 @@ entities:
- 7346
- 11893
- 24784
+ - uid: 24005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-26.5
+ parent: 2
- uid: 24031
components:
- type: Transform
@@ -79888,6 +80355,14 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,-37.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
+ - uid: 24152
+ components:
+ - type: Transform
+ pos: -37.5,-16.5
+ parent: 2
- uid: 24645
components:
- type: Transform
@@ -79960,6 +80435,16 @@ entities:
- 25641
- proto: FirelockGlass
entities:
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
+ - 20316
- uid: 442
components:
- type: Transform
@@ -79970,16 +80455,25 @@ entities:
deviceLists:
- 23681
- 12769
+ - uid: 507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-44.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
+ - 20316
- uid: 511
components:
- type: Transform
pos: -94.5,31.5
parent: 2
- - uid: 640
+ - uid: 777
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-55.5
+ pos: -75.5,-55.5
parent: 2
- uid: 1658
components:
@@ -79987,6 +80481,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-19.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24300
+ - 12151
- uid: 1667
components:
- type: Transform
@@ -79998,6 +80496,7 @@ entities:
- 12151
- 23681
- 12769
+ - 24300
- uid: 3308
components:
- type: Transform
@@ -80292,15 +80791,6 @@ entities:
deviceLists:
- 25598
- 25603
- - uid: 8950
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -142.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 13492
- uid: 8955
components:
- type: Transform
@@ -80311,15 +80801,6 @@ entities:
deviceLists:
- 13492
- 25599
- - uid: 8961
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -139.5,-10.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 13492
- uid: 8976
components:
- type: Transform
@@ -80361,29 +80842,33 @@ entities:
rot: 3.141592653589793 rad
pos: -106.5,-44.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
- uid: 9109
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -106.5,-46.5
parent: 2
- - uid: 9117
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
+ - uid: 9166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,13.5
parent: 2
- - uid: 9129
+ - uid: 9282
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-46.5
+ pos: -83.5,-39.5
parent: 2
- - uid: 9166
+ - uid: 9294
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,13.5
+ pos: -79.5,-39.5
parent: 2
- uid: 9303
components:
@@ -80419,6 +80904,7 @@ entities:
- 12151
- 23681
- 12769
+ - 24300
- uid: 9723
components:
- type: Transform
@@ -80459,6 +80945,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 17420
+ - 24312
- uid: 11802
components:
- type: Transform
@@ -80738,12 +81225,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 19526
- - uid: 13605
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-20.5
- parent: 2
- uid: 13606
components:
- type: Transform
@@ -80793,12 +81274,6 @@ entities:
deviceLists:
- 13736
- 17419
- - uid: 13831
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-20.5
- parent: 2
- uid: 13833
components:
- type: Transform
@@ -80944,24 +81419,38 @@ entities:
rot: -1.5707963267948966 rad
pos: -55.5,-45.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
- uid: 14598
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -55.5,-46.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
- uid: 14599
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -63.5,-50.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
+ - 24309
- uid: 14606
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -65.5,-50.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 16688
+ - 24309
- uid: 14627
components:
- type: Transform
@@ -81007,6 +81496,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 24300
- uid: 14637
components:
- type: Transform
@@ -81016,6 +81506,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 24300
- uid: 14638
components:
- type: Transform
@@ -81025,6 +81516,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 24300
- uid: 14640
components:
- type: Transform
@@ -81034,6 +81526,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 24300
- uid: 14739
components:
- type: Transform
@@ -81042,11 +81535,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 19526
- - uid: 14746
- components:
- - type: Transform
- pos: -104.5,-0.5
- parent: 2
- uid: 14751
components:
- type: Transform
@@ -81061,6 +81549,11 @@ entities:
deviceLists:
- 9164
- 25603
+ - uid: 14833
+ components:
+ - type: Transform
+ pos: -87.5,-39.5
+ parent: 2
- uid: 14877
components:
- type: Transform
@@ -81136,6 +81629,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
+ - 16688
+ - 24300
- uid: 15855
components:
- type: Transform
@@ -81145,12 +81640,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12151
- - uid: 16189
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-56.5
- parent: 2
+ - 16688
+ - 24300
- uid: 16552
components:
- type: Transform
@@ -81183,6 +81674,12 @@ entities:
- type: DeviceNetwork
deviceLists:
- 13736
+ - uid: 18645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-37.5
+ parent: 2
- uid: 19471
components:
- type: Transform
@@ -81193,6 +81690,8 @@ entities:
deviceLists:
- 14953
- 14954
+ - 24300
+ - 12151
- uid: 19610
components:
- type: Transform
@@ -81214,22 +81713,42 @@ entities:
- 14953
- 9430
- 25649
- - uid: 23399
+ - uid: 20533
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-36.5
+ pos: -102.5,-0.5
parent: 2
- - uid: 23428
+ - uid: 22205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-30.5
+ pos: -75.5,-57.5
parent: 2
- - uid: 24801
+ - uid: 22797
components:
- type: Transform
- pos: -102.5,-0.5
+ pos: -72.5,-55.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24309
+ - uid: 22798
+ components:
+ - type: Transform
+ pos: -75.5,-56.5
+ parent: 2
+ - uid: 22802
+ components:
+ - type: Transform
+ pos: -72.5,-57.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24309
+ - uid: 23428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-30.5
parent: 2
- uid: 25557
components:
@@ -81261,12 +81780,19 @@ entities:
rot: 3.141592653589793 rad
pos: -123.5,-45.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17833
+ - 24312
- uid: 25581
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -125.5,-49.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 24312
- uid: 25582
components:
- type: Transform
@@ -81349,12 +81875,6 @@ entities:
deviceLists:
- 17850
- 25641
- - uid: 25881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-57.5
- parent: 2
- uid: 25938
components:
- type: Transform
@@ -81381,22 +81901,22 @@ entities:
- type: Transform
pos: -62.63784,-3.7257838
parent: 2
-- proto: FlashlightLantern
- entities:
- - uid: 8686
+ - uid: 23306
components:
- type: Transform
- pos: -55.423786,-68.43352
+ pos: -112.761406,-29.411583
parent: 2
- - uid: 19502
+- proto: FlashlightLantern
+ entities:
+ - uid: 22903
components:
- type: Transform
- pos: -109.39066,-13.270811
+ pos: -54.584934,-70.46617
parent: 2
- - uid: 19503
+ - uid: 23311
components:
- type: Transform
- pos: -109.56254,-13.536436
+ pos: -112.323906,-29.567833
parent: 2
- proto: FlashlightSeclite
entities:
@@ -81436,6 +81956,20 @@ entities:
- type: Transform
pos: -18.5,-23.5
parent: 2
+- proto: FlippoLighter
+ entities:
+ - uid: 13747
+ components:
+ - type: Transform
+ pos: -21.387272,-69.4951
+ parent: 2
+- proto: Floodlight
+ entities:
+ - uid: 24430
+ components:
+ - type: Transform
+ pos: -130.64246,-26.546305
+ parent: 2
- proto: FloorDrain
entities:
- uid: 478
@@ -81491,6 +82025,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 24337
+ components:
+ - type: Transform
+ pos: -21.5,-34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 24386
+ components:
+ - type: Transform
+ pos: -21.5,-40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 25454
components:
- type: Transform
@@ -81508,415 +82056,334 @@ entities:
fixtures: {}
- proto: FloorLiquidPlasmaEntity
entities:
- - uid: 3604
+ - uid: 879
components:
- type: Transform
- pos: -95.5,-3.5
+ pos: -94.5,-6.5
parent: 2
- - uid: 3727
+ - uid: 880
components:
- type: Transform
- pos: -96.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-65.5
parent: 2
- - uid: 3728
+ - uid: 1120
components:
- type: Transform
- pos: -95.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-65.5
parent: 2
- - uid: 3744
+ - uid: 1184
components:
- type: Transform
pos: -96.5,-4.5
parent: 2
- - uid: 3752
- components:
- - type: Transform
- pos: -94.5,-3.5
- parent: 2
- - uid: 3753
- components:
- - type: Transform
- pos: -96.5,-2.5
- parent: 2
- - uid: 3757
- components:
- - type: Transform
- pos: -94.5,-2.5
- parent: 2
- - uid: 3758
- components:
- - type: Transform
- pos: -94.5,-1.5
- parent: 2
- - uid: 3760
- components:
- - type: Transform
- pos: -96.5,-1.5
- parent: 2
- - uid: 3761
+ - uid: 1498
components:
- type: Transform
- pos: -95.5,-1.5
+ pos: -93.5,-4.5
parent: 2
- - uid: 3764
+ - uid: 1529
components:
- type: Transform
- pos: -95.5,-2.5
+ pos: -93.5,-7.5
parent: 2
- - uid: 4012
+ - uid: 1732
components:
- type: Transform
- pos: -90.5,-65.5
+ pos: -95.5,-5.5
parent: 2
- - uid: 4038
+ - uid: 1741
components:
- type: Transform
- pos: -90.5,-66.5
+ pos: -92.5,-5.5
parent: 2
- - uid: 4097
+ - uid: 1748
components:
- type: Transform
- pos: -89.5,-64.5
+ pos: -95.5,-4.5
parent: 2
- - uid: 4112
+ - uid: 1753
components:
- type: Transform
- pos: -89.5,-66.5
+ pos: -94.5,-4.5
parent: 2
- - uid: 4272
+ - uid: 1759
components:
- type: Transform
- pos: -90.5,-64.5
+ pos: -94.5,-5.5
parent: 2
- - uid: 4273
+ - uid: 1788
components:
- type: Transform
- pos: -92.5,-64.5
+ pos: -92.5,-6.5
parent: 2
- - uid: 4274
+ - uid: 1802
components:
- type: Transform
- pos: -93.5,-66.5
+ pos: -91.5,-6.5
parent: 2
- - uid: 4326
+ - uid: 1876
components:
- type: Transform
- pos: -91.5,-66.5
+ pos: -93.5,-5.5
parent: 2
- - uid: 4498
+ - uid: 1965
components:
- type: Transform
- pos: -95.5,-64.5
+ pos: -93.5,-6.5
parent: 2
- - uid: 4533
+ - uid: 2236
components:
- type: Transform
- pos: -92.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-66.5
parent: 2
- - uid: 4558
+ - uid: 2335
components:
- type: Transform
- pos: -92.5,-66.5
+ pos: -92.5,-63.5
parent: 2
- - uid: 4561
+ - uid: 3437
components:
- type: Transform
- pos: -94.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-63.5
parent: 2
- uid: 4562
- components:
- - type: Transform
- pos: -94.5,-65.5
- parent: 2
- - uid: 14659
- components:
- - type: Transform
- pos: -93.5,-1.5
- parent: 2
- - uid: 14660
- components:
- - type: Transform
- pos: -91.5,-64.5
- parent: 2
- - uid: 15035
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,-2.5
+ pos: -89.5,-67.5
parent: 2
- - uid: 15042
+ - uid: 6485
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,0.5
+ pos: -88.5,-65.5
parent: 2
- - uid: 15060
+ - uid: 7238
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,0.5
- parent: 2
- - uid: 15067
- components:
- - type: Transform
- pos: -90.5,-67.5
- parent: 2
- - uid: 15068
- components:
- - type: Transform
- pos: -91.5,-67.5
- parent: 2
- - uid: 15250
- components:
- - type: Transform
- pos: -92.5,-67.5
- parent: 2
- - uid: 15261
- components:
- - type: Transform
- pos: -93.5,-67.5
+ pos: -86.5,-64.5
parent: 2
- - uid: 15263
+ - uid: 7379
components:
- type: Transform
- pos: -95.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-65.5
parent: 2
- - uid: 15363
+ - uid: 13636
components:
- type: Transform
- pos: -94.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-65.5
parent: 2
- - uid: 15627
+ - uid: 13656
components:
- type: Transform
- pos: -91.5,-65.5
+ pos: -87.5,-65.5
parent: 2
- - uid: 15785
+ - uid: 14854
components:
- type: Transform
- pos: -93.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-65.5
parent: 2
- - uid: 15797
+ - uid: 16016
components:
- type: Transform
- pos: -95.5,-65.5
+ pos: -96.5,-5.5
parent: 2
- - uid: 16182
+ - uid: 16018
components:
- type: Transform
- pos: -95.5,-0.5
+ pos: -91.5,-5.5
parent: 2
- - uid: 17466
+ - uid: 16044
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -93.5,-64.5
parent: 2
- - uid: 17472
+ - uid: 16053
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,-1.5
+ pos: -87.5,-67.5
parent: 2
- - uid: 17473
+ - uid: 16054
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-1.5
+ pos: -92.5,-66.5
parent: 2
- - uid: 17475
+ - uid: 16118
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-0.5
+ pos: -93.5,-66.5
parent: 2
- - uid: 17479
+ - uid: 16166
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-3.5
- parent: 2
- - uid: 18114
- components:
- - type: Transform
- pos: -93.5,-63.5
+ pos: -92.5,-67.5
parent: 2
- - uid: 18349
+ - uid: 18890
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-1.5
+ pos: -90.5,-66.5
parent: 2
- - uid: 18358
+ - uid: 19810
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,-0.5
+ pos: -89.5,-66.5
parent: 2
- - uid: 18777
+ - uid: 20728
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-4.5
+ pos: -87.5,-64.5
parent: 2
- - uid: 18778
+ - uid: 20785
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -93.5,-3.5
+ pos: -92.5,-64.5
parent: 2
- - uid: 18779
+ - uid: 22128
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-1.5
+ pos: -94.5,-7.5
parent: 2
- - uid: 18782
+ - uid: 22476
components:
- type: Transform
- pos: -94.5,-67.5
+ pos: -91.5,-64.5
parent: 2
- - uid: 18785
+ - uid: 22677
components:
- type: Transform
- pos: -94.5,-63.5
+ pos: -96.5,-6.5
parent: 2
- - uid: 18786
+ - uid: 22683
components:
- type: Transform
- pos: -91.5,-63.5
+ pos: -92.5,-4.5
parent: 2
- - uid: 20785
+ - uid: 23133
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-0.5
+ pos: -86.5,-63.5
parent: 2
- - uid: 20803
+ - uid: 23136
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-0.5
+ pos: -87.5,-63.5
parent: 2
- - uid: 20804
+ - uid: 23138
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,-3.5
- parent: 2
- - uid: 20945
- components:
- - type: Transform
- pos: -92.5,-63.5
+ pos: -90.5,-67.5
parent: 2
- - uid: 21006
+ - uid: 23140
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-1.5
+ pos: -91.5,-67.5
parent: 2
- - uid: 21043
+ - uid: 23160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-2.5
+ pos: -88.5,-64.5
parent: 2
- - uid: 21390
+ - uid: 23163
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,-4.5
+ pos: -93.5,-65.5
parent: 2
- - uid: 21418
+ - uid: 23168
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -92.5,-4.5
+ pos: -91.5,-66.5
parent: 2
- - uid: 21420
+ - uid: 23175
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -94.5,0.5
+ pos: -88.5,-66.5
parent: 2
- - uid: 21496
+ - uid: 23176
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,-0.5
- parent: 2
- - uid: 22410
- components:
- - type: Transform
- pos: -89.5,-65.5
- parent: 2
- - uid: 22442
- components:
- - type: Transform
- pos: -93.5,-65.5
+ pos: -88.5,-67.5
parent: 2
- - uid: 22463
+ - uid: 23179
components:
- type: Transform
- pos: -94.5,-66.5
+ pos: -89.5,-64.5
parent: 2
- - uid: 23429
+ - uid: 23183
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,-1.5
+ pos: -87.5,-66.5
parent: 2
- - uid: 23930
+ - uid: 23185
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-5.5
+ pos: -90.5,-64.5
parent: 2
- - uid: 24003
+ - uid: 23190
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-0.5
+ pos: -86.5,-62.5
parent: 2
- - uid: 24004
+ - uid: 23213
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-2.5
+ pos: -95.5,-6.5
parent: 2
- - uid: 24005
+- proto: FloorWaterEntity
+ entities:
+ - uid: 1703
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-5.5
+ pos: -80.5,-68.5
parent: 2
-- proto: FloorWaterEntity
- entities:
- uid: 1728
components:
- type: Transform
pos: -59.5,-46.5
parent: 2
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: -81.5,-68.5
+ parent: 2
- uid: 1866
components:
- type: Transform
pos: -106.5,29.5
parent: 2
- - uid: 2516
+ - uid: 2004
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,-45.5
+ pos: -80.5,-67.5
parent: 2
- uid: 2522
components:
- type: Transform
pos: -65.5,-41.5
parent: 2
- - uid: 2523
- components:
- - type: Transform
- pos: -69.5,-43.5
- parent: 2
- uid: 2539
components:
- type: Transform
@@ -82234,59 +82701,51 @@ entities:
- type: Transform
pos: -61.5,-47.5
parent: 2
- - uid: 3756
+ - uid: 4451
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-44.5
+ pos: -80.5,-66.5
parent: 2
- - uid: 4802
+ - uid: 6552
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-48.5
+ pos: -78.5,-50.5
parent: 2
- - uid: 4804
+ - uid: 6676
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-49.5
+ pos: -78.5,-49.5
parent: 2
- - uid: 6706
+ - uid: 6677
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-50.5
+ pos: -78.5,-48.5
parent: 2
- - uid: 6737
+ - uid: 6860
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,-48.5
+ pos: -80.5,-50.5
parent: 2
- - uid: 6740
+ - uid: 8168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-47.5
+ pos: -82.5,-66.5
parent: 2
- - uid: 6840
+ - uid: 8268
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-50.5
+ pos: -82.5,-67.5
parent: 2
- - uid: 6859
+ - uid: 8551
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-49.5
+ pos: -81.5,-66.5
parent: 2
- - uid: 6860
+ - uid: 9117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-50.5
+ pos: -82.5,-68.5
parent: 2
- uid: 9584
components:
@@ -82316,6 +82775,16 @@ entities:
- type: Transform
pos: -60.5,-47.5
parent: 2
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: -79.5,-48.5
+ parent: 2
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: -79.5,-50.5
+ parent: 2
- uid: 16861
components:
- type: Transform
@@ -82352,11 +82821,36 @@ entities:
useSound: !type:SoundPathSpecifier
path: /Audio/Items/drink.ogg
solution: pool
+ - uid: 17621
+ components:
+ - type: Transform
+ pos: -78.5,-47.5
+ parent: 2
+ - uid: 18683
+ components:
+ - type: Transform
+ pos: -79.5,-49.5
+ parent: 2
+ - uid: 19163
+ components:
+ - type: Transform
+ pos: -62.5,-28.5
+ parent: 2
+ - uid: 19166
+ components:
+ - type: Transform
+ pos: -60.5,-28.5
+ parent: 2
- uid: 19330
components:
- type: Transform
pos: -106.5,30.5
parent: 2
+ - uid: 19352
+ components:
+ - type: Transform
+ pos: -61.5,-28.5
+ parent: 2
- uid: 21442
components:
- type: Transform
@@ -82365,12 +82859,6 @@ entities:
parent: 2
- proto: FloraTree
entities:
- - uid: 6707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.76986,-45.08961
- parent: 2
- uid: 7544
components:
- type: Transform
@@ -82381,6 +82869,11 @@ entities:
- type: Transform
pos: -45.4908,-60.47104
parent: 2
+ - uid: 16344
+ components:
+ - type: Transform
+ pos: -79.57429,-46.70475
+ parent: 2
- uid: 16856
components:
- type: Transform
@@ -82425,13 +82918,6 @@ entities:
- type: Transform
pos: -24.391703,-70.56911
parent: 2
-- proto: FolderSpawner
- entities:
- - uid: 16002
- components:
- - type: Transform
- pos: -113.48114,-31.459679
- parent: 2
- proto: FoodBagel
entities:
- uid: 25685
@@ -82472,7 +82958,6 @@ entities:
- type: Transform
pos: -112.51823,36.525185
parent: 2
- - type: RadiationSource
- proto: FoodCartCold
entities:
- uid: 3449
@@ -82488,6 +82973,36 @@ entities:
- type: Transform
pos: -22.587616,16.868912
parent: 2
+- proto: FoodMeat
+ entities:
+ - uid: 24432
+ components:
+ - type: Transform
+ parent: 24431
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 24433
+ components:
+ - type: Transform
+ parent: 24431
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 24434
+ components:
+ - type: Transform
+ parent: 24431
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 24438
+ components:
+ - type: Transform
+ parent: 24431
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: FoodPieBananaCream
entities:
- uid: 22399
@@ -82529,6 +83044,11 @@ entities:
- type: Transform
pos: -119.513954,26.718058
parent: 2
+ - uid: 22950
+ components:
+ - type: Transform
+ pos: -102.307976,-65.23773
+ parent: 2
- uid: 26092
components:
- type: Transform
@@ -82578,6 +83098,11 @@ entities:
- type: Transform
pos: -143.49344,-8.391947
parent: 2
+ - uid: 22280
+ components:
+ - type: Transform
+ pos: -116.19871,12.692918
+ parent: 2
- proto: GasCanisterBrokenBase
entities:
- uid: 16887
@@ -83068,14 +83593,6 @@ entities:
color: '#990000FF'
- proto: GasPipeBend
entities:
- - uid: 1117
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 1565
components:
- type: Transform
@@ -83193,6 +83710,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 4581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4815
components:
- type: Transform
@@ -83333,6 +83858,30 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 6516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 6863
components:
- type: Transform
@@ -83470,12 +84019,6 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,-62.5
parent: 2
- - uid: 10120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-63.5
- parent: 2
- uid: 10198
components:
- type: Transform
@@ -83491,14 +84034,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 10339
components:
- type: Transform
@@ -83940,14 +84475,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13506
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 13649
components:
- type: Transform
@@ -83964,22 +84491,19 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13702
+ - uid: 13764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-39.5
+ pos: -102.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13730
+ - uid: 13786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 13903
components:
- type: Transform
@@ -84012,22 +84536,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14185
components:
- type: Transform
@@ -84036,14 +84544,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14235
components:
- type: Transform
@@ -84060,14 +84560,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14643
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14794
components:
- type: Transform
@@ -84084,14 +84576,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15010
components:
- type: Transform
@@ -84156,14 +84640,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15396
components:
- type: Transform
@@ -84209,6 +84685,13 @@ entities:
rot: 1.5707963267948966 rad
pos: -116.5,15.5
parent: 2
+ - uid: 16119
+ components:
+ - type: Transform
+ pos: -93.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16183
components:
- type: Transform
@@ -84222,6 +84705,28 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,9.5
parent: 2
+ - uid: 16222
+ components:
+ - type: Transform
+ pos: -98.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16279
+ components:
+ - type: Transform
+ pos: -95.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 16551
components:
- type: Transform
@@ -84256,6 +84761,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -113.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16936
components:
- type: Transform
@@ -84269,6 +84782,30 @@ entities:
rot: 3.141592653589793 rad
pos: -150.5,-16.5
parent: 2
+ - uid: 17133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17289
components:
- type: Transform
@@ -84323,6 +84860,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -109.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17832
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17948
components:
- type: Transform
@@ -84395,22 +84948,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18207
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -112.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -114.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18255
components:
- type: Transform
@@ -84448,14 +84985,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18761
+ - uid: 18597
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -83.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 18853
components:
- type: Transform
@@ -84487,29 +85024,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18941
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18942
- components:
- - type: Transform
- pos: -83.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18960
components:
- type: Transform
@@ -84557,38 +85071,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20522
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20543
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20571
components:
- type: Transform
@@ -84685,14 +85167,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23917
components:
- type: Transform
@@ -84823,6 +85297,20 @@ entities:
- type: Transform
pos: -110.5,9.5
parent: 2
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: -74.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6920
+ components:
+ - type: Transform
+ pos: -73.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6922
components:
- type: Transform
@@ -84837,6 +85325,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 9304
+ components:
+ - type: Transform
+ pos: -83.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 10199
components:
- type: Transform
@@ -84952,6 +85447,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14737
+ components:
+ - type: Transform
+ pos: -90.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14779
+ components:
+ - type: Transform
+ pos: -91.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14883
components:
- type: Transform
@@ -85046,20 +85555,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17352
- components:
- - type: Transform
- pos: -70.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17883
- components:
- - type: Transform
- pos: -96.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17885
components:
- type: Transform
@@ -85088,20 +85583,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18220
- components:
- - type: Transform
- pos: -76.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18278
- components:
- - type: Transform
- pos: -87.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18868
components:
- type: Transform
@@ -85123,13 +85604,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20029
- components:
- - type: Transform
- pos: -75.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20055
components:
- type: Transform
@@ -85735,14 +86209,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-35.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 830
components:
- type: Transform
@@ -85774,6 +86240,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 921
components:
- type: Transform
@@ -85807,14 +86281,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 1103
components:
- type: Transform
@@ -85918,6 +86384,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -124.5,1.5
parent: 2
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: -102.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: -102.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 1871
components:
- type: Transform
@@ -85944,13 +86424,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -105.5,-4.5
parent: 2
- - uid: 1914
- components:
- - type: Transform
- pos: -76.5,-36.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 2034
components:
- type: Transform
@@ -86043,6 +86516,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -112.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2106
components:
- type: Transform
@@ -86138,12 +86619,35 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -111.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2709
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -120.5,10.5
parent: 2
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: -74.5,-53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 3011
components:
- type: Transform
@@ -86257,6 +86761,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 3716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3722
+ components:
+ - type: Transform
+ pos: -74.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 3726
components:
- type: Transform
@@ -86273,6 +86800,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 3795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 3836
components:
- type: Transform
@@ -86301,6 +86836,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 3948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 4014
components:
- type: Transform
@@ -86348,6 +86891,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 4250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -108.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: -110.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4311
components:
- type: Transform
@@ -87276,6 +87834,13 @@ entities:
rot: 1.5707963267948966 rad
pos: -117.5,1.5
parent: 2
+ - uid: 5682
+ components:
+ - type: Transform
+ pos: -73.5,-51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5683
components:
- type: Transform
@@ -87290,6 +87855,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5697
+ components:
+ - type: Transform
+ pos: -73.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5705
components:
- type: Transform
@@ -87318,6 +87890,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 5876
+ components:
+ - type: Transform
+ pos: -74.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5902
components:
- type: Transform
@@ -87348,6 +87927,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5998
+ components:
+ - type: Transform
+ pos: -74.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 6001
components:
- type: Transform
@@ -87372,14 +87958,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6016
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6022
components:
- type: Transform
@@ -87559,6 +88137,62 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 6248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6505
components:
- type: Transform
@@ -87567,14 +88201,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6514
+ - uid: 6511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 6544
components:
- type: Transform
@@ -87583,6 +88217,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 6555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6652
components:
- type: Transform
@@ -87617,12 +88259,105 @@ entities:
- type: Transform
pos: -148.5,-40.5
parent: 2
+ - uid: 6740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6745
+ components:
+ - type: Transform
+ pos: -74.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6872
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -116.5,3.5
parent: 2
+ - uid: 6883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6895
+ components:
+ - type: Transform
+ pos: -73.5,-53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6896
+ components:
+ - type: Transform
+ pos: -73.5,-54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6905
components:
- type: Transform
@@ -87953,6 +88688,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 7753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7755
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7781
components:
- type: Transform
@@ -87976,6 +88734,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 7830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7841
components:
- type: Transform
@@ -88008,6 +88774,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8485
+ components:
+ - type: Transform
+ pos: -74.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8488
components:
- type: Transform
@@ -88103,6 +88876,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8596
+ components:
+ - type: Transform
+ pos: -73.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8602
components:
- type: Transform
@@ -88289,14 +89069,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 8991
components:
- type: Transform
@@ -88439,10 +89211,10 @@ entities:
- uid: 9201
components:
- type: Transform
- pos: -103.5,-23.5
+ pos: -90.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 9214
components:
- type: Transform
@@ -88507,11 +89279,11 @@ entities:
- uid: 9292
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -100.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 9316
components:
- type: Transform
@@ -88538,42 +89310,20 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,-63.5
parent: 2
- - uid: 9426
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9427
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9429
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-43.5
- parent: 2
- - uid: 9453
+ - uid: 9391
components:
- type: Transform
- pos: -87.5,-41.5
+ pos: -73.5,-52.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9454
+ - uid: 9401
components:
- type: Transform
- pos: -87.5,-44.5
+ pos: -74.5,-51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 9460
components:
- type: Transform
@@ -88652,14 +89402,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9484
components:
- type: Transform
@@ -88749,6 +89491,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 9577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 9586
components:
- type: Transform
@@ -88757,6 +89507,54 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 9715
components:
- type: Transform
@@ -88867,6 +89665,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 9933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 9936
components:
- type: Transform
@@ -88879,6 +89685,14 @@ entities:
rot: -1.5707963267948966 rad
pos: -125.5,11.5
parent: 2
+ - uid: 9953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 9955
components:
- type: Transform
@@ -88982,8 +89796,8 @@ entities:
- uid: 10027
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-47.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -89282,10 +90096,11 @@ entities:
- uid: 10118
components:
- type: Transform
- pos: -76.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 10137
components:
- type: Transform
@@ -89300,6 +90115,20 @@ entities:
rot: -1.5707963267948966 rad
pos: -84.5,-5.5
parent: 2
+ - uid: 10201
+ components:
+ - type: Transform
+ pos: -73.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10203
+ components:
+ - type: Transform
+ pos: -74.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 10211
components:
- type: Transform
@@ -91424,6 +92253,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11269
+ components:
+ - type: Transform
+ pos: -73.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 11270
components:
- type: Transform
@@ -92536,13 +93372,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 11822
- components:
- - type: Transform
- pos: -103.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 11823
components:
- type: Transform
@@ -95847,22 +96676,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 12633
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 12634
components:
- type: Transform
@@ -95871,14 +96684,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 12635
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 12636
components:
- type: Transform
@@ -95887,14 +96692,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 12637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 12640
components:
- type: Transform
@@ -97114,22 +97911,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12895
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 12896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 12901
components:
- type: Transform
@@ -97497,14 +98278,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -104.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 13594
components:
- type: Transform
@@ -97648,19 +98421,10 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13694
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 13695
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-39.5
+ pos: -73.5,-49.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -97672,27 +98436,10 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13704
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13710
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13711
+ - uid: 13702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-47.5
+ pos: -73.5,-48.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -97712,38 +98459,25 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13729
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 13732
+ - uid: 13738
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-37.5
+ pos: -103.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13738
+ - uid: 13756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13786
+ - uid: 13758
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -86.5,-47.5
+ pos: -19.5,-52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 13826
components:
- type: Transform
@@ -97752,14 +98486,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14013
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14066
components:
- type: Transform
@@ -97904,100 +98630,36 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14138
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14180
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-42.5
+ pos: -103.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14181
+ - uid: 14207
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14183
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14184
- components:
- - type: Transform
- pos: -82.5,-44.5
+ pos: -65.5,-58.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14187
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -89.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14191
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14192
+ - uid: 14208
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -91.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14194
- components:
- - type: Transform
- pos: -90.5,-38.5
+ pos: -65.5,-60.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- uid: 14275
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-39.5
+ pos: -103.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 14276
components:
- type: Transform
@@ -98013,20 +98675,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14496
- components:
- - type: Transform
- pos: -91.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14544
- components:
- - type: Transform
- pos: -91.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14583
components:
- type: Transform
@@ -98048,35 +98696,46 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14655
+ - uid: 14644
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14729
+ - uid: 14653
components:
- type: Transform
- pos: -91.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14730
+ - uid: 14654
components:
- type: Transform
- pos: -91.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14732
+ - uid: 14660
components:
- type: Transform
- pos: -87.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
+ - uid: 14729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -84.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14793
components:
- type: Transform
@@ -98100,14 +98759,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14833
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14834
components:
- type: Transform
@@ -98116,13 +98767,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14838
- components:
- - type: Transform
- pos: -87.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14841
components:
- type: Transform
@@ -98155,14 +98799,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14845
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14846
components:
- type: Transform
@@ -98727,14 +99363,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14964
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14966
components:
- type: Transform
@@ -98790,14 +99418,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14977
components:
- type: Transform
@@ -99049,14 +99669,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15057
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15073
components:
- type: Transform
@@ -99177,14 +99789,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15102
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15104
components:
- type: Transform
@@ -99225,14 +99829,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15110
components:
- type: Transform
@@ -99652,14 +100248,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15202
components:
- type: Transform
@@ -99763,262 +100351,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15230
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15232
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15233
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15236
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15237
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15238
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15239
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15240
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15241
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15242
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15243
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15244
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-43.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15247
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15248
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15249
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15251
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15253
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15254
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-52.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15255
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-51.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15256
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-50.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15257
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-49.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15258
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15259
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-48.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15269
components:
- type: Transform
@@ -100449,14 +100781,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15590
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15601
components:
- type: Transform
@@ -100481,6 +100805,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15630
components:
- type: Transform
@@ -100623,16 +100955,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15929
- components:
- - type: Transform
- anchored: False
- rot: 1.5707963267948966 rad
- pos: -137.5,-39.5
- parent: 2
- - type: Physics
- canCollide: True
- bodyType: Dynamic
- uid: 15932
components:
- type: Transform
@@ -100666,6 +100988,37 @@ entities:
rot: -1.5707963267948966 rad
pos: -105.5,-5.5
parent: 2
+ - uid: 16007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16026
+ components:
+ - type: Transform
+ pos: -102.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16037
components:
- type: Transform
@@ -100688,6 +101041,13 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,-2.5
parent: 2
+ - uid: 16101
+ components:
+ - type: Transform
+ pos: -102.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16102
components:
- type: Transform
@@ -100696,6 +101056,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16103
+ components:
+ - type: Transform
+ pos: -93.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16140
components:
- type: Transform
@@ -100704,6 +101071,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16189
+ components:
+ - type: Transform
+ pos: -93.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16191
components:
- type: Transform
@@ -100718,6 +101100,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16208
components:
- type: Transform
@@ -100730,19 +101120,19 @@ entities:
rot: -1.5707963267948966 rad
pos: -114.5,7.5
parent: 2
- - uid: 16243
+ - uid: 16224
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16256
+ color: '#990000FF'
+ - uid: 16255
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,-37.5
+ pos: -96.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -100754,6 +101144,61 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16341
+ components:
+ - type: Transform
+ pos: -103.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 16357
components:
- type: Transform
@@ -100772,6 +101217,45 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16393
+ components:
+ - type: Transform
+ pos: -73.5,-55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16397
components:
- type: Transform
@@ -100788,6 +101272,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16464
components:
- type: Transform
@@ -100848,6 +101340,62 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -81.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16710
components:
- type: Transform
@@ -100856,6 +101404,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16742
+ components:
+ - type: Transform
+ pos: -73.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16761
components:
- type: Transform
@@ -100877,11 +101440,18 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16810
+ - uid: 16805
+ components:
+ - type: Transform
+ pos: -73.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16827
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,-37.5
+ pos: -97.5,-23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -100985,6 +101555,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17006
components:
- type: Transform
@@ -101004,6 +101582,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17052
+ components:
+ - type: Transform
+ pos: -74.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17062
components:
- type: Transform
@@ -101018,6 +101611,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -86.5,-3.5
parent: 2
+ - uid: 17101
+ components:
+ - type: Transform
+ pos: -74.5,-48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17102
components:
- type: Transform
@@ -101026,6 +101626,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17112
components:
- type: Transform
@@ -101034,6 +101642,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: -74.5,-49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -72.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17154
components:
- type: Transform
@@ -101058,6 +101697,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,-64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17181
components:
- type: Transform
@@ -101066,12 +101713,42 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17199
+ components:
+ - type: Transform
+ pos: -73.5,-56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17226
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,-64.5
parent: 2
+ - uid: 17232
+ components:
+ - type: Transform
+ pos: -74.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17238
components:
- type: Transform
@@ -101123,6 +101800,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17352
+ components:
+ - type: Transform
+ pos: -74.5,-52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17377
components:
- type: Transform
@@ -101131,6 +101815,28 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17407
+ components:
+ - type: Transform
+ pos: -74.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17409
+ components:
+ - type: Transform
+ pos: -103.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17425
components:
- type: Transform
@@ -101146,6 +101852,46 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17557
components:
- type: Transform
@@ -101306,6 +102052,57 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-32.5
+ parent: 2
+ - uid: 17798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-66.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17830
+ components:
+ - type: Transform
+ pos: -90.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17834
+ components:
+ - type: Transform
+ pos: -74.5,-50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17837
+ components:
+ - type: Transform
+ pos: -74.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -74.5,-59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17854
components:
- type: Transform
@@ -101314,6 +102111,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17861
+ components:
+ - type: Transform
+ pos: -90.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17862
components:
- type: Transform
@@ -101361,6 +102165,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17871
+ components:
+ - type: Transform
+ pos: -90.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17873
components:
- type: Transform
@@ -101393,22 +102204,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17880
components:
- type: Transform
@@ -101425,14 +102220,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17882
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17888
components:
- type: Transform
@@ -101536,22 +102323,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17906
components:
- type: Transform
@@ -101600,14 +102371,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17913
components:
- type: Transform
@@ -102460,6 +103223,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18076
+ components:
+ - type: Transform
+ pos: -74.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18078
components:
- type: Transform
@@ -102510,13 +103280,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18091
- components:
- - type: Transform
- pos: -90.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18092
components:
- type: Transform
@@ -102524,21 +103287,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18093
- components:
- - type: Transform
- pos: -104.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18095
components:
- type: Transform
@@ -102557,23 +103305,23 @@ entities:
- uid: 18097
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-40.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18098
+ - uid: 18099
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-37.5
+ pos: -103.5,-24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18099
+ - uid: 18101
components:
- type: Transform
- pos: -103.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -102662,14 +103410,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18119
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18120
components:
- type: Transform
@@ -103020,118 +103760,45 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18199
+ - uid: 18196
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-57.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18202
+ color: '#0055CCFF'
+ - uid: 18199
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -119.5,-27.5
+ pos: -63.5,-57.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18204
+ - uid: 18202
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -119.5,-27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18205
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-31.5
- parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18206
+ - uid: 18203
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -111.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -112.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -113.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18213
- components:
- - type: Transform
- pos: -114.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18214
- components:
- - type: Transform
- pos: -110.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18215
- components:
- - type: Transform
- pos: -110.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18216
+ - uid: 18204
components:
- type: Transform
- pos: -110.5,-27.5
+ pos: -119.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18217
- components:
- - type: Transform
- pos: -109.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18218
- components:
- - type: Transform
- pos: -109.5,-29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18219
- components:
- - type: Transform
- pos: -109.5,-28.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18222
components:
- type: Transform
@@ -103156,14 +103823,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18227
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -110.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18228
components:
- type: Transform
@@ -103468,22 +104127,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18276
+ - uid: 18275
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -133.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18277
+ color: '#0055CCFF'
+ - uid: 18276
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -133.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 18279
components:
- type: Transform
@@ -104044,12 +104703,43 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18359
+ components:
+ - type: Transform
+ pos: -90.5,-46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18360
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -125.5,1.5
parent: 2
+ - uid: 18364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18371
components:
- type: Transform
@@ -104189,49 +104879,75 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18773
+ - uid: 18594
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -87.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18801
+ - uid: 18595
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -119.5,10.5
+ pos: -87.5,-47.5
parent: 2
- - uid: 18829
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18596
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,-39.5
+ pos: -90.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18835
+ color: '#0055CCFF'
+ - uid: 18598
components:
- type: Transform
- pos: -88.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-47.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18838
+ - uid: 18618
components:
- type: Transform
- pos: -91.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18839
+ - uid: 18742
components:
- type: Transform
- pos: -88.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,-57.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,10.5
+ parent: 2
+ - uid: 18838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18839
+ components:
+ - type: Transform
+ pos: -97.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18840
components:
- type: Transform
@@ -104685,14 +105401,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18952
components:
- type: Transform
@@ -104772,14 +105480,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18984
components:
- type: Transform
@@ -105006,36 +105706,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19351
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-40.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19352
- components:
- - type: Transform
- pos: -83.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19353
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -87.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19354
- components:
- - type: Transform
- pos: -87.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19355
components:
- type: Transform
@@ -105075,6 +105745,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19509
components:
- type: Transform
@@ -105868,15 +106546,10 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -72.5,-65.5
+ pos: -102.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19724
- components:
- - type: Transform
- pos: -72.5,-63.5
- parent: 2
- uid: 19725
components:
- type: Transform
@@ -105885,6 +106558,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19734
components:
- type: Transform
@@ -105924,6 +106605,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 19819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19877
components:
- type: Transform
@@ -105940,11 +106629,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20037
+ - uid: 19973
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-43.5
+ pos: -102.5,-3.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107134,36 +107823,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20495
- components:
- - type: Transform
- pos: -75.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20496
- components:
- - type: Transform
- pos: -75.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20497
+ - uid: 20383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20498
+ - uid: 20413
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-56.5
+ pos: -90.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 20499
components:
- type: Transform
@@ -107172,14 +107846,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-56.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 20501
components:
- type: Transform
@@ -107188,257 +107854,26 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20502
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20504
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20505
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-57.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20506
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 20508
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-61.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20509
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20510
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20511
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20512
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20514
- components:
- - type: Transform
- pos: -76.5,-67.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20515
- components:
- - type: Transform
- pos: -76.5,-68.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20516
- components:
- - type: Transform
- pos: -76.5,-70.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20517
- components:
- - type: Transform
- pos: -76.5,-71.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20518
- components:
- - type: Transform
- pos: -76.5,-72.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20519
- components:
- - type: Transform
- pos: -76.5,-73.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20520
- components:
- - type: Transform
- pos: -76.5,-74.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20521
- components:
- - type: Transform
- pos: -76.5,-69.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20524
- components:
- - type: Transform
- pos: -82.5,-77.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20525
- components:
- - type: Transform
- pos: -82.5,-78.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20526
- components:
- - type: Transform
- pos: -82.5,-79.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20529
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,-76.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20530
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -79.5,-76.5
+ pos: -91.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20531
+ - uid: 20525
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -77.5,-75.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20535
- components:
- - type: Transform
- pos: -75.5,-58.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20536
- components:
- - type: Transform
- pos: -75.5,-59.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20537
- components:
- - type: Transform
- pos: -75.5,-60.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20538
- components:
- - type: Transform
- pos: -75.5,-62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20539
- components:
- - type: Transform
- pos: -75.5,-63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20540
- components:
- - type: Transform
- pos: -75.5,-64.5
+ pos: -101.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20541
+ - uid: 20534
components:
- type: Transform
- pos: -75.5,-61.5
+ pos: -73.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107450,14 +107885,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20545
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20546
components:
- type: Transform
@@ -107469,24 +107896,7 @@ entities:
- uid: 20549
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-66.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20552
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-66.5
+ pos: -73.5,-45.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
@@ -107570,30 +107980,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20564
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20566
+ - uid: 20565
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-65.5
+ pos: -73.5,-46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 20567
components:
- type: Transform
@@ -107618,14 +108011,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 20572
components:
- type: Transform
@@ -107717,11 +108102,10 @@ entities:
- uid: 20584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-65.5
+ pos: -73.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 20585
components:
- type: Transform
@@ -107984,6 +108368,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20838
components:
- type: Transform
@@ -108007,6 +108399,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20962
components:
- type: Transform
@@ -108023,6 +108423,44 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 21045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-24.5
+ parent: 2
- uid: 21065
components:
- type: Transform
@@ -108079,6 +108517,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21664
+ components:
+ - type: Transform
+ pos: -74.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 21742
components:
- type: Transform
@@ -108103,6 +108548,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22139
components:
- type: Transform
@@ -108202,6 +108655,30 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22634
components:
- type: Transform
@@ -108218,6 +108695,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22769
components:
- type: Transform
@@ -108234,6 +108727,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22816
components:
- type: Transform
@@ -108405,6 +108906,22 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23239
components:
- type: Transform
@@ -108419,6 +108936,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -107.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23293
components:
- type: Transform
@@ -108427,6 +108952,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23301
+ components:
+ - type: Transform
+ pos: -110.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -106.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -85.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23415
components:
- type: Transform
@@ -108435,6 +108991,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -81.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23512
components:
- type: Transform
@@ -110371,6 +110935,14 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,-3.5
parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 1754
components:
- type: Transform
@@ -110379,6 +110951,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2274
components:
- type: Transform
@@ -110394,6 +110974,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2693
components:
- type: Transform
@@ -110422,6 +111010,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 3724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4091
components:
- type: Transform
@@ -110457,13 +111053,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4677
- components:
- - type: Transform
- pos: -103.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 4750
components:
- type: Transform
@@ -110594,11 +111183,19 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6966
+ - uid: 6250
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -109.5,-41.5
+ pos: -74.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -110616,14 +111213,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7078
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -105.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 8036
components:
- type: Transform
@@ -110729,14 +111318,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9308
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9309
components:
- type: Transform
@@ -110763,6 +111344,14 @@ entities:
rot: 3.141592653589793 rad
pos: -25.5,-64.5
parent: 2
+ - uid: 9398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 9459
components:
- type: Transform
@@ -110914,20 +111503,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-63.5
- parent: 2
- - uid: 10160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 10200
components:
- type: Transform
@@ -111389,13 +111964,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 11897
- components:
- - type: Transform
- pos: -110.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 11904
components:
- type: Transform
@@ -112099,13 +112667,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13714
- components:
- - type: Transform
- pos: -91.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 13717
components:
- type: Transform
@@ -112122,29 +112683,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14136
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14178
- components:
- - type: Transform
- pos: -81.5,-39.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14190
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14290
components:
- type: Transform
@@ -112161,30 +112699,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14733
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -91.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14789
components:
- type: Transform
@@ -112215,29 +112729,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -87.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14852
- components:
- - type: Transform
- pos: -62.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14855
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14879
components:
- type: Transform
@@ -112277,21 +112768,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14969
- components:
- - type: Transform
- pos: -62.5,-22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15024
components:
- type: Transform
@@ -112598,6 +113074,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16116
components:
- type: Transform
@@ -112620,14 +113104,45 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16207
+ - uid: 16195
+ components:
+ - type: Transform
+ pos: -97.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16383
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -65.5,-66.5
+ pos: -94.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 16530
components:
- type: Transform
@@ -112644,6 +113159,56 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16706
+ components:
+ - type: Transform
+ pos: -63.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-32.5
+ parent: 2
+ - uid: 16713
+ components:
+ - type: Transform
+ pos: -63.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16714
+ components:
+ - type: Transform
+ pos: -103.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16720
+ components:
+ - type: Transform
+ pos: -65.5,-57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16741
components:
- type: Transform
@@ -112660,6 +113225,38 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 16878
components:
- type: Transform
@@ -112682,6 +113279,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16915
+ components:
+ - type: Transform
+ pos: -110.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16943
components:
- type: Transform
@@ -112690,6 +113294,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17150
components:
- type: Transform
@@ -112734,6 +113346,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17614
components:
- type: Transform
@@ -112750,6 +113370,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-24.5
+ parent: 2
+ - uid: 17795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17809
components:
- type: Transform
@@ -112758,6 +113392,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17863
components:
- type: Transform
@@ -112774,13 +113416,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17871
- components:
- - type: Transform
- pos: -109.5,-27.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17879
components:
- type: Transform
@@ -112967,14 +113602,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18101
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18130
components:
- type: Transform
@@ -113028,11 +113655,19 @@ entities:
- type: Transform
pos: -122.5,12.5
parent: 2
- - uid: 18694
+ - uid: 18605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18638
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -83.5,-41.5
+ pos: -79.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -113044,14 +113679,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18837
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18845
components:
- type: Transform
@@ -113060,22 +113687,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-31.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18865
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -110.5,-30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18876
components:
- type: Transform
@@ -113115,20 +113726,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18953
- components:
- - type: Transform
- pos: -85.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18954
- components:
- - type: Transform
- pos: -90.5,-44.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18967
components:
- type: Transform
@@ -113151,21 +113748,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19349
- components:
- - type: Transform
- pos: -84.5,-37.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19350
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-47.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19574
components:
- type: Transform
@@ -113288,14 +113870,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,-26.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 20192
components:
- type: Transform
@@ -113358,54 +113932,29 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20523
+ - uid: 20586
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -82.5,-76.5
+ pos: -55.5,-63.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20548
+ - uid: 20587
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -76.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-66.5
+ pos: -54.5,-64.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20565
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20586
+ - uid: 20830
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-63.5
+ pos: -83.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 20846
components:
- type: Transform
@@ -113416,6 +113965,13 @@ entities:
- type: Physics
canCollide: True
bodyType: Dynamic
+ - uid: 20897
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 20961
components:
- type: Transform
@@ -113432,6 +113988,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22629
+ components:
+ - type: Transform
+ pos: -97.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23044
components:
- type: Transform
@@ -113601,14 +114164,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-55.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24763
components:
- type: Transform
@@ -113718,20 +114273,24 @@ entities:
- type: Transform
pos: -146.5,-47.5
parent: 2
- - uid: 4918
+ - uid: 3728
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -136.5,-6.5
+ pos: -70.5,-62.5
parent: 2
- - uid: 5559
+ - uid: 3938
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,-40.5
+ pos: -70.5,-63.5
+ parent: 2
+ - uid: 4918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -136.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 5614
components:
- type: Transform
@@ -113770,11 +114329,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 10124
- components:
- - type: Transform
- pos: -71.5,-62.5
- parent: 2
- uid: 13663
components:
- type: Transform
@@ -113798,11 +114352,6 @@ entities:
- type: Transform
pos: -140.5,-46.5
parent: 2
- - uid: 17125
- components:
- - type: Transform
- pos: -72.5,-62.5
- parent: 2
- uid: 17227
components:
- type: Transform
@@ -113819,11 +114368,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -115.5,15.5
parent: 2
- - uid: 19730
- components:
- - type: Transform
- pos: -70.5,-62.5
- parent: 2
- uid: 20031
components:
- type: Transform
@@ -113898,6 +114442,22 @@ entities:
parent: 2
- proto: GasPressurePump
entities:
+ - uid: 3723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5096
components:
- type: Transform
@@ -113994,21 +114554,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16462
- components:
- - type: Transform
- pos: -72.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-64.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18370
components:
- type: Transform
@@ -114246,6 +114791,17 @@ entities:
- 15364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 4280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -109.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 14263
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 4332
components:
- type: Transform
@@ -114311,6 +114867,16 @@ entities:
- 927
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 6531
+ components:
+ - type: Transform
+ pos: -91.5,-46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 7787
components:
- type: Transform
@@ -114887,28 +115453,6 @@ entities:
- 8947
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 12617
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-52.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 12618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-48.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 12624
components:
- type: Transform
@@ -114976,22 +115520,15 @@ entities:
- 25887
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 13685
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13713
+ - uid: 13755
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
- uid: 13824
components:
- type: Transform
@@ -115011,21 +115548,15 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14196
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14197
+ - uid: 14689
components:
- type: Transform
- pos: -88.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
- uid: 14828
components:
- type: Transform
@@ -115045,17 +115576,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14854
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12151
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 14863
components:
- type: Transform
@@ -115103,6 +115623,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 15036
@@ -115265,6 +115786,14 @@ entities:
- 20948
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 16034
components:
- type: Transform
@@ -115276,15 +115805,34 @@ entities:
- 18705
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16201
+ - uid: 16278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16391
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -102.5,-26.5
+ pos: -91.5,-39.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 428
+ - 20831
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 16901
@@ -115359,37 +115907,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17853
+ - uid: 17855
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -99.5,-22.5
+ pos: -99.5,-30.5
parent: 2
- type: DeviceNetwork
deviceLists:
- 18699
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17855
+ - uid: 17878
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,-31.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18699
+ - 12151
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17865
+ - uid: 17883
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-30.5
+ pos: -99.5,-22.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18723
+ - 18699
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 17896
@@ -115525,39 +116073,37 @@ entities:
- 18698
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18200
+ - uid: 18613
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -114.5,-32.5
+ pos: -87.5,-40.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18723
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-49.5
- parent: 2
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18760
+ - uid: 18621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-44.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20316
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18821
+ - uid: 18711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-49.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 18852
@@ -115584,6 +116130,9 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,10.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19805
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 18892
@@ -115624,14 +116173,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18935
components:
- type: Transform
@@ -115640,14 +116181,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-41.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18956
components:
- type: Transform
@@ -115672,14 +116205,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18979
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 18982
components:
- type: Transform
@@ -115921,19 +116446,57 @@ entities:
- 20318
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20527
+ - uid: 20505
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-80.5
+ pos: -83.5,-40.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20534
+ - uid: 20507
components:
- type: Transform
- pos: -82.5,-75.5
+ pos: -79.5,-37.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20831
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-55.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23457
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20808
+ components:
+ - type: Transform
+ pos: -83.5,-46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,-40.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 21363
@@ -115944,6 +116507,17 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,-23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12151
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22990
components:
- type: Transform
@@ -116052,17 +116626,6 @@ entities:
- 22168
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-55.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 9273
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24720
components:
- type: Transform
@@ -116210,6 +116773,17 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-37.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20831
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 853
components:
- type: Transform
@@ -116270,6 +116844,17 @@ entities:
- 15581
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 4875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 14263
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5330
components:
- type: Transform
@@ -116333,6 +116918,47 @@ entities:
rot: -1.5707963267948966 rad
pos: -26.5,-66.5
parent: 2
+ - uid: 6501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6502
+ components:
+ - type: Transform
+ pos: -87.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: -83.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: -79.5,-42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7653
components:
- type: Transform
@@ -116354,6 +116980,17 @@ entities:
- 7346
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 7843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8885
components:
- type: Transform
@@ -116380,13 +117017,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 24742
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9311
- components:
- - type: Transform
- pos: -65.5,-63.5
- parent: 2
+ - 20503
- type: AtmosPipeColor
color: '#990000FF'
- uid: 9371
@@ -116425,6 +117056,15 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 10170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19805
- uid: 10209
components:
- type: Transform
@@ -116763,28 +117403,6 @@ entities:
- 9146
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 12614
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-54.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 12615
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-50.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8947
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 12639
components:
- type: Transform
@@ -116862,28 +117480,24 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13838
- components:
- - type: Transform
- pos: -90.5,-46.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14189
+ - uid: 13762
components:
- type: Transform
- pos: -85.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-54.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14195
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
+ - uid: 13863
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,-41.5
+ pos: -19.5,-50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
+ - type: DeviceNetwork
+ deviceLists:
+ - 8947
- uid: 14285
components:
- type: Transform
@@ -116895,11 +117509,6 @@ entities:
- 15413
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14506
- components:
- - type: Transform
- pos: -90.5,-42.5
- parent: 2
- uid: 14840
components:
- type: Transform
@@ -116911,16 +117520,6 @@ entities:
- 21036
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14853
- components:
- - type: Transform
- pos: -60.5,-31.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 12151
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14864
components:
- type: Transform
@@ -116959,13 +117558,6 @@ entities:
- 15412
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15100
- components:
- - type: Transform
- pos: -103.5,10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 15103
components:
- type: Transform
@@ -117064,15 +117656,20 @@ entities:
- 15415
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16206
+ - uid: 16096
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -109.5,-32.5
+ pos: -93.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18723
- type: AtmosPipeColor
color: '#990000FF'
- uid: 16293
@@ -117198,6 +117795,23 @@ entities:
- 9253
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20316
+ - uid: 17791
+ components:
+ - type: Transform
+ pos: -59.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12151
- uid: 17856
components:
- type: Transform
@@ -117347,6 +117961,14 @@ entities:
- 18704
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 18116
components:
- type: Transform
@@ -117400,31 +118022,17 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 18701
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,-32.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18723
+ - 20503
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18203
+ - uid: 18200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-57.5
+ pos: -59.5,-23.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 9273
- - type: AtmosPipeColor
- color: '#990000FF'
+ - 12151
- uid: 18223
components:
- type: Transform
@@ -117436,13 +118044,6 @@ entities:
- 428
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18364
- components:
- - type: Transform
- pos: -87.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18807
components:
- type: Transform
@@ -117493,13 +118094,6 @@ entities:
- 19282
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18939
- components:
- - type: Transform
- pos: -80.5,-38.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 18959
components:
- type: Transform
@@ -117545,13 +118139,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19342
- components:
- - type: Transform
- pos: -60.5,-23.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19347
components:
- type: Transform
@@ -117559,14 +118146,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19348
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-42.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19558
components:
- type: Transform
@@ -117578,13 +118157,6 @@ entities:
- 25887
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19563
- components:
- - type: Transform
- pos: -108.5,-45.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 19653
components:
- type: Transform
@@ -117729,6 +118301,28 @@ entities:
- 20318
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20503
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-37.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20831
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22162
components:
- type: Transform
@@ -117762,6 +118356,17 @@ entities:
- 374
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -74.5,-57.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23457
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23678
components:
- type: Transform
@@ -118398,15 +119003,22 @@ entities:
- type: Transform
pos: -106.5,-45.5
parent: 2
- - uid: 558
+ - uid: 754
components:
- type: Transform
- pos: -111.5,-45.5
+ pos: -97.5,14.5
parent: 2
- - uid: 754
+ - uid: 778
components:
- type: Transform
- pos: -97.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-52.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-46.5
parent: 2
- uid: 813
components:
@@ -118418,21 +119030,33 @@ entities:
- type: Transform
pos: -124.5,3.5
parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-45.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -79.5,-52.5
+ parent: 2
- uid: 922
components:
- type: Transform
pos: -110.5,-1.5
parent: 2
- - uid: 1073
+ - uid: 952
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -122.5,37.5
+ pos: -73.5,-51.5
parent: 2
- - uid: 1151
+ - uid: 1073
components:
- type: Transform
- pos: -80.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -122.5,37.5
parent: 2
- uid: 1186
components:
@@ -118517,11 +119141,6 @@ entities:
- type: Transform
pos: -81.5,-17.5
parent: 2
- - uid: 1705
- components:
- - type: Transform
- pos: -61.5,-70.5
- parent: 2
- uid: 1711
components:
- type: Transform
@@ -118599,16 +119218,36 @@ entities:
- type: Transform
pos: -106.5,-3.5
parent: 2
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: -53.5,-70.5
+ parent: 2
- uid: 1925
components:
- type: Transform
pos: -106.5,-4.5
parent: 2
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: -52.5,-69.5
+ parent: 2
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: -53.5,-73.5
+ parent: 2
- uid: 1971
components:
- type: Transform
pos: -111.5,-1.5
parent: 2
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: -53.5,-69.5
+ parent: 2
- uid: 1979
components:
- type: Transform
@@ -118634,6 +119273,11 @@ entities:
- type: Transform
pos: -93.5,-22.5
parent: 2
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: -48.5,-70.5
+ parent: 2
- uid: 2052
components:
- type: Transform
@@ -118644,11 +119288,56 @@ entities:
- type: Transform
pos: -95.5,-16.5
parent: 2
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: -48.5,-71.5
+ parent: 2
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: -52.5,-74.5
+ parent: 2
+ - uid: 2145
+ components:
+ - type: Transform
+ pos: -48.5,-72.5
+ parent: 2
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: -50.5,-74.5
+ parent: 2
+ - uid: 2152
+ components:
+ - type: Transform
+ pos: -51.5,-74.5
+ parent: 2
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: -53.5,-74.5
+ parent: 2
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: -49.5,-74.5
+ parent: 2
- uid: 2156
components:
- type: Transform
pos: -51.5,3.5
parent: 2
+ - uid: 2161
+ components:
+ - type: Transform
+ pos: -49.5,-69.5
+ parent: 2
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: -48.5,-73.5
+ parent: 2
- uid: 2261
components:
- type: Transform
@@ -118685,46 +119374,16 @@ entities:
- type: Transform
pos: -106.5,-61.5
parent: 2
- - uid: 2574
- components:
- - type: Transform
- pos: -56.5,-68.5
- parent: 2
- uid: 2593
components:
- type: Transform
pos: -106.5,-63.5
parent: 2
- - uid: 2594
- components:
- - type: Transform
- pos: -90.5,-36.5
- parent: 2
- - uid: 2596
- components:
- - type: Transform
- pos: -78.5,-42.5
- parent: 2
- uid: 2599
components:
- type: Transform
pos: -108.5,-61.5
parent: 2
- - uid: 2601
- components:
- - type: Transform
- pos: -78.5,-43.5
- parent: 2
- - uid: 2605
- components:
- - type: Transform
- pos: -57.5,-68.5
- parent: 2
- - uid: 2610
- components:
- - type: Transform
- pos: -60.5,-68.5
- parent: 2
- uid: 2672
components:
- type: Transform
@@ -119020,40 +119679,27 @@ entities:
- type: Transform
pos: -55.5,-44.5
parent: 2
- - uid: 3633
- components:
- - type: Transform
- pos: -75.5,-47.5
- parent: 2
- - uid: 3686
- components:
- - type: Transform
- pos: -56.5,-72.5
- parent: 2
- - uid: 3699
- components:
- - type: Transform
- pos: -56.5,-70.5
- parent: 2
- - uid: 3708
+ - uid: 3745
components:
- type: Transform
- pos: -75.5,-45.5
+ pos: -9.5,5.5
parent: 2
- - uid: 3731
+ - uid: 3747
components:
- type: Transform
- pos: -57.5,-73.5
+ pos: -7.5,5.5
parent: 2
- - uid: 3745
+ - uid: 3748
components:
- type: Transform
- pos: -9.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-70.5
parent: 2
- - uid: 3747
+ - uid: 3756
components:
- type: Transform
- pos: -7.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-71.5
parent: 2
- uid: 3824
components:
@@ -119125,6 +119771,12 @@ entities:
- type: Transform
pos: -33.5,-16.5
parent: 2
+ - uid: 3951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-63.5
+ parent: 2
- uid: 3955
components:
- type: Transform
@@ -119213,17 +119865,8 @@ entities:
- uid: 4089
components:
- type: Transform
- pos: -58.5,-68.5
- parent: 2
- - uid: 4090
- components:
- - type: Transform
- pos: -61.5,-71.5
- parent: 2
- - uid: 4098
- components:
- - type: Transform
- pos: -61.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-70.5
parent: 2
- uid: 4099
components:
@@ -119290,25 +119933,17 @@ entities:
- type: Transform
pos: -83.5,24.5
parent: 2
- - uid: 4248
- components:
- - type: Transform
- pos: -56.5,-73.5
- parent: 2
- - uid: 4261
- components:
- - type: Transform
- pos: -58.5,-73.5
- parent: 2
- - uid: 4266
+ - uid: 4281
components:
- type: Transform
- pos: -59.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-51.5
parent: 2
- - uid: 4286
+ - uid: 4317
components:
- type: Transform
- pos: -60.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-37.5
parent: 2
- uid: 4342
components:
@@ -119366,6 +120001,12 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,-73.5
parent: 2
+ - uid: 4424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-38.5
+ parent: 2
- uid: 4428
components:
- type: Transform
@@ -119386,12 +120027,6 @@ entities:
- type: Transform
pos: -82.5,-6.5
parent: 2
- - uid: 4485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,0.5
- parent: 2
- uid: 4491
components:
- type: Transform
@@ -119407,17 +120042,17 @@ entities:
- type: Transform
pos: -86.5,4.5
parent: 2
- - uid: 4502
+ - uid: 4498
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-36.5
parent: 2
- - uid: 4503
+ - uid: 4533
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-41.5
parent: 2
- uid: 4542
components:
@@ -119429,11 +120064,6 @@ entities:
- type: Transform
pos: -93.5,13.5
parent: 2
- - uid: 4607
- components:
- - type: Transform
- pos: -101.5,-23.5
- parent: 2
- uid: 4620
components:
- type: Transform
@@ -119499,15 +120129,15 @@ entities:
- type: Transform
pos: -85.5,26.5
parent: 2
- - uid: 4751
+ - uid: 4820
components:
- type: Transform
- pos: -85.5,-37.5
+ pos: -51.5,-69.5
parent: 2
- - uid: 4808
+ - uid: 4876
components:
- type: Transform
- pos: -61.5,-69.5
+ pos: -50.5,-69.5
parent: 2
- uid: 4877
components:
@@ -119537,10 +120167,15 @@ entities:
- type: Transform
pos: -31.5,-49.5
parent: 2
- - uid: 5105
+ - uid: 5110
components:
- type: Transform
- pos: -59.5,-73.5
+ pos: -73.5,-47.5
+ parent: 2
+ - uid: 5112
+ components:
+ - type: Transform
+ pos: -73.5,-48.5
parent: 2
- uid: 5162
components:
@@ -119757,11 +120392,6 @@ entities:
- type: Transform
pos: -107.5,-63.5
parent: 2
- - uid: 5682
- components:
- - type: Transform
- pos: -56.5,-69.5
- parent: 2
- uid: 5684
components:
- type: Transform
@@ -119792,11 +120422,6 @@ entities:
- type: Transform
pos: -78.5,-22.5
parent: 2
- - uid: 5726
- components:
- - type: Transform
- pos: -78.5,-38.5
- parent: 2
- uid: 5756
components:
- type: Transform
@@ -119999,71 +120624,17 @@ entities:
- type: Transform
pos: -125.5,-13.5
parent: 2
- - uid: 6485
- components:
- - type: Transform
- pos: -101.5,-26.5
- parent: 2
- - uid: 6487
- components:
- - type: Transform
- pos: -101.5,-32.5
- parent: 2
- - uid: 6489
- components:
- - type: Transform
- pos: -101.5,-31.5
- parent: 2
- - uid: 6490
- components:
- - type: Transform
- pos: -101.5,-30.5
- parent: 2
- - uid: 6497
- components:
- - type: Transform
- pos: -78.5,-46.5
- parent: 2
- - uid: 6498
- components:
- - type: Transform
- pos: -78.5,-35.5
- parent: 2
- - uid: 6500
- components:
- - type: Transform
- pos: -78.5,-47.5
- parent: 2
- - uid: 6502
- components:
- - type: Transform
- pos: -78.5,-39.5
- parent: 2
- - uid: 6503
- components:
- - type: Transform
- pos: -78.5,-48.5
- parent: 2
- - uid: 6508
+ - uid: 6495
components:
- type: Transform
- pos: -84.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-35.5
parent: 2
- uid: 6510
components:
- type: Transform
pos: -97.5,-26.5
parent: 2
- - uid: 6511
- components:
- - type: Transform
- pos: -101.5,-22.5
- parent: 2
- - uid: 6512
- components:
- - type: Transform
- pos: -101.5,-24.5
- parent: 2
- uid: 6513
components:
- type: Transform
@@ -120074,20 +120645,15 @@ entities:
- type: Transform
pos: -89.5,-34.5
parent: 2
- - uid: 6564
- components:
- - type: Transform
- pos: -97.5,-30.5
- parent: 2
- - uid: 6576
+ - uid: 6546
components:
- type: Transform
- pos: -101.5,-28.5
+ pos: -100.5,-22.5
parent: 2
- - uid: 6578
+ - uid: 6564
components:
- type: Transform
- pos: -101.5,-27.5
+ pos: -97.5,-30.5
parent: 2
- uid: 6584
components:
@@ -120099,11 +120665,6 @@ entities:
- type: Transform
pos: -96.5,-36.5
parent: 2
- - uid: 6661
- components:
- - type: Transform
- pos: -78.5,-44.5
- parent: 2
- uid: 6694
components:
- type: Transform
@@ -120116,21 +120677,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -155.5,-44.5
parent: 2
- - uid: 6730
- components:
- - type: Transform
- pos: -85.5,-39.5
- parent: 2
- uid: 6744
components:
- type: Transform
pos: -94.5,-46.5
parent: 2
- - uid: 6745
- components:
- - type: Transform
- pos: -78.5,-45.5
- parent: 2
- uid: 6752
components:
- type: Transform
@@ -120141,26 +120692,11 @@ entities:
- type: Transform
pos: -78.5,-20.5
parent: 2
- - uid: 6773
- components:
- - type: Transform
- pos: -78.5,-49.5
- parent: 2
- uid: 6776
components:
- type: Transform
pos: -101.5,-44.5
parent: 2
- - uid: 6793
- components:
- - type: Transform
- pos: -78.5,-36.5
- parent: 2
- - uid: 6795
- components:
- - type: Transform
- pos: -78.5,-40.5
- parent: 2
- uid: 6801
components:
- type: Transform
@@ -120171,21 +120707,11 @@ entities:
- type: Transform
pos: -84.5,-30.5
parent: 2
- - uid: 6808
- components:
- - type: Transform
- pos: -82.5,-40.5
- parent: 2
- uid: 6809
components:
- type: Transform
pos: -80.5,-30.5
parent: 2
- - uid: 6819
- components:
- - type: Transform
- pos: -78.5,-41.5
- parent: 2
- uid: 6821
components:
- type: Transform
@@ -120196,11 +120722,6 @@ entities:
- type: Transform
pos: -78.5,-23.5
parent: 2
- - uid: 6826
- components:
- - type: Transform
- pos: -78.5,-50.5
- parent: 2
- uid: 6844
components:
- type: Transform
@@ -120223,11 +120744,6 @@ entities:
- type: Transform
pos: -83.5,-30.5
parent: 2
- - uid: 6886
- components:
- - type: Transform
- pos: -78.5,-37.5
- parent: 2
- uid: 6894
components:
- type: Transform
@@ -120265,11 +120781,6 @@ entities:
- type: Transform
pos: -124.5,7.5
parent: 2
- - uid: 7033
- components:
- - type: Transform
- pos: -92.5,-36.5
- parent: 2
- uid: 7146
components:
- type: Transform
@@ -120401,11 +120912,6 @@ entities:
- type: Transform
pos: -90.5,-52.5
parent: 2
- - uid: 7238
- components:
- - type: Transform
- pos: -82.5,-39.5
- parent: 2
- uid: 7268
components:
- type: Transform
@@ -120479,11 +120985,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -127.5,-33.5
parent: 2
- - uid: 7563
- components:
- - type: Transform
- pos: -75.5,-63.5
- parent: 2
- uid: 7567
components:
- type: Transform
@@ -120995,11 +121496,6 @@ entities:
- type: Transform
pos: -81.5,31.5
parent: 2
- - uid: 9126
- components:
- - type: Transform
- pos: -78.5,-52.5
- parent: 2
- uid: 9127
components:
- type: Transform
@@ -121085,30 +121581,21 @@ entities:
- type: Transform
pos: -29.5,18.5
parent: 2
- - uid: 9458
- components:
- - type: Transform
- pos: -97.5,-28.5
- parent: 2
- - uid: 9545
- components:
- - type: Transform
- pos: -101.5,-39.5
- parent: 2
- - uid: 9636
+ - uid: 9399
components:
- type: Transform
- pos: -83.5,-43.5
+ pos: -92.5,-43.5
parent: 2
- - uid: 9639
+ - uid: 9400
components:
- type: Transform
- pos: -97.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-37.5
parent: 2
- - uid: 9933
+ - uid: 9545
components:
- type: Transform
- pos: -74.5,-63.5
+ pos: -101.5,-39.5
parent: 2
- uid: 9988
components:
@@ -121150,6 +121637,12 @@ entities:
- type: Transform
pos: -93.5,39.5
parent: 2
+ - uid: 10204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-35.5
+ parent: 2
- uid: 10376
components:
- type: Transform
@@ -121376,11 +121869,6 @@ entities:
- type: Transform
pos: -27.5,13.5
parent: 2
- - uid: 11060
- components:
- - type: Transform
- pos: -97.5,-32.5
- parent: 2
- uid: 11079
components:
- type: Transform
@@ -121429,11 +121917,6 @@ entities:
- type: Transform
pos: -101.5,-46.5
parent: 2
- - uid: 11771
- components:
- - type: Transform
- pos: -17.5,-51.5
- parent: 2
- uid: 11772
components:
- type: Transform
@@ -121491,11 +121974,6 @@ entities:
- type: Transform
pos: -14.5,-70.5
parent: 2
- - uid: 12851
- components:
- - type: Transform
- pos: -79.5,-52.5
- parent: 2
- uid: 12852
components:
- type: Transform
@@ -121540,7 +122018,7 @@ entities:
- uid: 13570
components:
- type: Transform
- pos: -78.5,-51.5
+ pos: -90.5,-43.5
parent: 2
- uid: 13584
components:
@@ -121552,6 +122030,12 @@ entities:
- type: Transform
pos: -138.5,-26.5
parent: 2
+ - uid: 13729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,-21.5
+ parent: 2
- uid: 13787
components:
- type: Transform
@@ -121820,21 +122304,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -148.5,-51.5
parent: 2
- - uid: 14174
+ - uid: 14202
components:
- type: Transform
- pos: -75.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-21.5
parent: 2
- uid: 14487
components:
- type: Transform
pos: -87.5,-52.5
parent: 2
- - uid: 14489
- components:
- - type: Transform
- pos: -81.5,-43.5
- parent: 2
- uid: 14569
components:
- type: Transform
@@ -121871,16 +122351,6 @@ entities:
rot: 3.141592653589793 rad
pos: -93.5,26.5
parent: 2
- - uid: 14982
- components:
- - type: Transform
- pos: -75.5,-51.5
- parent: 2
- - uid: 15004
- components:
- - type: Transform
- pos: -75.5,-46.5
- parent: 2
- uid: 15302
components:
- type: Transform
@@ -121907,20 +122377,46 @@ entities:
- type: Transform
pos: -14.5,0.5
parent: 2
+ - uid: 16011
+ components:
+ - type: Transform
+ pos: -104.5,-0.5
+ parent: 2
+ - uid: 16014
+ components:
+ - type: Transform
+ pos: -101.5,-0.5
+ parent: 2
- uid: 16295
components:
- type: Transform
pos: -150.5,-19.5
parent: 2
- - uid: 16342
+ - uid: 16333
components:
- type: Transform
- pos: -82.5,-82.5
+ pos: -73.5,-42.5
parent: 2
- - uid: 16405
+ - uid: 16420
components:
- type: Transform
- pos: -74.5,-56.5
+ pos: -100.5,-32.5
+ parent: 2
+ - uid: 16441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-35.5
+ parent: 2
+ - uid: 16453
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
+ parent: 2
+ - uid: 16702
+ components:
+ - type: Transform
+ pos: -100.5,-31.5
parent: 2
- uid: 16808
components:
@@ -121932,12 +122428,27 @@ entities:
- type: Transform
pos: -146.5,-19.5
parent: 2
+ - uid: 16845
+ components:
+ - type: Transform
+ pos: -100.5,-27.5
+ parent: 2
- uid: 16869
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -125.5,-59.5
parent: 2
+ - uid: 16913
+ components:
+ - type: Transform
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 16935
+ components:
+ - type: Transform
+ pos: -100.5,-28.5
+ parent: 2
- uid: 16955
components:
- type: Transform
@@ -121973,31 +122484,6 @@ entities:
- type: Transform
pos: -128.5,-7.5
parent: 2
- - uid: 17043
- components:
- - type: Transform
- pos: -68.5,-69.5
- parent: 2
- - uid: 17045
- components:
- - type: Transform
- pos: -66.5,-70.5
- parent: 2
- - uid: 17052
- components:
- - type: Transform
- pos: -67.5,-70.5
- parent: 2
- - uid: 17054
- components:
- - type: Transform
- pos: -68.5,-70.5
- parent: 2
- - uid: 17060
- components:
- - type: Transform
- pos: -66.5,-69.5
- parent: 2
- uid: 17065
components:
- type: Transform
@@ -122020,11 +122506,6 @@ entities:
- type: Transform
pos: -84.5,-0.5
parent: 2
- - uid: 17124
- components:
- - type: Transform
- pos: -69.5,-64.5
- parent: 2
- uid: 17136
components:
- type: Transform
@@ -122267,11 +122748,27 @@ entities:
rot: 3.141592653589793 rad
pos: -114.5,-7.5
parent: 2
+ - uid: 18093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-38.5
+ parent: 2
+ - uid: 18098
+ components:
+ - type: Transform
+ pos: -100.5,-23.5
+ parent: 2
- uid: 18115
components:
- type: Transform
pos: -36.5,-45.5
parent: 2
+ - uid: 18135
+ components:
+ - type: Transform
+ pos: -100.5,-24.5
+ parent: 2
- uid: 18261
components:
- type: Transform
@@ -122284,6 +122781,35 @@ entities:
rot: -1.5707963267948966 rad
pos: -126.5,-59.5
parent: 2
+ - uid: 18614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-52.5
+ parent: 2
+ - uid: 18631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-47.5
+ parent: 2
+ - uid: 18632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-42.5
+ parent: 2
+ - uid: 18633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-48.5
+ parent: 2
+ - uid: 18779
+ components:
+ - type: Transform
+ pos: -73.5,-49.5
+ parent: 2
- uid: 18812
components:
- type: Transform
@@ -122299,6 +122825,12 @@ entities:
- type: Transform
pos: -156.5,-50.5
parent: 2
+ - uid: 18954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-43.5
+ parent: 2
- uid: 18976
components:
- type: Transform
@@ -122347,11 +122879,6 @@ entities:
- type: Transform
pos: -157.5,-48.5
parent: 2
- - uid: 19896
- components:
- - type: Transform
- pos: -69.5,-34.5
- parent: 2
- uid: 19911
components:
- type: Transform
@@ -122446,6 +122973,12 @@ entities:
- type: Transform
pos: -141.5,-8.5
parent: 2
+ - uid: 20289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-71.5
+ parent: 2
- uid: 20313
components:
- type: Transform
@@ -122556,10 +123089,33 @@ entities:
- type: Transform
pos: -104.5,37.5
parent: 2
- - uid: 20736
+ - uid: 20538
components:
- type: Transform
- pos: -71.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,-36.5
+ parent: 2
+ - uid: 20540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-36.5
+ parent: 2
+ - uid: 20730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-35.5
+ parent: 2
+ - uid: 20781
+ components:
+ - type: Transform
+ pos: -73.5,-40.5
+ parent: 2
+ - uid: 20784
+ components:
+ - type: Transform
+ pos: -73.5,-43.5
parent: 2
- uid: 20937
components:
@@ -122806,6 +123362,12 @@ entities:
- type: Transform
pos: -89.5,-70.5
parent: 2
+ - uid: 22163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-71.5
+ parent: 2
- uid: 22195
components:
- type: Transform
@@ -122936,6 +123498,11 @@ entities:
- type: Transform
pos: -118.5,-78.5
parent: 2
+ - uid: 23113
+ components:
+ - type: Transform
+ pos: -72.5,-56.5
+ parent: 2
- uid: 23144
components:
- type: Transform
@@ -122960,11 +123527,57 @@ entities:
rot: 3.141592653589793 rad
pos: -142.5,0.5
parent: 2
- - uid: 23294
+ - uid: 23228
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,-60.5
+ pos: -76.5,-49.5
+ parent: 2
+ - uid: 23234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-52.5
+ parent: 2
+ - uid: 23236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-39.5
+ parent: 2
+ - uid: 23237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 23238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-40.5
+ parent: 2
+ - uid: 23242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-28.5
+ parent: 2
+ - uid: 23269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-50.5
+ parent: 2
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: -73.5,-50.5
+ parent: 2
+ - uid: 23276
+ components:
+ - type: Transform
+ pos: -73.5,-41.5
parent: 2
- uid: 23331
components:
@@ -123008,12 +123621,6 @@ entities:
- type: Transform
pos: -121.5,24.5
parent: 2
- - uid: 23463
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-60.5
- parent: 2
- uid: 23501
components:
- type: Transform
@@ -123037,12 +123644,6 @@ entities:
rot: 3.141592653589793 rad
pos: -69.5,-17.5
parent: 2
- - uid: 23663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-59.5
- parent: 2
- uid: 23808
components:
- type: Transform
@@ -123112,18 +123713,17 @@ entities:
rot: 3.141592653589793 rad
pos: -102.5,25.5
parent: 2
- - uid: 23939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-34.5
- parent: 2
- uid: 23946
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-22.5
parent: 2
+ - uid: 24019
+ components:
+ - type: Transform
+ pos: -39.5,-16.5
+ parent: 2
- uid: 24186
components:
- type: Transform
@@ -124223,15 +124823,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -11.5,-63.5
parent: 2
- - uid: 25908
- components:
- - type: Transform
- pos: -75.5,-40.5
- parent: 2
- - uid: 25910
+ - uid: 25987
components:
- type: Transform
- pos: -75.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-45.5
parent: 2
- uid: 26062
components:
@@ -124716,6 +125312,11 @@ entities:
- type: Transform
pos: -63.51709,7.5955453
parent: 2
+ - uid: 19349
+ components:
+ - type: Transform
+ pos: -3.4822798,-6.4395247
+ parent: 2
- uid: 22311
components:
- type: Transform
@@ -124726,12 +125327,12 @@ entities:
- uid: 20328
components:
- type: Transform
- pos: -95.65996,35.329193
+ pos: -95.63546,32.26982
parent: 2
- uid: 20342
components:
- type: Transform
- pos: -95.45683,35.31357
+ pos: -95.38546,32.285446
parent: 2
- proto: HandheldHealthAnalyzer
entities:
@@ -124752,32 +125353,23 @@ entities:
- type: Transform
pos: -122.6231,-16.413368
parent: 2
- - uid: 15999
- components:
- - type: Transform
- pos: -109.499535,-33.66865
- parent: 2
- proto: HandLabeler
entities:
- - uid: 16016
+ - uid: 20727
components:
- type: Transform
- pos: -109.499535,-33.715527
+ rot: 6.283185307179586 rad
+ pos: -97.65116,-1.4444771
parent: 2
- uid: 22273
components:
- type: Transform
pos: -52.29675,-7.5648193
parent: 2
- - uid: 22291
- components:
- - type: Transform
- pos: -39.483585,-26.581343
- parent: 2
- uid: 22292
components:
- type: Transform
- pos: -37.506813,-16.451693
+ pos: -36.50671,-17.824657
parent: 2
- uid: 22293
components:
@@ -124789,6 +125381,11 @@ entities:
- type: Transform
pos: -37.600494,-30.548458
parent: 2
+ - uid: 23930
+ components:
+ - type: Transform
+ pos: -38.38171,-26.499212
+ parent: 2
- uid: 25704
components:
- type: Transform
@@ -124816,10 +125413,10 @@ entities:
parent: 2
- proto: HarmonicaInstrument
entities:
- - uid: 6796
+ - uid: 20279
components:
- type: Transform
- pos: -89.56172,-46.353573
+ pos: -89.43986,-46.334167
parent: 2
- proto: HeatExchanger
entities:
@@ -124885,6 +125482,11 @@ entities:
parent: 2
- proto: HighSecCommandLocked
entities:
+ - uid: 9403
+ components:
+ - type: Transform
+ pos: -114.5,-31.5
+ parent: 2
- uid: 11189
components:
- type: Transform
@@ -124900,10 +125502,10 @@ entities:
- - ResearchDirector
- proto: HighSecDoor
entities:
- - uid: 6107
+ - uid: 321
components:
- type: Transform
- pos: -38.5,-70.5
+ pos: -38.5,-68.5
parent: 2
- uid: 25923
components:
@@ -124915,7 +125517,7 @@ entities:
- uid: 8267
components:
- type: Transform
- pos: -8.516942,-18.422981
+ pos: -8.4636,-18.473902
parent: 2
- uid: 15981
components:
@@ -124944,26 +125546,33 @@ entities:
- type: Transform
pos: -120.5,-72.5
parent: 2
-- proto: HolopadCargoBay
+- proto: HolopadCargoBayLongRange
entities:
- - uid: 24533
+ - uid: 20299
components:
- type: Transform
pos: -89.5,24.5
parent: 2
- proto: HolopadCargoFront
entities:
- - uid: 24532
+ - uid: 20509
components:
- type: Transform
- pos: -100.5,15.5
+ pos: -100.5,14.5
+ parent: 2
+- proto: HolopadCargoSalvageBay
+ entities:
+ - uid: 20454
+ components:
+ - type: Transform
+ pos: -93.5,34.5
parent: 2
- proto: HolopadCommandBridgeLongRange
entities:
- - uid: 24542
+ - uid: 21422
components:
- type: Transform
- pos: -61.5,5.5
+ pos: -61.5,6.5
parent: 2
- proto: HolopadCommandCaptain
entities:
@@ -125023,10 +125632,10 @@ entities:
parent: 2
- proto: HolopadEngineeringAtmosFront
entities:
- - uid: 24529
+ - uid: 24318
components:
- type: Transform
- pos: -113.5,-5.5
+ pos: -113.5,-4.5
parent: 2
- proto: HolopadEngineeringAtmosMain
entities:
@@ -125049,6 +125658,13 @@ entities:
- type: Transform
pos: -113.5,-16.5
parent: 2
+- proto: HolopadEngineeringTechVault
+ entities:
+ - uid: 25905
+ components:
+ - type: Transform
+ pos: -111.5,-30.5
+ parent: 2
- proto: HolopadEngineeringTelecoms
entities:
- uid: 20300
@@ -125063,6 +125679,13 @@ entities:
- type: Transform
pos: -34.5,15.5
parent: 2
+- proto: HolopadGeneralCryosleep
+ entities:
+ - uid: 14813
+ components:
+ - type: Transform
+ pos: -71.5,-20.5
+ parent: 2
- proto: HolopadGeneralEvac
entities:
- uid: 24548
@@ -125070,6 +125693,13 @@ entities:
- type: Transform
pos: -11.5,-13.5
parent: 2
+- proto: HolopadGeneralEVAStorage
+ entities:
+ - uid: 6711
+ components:
+ - type: Transform
+ pos: -34.5,-5.5
+ parent: 2
- proto: HolopadGeneralLounge
entities:
- uid: 24553
@@ -125077,6 +125707,20 @@ entities:
- type: Transform
pos: -64.5,-54.5
parent: 2
+- proto: HolopadGeneralTheater
+ entities:
+ - uid: 25903
+ components:
+ - type: Transform
+ pos: -53.5,-36.5
+ parent: 2
+- proto: HolopadGeneralTools
+ entities:
+ - uid: 23278
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 2
- proto: HolopadMedicalChemistry
entities:
- uid: 25618
@@ -125084,6 +125728,13 @@ entities:
- type: Transform
pos: -38.5,-22.5
parent: 2
+- proto: HolopadMedicalCryopods
+ entities:
+ - uid: 20523
+ components:
+ - type: Transform
+ pos: -24.5,-31.5
+ parent: 2
- proto: HolopadMedicalFront
entities:
- uid: 24544
@@ -125105,6 +125756,34 @@ entities:
- type: Transform
pos: -24.5,-24.5
parent: 2
+- proto: HolopadMedicalSurgery
+ entities:
+ - uid: 6710
+ components:
+ - type: Transform
+ pos: -18.5,-37.5
+ parent: 2
+- proto: HolopadScienceAnomaly
+ entities:
+ - uid: 6773
+ components:
+ - type: Transform
+ pos: -127.5,-38.5
+ parent: 2
+- proto: HolopadScienceArtifact
+ entities:
+ - uid: 24319
+ components:
+ - type: Transform
+ pos: -144.5,-45.5
+ parent: 2
+- proto: HolopadScienceFront
+ entities:
+ - uid: 17198
+ components:
+ - type: Transform
+ pos: -108.5,-45.5
+ parent: 2
- proto: HolopadScienceRnd
entities:
- uid: 24524
@@ -125149,10 +125828,10 @@ entities:
parent: 2
- proto: HolopadSecurityPerma
entities:
- - uid: 17742
+ - uid: 16421
components:
- type: Transform
- pos: -82.5,-41.5
+ pos: -85.5,-45.5
parent: 2
- proto: HolopadSecurityWarden
entities:
@@ -125168,19 +125847,54 @@ entities:
- type: Transform
pos: -68.5,-31.5
parent: 2
+- proto: HolopadServiceBotany
+ entities:
+ - uid: 6777
+ components:
+ - type: Transform
+ pos: -52.5,-22.5
+ parent: 2
- proto: HolopadServiceChapel
entities:
- - uid: 26098
+ - uid: 25904
+ components:
+ - type: Transform
+ pos: -50.5,-45.5
+ parent: 2
+- proto: HolopadServiceClown
+ entities:
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: -115.5,28.5
+ parent: 2
+- proto: HolopadServiceJanitor
+ entities:
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 2
+- proto: HolopadServiceKitchen
+ entities:
+ - uid: 14262
+ components:
+ - type: Transform
+ pos: -54.5,-31.5
+ parent: 2
+- proto: HolopadServiceLibrary
+ entities:
+ - uid: 6774
components:
- type: Transform
- pos: -47.5,-45.5
+ pos: -50.5,-53.5
parent: 2
- proto: HolopadServiceNewsroom
entities:
- - uid: 17621
+ - uid: 6120
components:
- type: Transform
- pos: -112.5,-30.5
+ pos: -93.5,1.5
parent: 2
- proto: HospitalCurtainsOpen
entities:
@@ -125297,11 +126011,6 @@ entities:
- type: Transform
pos: -19.5,-51.5
parent: 2
- - uid: 24337
- components:
- - type: Transform
- pos: -17.5,-51.5
- parent: 2
- uid: 24338
components:
- type: Transform
@@ -125309,50 +126018,56 @@ entities:
parent: 2
- proto: hydroponicsSoil
entities:
- - uid: 6777
+ - uid: 15264
components:
- type: Transform
- pos: -84.5,-50.5
+ pos: -51.5,-18.5
parent: 2
- - uid: 7115
+ - uid: 16332
components:
- type: Transform
- pos: -86.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-48.5
parent: 2
- - uid: 7122
+ - uid: 17783
components:
- type: Transform
- pos: -85.5,-50.5
+ pos: -49.5,-21.5
parent: 2
- - uid: 9633
+ - uid: 18647
components:
- type: Transform
- pos: -86.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-48.5
parent: 2
- - uid: 9634
+ - uid: 19096
components:
- type: Transform
- pos: -85.5,-48.5
+ pos: -49.5,-20.5
parent: 2
- - uid: 9635
+ - uid: 19353
components:
- type: Transform
- pos: -84.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-48.5
parent: 2
- - uid: 15264
+ - uid: 19487
components:
- type: Transform
- pos: -51.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-50.5
parent: 2
- - uid: 17783
+ - uid: 19559
components:
- type: Transform
- pos: -49.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-50.5
parent: 2
- - uid: 19096
+ - uid: 19968
components:
- type: Transform
- pos: -49.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-50.5
parent: 2
- uid: 21720
components:
@@ -125361,11 +126076,6 @@ entities:
parent: 2
- proto: HydroponicsToolMiniHoe
entities:
- - uid: 6833
- components:
- - type: Transform
- pos: -85.54748,-49.773968
- parent: 2
- uid: 11186
components:
- type: Transform
@@ -125373,11 +126083,6 @@ entities:
parent: 2
- proto: HydroponicsToolSpade
entities:
- - uid: 6738
- components:
- - type: Transform
- pos: -85.46935,-49.695843
- parent: 2
- uid: 11187
components:
- type: Transform
@@ -125440,6 +126145,13 @@ entities:
- type: Transform
pos: -51.5,-23.5
parent: 2
+- proto: IDComputerCircuitboard
+ entities:
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: -116.53713,-31.611862
+ parent: 2
- proto: Igniter
entities:
- uid: 5666
@@ -125538,16 +126250,16 @@ entities:
parent: 2
- proto: IntercomCommon
entities:
- - uid: 6709
+ - uid: 6494
components:
- type: Transform
- pos: -82.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-41.5
parent: 2
- - uid: 9433
+ - uid: 6840
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-46.5
+ pos: -89.5,-43.5
parent: 2
- uid: 16529
components:
@@ -125622,6 +126334,18 @@ entities:
parent: 2
- proto: IntercomMedical
entities:
+ - uid: 13759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-34.5
+ parent: 2
+ - uid: 13761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-51.5
+ parent: 2
- uid: 17025
components:
- type: Transform
@@ -125651,12 +126375,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -20.5,-43.5
parent: 2
- - uid: 25848
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-29.5
- parent: 2
- proto: IntercomScience
entities:
- uid: 12734
@@ -125861,13 +126579,18 @@ entities:
parent: 2
- proto: Jukebox
entities:
- - uid: 24445
+ - uid: 20510
components:
- type: Transform
- pos: -73.5,-39.5
+ pos: -71.5,-40.5
parent: 2
- proto: KitchenElectricGrill
entities:
+ - uid: 24356
+ components:
+ - type: Transform
+ pos: -132.5,-28.5
+ parent: 2
- uid: 25615
components:
- type: Transform
@@ -125927,10 +126650,10 @@ entities:
- type: Transform
pos: -136.5,26.5
parent: 2
- - uid: 17824
+ - uid: 17831
components:
- type: Transform
- pos: -84.5,-44.5
+ pos: -82.5,-47.5
parent: 2
- uid: 25616
components:
@@ -126005,15 +126728,15 @@ entities:
- type: Transform
pos: -46.448536,-4.0864625
parent: 2
- - uid: 9203
+ - uid: 13267
components:
- type: Transform
- pos: -78.498375,-29.35603
+ pos: -35.50149,-40.289227
parent: 2
- - uid: 13267
+ - uid: 18716
components:
- type: Transform
- pos: -35.50149,-40.289227
+ pos: -78.463585,-33.22606
parent: 2
- proto: LampInterrogator
entities:
@@ -126116,8 +126839,8 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 9290:
- - Pressed: Toggle
+ 4662:
+ - Pressed: Trigger
- proto: LockableButtonEngineering
entities:
- uid: 5991
@@ -126161,6 +126884,16 @@ entities:
baseName: lockable button
- proto: LockableButtonMaintenance
entities:
+ - uid: 7242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-69.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20188:
+ - Pressed: Toggle
- uid: 8824
components:
- type: Transform
@@ -126340,6 +127073,18 @@ entities:
- type: Transform
pos: -24.5,-57.5
parent: 2
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 15239
+ components:
+ - type: Transform
+ pos: -136.5,-9.5
+ parent: 2
+ - uid: 15240
+ components:
+ - type: Transform
+ pos: -136.5,-11.5
+ parent: 2
- proto: LockerEngineerFilledHardsuit
entities:
- uid: 7348
@@ -126369,16 +127114,6 @@ entities:
parent: 2
- proto: LockerEvidence
entities:
- - uid: 6550
- components:
- - type: Transform
- pos: -93.5,-39.5
- parent: 2
- - uid: 7032
- components:
- - type: Transform
- pos: -93.5,-37.5
- parent: 2
- uid: 8375
components:
- type: Transform
@@ -126394,6 +127129,21 @@ entities:
- type: Transform
pos: -96.5,-28.5
parent: 2
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
+ - uid: 17009
+ components:
+ - type: Transform
+ pos: -80.5,-38.5
+ parent: 2
+ - uid: 23314
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
- proto: LockerFreezer
entities:
- uid: 3436
@@ -126418,15 +127168,15 @@ entities:
- type: Transform
pos: -136.5,28.5
parent: 2
- - uid: 10848
+ - uid: 19888
components:
- type: Transform
- pos: -86.5,-44.5
+ pos: -18.5,19.5
parent: 2
- - uid: 19888
+ - uid: 20775
components:
- type: Transform
- pos: -18.5,19.5
+ pos: -84.5,-47.5
parent: 2
- uid: 21062
components:
@@ -126480,10 +127230,10 @@ entities:
parent: 2
- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 23671
+ - uid: 14766
components:
- type: Transform
- pos: -76.5,-32.5
+ pos: -78.5,-29.5
parent: 2
- proto: LockerMedicalFilled
entities:
@@ -126529,6 +127279,11 @@ entities:
- type: Transform
pos: -35.5,-56.5
parent: 2
+ - uid: 22810
+ components:
+ - type: Transform
+ pos: -17.5,-29.5
+ parent: 2
- proto: LockerParamedicFilled
entities:
- uid: 3979
@@ -126621,6 +127376,35 @@ entities:
- type: Transform
pos: -26.5,4.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:
+ - 11630
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: LockerSecurityFilled
entities:
- uid: 6658
@@ -126668,6 +127452,38 @@ entities:
- type: Transform
pos: -85.5,-27.5
parent: 2
+- proto: LockerSyndicatePersonal
+ entities:
+ - uid: 2411
+ components:
+ - type: MetaData
+ desc: Everything about this closet is illegal - not just the contents, the closet itself is also illicit contraband!
+ name: syndicate closet
+ - type: Transform
+ pos: -15.5,16.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 2504
+ - 2501
+ - 2493
+ - 2480
+ - 2432
+ - 2423
+ - 2415
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
- proto: LockerWardenFilled
entities:
- uid: 3888
@@ -126675,8 +127491,182 @@ entities:
- type: Transform
pos: -86.5,-22.5
parent: 2
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 13773
+ components:
+ - type: Transform
+ pos: -60.5,-64.5
+ parent: 2
+- proto: LogicGateOr
+ entities:
+ - uid: 17089
+ components:
+ - type: Transform
+ anchored: True
+ pos: -29.5,25.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9280:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 22370
+ components:
+ - type: Transform
+ anchored: True
+ pos: -4.5,-36.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8713:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
- proto: LogicGateXor
entities:
+ - uid: 8950
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-18.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1898:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 8961
+ components:
+ - type: Transform
+ anchored: True
+ pos: -82.5,18.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10565:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 12421
+ components:
+ - type: Transform
+ anchored: True
+ pos: -82.5,20.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10566:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 13489
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-16.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8300:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 16903
+ components:
+ - type: Transform
+ anchored: True
+ pos: -38.5,19.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 115:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 19502
+ components:
+ - type: Transform
+ anchored: True
+ pos: -30.5,25.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17089:
+ - Output: InputA
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 19503
+ components:
+ - type: Transform
+ anchored: True
+ pos: -28.5,25.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17089:
+ - Output: InputB
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 22371
+ components:
+ - type: Transform
+ anchored: True
+ pos: -4.5,-35.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22370:
+ - Output: InputA
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 22372
+ components:
+ - type: Transform
+ anchored: True
+ pos: -4.5,-37.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22370:
+ - Output: InputB
+ - type: Physics
+ canCollide: False
+ bodyType: Static
- uid: 24217
components:
- type: Transform
@@ -126692,6 +127682,51 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
+ - uid: 26237
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-8.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1880:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 26238
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-10.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8301:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 26239
+ components:
+ - type: Transform
+ anchored: True
+ pos: -38.5,12.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 332:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
- proto: LootSpawnerMaterialsSurplus
entities:
- uid: 13221
@@ -126868,12 +127903,12 @@ entities:
- uid: 8276
components:
- type: Transform
- pos: -78.560875,-30.73103
+ pos: -77.744835,-33.616684
parent: 2
- uid: 24471
components:
- type: Transform
- pos: -78.373375,-30.934155
+ pos: -77.369835,-33.429184
parent: 2
- proto: MailingUnit
entities:
@@ -126947,11 +127982,16 @@ entities:
- type: Transform
pos: -93.5,-25.5
parent: 2
- - uid: 25551
+ - uid: 23233
components:
- type: Transform
pos: -103.5,13.5
parent: 2
+ - type: MailingUnit
+ tag: Cargo
+ - type: Configuration
+ config:
+ tag: Cargo
- proto: MaintenanceFluffSpawner
entities:
- uid: 20643
@@ -127008,11 +128048,6 @@ entities:
- type: Transform
pos: -30.5,-64.5
parent: 2
- - uid: 21655
- components:
- - type: Transform
- pos: -30.5,-66.5
- parent: 2
- proto: MaintenanceWeaponSpawner
entities:
- uid: 20630
@@ -127102,6 +128137,11 @@ entities:
- type: Transform
pos: -22.507034,-46.74524
parent: 2
+ - uid: 22878
+ components:
+ - type: Transform
+ pos: -54.491184,-69.52867
+ parent: 2
- proto: MedkitBurnFilled
entities:
- uid: 2103
@@ -127156,11 +128196,6 @@ entities:
- type: Transform
pos: -89.49908,-23.118275
parent: 2
- - uid: 23125
- components:
- - type: Transform
- pos: -54.398636,-68.47366
- parent: 2
- proto: MedkitOxygenFilled
entities:
- uid: 2104
@@ -127196,17 +128231,39 @@ entities:
parent: 2
- proto: MetalDoor
entities:
- - uid: 21046
+ - uid: 7478
components:
- type: Transform
- pos: -70.5,-77.5
+ pos: -71.5,-77.5
+ parent: 2
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 3604
+ components:
+ - type: Transform
+ pos: -37.486786,-66.274414
+ parent: 2
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: -111.730156,-33.7062
+ parent: 2
+ - uid: 22688
+ components:
+ - type: Transform
+ pos: -37.68991,-66.430664
+ parent: 2
+ - uid: 23299
+ components:
+ - type: Transform
+ pos: -111.37078,-33.61245
parent: 2
- proto: MicrophoneInstrument
entities:
- - uid: 16006
+ - uid: 6021
components:
- type: Transform
- pos: -114.46207,-31.441647
+ pos: -95.487045,0.5328963
parent: 2
- proto: MiningDrill
entities:
@@ -127313,15 +128370,20 @@ entities:
- type: Transform
pos: -14.528507,-1.5713043
parent: 2
+ - uid: 18644
+ components:
+ - type: Transform
+ pos: -80.5357,-49.43203
+ parent: 2
- uid: 22297
components:
- type: Transform
pos: -18.550848,-1.5089836
parent: 2
- - uid: 25709
+ - uid: 26199
components:
- type: Transform
- pos: -82.47984,-49.47957
+ pos: -81.52969,-67.45853
parent: 2
- proto: Morgue
entities:
@@ -127429,6 +128491,11 @@ entities:
parent: 3336
- type: Physics
canCollide: False
+ - uid: 4274
+ components:
+ - type: Transform
+ pos: -112.730156,-33.36245
+ parent: 2
- uid: 6282
components:
- type: Transform
@@ -127451,10 +128518,11 @@ entities:
parent: 2
- proto: NewsReaderCartridge
entities:
- - uid: 16012
+ - uid: 21712
components:
- type: Transform
- pos: -109.437035,-33.5124
+ rot: 6.283185307179586 rad
+ pos: -97.44804,-1.2101021
parent: 2
- proto: NitrogenCanister
entities:
@@ -127629,12 +128697,22 @@ entities:
- type: Transform
pos: -34.5,-36.5
parent: 2
+ - uid: 25895
+ components:
+ - type: Transform
+ pos: -34.5,-53.5
+ parent: 2
- proto: OreBag
entities:
- - uid: 21051
+ - uid: 8514
+ components:
+ - type: Transform
+ pos: -78.5218,-74.4102
+ parent: 2
+ - uid: 26196
components:
- type: Transform
- pos: -74.48228,-73.40599
+ pos: -73.537155,-24.424973
parent: 2
- proto: OreBox
entities:
@@ -127648,22 +128726,23 @@ entities:
- type: Transform
pos: -63.5,-12.5
parent: 2
- - uid: 16385
+ - uid: 10123
components:
- type: Transform
- pos: -83.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-59.5
parent: 2
- - uid: 21050
+ - uid: 23131
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -73.5,-71.5
+ pos: -77.5,-72.5
parent: 2
- - uid: 22006
+ - uid: 23225
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -118.5,-29.5
+ pos: -21.5,-0.5
parent: 2
- uid: 23393
components:
@@ -127796,6 +128875,18 @@ entities:
[bold]Reason:[/bold] Repair and construction materials
[bold]Deliver to:[/bold] Engineering
+ - uid: 6631
+ components:
+ - type: Transform
+ pos: -35.52974,-41.48317
+ parent: 2
+ - type: Paper
+ content: >2-
+
+ [head=1]Health Advisory[/head]
+
+
+ Due to the slight deviations in the gravity generator's gravitaitonal field, runoff water from mining operations has accumulated near the centre of the station. Tests have concluded that this water is [bold]contaminated with dangerous levels of plasma[/bold]. Avoid contact with the contaminated water until it can be safely extracted. Do not consume the contaminated water under any circumstances.
- uid: 9488
components:
- type: Transform
@@ -128000,6 +129091,17 @@ entities:
currentLabel: Logbook
- type: NameModifier
baseName: paper
+ - uid: 22368
+ components:
+ - type: Transform
+ pos: -84.44287,19.534288
+ parent: 2
+ - type: Paper
+ content: >2-
+
+ [head=1][color=#ff0000] WARNING![/color][/head]
+
+ [bold]Ensure internal airlock is fully closed before undocking. Failure to ensure internal airlock is closed will lead to internal and external airlocks remaining open during undocking proceedure.[/bold]
- uid: 25911
components:
- type: Transform
@@ -128087,11 +129189,6 @@ entities:
- type: Transform
pos: -44.5,-4.5
parent: 2
- - uid: 3725
- components:
- - type: Transform
- pos: -75.5,-42.5
- parent: 2
- uid: 3856
components:
- type: Transform
@@ -128162,15 +129259,20 @@ entities:
- type: Transform
pos: -35.5,-42.5
parent: 2
+ - uid: 13968
+ components:
+ - type: Transform
+ pos: -73.5,-44.5
+ parent: 2
- uid: 14264
components:
- type: Transform
pos: -98.5,-47.5
parent: 2
- - uid: 16027
+ - uid: 17230
components:
- type: Transform
- pos: -109.5,-30.5
+ pos: -76.5,-33.5
parent: 2
- uid: 20332
components:
@@ -128178,10 +129280,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,-78.5
parent: 2
- - uid: 23165
+ - uid: 23134
components:
- type: Transform
- pos: -78.5,-31.5
+ pos: -98.5,-1.5
parent: 2
- uid: 25198
components:
@@ -128268,8 +129370,6 @@ entities:
- Set up solars
- - Wire science onto the power grid [italic](Did the other guys forget that?)[/italic]
-
Atmos:
@@ -128277,7 +129377,9 @@ entities:
- Set up waste
- - Hook the plasma gas miners into the storage tank [italic](Surely nothing can go wrong there...)[/italic]
+ - Prep fuel for TEG
+
+ - Make trit
Other:
@@ -128349,11 +129451,6 @@ entities:
parent: 2
- proto: Pen
entities:
- - uid: 384
- components:
- - type: Transform
- pos: -78.514,-31.340405
- parent: 2
- uid: 6478
components:
- type: Transform
@@ -128364,6 +129461,11 @@ entities:
- type: Transform
pos: -98.52247,-47.412907
parent: 2
+ - uid: 17211
+ components:
+ - type: Transform
+ pos: -76.494835,-33.44481
+ parent: 2
- uid: 17812
components:
- type: Transform
@@ -128456,10 +129558,15 @@ entities:
parent: 2
- proto: Pickaxe
entities:
- - uid: 7109
+ - uid: 8478
+ components:
+ - type: Transform
+ pos: -81.48059,-59.431446
+ parent: 2
+ - uid: 8495
components:
- type: Transform
- pos: -84.37542,-60.39783
+ pos: -78.4593,-74.44145
parent: 2
- uid: 10094
components:
@@ -128467,10 +129574,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -92.56621,28.692598
parent: 2
- - uid: 16693
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: -21.449034,-0.45583725
+ parent: 2
+ - uid: 26197
components:
- type: Transform
- pos: -82.514206,-72.561935
+ pos: -74.443405,-24.45089
parent: 2
- proto: PirateFlag
entities:
@@ -128484,7 +129596,7 @@ entities:
- uid: 24564
components:
- type: Transform
- pos: -25.657328,-70.47536
+ pos: -25.60475,-70.56888
parent: 2
- proto: PlaqueAtmos
entities:
@@ -128552,6 +129664,66 @@ entities:
rot: -1.5707963267948966 rad
pos: -24.5,-67.5
parent: 2
+ - uid: 23312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-62.5
+ parent: 2
+ - uid: 23373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-63.5
+ parent: 2
+ - uid: 23392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-60.5
+ parent: 2
+ - uid: 23441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-61.5
+ parent: 2
+ - uid: 23448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-61.5
+ parent: 2
+ - uid: 23450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-62.5
+ parent: 2
+ - uid: 23451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-59.5
+ parent: 2
+ - uid: 23452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-60.5
+ parent: 2
+ - uid: 23453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-63.5
+ parent: 2
+ - uid: 23454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -119.5,-59.5
+ parent: 2
- uid: 23845
components:
- type: Transform
@@ -128581,14 +129753,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -123.5,-72.5
parent: 2
-- proto: PlasmaShiv
- entities:
- - uid: 22287
- components:
- - type: Transform
- parent: 22286
- - type: Physics
- canCollide: False
- proto: PlasmaTank
entities:
- uid: 2843
@@ -128802,13 +129966,15 @@ entities:
- type: Transform
pos: -120.44894,36.471443
parent: 2
-- proto: PlushieLizard
+- proto: PlushieAtmosian
entities:
- - uid: 6088
+ - uid: 21675
components:
- type: Transform
- pos: -78.46719,-73.44948
+ pos: -81.45022,-45.521404
parent: 2
+- proto: PlushieLizard
+ entities:
- uid: 16518
components:
- type: Transform
@@ -128872,21 +130038,31 @@ entities:
- type: Transform
pos: -8.5,-19.5
parent: 2
- - uid: 14080
+ - uid: 9129
components:
- type: Transform
- pos: -122.5,-33.5
+ pos: -83.5,-72.5
parent: 2
- - uid: 20731
+ - uid: 13772
components:
- type: Transform
- pos: -60.5,-64.5
+ pos: -68.5,-64.5
+ parent: 2
+ - uid: 14080
+ components:
+ - type: Transform
+ pos: -122.5,-33.5
parent: 2
- uid: 21004
components:
- type: Transform
pos: -46.5,-32.5
parent: 2
+ - uid: 23305
+ components:
+ - type: Transform
+ pos: -109.5,-29.5
+ parent: 2
- uid: 23391
components:
- type: Transform
@@ -128916,11 +130092,6 @@ entities:
parent: 2
- proto: PortableGeneratorSuperPacman
entities:
- - uid: 6244
- components:
- - type: Transform
- pos: -123.5,-24.5
- parent: 2
- uid: 6266
components:
- type: Transform
@@ -128928,6 +130099,11 @@ entities:
parent: 2
- proto: PortableScrubber
entities:
+ - uid: 3962
+ components:
+ - type: Transform
+ pos: -70.5,-63.5
+ parent: 2
- uid: 6919
components:
- type: Transform
@@ -128938,11 +130114,6 @@ entities:
- type: Transform
pos: -121.5,17.5
parent: 2
- - uid: 10122
- components:
- - type: Transform
- pos: -72.5,-62.5
- parent: 2
- uid: 13678
components:
- type: Transform
@@ -129029,11 +130200,10 @@ entities:
parent: 2
- proto: PosterContrabandPunchShit
entities:
- - uid: 5107
+ - uid: 23120
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-68.5
+ pos: -48.5,-69.5
parent: 2
- proto: PosterContrabandTools
entities:
@@ -129171,10 +130341,10 @@ entities:
parent: 2
- proto: PosterLegitNanotrasenLogo
entities:
- - uid: 16008
+ - uid: 19620
components:
- type: Transform
- pos: -114.5,-28.5
+ pos: -95.5,3.5
parent: 2
- uid: 23059
components:
@@ -129284,33 +130454,40 @@ entities:
parent: 2
- proto: PosterLegitWorkForAFuture
entities:
- - uid: 16024
+ - uid: 22504
components:
- type: Transform
- pos: -112.5,-28.5
+ pos: -93.5,3.5
parent: 2
- proto: PottedPlant21
entities:
- - uid: 22286
+ - uid: 19093
components:
- type: Transform
- pos: -83.5,-47.5
+ pos: -78.5,-44.5
+ parent: 2
+- proto: PottedPlant22
+ entities:
+ - uid: 14780
+ components:
+ - type: Transform
+ pos: -81.5,-46.5
+ parent: 2
+- proto: PottedPlant27
+ entities:
+ - uid: 5611
+ components:
+ - type: Transform
+ pos: -93.5,2.5
parent: 2
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 22287
- proto: PottedPlant29
entities:
- - uid: 1741
+ - uid: 7674
components:
- type: MetaData
- desc: A plastic palm tree that looks absolutely fake. This probably constitutes the station's entire service budget...
- name: Real Palm Tree
+ desc: A plastic palm tree that looks absolutely fake. This probably constitutes the station's entire service budget.
- type: Transform
- pos: -72.5,-40.5
+ pos: -68.5,-49.5
parent: 2
- proto: PottedPlantRandom
entities:
@@ -129356,11 +130533,6 @@ entities:
- type: Transform
pos: -100.5,-43.5
parent: 2
- - uid: 16007
- components:
- - type: Transform
- pos: -114.5,-29.5
- parent: 2
- uid: 22379
components:
- type: Transform
@@ -129430,6 +130602,11 @@ entities:
parent: 2
- proto: PowerCellRecharger
entities:
+ - uid: 4276
+ components:
+ - type: Transform
+ pos: -113.5,-29.5
+ parent: 2
- uid: 4363
components:
- type: Transform
@@ -129539,6 +130716,11 @@ entities:
- type: Transform
pos: -35.5,-46.5
parent: 2
+ - uid: 21655
+ components:
+ - type: Transform
+ pos: -30.5,-66.5
+ parent: 2
- uid: 24952
components:
- type: Transform
@@ -129558,6 +130740,12 @@ entities:
showEnts: False
occludes: True
ents: []
+ - uid: 25989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-18.5
+ parent: 2
- proto: PowerCellSmallPrinted
entities:
- uid: 23931
@@ -129565,6 +130753,13 @@ entities:
- type: Transform
pos: -62.694946,-3.1233506
parent: 2
+- proto: PowerComputerCircuitboard
+ entities:
+ - uid: 15318
+ components:
+ - type: Transform
+ pos: -116.65608,-32.660168
+ parent: 2
- proto: PowerDrill
entities:
- uid: 16204
@@ -129622,6 +130817,16 @@ entities:
- type: Transform
pos: -124.5,-50.5
parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -81.5,-37.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: -111.5,-29.5
+ parent: 2
- uid: 643
components:
- type: Transform
@@ -129651,26 +130856,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -30.5,-65.5
parent: 2
- - uid: 1229
+ - uid: 1510
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -106.5,-37.5
+ pos: -97.5,-5.5
parent: 2
- uid: 1691
components:
- type: Transform
pos: -81.5,15.5
parent: 2
- - uid: 1788
+ - uid: 1764
components:
- type: Transform
- pos: -106.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,0.5
parent: 2
- - uid: 1905
+ - uid: 1820
components:
- type: Transform
- pos: -72.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,0.5
parent: 2
- uid: 2374
components:
@@ -129911,6 +131118,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -87.5,9.5
parent: 2
+ - uid: 6678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-47.5
+ parent: 2
- uid: 6720
components:
- type: Transform
@@ -130043,6 +131256,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-13.5
parent: 2
+ - uid: 8482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-57.5
+ parent: 2
- uid: 8928
components:
- type: Transform
@@ -130060,6 +131279,12 @@ entities:
- type: Transform
pos: -34.5,-39.5
parent: 2
+ - uid: 9262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-39.5
+ parent: 2
- uid: 9270
components:
- type: Transform
@@ -130086,17 +131311,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -28.5,-5.5
parent: 2
- - uid: 9621
- components:
- - type: Transform
- pos: -89.5,-44.5
- parent: 2
- - uid: 9630
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-49.5
- parent: 2
- uid: 10544
components:
- type: Transform
@@ -130202,6 +131416,11 @@ entities:
- type: Transform
pos: -46.5,2.5
parent: 2
+ - uid: 10639
+ components:
+ - type: Transform
+ pos: -85.5,2.5
+ parent: 2
- uid: 10644
components:
- type: Transform
@@ -130369,16 +131588,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -26.5,-53.5
parent: 2
- - uid: 13119
- components:
- - type: Transform
- pos: -18.5,-48.5
- parent: 2
- - uid: 13120
- components:
- - type: Transform
- pos: -18.5,-52.5
- parent: 2
- uid: 13125
components:
- type: Transform
@@ -130657,17 +131866,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-30.5
parent: 2
- - uid: 13553
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,-39.5
- parent: 2
- - uid: 13554
- components:
- - type: Transform
- pos: -82.5,-37.5
- parent: 2
- uid: 13555
components:
- type: Transform
@@ -130680,12 +131878,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-49.5
parent: 2
- - uid: 13568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,-46.5
- parent: 2
- uid: 13575
components:
- type: Transform
@@ -130765,15 +131957,11 @@ entities:
rot: 3.141592653589793 rad
pos: -134.5,-41.5
parent: 2
- - uid: 13658
- components:
- - type: Transform
- pos: -80.5,-11.5
- parent: 2
- - uid: 13691
+ - uid: 13766
components:
- type: Transform
- pos: -98.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-49.5
parent: 2
- uid: 14571
components:
@@ -130826,6 +132014,28 @@ entities:
- type: Transform
pos: -47.5,-12.5
parent: 2
+ - uid: 14690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,-14.5
+ parent: 2
+ - uid: 14691
+ components:
+ - type: Transform
+ pos: -19.5,-12.5
+ parent: 2
+ - uid: 14692
+ components:
+ - type: Transform
+ pos: -38.5,-12.5
+ parent: 2
+ - uid: 14693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-53.5
+ parent: 2
- uid: 14816
components:
- type: Transform
@@ -130876,17 +132086,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,10.5
parent: 2
- - uid: 16025
+ - uid: 16174
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -114.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,-33.5
parent: 2
- - uid: 16026
+ - uid: 16450
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -112.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -116.5,-31.5
parent: 2
- uid: 16512
components:
@@ -130945,86 +132155,142 @@ entities:
rot: 3.141592653589793 rad
pos: -89.5,-47.5
parent: 2
+ - uid: 18227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-63.5
+ parent: 2
+ - uid: 18241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-9.5
+ parent: 2
+ - uid: 18357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-63.5
+ parent: 2
- uid: 18386
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -123.5,15.5
parent: 2
- - uid: 18964
+ - uid: 18612
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-46.5
+ pos: -52.5,-70.5
parent: 2
- - uid: 19609
+ - uid: 18746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-4.5
+ parent: 2
+ - uid: 18761
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -140.5,-11.5
+ pos: -102.5,-47.5
parent: 2
- - uid: 19728
+ - uid: 18769
+ components:
+ - type: Transform
+ pos: -91.5,-55.5
+ parent: 2
+ - uid: 18782
+ components:
+ - type: Transform
+ pos: -106.5,-54.5
+ parent: 2
+ - uid: 18783
+ components:
+ - type: Transform
+ pos: -98.5,-55.5
+ parent: 2
+ - uid: 18785
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -65.5,-33.5
+ pos: -105.5,-37.5
parent: 2
- - uid: 19751
+ - uid: 18821
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-8.5
parent: 2
- - uid: 19769
+ - uid: 18822
components:
- type: Transform
- pos: -70.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,-14.5
parent: 2
- - uid: 19808
+ - uid: 18829
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -105.5,-23.5
parent: 2
- - uid: 19809
+ - uid: 18837
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -105.5,-18.5
+ pos: -104.5,-18.5
parent: 2
- - uid: 19810
+ - uid: 18932
components:
- type: Transform
- pos: -91.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -105.5,5.5
parent: 2
- - uid: 19819
+ - uid: 18939
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-58.5
+ pos: -80.5,-12.5
parent: 2
- - uid: 19824
+ - uid: 18964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-46.5
parent: 2
- - uid: 19886
+ - uid: 19569
components:
- type: Transform
- pos: -84.5,-12.5
+ pos: -85.5,-44.5
parent: 2
- - uid: 20133
+ - uid: 19609
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -24.5,-9.5
+ pos: -140.5,-11.5
parent: 2
- - uid: 20155
+ - uid: 19728
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -106.5,-23.5
+ pos: -65.5,-33.5
+ parent: 2
+ - uid: 19751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-42.5
+ parent: 2
+ - uid: 19769
+ components:
+ - type: Transform
+ pos: -70.5,-18.5
+ parent: 2
+ - uid: 20133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-9.5
parent: 2
- uid: 20157
components:
@@ -131048,6 +132314,11 @@ entities:
rot: 3.141592653589793 rad
pos: -34.5,-9.5
parent: 2
+ - uid: 20566
+ components:
+ - type: Transform
+ pos: -90.5,-60.5
+ parent: 2
- uid: 20959
components:
- type: Transform
@@ -131066,6 +132337,11 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,37.5
parent: 2
+ - uid: 21496
+ components:
+ - type: Transform
+ pos: -81.5,-44.5
+ parent: 2
- uid: 21741
components:
- type: Transform
@@ -131111,69 +132387,45 @@ entities:
rot: -1.5707963267948966 rad
pos: -112.5,29.5
parent: 2
- - uid: 23114
- components:
- - type: Transform
- pos: -60.5,-69.5
- parent: 2
- - uid: 23120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-72.5
- parent: 2
- - uid: 23333
+ - uid: 22895
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -66.5,-16.5
- parent: 2
- - uid: 23386
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -117.5,-77.5
+ pos: -49.5,-73.5
parent: 2
- - uid: 23943
+ - uid: 22970
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,-31.5
+ pos: -56.5,-69.5
parent: 2
- - uid: 24447
+ - uid: 23300
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-2.5
- parent: 2
- - uid: 24448
- components:
- - type: Transform
- pos: -95.5,0.5
+ pos: -91.5,-5.5
parent: 2
- - uid: 24449
+ - uid: 23333
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,-5.5
+ pos: -66.5,-16.5
parent: 2
- - uid: 24473
+ - uid: 23386
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -89.5,-64.5
+ pos: -117.5,-77.5
parent: 2
- - uid: 24474
+ - uid: 23399
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-67.5
+ pos: -85.5,-37.5
parent: 2
- - uid: 24475
+ - uid: 23943
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,-64.5
+ pos: -70.5,-31.5
parent: 2
- uid: 25360
components:
@@ -131215,18 +132467,6 @@ entities:
rot: 3.141592653589793 rad
pos: -145.5,-48.5
parent: 2
- - uid: 25451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-48.5
- parent: 2
- - uid: 25452
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,-15.5
- parent: 2
- uid: 25478
components:
- type: Transform
@@ -131251,11 +132491,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,23.5
parent: 2
- - uid: 25996
+ - uid: 26193
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-50.5
+ parent: 2
+ - uid: 26203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-65.5
parent: 2
- proto: PoweredlightExterior
entities:
@@ -131271,11 +132517,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-3.5
parent: 2
- - uid: 16653
- components:
- - type: Transform
- pos: -85.5,2.5
- parent: 2
- uid: 23247
components:
- type: Transform
@@ -131283,24 +132524,6 @@ entities:
parent: 2
- proto: PoweredLightPostSmall
entities:
- - uid: 8685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-12.5
- parent: 2
- - uid: 16792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-12.5
- parent: 2
- - uid: 16807
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-15.5
- parent: 2
- uid: 19746
components:
- type: Transform
@@ -131336,11 +132559,10 @@ entities:
- type: Transform
pos: -125.5,17.5
parent: 2
- - uid: 991
+ - uid: 1516
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-58.5
+ pos: -71.5,-62.5
parent: 2
- uid: 1614
components:
@@ -131353,6 +132575,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -134.5,-8.5
parent: 2
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,-0.5
+ parent: 2
- uid: 2091
components:
- type: Transform
@@ -131412,18 +132640,6 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,4.5
parent: 2
- - uid: 6118
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-42.5
- parent: 2
- - uid: 6119
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-42.5
- parent: 2
- uid: 6609
components:
- type: Transform
@@ -131487,24 +132703,12 @@ entities:
- type: Transform
pos: -34.5,-56.5
parent: 2
- - uid: 9262
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-54.5
- parent: 2
- uid: 9274
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -74.5,-11.5
parent: 2
- - uid: 9294
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -107.5,-32.5
- parent: 2
- uid: 9319
components:
- type: Transform
@@ -131545,6 +132749,12 @@ entities:
- type: Transform
pos: -46.5,-2.5
parent: 2
+ - uid: 10636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,1.5
+ parent: 2
- uid: 11053
components:
- type: Transform
@@ -131732,12 +132942,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -100.5,-38.5
parent: 2
- - uid: 13572
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-39.5
- parent: 2
- uid: 13587
components:
- type: Transform
@@ -131859,12 +133063,6 @@ entities:
rot: 3.141592653589793 rad
pos: -112.5,-6.5
parent: 2
- - uid: 16031
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -109.5,-32.5
- parent: 2
- uid: 16655
components:
- type: Transform
@@ -131933,6 +133131,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-65.5
parent: 2
+ - uid: 18640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-41.5
+ parent: 2
+ - uid: 18646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-41.5
+ parent: 2
- uid: 18695
components:
- type: Transform
@@ -131980,11 +133190,11 @@ entities:
- type: Transform
pos: -92.5,30.5
parent: 2
- - uid: 19892
+ - uid: 19808
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -88.5,1.5
+ pos: -84.5,-41.5
parent: 2
- uid: 20292
components:
@@ -132010,6 +133220,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
+ - uid: 21458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-58.5
+ parent: 2
+ - uid: 21487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-54.5
+ parent: 2
- uid: 21494
components:
- type: Transform
@@ -132051,10 +133273,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -37.5,-36.5
parent: 2
- - uid: 23392
+ - uid: 23164
components:
- type: Transform
rot: -1.5707963267948966 rad
+ pos: -95.5,-38.5
+ parent: 2
+ - uid: 23226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -100.5,4.5
parent: 2
- uid: 23514
@@ -132063,24 +133291,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -48.5,-51.5
parent: 2
- - uid: 23859
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-63.5
- parent: 2
- uid: 23860
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -65.5,-61.5
parent: 2
- - uid: 23861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-61.5
- parent: 2
- uid: 24116
components:
- type: Transform
@@ -132093,23 +133309,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-37.5
parent: 2
- - uid: 24464
- components:
- - type: Transform
- pos: -100.5,-2.5
- parent: 2
- uid: 24479
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -74.5,-15.5
parent: 2
- - uid: 24481
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-59.5
- parent: 2
- uid: 24621
components:
- type: Transform
@@ -132217,6 +133422,12 @@ entities:
rot: 3.141592653589793 rad
pos: -31.5,1.5
parent: 2
+ - uid: 25551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-41.5
+ parent: 2
- uid: 25691
components:
- type: Transform
@@ -132229,6 +133440,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-15.5
parent: 2
+ - uid: 25780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-41.5
+ parent: 2
- uid: 25955
components:
- type: Transform
@@ -132241,6 +133458,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-56.5
parent: 2
+ - uid: 25984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -106.5,-30.5
+ parent: 2
+ - uid: 25985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -106.5,-32.5
+ parent: 2
- uid: 26002
components:
- type: Transform
@@ -132330,6 +133559,13 @@ entities:
- type: Transform
pos: -122.5,-37.5
parent: 2
+- proto: ProtolatheMachineCircuitboard
+ entities:
+ - uid: 23463
+ components:
+ - type: Transform
+ pos: -116.32796,-30.363293
+ parent: 2
- proto: PsychBed
entities:
- uid: 9300
@@ -132339,16 +133575,15 @@ entities:
parent: 2
- proto: Rack
entities:
- - uid: 656
+ - uid: 338
components:
- type: Transform
- pos: -110.5,-40.5
+ pos: -81.5,-45.5
parent: 2
- - uid: 2123
+ - uid: 656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -82.5,-21.5
+ pos: -110.5,-40.5
parent: 2
- uid: 2126
components:
@@ -132356,12 +133591,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -82.5,-22.5
parent: 2
- - uid: 2590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-38.5
- parent: 2
- uid: 3821
components:
- type: Transform
@@ -132372,15 +133601,15 @@ entities:
- type: Transform
pos: -26.5,-28.5
parent: 2
- - uid: 5886
+ - uid: 5426
components:
- type: Transform
- pos: -107.5,-15.5
+ pos: -116.5,-32.5
parent: 2
- - uid: 6245
+ - uid: 5886
components:
- type: Transform
- pos: -125.5,-24.5
+ pos: -107.5,-15.5
parent: 2
- uid: 6314
components:
@@ -132392,6 +133621,11 @@ entities:
- type: Transform
pos: -121.5,-4.5
parent: 2
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: -116.5,-30.5
+ parent: 2
- uid: 7155
components:
- type: Transform
@@ -132403,54 +133637,73 @@ entities:
rot: 1.5707963267948966 rad
pos: -118.5,-49.5
parent: 2
- - uid: 8268
+ - uid: 9404
components:
- type: Transform
- pos: -8.5,-18.5
+ pos: -116.5,-31.5
parent: 2
- - uid: 9572
+ - uid: 9442
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -121.5,-3.5
+ pos: -99.5,0.5
parent: 2
- - uid: 10201
+ - uid: 9572
components:
- type: Transform
- pos: -82.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -121.5,-3.5
parent: 2
- uid: 12174
components:
- type: Transform
pos: -86.5,-7.5
parent: 2
+ - uid: 13770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-31.5
+ parent: 2
+ - uid: 14252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-31.5
+ parent: 2
+ - uid: 14261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-31.5
+ parent: 2
- uid: 14626
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -59.5,-38.5
parent: 2
- - uid: 15338
+ - uid: 14965
components:
- type: Transform
- pos: -37.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -82.5,-21.5
parent: 2
- - uid: 16004
+ - uid: 15338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,-33.5
+ pos: -37.5,0.5
parent: 2
- uid: 16178
components:
- type: Transform
pos: -88.5,-22.5
parent: 2
- - uid: 16903
+ - uid: 16331
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-50.5
parent: 2
- uid: 18750
components:
@@ -132478,6 +133731,11 @@ entities:
- type: Transform
pos: -26.5,-3.5
parent: 2
+ - uid: 22369
+ components:
+ - type: Transform
+ pos: -95.5,32.5
+ parent: 2
- uid: 22396
components:
- type: Transform
@@ -132519,13 +133777,6 @@ entities:
- type: Transform
pos: -119.5,-65.5
parent: 2
-- proto: RadiationCollectorNoTank
- entities:
- - uid: 21868
- components:
- - type: Transform
- pos: -114.5,36.5
- parent: 2
- proto: RagItem
entities:
- uid: 24446
@@ -132540,35 +133791,22 @@ entities:
parent: 2
- proto: Railing
entities:
- - uid: 288
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,35.5
- parent: 2
- - uid: 2376
+ - uid: 139
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -62.5,-29.5
- parent: 2
- - uid: 2380
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-26.5
+ pos: -78.5,-45.5
parent: 2
- - uid: 2432
+ - uid: 288
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -63.5,-28.5
+ pos: -96.5,35.5
parent: 2
- - uid: 3328
+ - uid: 2565
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-73.5
+ pos: -93.5,-62.5
parent: 2
- uid: 3353
components:
@@ -132600,12 +133838,6 @@ entities:
- type: Transform
pos: -59.5,-33.5
parent: 2
- - uid: 3366
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-73.5
- parent: 2
- uid: 3373
components:
- type: Transform
@@ -132628,40 +133860,34 @@ entities:
- type: Transform
pos: -121.5,14.5
parent: 2
- - uid: 5632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,12.5
- parent: 2
- - uid: 6543
+ - uid: 5393
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-28.5
+ pos: -68.5,-73.5
parent: 2
- - uid: 6604
+ - uid: 6571
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-48.5
parent: 2
- - uid: 6605
+ - uid: 6576
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,-29.5
+ pos: -83.5,-48.5
parent: 2
- - uid: 6631
+ - uid: 6578
components:
- type: Transform
- pos: -62.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-48.5
parent: 2
- - uid: 6908
+ - uid: 6675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-48.5
parent: 2
- uid: 7415
components:
@@ -132669,12 +133895,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,33.5
parent: 2
- - uid: 7575
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-29.5
- parent: 2
- uid: 8415
components:
- type: Transform
@@ -132685,17 +133905,6 @@ entities:
- type: Transform
pos: -115.5,12.5
parent: 2
- - uid: 8982
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-27.5
- parent: 2
- - uid: 8984
- components:
- - type: Transform
- pos: -60.5,-25.5
- parent: 2
- uid: 9088
components:
- type: Transform
@@ -132714,35 +133923,6 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,8.5
parent: 2
- - uid: 9301
- components:
- - type: Transform
- pos: -61.5,-25.5
- parent: 2
- - uid: 9304
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,-27.5
- parent: 2
- - uid: 9631
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-48.5
- parent: 2
- - uid: 9644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-45.5
- parent: 2
- - uid: 9649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-47.5
- parent: 2
- uid: 9823
components:
- type: Transform
@@ -132769,12 +133949,6 @@ entities:
- type: Transform
pos: -27.5,11.5
parent: 2
- - uid: 11061
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-48.5
- parent: 2
- uid: 11193
components:
- type: Transform
@@ -132797,76 +133971,106 @@ entities:
- type: Transform
pos: -59.5,-0.5
parent: 2
- - uid: 13421
+ - uid: 12495
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -112.5,-2.5
+ pos: -97.5,-5.5
parent: 2
- - uid: 13422
+ - uid: 12618
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -112.5,-3.5
+ pos: -50.5,-11.5
parent: 2
- - uid: 15034
+ - uid: 12637
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-11.5
parent: 2
- - uid: 16054
+ - uid: 12694
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-7.5
parent: 2
- - uid: 16821
+ - uid: 12851
components:
- type: Transform
- pos: -67.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-8.5
parent: 2
- - uid: 16985
+ - uid: 12896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-7.5
+ parent: 2
+ - uid: 13421
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,32.5
+ pos: -112.5,-2.5
parent: 2
- - uid: 17140
+ - uid: 13422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -112.5,-3.5
parent: 2
- - uid: 17156
+ - uid: 13428
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,27.5
+ pos: -97.5,-4.5
parent: 2
- - uid: 17826
+ - uid: 13558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-6.5
+ parent: 2
+ - uid: 13704
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,-48.5
+ pos: -62.5,-26.5
parent: 2
- - uid: 17829
+ - uid: 13707
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-48.5
+ pos: -61.5,-26.5
parent: 2
- - uid: 18074
+ - uid: 13713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-26.5
+ parent: 2
+ - uid: 16415
+ components:
+ - type: Transform
+ pos: -60.5,-28.5
+ parent: 2
+ - uid: 16985
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-3.5
+ pos: -96.5,32.5
parent: 2
- - uid: 18076
+ - uid: 17140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,30.5
+ parent: 2
+ - uid: 17156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,27.5
parent: 2
- uid: 18178
components:
@@ -132874,15 +134078,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -101.5,30.5
parent: 2
- - uid: 18783
+ - uid: 18625
components:
- type: Transform
- pos: -93.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-74.5
parent: 2
- - uid: 18787
+ - uid: 19350
components:
- type: Transform
- pos: -89.5,-63.5
+ pos: -62.5,-28.5
parent: 2
- uid: 19512
components:
@@ -132902,27 +134107,52 @@ entities:
rot: -1.5707963267948966 rad
pos: -120.5,12.5
parent: 2
+ - uid: 19885
+ components:
+ - type: Transform
+ pos: -61.5,-28.5
+ parent: 2
+ - uid: 19886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-27.5
+ parent: 2
+ - uid: 20291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,-75.5
+ parent: 2
- uid: 20320
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -97.5,32.5
parent: 2
- - uid: 20806
+ - uid: 20780
components:
- type: Transform
- pos: -94.5,-62.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,-45.5
parent: 2
- - uid: 20947
+ - uid: 20783
components:
- type: Transform
- pos: -91.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-46.5
parent: 2
- - uid: 21495
+ - uid: 21051
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-4.5
+ pos: -59.5,-27.5
+ parent: 2
+ - uid: 21419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-45.5
parent: 2
- uid: 22033
components:
@@ -132930,17 +134160,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -96.5,28.5
parent: 2
- - uid: 22348
+ - uid: 22137
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -97.5,-1.5
+ pos: -69.5,-74.5
parent: 2
- - uid: 22479
+ - uid: 22181
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,-74.5
+ pos: -90.5,-63.5
+ parent: 2
+ - uid: 23139
+ components:
+ - type: Transform
+ pos: -92.5,-62.5
parent: 2
- uid: 23371
components:
@@ -132983,102 +134217,115 @@ entities:
rot: -1.5707963267948966 rad
pos: -46.5,-46.5
parent: 2
- - uid: 15062
+ - uid: 6662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-50.5
+ parent: 2
+ - uid: 13540
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,-5.5
+ pos: -95.5,-7.5
parent: 2
- - uid: 16045
+ - uid: 13556
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-46.5
+ pos: -92.5,-7.5
parent: 2
- - uid: 16713
+ - uid: 13709
components:
- type: Transform
- pos: -66.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,-26.5
parent: 2
- - uid: 16813
+ - uid: 16423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -80.5,-45.5
parent: 2
- - uid: 17830
+ - uid: 18981
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,-50.5
+ pos: -87.5,-62.5
parent: 2
- - uid: 20901
+ - uid: 19342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-26.5
+ parent: 2
+ - uid: 19351
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -90.5,-63.5
+ pos: -63.5,-28.5
parent: 2
- - uid: 21717
+ - uid: 19555
components:
- type: Transform
- pos: -95.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-73.5
parent: 2
- - uid: 23240
+ - uid: 19896
components:
- type: Transform
- pos: -96.5,-0.5
+ pos: -59.5,-28.5
parent: 2
-- proto: RailingCornerSmall
- entities:
- - uid: 1200
+ - uid: 20512
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -63.5,-33.5
+ pos: -81.5,-47.5
parent: 2
- - uid: 2373
+ - uid: 21625
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-29.5
+ pos: -88.5,-63.5
parent: 2
- - uid: 2653
+ - uid: 22136
components:
- type: Transform
- pos: -66.5,-74.5
+ pos: -67.5,-73.5
parent: 2
- - uid: 3371
+ - uid: 23137
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,-35.5
+ pos: -91.5,-63.5
parent: 2
- - uid: 7543
+- proto: RailingCornerSmall
+ entities:
+ - uid: 1200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,-33.5
parent: 2
- - uid: 7576
+ - uid: 3371
components:
- type: Transform
- pos: -59.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-35.5
parent: 2
- - uid: 8985
+ - uid: 6588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,-25.5
+ pos: -80.5,-47.5
parent: 2
- - uid: 9434
+ - uid: 6806
components:
- type: Transform
- pos: -81.5,-46.5
+ pos: -92.5,-8.5
parent: 2
- - uid: 10859
+ - uid: 9952
components:
- type: Transform
- pos: -82.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-8.5
parent: 2
- uid: 11192
components:
@@ -133104,11 +134351,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -58.5,-0.5
parent: 2
- - uid: 18769
+ - uid: 13557
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-7.5
+ parent: 2
+ - uid: 18624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-75.5
parent: 2
- uid: 19510
components:
@@ -133128,29 +134381,33 @@ entities:
rot: 1.5707963267948966 rad
pos: -120.5,14.5
parent: 2
- - uid: 22299
+ - uid: 19774
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-5.5
+ pos: -67.5,-75.5
parent: 2
- - uid: 23299
+ - uid: 21717
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -90.5,-62.5
+ pos: -91.5,-62.5
parent: 2
- - uid: 23457
+ - uid: 21863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: -88.5,-62.5
parent: 2
- - uid: 23929
+ - uid: 23132
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,-62.5
+ pos: -87.5,-61.5
+ parent: 2
+ - uid: 23778
+ components:
+ - type: Transform
+ pos: -81.5,-48.5
parent: 2
- uid: 25560
components:
@@ -133166,17 +134423,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,10.5
parent: 2
- - uid: 10167
+ - uid: 11153
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -87.5,-48.5
+ pos: -100.5,10.5
parent: 2
- - uid: 11153
+ - uid: 16535
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -100.5,10.5
+ pos: -85.5,-48.5
parent: 2
- proto: RandomArcade
entities:
@@ -133234,16 +134491,6 @@ entities:
parent: 2
- proto: RandomArtifactSpawner20
entities:
- - uid: 1720
- components:
- - type: Transform
- pos: -99.5,-61.5
- parent: 2
- - uid: 1759
- components:
- - type: Transform
- pos: -83.5,-66.5
- parent: 2
- uid: 1777
components:
- type: Transform
@@ -133254,11 +134501,31 @@ entities:
- type: Transform
pos: -98.5,-50.5
parent: 2
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: -76.5,-68.5
+ parent: 2
- uid: 7473
components:
- type: Transform
pos: -82.5,7.5
parent: 2
+ - uid: 7625
+ components:
+ - type: Transform
+ pos: -81.5,-61.5
+ parent: 2
+ - uid: 9220
+ components:
+ - type: Transform
+ pos: -61.5,-73.5
+ parent: 2
+ - uid: 9706
+ components:
+ - type: Transform
+ pos: -98.5,-62.5
+ parent: 2
- uid: 25455
components:
- type: Transform
@@ -133266,6 +134533,21 @@ entities:
parent: 2
- proto: RandomBoard
entities:
+ - uid: 4264
+ components:
+ - type: Transform
+ pos: -112.5,-31.5
+ parent: 2
+ - uid: 4272
+ components:
+ - type: Transform
+ pos: -111.5,-31.5
+ parent: 2
+ - uid: 4275
+ components:
+ - type: Transform
+ pos: -110.5,-31.5
+ parent: 2
- uid: 19816
components:
- type: Transform
@@ -133283,10 +134565,15 @@ entities:
parent: 2
- proto: RandomInstruments
entities:
- - uid: 20952
+ - uid: 25896
components:
- type: Transform
- pos: -55.5,-37.5
+ pos: -11.5,-31.5
+ parent: 2
+ - uid: 25901
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
parent: 2
- proto: RandomPosterAny
entities:
@@ -133347,11 +134634,6 @@ entities:
- type: Transform
pos: -101.5,19.5
parent: 2
- - uid: 23050
- components:
- - type: Transform
- pos: -95.5,3.5
- parent: 2
- uid: 23051
components:
- type: Transform
@@ -133394,16 +134676,6 @@ entities:
parent: 2
- proto: RandomPosterLegit
entities:
- - uid: 4875
- components:
- - type: Transform
- pos: -107.5,-34.5
- parent: 2
- - uid: 4876
- components:
- - type: Transform
- pos: -101.5,-18.5
- parent: 2
- uid: 4893
components:
- type: Transform
@@ -133530,16 +134802,6 @@ entities:
- type: Transform
pos: -93.5,-45.5
parent: 2
- - uid: 23064
- components:
- - type: Transform
- pos: -86.5,-43.5
- parent: 2
- - uid: 23066
- components:
- - type: Transform
- pos: -79.5,-49.5
- parent: 2
- uid: 23592
components:
- type: Transform
@@ -133565,12 +134827,6 @@ entities:
- type: Transform
pos: -86.5,-15.5
parent: 2
- - uid: 24672
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,-29.5
- parent: 2
- uid: 24673
components:
- type: Transform
@@ -133708,7 +134964,7 @@ entities:
rot: 3.141592653589793 rad
pos: -98.5,28.5
parent: 2
- - uid: 7763
+ - uid: 20287
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -133777,11 +135033,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -148.5,-50.5
parent: 2
- - uid: 2667
- components:
- - type: Transform
- pos: -68.5,-70.5
- parent: 2
- uid: 5278
components:
- type: Transform
@@ -134078,6 +135329,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -146.5,-41.5
parent: 2
+ - uid: 6245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-71.5
+ parent: 2
- uid: 6924
components:
- type: Transform
@@ -134143,6 +135400,12 @@ entities:
rot: 3.141592653589793 rad
pos: -155.5,-46.5
parent: 2
+ - uid: 7890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-71.5
+ parent: 2
- uid: 9817
components:
- type: Transform
@@ -134198,16 +135461,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -143.5,-43.5
parent: 2
- - uid: 16466
+ - uid: 14110
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -153.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-71.5
parent: 2
- - uid: 17059
+ - uid: 14756
components:
- type: Transform
- pos: -68.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-70.5
+ parent: 2
+ - uid: 16466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -153.5,-42.5
parent: 2
- uid: 20368
components:
@@ -134262,27 +135532,18 @@ entities:
rot: 3.141592653589793 rad
pos: -120.5,-81.5
parent: 2
- - uid: 23448
- components:
- - type: Transform
- pos: -67.5,-70.5
- parent: 2
- - uid: 23449
- components:
- - type: Transform
- pos: -66.5,-70.5
- parent: 2
- - uid: 23450
- components:
- - type: Transform
- pos: -66.5,-69.5
- parent: 2
- uid: 23498
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -116.5,-72.5
parent: 2
+ - uid: 23716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-70.5
+ parent: 2
- uid: 24847
components:
- type: Transform
@@ -134624,6 +135885,12 @@ entities:
- type: Transform
pos: -48.5,-8.5
parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-35.5
+ parent: 2
- uid: 474
components:
- type: Transform
@@ -134706,11 +135973,6 @@ entities:
- type: Transform
pos: -31.5,-3.5
parent: 2
- - uid: 1328
- components:
- - type: Transform
- pos: -84.5,-43.5
- parent: 2
- uid: 1331
components:
- type: Transform
@@ -134788,36 +136050,6 @@ entities:
- type: Transform
pos: -106.5,-4.5
parent: 2
- - uid: 1958
- components:
- - type: Transform
- pos: -101.5,-24.5
- parent: 2
- - uid: 1959
- components:
- - type: Transform
- pos: -101.5,-26.5
- parent: 2
- - uid: 1960
- components:
- - type: Transform
- pos: -101.5,-28.5
- parent: 2
- - uid: 1963
- components:
- - type: Transform
- pos: -101.5,-27.5
- parent: 2
- - uid: 1964
- components:
- - type: Transform
- pos: -101.5,-30.5
- parent: 2
- - uid: 1972
- components:
- - type: Transform
- pos: -101.5,-31.5
- parent: 2
- uid: 1974
components:
- type: Transform
@@ -134828,11 +136060,6 @@ entities:
- type: Transform
pos: -97.5,-26.5
parent: 2
- - uid: 1977
- components:
- - type: Transform
- pos: -101.5,-32.5
- parent: 2
- uid: 1978
components:
- type: Transform
@@ -134998,11 +136225,6 @@ entities:
- type: Transform
pos: -48.5,-21.5
parent: 2
- - uid: 3490
- components:
- - type: Transform
- pos: -101.5,-22.5
- parent: 2
- uid: 3751
components:
- type: Transform
@@ -135073,11 +136295,6 @@ entities:
- type: Transform
pos: -31.5,-7.5
parent: 2
- - uid: 4402
- components:
- - type: Transform
- pos: -101.5,-23.5
- parent: 2
- uid: 4526
components:
- type: Transform
@@ -135313,16 +136530,6 @@ entities:
- type: Transform
pos: -126.5,-13.5
parent: 2
- - uid: 6516
- components:
- - type: Transform
- pos: -92.5,-36.5
- parent: 2
- - uid: 6555
- components:
- - type: Transform
- pos: -85.5,-37.5
- parent: 2
- uid: 6682
components:
- type: Transform
@@ -135338,21 +136545,6 @@ entities:
- type: Transform
pos: -95.5,36.5
parent: 2
- - uid: 6758
- components:
- - type: Transform
- pos: -90.5,-36.5
- parent: 2
- - uid: 6760
- components:
- - type: Transform
- pos: -82.5,-40.5
- parent: 2
- - uid: 6846
- components:
- - type: Transform
- pos: -97.5,-32.5
- parent: 2
- uid: 6897
components:
- type: Transform
@@ -135364,11 +136556,6 @@ entities:
rot: 3.141592653589793 rad
pos: -140.5,12.5
parent: 2
- - uid: 7025
- components:
- - type: Transform
- pos: -85.5,-39.5
- parent: 2
- uid: 7145
components:
- type: Transform
@@ -135424,11 +136611,6 @@ entities:
- type: Transform
pos: -3.5,-21.5
parent: 2
- - uid: 7242
- components:
- - type: Transform
- pos: -97.5,-24.5
- parent: 2
- uid: 7257
components:
- type: Transform
@@ -135492,6 +136674,11 @@ entities:
- type: Transform
pos: -141.5,-37.5
parent: 2
+ - uid: 7844
+ components:
+ - type: Transform
+ pos: -100.5,-27.5
+ parent: 2
- uid: 7876
components:
- type: Transform
@@ -135803,11 +136990,6 @@ entities:
- type: Transform
pos: -7.5,-29.5
parent: 2
- - uid: 8901
- components:
- - type: Transform
- pos: -83.5,-43.5
- parent: 2
- uid: 8920
components:
- type: Transform
@@ -135818,31 +137000,42 @@ entities:
- type: Transform
pos: -14.5,-68.5
parent: 2
- - uid: 8952
+ - uid: 8985
components:
- type: Transform
- pos: -82.5,-39.5
+ pos: -100.5,-26.5
parent: 2
- - uid: 8964
+ - uid: 9029
components:
- type: Transform
- pos: -81.5,-43.5
+ pos: -100.5,-24.5
+ parent: 2
+ - uid: 9034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-35.5
parent: 2
- uid: 9098
components:
- type: Transform
pos: -106.5,-45.5
parent: 2
- - uid: 9108
+ - uid: 9158
components:
- type: Transform
- pos: -111.5,-45.5
+ pos: -100.5,-22.5
parent: 2
- uid: 9324
components:
- type: Transform
pos: -30.5,22.5
parent: 2
+ - uid: 9343
+ components:
+ - type: Transform
+ pos: -90.5,-43.5
+ parent: 2
- uid: 9539
components:
- type: Transform
@@ -135853,16 +137046,6 @@ entities:
- type: Transform
pos: -95.5,13.5
parent: 2
- - uid: 9640
- components:
- - type: Transform
- pos: -97.5,-28.5
- parent: 2
- - uid: 9647
- components:
- - type: Transform
- pos: -80.5,-43.5
- parent: 2
- uid: 9788
components:
- type: Transform
@@ -135940,6 +137123,16 @@ entities:
- type: Transform
pos: -83.5,-6.5
parent: 2
+ - uid: 10861
+ components:
+ - type: Transform
+ pos: -100.5,-31.5
+ parent: 2
+ - uid: 10863
+ components:
+ - type: Transform
+ pos: -100.5,-32.5
+ parent: 2
- uid: 11035
components:
- type: Transform
@@ -135975,6 +137168,11 @@ entities:
- type: Transform
pos: -30.5,-61.5
parent: 2
+ - uid: 11162
+ components:
+ - type: Transform
+ pos: -92.5,-43.5
+ parent: 2
- uid: 11358
components:
- type: Transform
@@ -136085,11 +137283,6 @@ entities:
rot: 3.141592653589793 rad
pos: -123.5,-50.5
parent: 2
- - uid: 16320
- components:
- - type: Transform
- pos: -82.5,-82.5
- parent: 2
- uid: 16488
components:
- type: Transform
@@ -136101,6 +137294,11 @@ entities:
- type: Transform
pos: -138.5,-26.5
parent: 2
+ - uid: 16657
+ components:
+ - type: Transform
+ pos: -100.5,-28.5
+ parent: 2
- uid: 16695
components:
- type: Transform
@@ -136117,6 +137315,11 @@ entities:
- type: Transform
pos: -107.5,-61.5
parent: 2
+ - uid: 16860
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
+ parent: 2
- uid: 16906
components:
- type: Transform
@@ -136166,6 +137369,12 @@ entities:
- type: Transform
pos: -14.5,-70.5
parent: 2
+ - uid: 17742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-38.5
+ parent: 2
- uid: 18726
components:
- type: Transform
@@ -136259,6 +137468,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -120.5,37.5
parent: 2
+ - uid: 20736
+ components:
+ - type: Transform
+ pos: -100.5,-23.5
+ parent: 2
- uid: 20844
components:
- type: Transform
@@ -136305,10 +137519,10 @@ entities:
- type: Transform
pos: -141.5,-8.5
parent: 2
- - uid: 22711
+ - uid: 22701
components:
- type: Transform
- pos: -69.5,-34.5
+ pos: -39.5,-16.5
parent: 2
- uid: 22904
components:
@@ -136385,17 +137599,18 @@ entities:
- type: Transform
pos: -18.5,-51.5
parent: 2
- - uid: 24335
- components:
- - type: Transform
- pos: -17.5,-51.5
- parent: 2
- uid: 25403
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -113.5,-36.5
parent: 2
+ - uid: 25986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,-45.5
+ parent: 2
- proto: RemoteSignaller
entities:
- uid: 3377
@@ -136429,6 +137644,30 @@ entities:
- type: Transform
pos: -136.5,-48.5
parent: 2
+- proto: RiotBulletShield
+ entities:
+ - uid: 13722
+ components:
+ - type: Transform
+ pos: -82.75542,-21.36933
+ parent: 2
+ - uid: 13803
+ components:
+ - type: Transform
+ pos: -82.73979,-21.77558
+ parent: 2
+- proto: RiotShield
+ entities:
+ - uid: 11228
+ components:
+ - type: Transform
+ pos: -82.70854,-22.745094
+ parent: 2
+ - uid: 13506
+ components:
+ - type: Transform
+ pos: -82.72417,-22.29197
+ parent: 2
- proto: RobocopCircuitBoard
entities:
- uid: 24948
@@ -136436,6 +137675,18 @@ entities:
- type: Transform
pos: -118.270996,-74.35101
parent: 2
+- proto: RockGuitarInstrument
+ entities:
+ - uid: 22281
+ components:
+ - type: Transform
+ pos: -55.535583,-37.513557
+ parent: 2
+ - uid: 25893
+ components:
+ - type: Transform
+ pos: -129.55344,-29.254705
+ parent: 2
- proto: RollingPin
entities:
- uid: 22096
@@ -136460,11 +137711,6 @@ entities:
parent: 2
- proto: ScrapFaxMachine
entities:
- - uid: 3723
- components:
- - type: Transform
- pos: -75.52578,-44.378353
- parent: 2
- uid: 4992
components:
- type: Transform
@@ -136475,6 +137721,18 @@ entities:
- type: Transform
pos: -41.537453,-66.396194
parent: 2
+ - uid: 14049
+ components:
+ - type: Transform
+ pos: -73.4463,-46.27329
+ parent: 2
+- proto: ScrapFireExtinguisher
+ entities:
+ - uid: 26202
+ components:
+ - type: Transform
+ pos: -24.466484,-66.446915
+ parent: 2
- proto: Screen
entities:
- uid: 17848
@@ -136488,6 +137746,31 @@ entities:
- type: Transform
pos: -36.5,-11.5
parent: 2
+ - uid: 23792
+ components:
+ - type: Transform
+ pos: -111.5,-43.5
+ parent: 2
+ - uid: 23795
+ components:
+ - type: Transform
+ pos: -122.5,-48.5
+ parent: 2
+ - uid: 23819
+ components:
+ - type: Transform
+ pos: -67.5,-51.5
+ parent: 2
+ - uid: 23859
+ components:
+ - type: Transform
+ pos: -67.5,8.5
+ parent: 2
+ - uid: 23861
+ components:
+ - type: Transform
+ pos: -55.5,8.5
+ parent: 2
- uid: 24511
components:
- type: Transform
@@ -136572,6 +137855,11 @@ entities:
- type: Transform
pos: -118.52333,-76.418274
parent: 2
+ - uid: 25891
+ components:
+ - type: Transform
+ pos: -115.472176,29.748644
+ parent: 2
- proto: SecurityTechFab
entities:
- uid: 2119
@@ -136586,17 +137874,17 @@ entities:
- type: Transform
pos: -53.5,-18.5
parent: 2
- - uid: 17831
+ - uid: 16319
components:
- type: Transform
- pos: -88.5,-50.5
+ pos: -87.5,-50.5
parent: 2
- proto: ShardGlassPlasma
entities:
- uid: 11090
components:
- type: Transform
- pos: -24.495424,-65.501526
+ pos: -24.51336,-65.540665
parent: 2
- proto: SheetGlass
entities:
@@ -136654,8 +137942,10 @@ entities:
- uid: 6249
components:
- type: Transform
- pos: -125.32983,-24.36347
- parent: 2
+ parent: 20514
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- uid: 6315
components:
- type: Transform
@@ -136786,11 +138076,6 @@ entities:
parent: 2
- proto: SheetUranium
entities:
- - uid: 6248
- components:
- - type: Transform
- pos: -125.61828,-24.535345
- parent: 2
- uid: 6316
components:
- type: Transform
@@ -137141,6 +138426,12 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 5558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-23.5
+ parent: 2
- uid: 6265
components:
- type: Transform
@@ -137166,94 +138457,24 @@ entities:
- type: Transform
pos: -126.5,-13.5
parent: 2
- - uid: 6797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-22.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-24.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6805
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-23.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-30.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-31.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- - uid: 6820
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-27.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-28.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6883
+ - uid: 6607
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -101.5,-26.5
+ pos: -100.5,-31.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- - uid: 6896
+ - uid: 6613
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -101.5,-32.5
+ pos: -100.5,-30.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- uid: 9559
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -101.5,-44.5
parent: 2
- - uid: 9646
- components:
- - type: Transform
- pos: -91.5,-43.5
- parent: 2
- - uid: 10172
- components:
- - type: Transform
- pos: -87.5,-43.5
- parent: 2
- uid: 11159
components:
- type: Transform
@@ -137344,6 +138565,12 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 16381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-32.5
+ parent: 2
- uid: 17815
components:
- type: Transform
@@ -137368,6 +138595,30 @@ entities:
parent: 2
- type: DeviceLinkSink
invokeCounter: 1
+ - uid: 18648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-24.5
+ parent: 2
+ - uid: 18649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 18694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-28.5
+ parent: 2
+ - uid: 18777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-22.5
+ parent: 2
- uid: 19528
components:
- type: Transform
@@ -137414,6 +138665,50 @@ entities:
- type: Transform
pos: -87.5,26.5
parent: 2
+ - uid: 20417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,-40.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-40.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,-40.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20497
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 21672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-27.5
+ parent: 2
+ - uid: 22009
+ components:
+ - type: Transform
+ pos: -87.5,-43.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 22373
components:
- type: Transform
@@ -137432,6 +138727,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,16.5
parent: 2
+ - uid: 22502
+ components:
+ - type: Transform
+ pos: -83.5,-43.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 25385
components:
- type: Transform
@@ -137545,10 +138847,10 @@ entities:
invokeCounter: 1
- proto: ShuttleConsoleCircuitboard
entities:
- - uid: 1127
+ - uid: 3615
components:
- type: Transform
- pos: -29.41005,-72.5363
+ pos: -109.45768,-36.52115
parent: 2
- proto: ShuttleWindow
entities:
@@ -137619,10 +138921,10 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 1946:
- - Pressed: Toggle
1936:
- Pressed: Toggle
+ 385:
+ - Pressed: Toggle
- type: Label
currentLabel: Open Doors
- type: NameModifier
@@ -137782,6 +139084,16 @@ entities:
currentLabel: Ignite Chamber
- type: NameModifier
baseName: signal button
+ - uid: 10638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-1.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4662:
+ - Pressed: Trigger
- uid: 19541
components:
- type: MetaData
@@ -137981,7 +139293,7 @@ entities:
name: signal switch (Bridge Window Blastdoors)
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,4.25
+ pos: -60.5,4.5
parent: 2
- type: SignalSwitch
state: True
@@ -138263,6 +139575,23 @@ entities:
- Off: Off
- proto: SignalSwitchDirectional
entities:
+ - uid: 280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,-42.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 7273:
+ - On: Open
+ - Off: Close
+ 7274:
+ - On: Open
+ - Off: Close
+ 7272:
+ - On: Open
+ - Off: Close
- uid: 3053
components:
- type: Transform
@@ -138356,33 +139685,6 @@ entities:
- Off: Close
lastSignals:
Status: True
- - uid: 6852
- components:
- - type: MetaData
- name: signal switch (Perma Lockdown)
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-35.5
- parent: 2
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 4818:
- - On: Open
- - Off: Close
- 6757:
- - On: Open
- - Off: Close
- 6659:
- - On: Open
- - Off: Close
- lastSignals:
- Status: True
- - type: Label
- currentLabel: Perma Lockdown
- - type: NameModifier
- baseName: signal switch
- uid: 8067
components:
- type: Transform
@@ -138432,26 +139734,27 @@ entities:
8820:
- On: Open
- Off: Close
- - uid: 10204
+ - uid: 9429
components:
- - type: MetaData
- name: signal switch (Cell Shutters)
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-39.5
parent: 2
+ - type: SignalSwitch
+ state: True
- type: DeviceLinkSource
linkedPorts:
- 9646:
+ 20435:
- On: Open
- Off: Close
- 10172:
+ 20495:
- On: Open
- Off: Close
- - type: Label
- currentLabel: Cell Shutters
- - type: NameModifier
- baseName: signal switch
+ 20417:
+ - On: Open
+ - Off: Close
+ lastSignals:
+ Status: True
- uid: 11163
components:
- type: Transform
@@ -138486,6 +139789,22 @@ entities:
25623:
- On: Open
- Off: Close
+ - uid: 17488
+ components:
+ - type: Transform
+ pos: -112.5,-48.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 7275:
+ - On: Open
+ - Off: Close
+ 7276:
+ - On: Open
+ - Off: Close
+ 7277:
+ - On: Open
+ - Off: Close
- uid: 17816
components:
- type: MetaData
@@ -138498,13 +139817,13 @@ entities:
state: True
- type: DeviceLinkSource
linkedPorts:
- 6659:
+ 5391:
- On: Open
- Off: Close
- 6757:
+ 5113:
- On: Open
- Off: Close
- 4818:
+ 5581:
- On: Open
- Off: Close
lastSignals:
@@ -138525,31 +139844,31 @@ entities:
state: True
- type: DeviceLinkSource
linkedPorts:
- 6797:
+ 18777:
- On: Open
- Off: Close
- 6805:
+ 5558:
- On: Open
- Off: Close
- 6798:
+ 18648:
- On: Open
- Off: Close
- 6883:
+ 18649:
- On: Open
- Off: Close
- 6820:
+ 21672:
- On: Open
- Off: Close
- 6867:
+ 18694:
- On: Open
- Off: Close
- 6817:
+ 16381:
- On: Open
- Off: Close
- 6818:
+ 6607:
- On: Open
- Off: Close
- 6896:
+ 6613:
- On: Open
- Off: Close
lastSignals:
@@ -138623,39 +139942,33 @@ entities:
currentLabel: Privacy Shutters
- type: NameModifier
baseName: signal switch
- - uid: 22810
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -116.5,-42.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 7272:
- - On: Open
- - Off: Close
- 7274:
- - On: Open
- - Off: Close
- 7273:
- - Off: Close
- - On: Open
- - uid: 22811
+ - uid: 24320
components:
+ - type: MetaData
+ name: signal switch (Emergency Lockdown)
- type: Transform
- pos: -116.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -131.5,-48.8
parent: 2
+ - type: SignalSwitch
+ state: True
- type: DeviceLinkSource
linkedPorts:
- 7277:
+ 22284:
- On: Open
- Off: Close
- 7276:
+ 18724:
- On: Open
- Off: Close
- 7275:
+ 17192:
- On: Open
- Off: Close
+ lastSignals:
+ Status: True
+ - type: Label
+ currentLabel: Emergency Lockdown
+ - type: NameModifier
+ baseName: signal switch
- uid: 24811
components:
- type: Transform
@@ -138788,7 +140101,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -131.5,-48.5
+ pos: -131.5,-48.2
parent: 2
- type: SignalSwitch
state: True
@@ -138810,6 +140123,17 @@ entities:
Status: True
- proto: SignalTimer
entities:
+ - uid: 4662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-0.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9290:
+ - Start: Open
+ - Timer: Close
- uid: 16763
components:
- type: Transform
@@ -138950,18 +140274,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-28.5
parent: 2
-- proto: SignDangerMed
- entities:
- - uid: 26057
- components:
- - type: Transform
- pos: -101.5,-1.5
- parent: 2
- - uid: 26059
- components:
- - type: Transform
- pos: -93.5,-58.5
- parent: 2
- proto: SignDirectionalAtmos
entities:
- uid: 812
@@ -138986,6 +140298,11 @@ entities:
parent: 2
- proto: SignDirectionalBridge
entities:
+ - uid: 15237
+ components:
+ - type: Transform
+ pos: -100.5,-0.3
+ parent: 2
- uid: 15867
components:
- type: Transform
@@ -138998,12 +140315,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-10.2
parent: 2
- - uid: 22131
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-54.2
- parent: 2
- proto: SignDirectionalChapel
entities:
- uid: 15862
@@ -139024,12 +140335,6 @@ entities:
- type: Transform
pos: -92.5,-48.5
parent: 2
- - uid: 15859
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-13.2
- parent: 2
- uid: 15869
components:
- type: Transform
@@ -139042,13 +140347,18 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,-50.2
parent: 2
+ - uid: 20531
+ components:
+ - type: Transform
+ pos: -65.5,-13.8
+ parent: 2
- proto: SignDirectionalDorms
entities:
- - uid: 16423
+ - uid: 14096
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -77.5,-58.5
+ pos: -75.5,-58.5
parent: 2
- uid: 24508
components:
@@ -139057,22 +140367,23 @@ entities:
parent: 2
- proto: SignDirectionalEng
entities:
- - uid: 3304
+ - uid: 14748
components:
- type: Transform
- pos: -105.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-11.4
parent: 2
- - uid: 14748
+ - uid: 15234
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -101.5,-11.4
+ pos: -105.5,-0.5
parent: 2
- uid: 15849
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.4
+ pos: -65.5,-13.2
parent: 2
- uid: 19897
components:
@@ -139086,12 +140397,6 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,-21.5
parent: 2
- - uid: 22137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-54.4
- parent: 2
- uid: 23338
components:
- type: Transform
@@ -139118,11 +140423,6 @@ entities:
parent: 2
- proto: SignDirectionalEvac
entities:
- - uid: 1991
- components:
- - type: Transform
- pos: -101.5,-0.7
- parent: 2
- uid: 15858
components:
- type: Transform
@@ -139135,35 +140435,34 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,-11.6
parent: 2
- - uid: 19756
+ - uid: 15934
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-11.7
+ rot: 3.141592653589793 rad
+ pos: -100.5,-21.3
parent: 2
- - uid: 19901
+ - uid: 18780
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-10.4
+ rot: 3.141592653589793 rad
+ pos: -101.5,-36.3
parent: 2
- - uid: 19914
+ - uid: 19756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-21.3
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-11.7
parent: 2
- - uid: 22132
+ - uid: 19901
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-54.4
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-10.4
parent: 2
- - uid: 23992
+ - uid: 20803
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,-36.3
+ pos: -100.5,-0.5
parent: 2
- uid: 25470
components:
@@ -139190,12 +140489,6 @@ entities:
rot: 3.141592653589793 rad
pos: -62.5,-50.4
parent: 2
- - uid: 22133
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-54.6
- parent: 2
- uid: 24503
components:
- type: Transform
@@ -139253,17 +140546,22 @@ entities:
parent: 2
- proto: SignDirectionalMed
entities:
- - uid: 1153
+ - uid: 796
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-36.5
+ pos: -100.5,-21.5
parent: 2
- uid: 11833
components:
- type: Transform
pos: -27.5,-10.8
parent: 2
+ - uid: 15743
+ components:
+ - type: Transform
+ pos: -100.5,-0.7
+ parent: 2
- uid: 15857
components:
- type: Transform
@@ -139276,22 +140574,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -99.5,-11.8
parent: 2
- - uid: 19775
- components:
- - type: Transform
- pos: -101.5,-0.5
- parent: 2
- - uid: 19968
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-21.5
- parent: 2
- - uid: 22134
+ - uid: 18942
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,-54.8
+ pos: -101.5,-36.5
parent: 2
- uid: 22636
components:
@@ -139315,34 +140602,28 @@ entities:
parent: 2
- proto: SignDirectionalSci
entities:
- - uid: 3306
- components:
- - type: Transform
- pos: -105.5,-0.7
- parent: 2
- uid: 3662
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -31.5,-10.8
parent: 2
- - uid: 7614
+ - uid: 12470
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,-54.8
+ pos: -41.5,-15.7
parent: 2
- - uid: 12470
+ - uid: 15236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-15.7
+ pos: -105.5,-0.7
parent: 2
- uid: 15851
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.8
+ pos: -65.5,-13.6
parent: 2
- uid: 15865
components:
@@ -139354,23 +140635,11 @@ entities:
- type: Transform
pos: -106.5,-36.7
parent: 2
- - uid: 19170
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-43.5
- parent: 2
- uid: 19967
components:
- type: Transform
pos: -105.5,-21.7
parent: 2
- - uid: 24492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-47.5
- parent: 2
- uid: 25473
components:
- type: Transform
@@ -139379,16 +140648,17 @@ entities:
parent: 2
- proto: SignDirectionalSec
entities:
- - uid: 2013
+ - uid: 1738
components:
- type: Transform
- pos: -101.5,-0.3
+ rot: 3.141592653589793 rad
+ pos: -100.5,-21.7
parent: 2
- uid: 15852
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-13.6
+ pos: -65.5,-13.4
parent: 2
- uid: 15871
components:
@@ -139396,11 +140666,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -101.5,-11.6
parent: 2
- - uid: 17416
+ - uid: 16503
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,-36.7
+ pos: -101.5,-36.7
parent: 2
- uid: 19966
components:
@@ -139408,18 +140678,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,-10.6
parent: 2
- - uid: 20897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,-21.7
- parent: 2
- - uid: 22135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-54.6
- parent: 2
- uid: 23720
components:
- type: Transform
@@ -139499,12 +140757,6 @@ entities:
rot: 3.141592653589793 rad
pos: -106.5,-36.3
parent: 2
- - uid: 3307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,-0.3
- parent: 2
- uid: 4633
components:
- type: Transform
@@ -139517,11 +140769,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,17.8
parent: 2
- - uid: 15850
+ - uid: 15235
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-13.2
+ rot: 3.141592653589793 rad
+ pos: -105.5,-0.3
parent: 2
- uid: 15866
components:
@@ -139547,11 +140799,11 @@ entities:
rot: 3.141592653589793 rad
pos: -105.5,-21.3
parent: 2
- - uid: 22136
+ - uid: 20570
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,-54.2
+ pos: -57.5,-13.2
parent: 2
- uid: 25468
components:
@@ -139559,6 +140811,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -76.5,-11.3
parent: 2
+- proto: SignDisposalSpace
+ entities:
+ - uid: 20769
+ components:
+ - type: Transform
+ pos: -101.5,25.5
+ parent: 2
- proto: SignElectricalMed
entities:
- uid: 18084
@@ -139693,6 +140952,16 @@ entities:
parent: 2
- proto: SignFlammableMed
entities:
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: -92.5,-10.5
+ parent: 2
+ - uid: 8224
+ components:
+ - type: Transform
+ pos: -90.5,-59.5
+ parent: 2
- uid: 8290
components:
- type: Transform
@@ -139717,16 +140986,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,0.5
parent: 2
- - uid: 26058
- components:
- - type: Transform
- pos: -101.5,-3.5
- parent: 2
- - uid: 26060
- components:
- - type: Transform
- pos: -91.5,-58.5
- parent: 2
- proto: SignGravity
entities:
- uid: 6196
@@ -139796,6 +141055,14 @@ entities:
rot: 1.5707963267948966 rad
pos: -52.5,-49.5
parent: 2
+- proto: SignMaterials
+ entities:
+ - uid: 2534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-30.5
+ parent: 2
- proto: SignMedical
entities:
- uid: 7561
@@ -139840,11 +141107,10 @@ entities:
parent: 2
- proto: SignNews
entities:
- - uid: 16011
+ - uid: 1970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,-32.5
+ pos: -100.5,2.5
parent: 2
- proto: SignPlaque
entities:
@@ -139867,11 +141133,11 @@ entities:
parent: 2
- proto: SignPrison
entities:
- - uid: 15914
+ - uid: 20502
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -93.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-35.5
parent: 2
- proto: SignPsychology
entities:
@@ -139894,17 +141160,19 @@ entities:
parent: 2
- proto: SignRedFive
entities:
- - uid: 17798
+ - uid: 6687
components:
- type: Transform
- pos: -88.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -84.5,-39.5
parent: 2
- proto: SignRedFour
entities:
- - uid: 17797
+ - uid: 6681
components:
- type: Transform
- pos: -92.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-39.5
parent: 2
- uid: 20951
components:
@@ -139919,23 +141187,32 @@ entities:
- type: Transform
pos: -69.5,-54.5
parent: 2
- - uid: 17794
+ - uid: 19892
components:
- type: Transform
- pos: -97.5,-24.5
+ pos: -97.5,-22.5
+ parent: 2
+- proto: SignRedSix
+ entities:
+ - uid: 16330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -80.5,-39.5
parent: 2
- proto: SignRedThree
entities:
- - uid: 17548
+ - uid: 15260
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -97.5,-30.5
parent: 2
- - uid: 17796
+ - uid: 17548
components:
- type: Transform
- pos: -97.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,-58.5
parent: 2
- proto: SignRedTwo
entities:
@@ -139945,10 +141222,10 @@ entities:
rot: 3.141592653589793 rad
pos: -59.5,-54.5
parent: 2
- - uid: 17795
+ - uid: 22285
components:
- type: Transform
- pos: -97.5,-28.5
+ pos: -97.5,-26.5
parent: 2
- proto: SignRestroom
entities:
@@ -139993,11 +141270,17 @@ entities:
parent: 2
- proto: SignScience
entities:
- - uid: 24491
+ - uid: 20550
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -111.5,-47.5
+ pos: -106.5,-47.5
+ parent: 2
+ - uid: 20551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-43.5
parent: 2
- proto: SignSecureMed
entities:
@@ -140128,16 +141411,15 @@ entities:
parent: 2
- proto: SignSpace
entities:
- - uid: 4613
+ - uid: 5983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,25.5
+ pos: -152.5,-2.5
parent: 2
- - uid: 5983
+ - uid: 9426
components:
- type: Transform
- pos: -152.5,-2.5
+ pos: -101.5,31.5
parent: 2
- uid: 19325
components:
@@ -140150,6 +141432,14 @@ entities:
- type: Transform
pos: -12.5,-35.5
parent: 2
+- proto: SignSurgery
+ entities:
+ - uid: 6691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-33.5
+ parent: 2
- proto: SignTelecomms
entities:
- uid: 17026
@@ -140233,6 +141523,17 @@ entities:
- type: Transform
pos: -111.5,-20.5
parent: 2
+ - uid: 9236
+ components:
+ - type: Transform
+ pos: -69.5,-29.5
+ parent: 2
+ - uid: 9273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-35.5
+ parent: 2
- uid: 12021
components:
- type: Transform
@@ -140255,6 +141556,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-49.5
parent: 2
+ - uid: 25897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-32.5
+ parent: 2
- proto: SinkWide
entities:
- uid: 10787
@@ -140269,6 +141576,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-3.5
parent: 2
+- proto: Skub
+ entities:
+ - uid: 2403
+ components:
+ - type: MetaData
+ desc: Whatever this is, it is VERY illegal!
+ name: illegal skub
+ - type: Transform
+ pos: -15.441118,17.515356
+ parent: 2
+ - type: Item
+ size: Huge
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
- proto: SmartFridge
entities:
- uid: 3405
@@ -140276,10 +141600,10 @@ entities:
- type: Transform
pos: -53.5,-25.5
parent: 2
- - uid: 3920
+ - uid: 20155
components:
- type: Transform
- pos: -37.5,-26.5
+ pos: -39.5,-26.5
parent: 2
- proto: SMESAdvanced
entities:
@@ -142122,16 +143446,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -122.5,33.5
parent: 2
+ - uid: 16004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-61.5
+ parent: 2
- uid: 20339
components:
- type: Transform
pos: -43.5,-70.5
parent: 2
- - uid: 20383
+ - uid: 24105
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,-53.5
+ pos: -78.5,-38.5
parent: 2
- proto: SpaceCash10
entities:
@@ -142145,13 +143475,50 @@ entities:
- type: Transform
pos: -21.659342,1.4020317
parent: 2
+ - uid: 25898
+ components:
+ - type: Transform
+ pos: -11.239828,-28.500414
+ parent: 2
+ - uid: 25899
+ components:
+ - type: Transform
+ pos: -11.036703,-28.156664
+ parent: 2
+ - uid: 25900
+ components:
+ - type: Transform
+ pos: -10.442953,-28.437914
+ parent: 2
+- proto: SpaceHeaterAnchored
+ entities:
+ - uid: 17796
+ components:
+ - type: Transform
+ pos: -108.5,-40.5
+ parent: 2
- proto: SpaceHeaterEnabled
entities:
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: -118.5,22.5
+ parent: 2
- uid: 16180
components:
- type: Transform
pos: -86.5,-9.5
parent: 2
+ - uid: 25906
+ components:
+ - type: Transform
+ pos: -108.5,-2.5
+ parent: 2
+ - uid: 25907
+ components:
+ - type: Transform
+ pos: -107.5,-2.5
+ parent: 2
- proto: SpacemenFigureSpawner
entities:
- uid: 26079
@@ -142597,11 +143964,6 @@ entities:
- type: Transform
pos: -56.5,-15.5
parent: 2
- - uid: 22115
- components:
- - type: Transform
- pos: -61.5,-30.5
- parent: 2
- uid: 22116
components:
- type: Transform
@@ -142658,15 +144020,20 @@ entities:
parent: 2
- proto: SpawnPointReporter
entities:
- - uid: 25675
+ - uid: 12632
components:
- type: Transform
- pos: -110.5,-31.5
+ pos: -97.5,-0.5
parent: 2
- - uid: 25676
+ - uid: 12635
components:
- type: Transform
- pos: -113.5,-30.5
+ pos: -97.5,1.5
+ parent: 2
+ - uid: 13119
+ components:
+ - type: Transform
+ pos: -94.5,1.5
parent: 2
- proto: SpawnPointResearchAssistant
entities:
@@ -142897,10 +144264,12 @@ entities:
- type: Transform
pos: -37.085976,-30.474735
parent: 2
- - uid: 25710
+- proto: SprayBottleWater
+ entities:
+ - uid: 18639
components:
- type: Transform
- pos: -85.4901,-44.3657
+ pos: -83.4732,-47.447655
parent: 2
- proto: StairDark
entities:
@@ -142935,6 +144304,12 @@ entities:
parent: 2
- proto: StairStage
entities:
+ - uid: 957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -85.5,-49.5
+ parent: 2
- uid: 2716
components:
- type: Transform
@@ -142963,24 +144338,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -96.5,34.5
parent: 2
- - uid: 17828
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -87.5,-49.5
- parent: 2
- uid: 20310
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -96.5,29.5
parent: 2
- - uid: 23190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-71.5
- parent: 2
- proto: StairStageDark
entities:
- uid: 1203
@@ -142989,16 +144352,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -62.5,-35.5
parent: 2
- - uid: 16806
- components:
- - type: Transform
- pos: -69.5,-72.5
- parent: 2
- - uid: 16826
- components:
- - type: Transform
- pos: -65.5,-72.5
- parent: 2
- proto: StasisBed
entities:
- uid: 4033
@@ -143062,20 +144415,15 @@ entities:
- type: Transform
pos: -32.5,-10.5
parent: 2
- - uid: 15998
- components:
- - type: Transform
- pos: -113.5,-28.5
- parent: 2
- uid: 20033
components:
- type: Transform
pos: -100.5,-11.5
parent: 2
- - uid: 22128
+ - uid: 20222
components:
- type: Transform
- pos: -72.5,-54.5
+ pos: -94.5,3.5
parent: 2
- uid: 22142
components:
@@ -143096,10 +144444,22 @@ entities:
parent: 2
- proto: Stool
entities:
- - uid: 385
+ - uid: 954
components:
- type: Transform
- pos: -89.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-46.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-46.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -88.5,-45.5
parent: 2
- uid: 3652
components:
@@ -143135,21 +144495,16 @@ entities:
- type: Transform
pos: -54.5,-50.5
parent: 2
- - uid: 6504
- components:
- - type: Transform
- pos: -92.5,-41.5
- parent: 2
- - uid: 6588
+ - uid: 6550
components:
- type: Transform
- pos: -88.5,-45.5
+ pos: -89.5,-45.5
parent: 2
- - uid: 6590
+ - uid: 9372
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-41.5
parent: 2
- uid: 14099
components:
@@ -143193,11 +144548,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -44.5,-44.5
parent: 2
- - uid: 17832
+ - uid: 17912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,-41.5
+ parent: 2
+ - uid: 19098
+ components:
+ - type: Transform
+ pos: -84.5,-41.5
+ parent: 2
+ - uid: 19474
components:
- type: Transform
pos: -88.5,-41.5
parent: 2
+ - uid: 19540
+ components:
+ - type: Transform
+ pos: -80.5,-41.5
+ parent: 2
- proto: StoolBar
entities:
- uid: 3422
@@ -143431,26 +144802,26 @@ entities:
- type: Transform
pos: -124.5,-20.5
parent: 2
- - uid: 7472
+ - uid: 9640
components:
- type: MetaData
name: Cargo Substation
- type: Transform
- pos: -88.5,0.5
+ pos: -89.5,0.5
parent: 2
- - uid: 7746
+ - uid: 15872
components:
- type: MetaData
- name: RAGE CAGE Substation
+ name: Service Substation
- type: Transform
- pos: -52.5,-68.5
+ pos: -39.5,-40.5
parent: 2
- - uid: 15872
+ - uid: 16760
components:
- type: MetaData
- name: Service Substation
+ name: RAGE CAGE Substation
- type: Transform
- pos: -39.5,-40.5
+ pos: -57.5,-69.5
parent: 2
- uid: 16864
components:
@@ -143623,6 +144994,23 @@ entities:
- type: Transform
pos: -142.5,-50.5
parent: 2
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 6497
+ components:
+ - type: Transform
+ pos: -93.5,-38.5
+ parent: 2
+ - uid: 18688
+ components:
+ - type: Transform
+ pos: -93.5,-37.5
+ parent: 2
+ - uid: 18689
+ components:
+ - type: Transform
+ pos: -93.5,-39.5
+ parent: 2
- proto: SuitStorageHOS
entities:
- uid: 6775
@@ -143966,6 +145354,28 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Science Substation
+ - uid: 4808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,-29.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Tech Storage
+ - uid: 4811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -115.5,-30.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Secure Tech Storage
- uid: 9837
components:
- type: Transform
@@ -143976,26 +145386,26 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Northeast Maintenance Substation
- - uid: 23759
+ - uid: 22988
components:
- type: Transform
- pos: -10.5,-20.5
+ pos: -92.5,-9.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Evac Storage
- - uid: 23784
+ id: 'Plasma Pit #045'
+ - uid: 23759
components:
- type: Transform
- pos: -84.5,-9.5
+ pos: -10.5,-20.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraEngineering
nameSet: True
- id: Telecommunications South
+ id: Evac Storage
- uid: 23793
components:
- type: Transform
@@ -144246,30 +145656,63 @@ entities:
rot: -1.5707963267948966 rad
pos: -123.5,4.5
parent: 2
-- proto: SurveillanceCameraGeneral
- entities:
- - uid: 2400
+ - uid: 26210
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,-56.5
+ pos: -148.5,2.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraGeneral
+ - SurveillanceCameraEngineering
nameSet: True
- id: Southwest Hallway
- - uid: 23707
+ id: TEG Burn Chamber
+ - uid: 26211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -136.5,-16.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
+ - uid: 26226
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -69.5,-55.5
+ pos: -90.5,-60.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: 'Plasma Pit #046'
+ - uid: 26227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-1.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: telecommunications
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 2400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-56.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Dorm West
+ id: Southwest Hallway
- uid: 23708
components:
- type: Transform
@@ -144400,82 +145843,105 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Evac Centre
- - uid: 23792
+ - uid: 23835
components:
- type: Transform
- pos: -99.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -117.5,-43.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Cargo Front
- - uid: 23819
+ id: Science Hallway
+ - uid: 24675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -70.5,-18.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: West Hallway
- - uid: 23835
+ id: Cryosleep
+ - uid: 25686
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -117.5,-43.5
+ pos: -61.5,-18.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Science Hallway
- - uid: 24675
+ id: Service Plaza North
+ - uid: 25687
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -70.5,-18.5
+ pos: -86.5,-12.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Cryosleep
- - uid: 25683
+ id: West Hallway
+ - uid: 26212
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -75.5,-56.5
+ pos: -101.5,3.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Dorms Entrance
- - uid: 25686
+ id: Northwest Hallway
+ - uid: 26213
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,23.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
- id: Service Plaza North
- - uid: 25687
+ id: Disposals
+ - uid: 26214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,-13.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraGeneral
nameSet: True
id: West Hallway
+ - uid: 26218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -101.5,-29.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Southwest Hallway
+ - uid: 26225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-42.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Pool East
- proto: SurveillanceCameraMedical
entities:
- uid: 8625
@@ -144669,17 +146135,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Storage
- - uid: 23778
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-45.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Freezer
- uid: 23780
components:
- type: Transform
@@ -144735,6 +146190,17 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Hallway North
+ - uid: 26228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-44.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Freezer
- proto: SurveillanceCameraRouterCommand
entities:
- uid: 16844
@@ -144744,10 +146210,10 @@ entities:
parent: 2
- proto: SurveillanceCameraRouterConstructed
entities:
- - uid: 22275
+ - uid: 11060
components:
- type: Transform
- pos: -84.5,1.5
+ pos: -86.5,2.5
parent: 2
- proto: SurveillanceCameraRouterEngineering
entities:
@@ -144844,17 +146310,6 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Xenoarcheology Airlock
- - uid: 16976
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -112.5,-39.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Cargo Bay
- uid: 17055
components:
- type: Transform
@@ -144961,17 +146416,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Evac Checkpoint
- - uid: 24300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-18.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Entrance
- uid: 24301
components:
- type: Transform
@@ -145025,168 +146469,78 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Breakroom
- - uid: 24306
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,-22.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 1
- - uid: 24307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,-26.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 2
- - uid: 24308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,-30.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 3
- - uid: 24309
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-25.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell Exterior
- - uid: 24310
- components:
- - type: Transform
- pos: -97.5,-41.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Detective Office
- - uid: 24311
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,-45.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Lawyer Office
- - uid: 24312
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,-33.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Interogation
- - uid: 24313
- components:
- - type: Transform
- pos: -82.5,-35.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: HoS Office
- - uid: 24315
+ - uid: 26216
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -100.5,-35.5
+ pos: -88.5,-41.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Detective Bedroom
- - uid: 24316
+ id: Permabrig Cell 4
+ - uid: 26217
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -89.5,-37.5
+ pos: -84.5,-44.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Hallway
- - uid: 24317
+ id: Permabrig
+ - uid: 26219
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-42.5
+ pos: -84.5,-41.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Cell 4
- - uid: 24318
+ id: Permabrig Cell 5
+ - uid: 26220
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,-42.5
+ pos: -80.5,-41.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Cell 5
- - uid: 24319
+ id: Permabrig Cell 6
+ - uid: 26221
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-37.5
+ pos: -83.5,-37.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Visitation
- - uid: 24320
+ id: Permabrig Corridor
+ - uid: 26222
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-41.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Permabrig
- - uid: 24321
+ - uid: 26223
components:
- type: Transform
- pos: -91.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-49.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Permabrig Restroom
+ id: Permabrig Bathroom
- proto: SurveillanceCameraService
entities:
- uid: 23712
@@ -145211,17 +146565,6 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Library
- - uid: 23718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -109.5,-30.5
- parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Newsroom
- uid: 23722
components:
- type: Transform
@@ -145276,28 +146619,29 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Theatre
-- proto: SurveillanceCameraSupply
- entities:
- - uid: 23760
+ - uid: 26224
components:
- type: Transform
- pos: -4.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,-37.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraSupply
+ - SurveillanceCameraService
nameSet: True
- id: Evac Storage
- - uid: 23786
+ id: Bar Outdoor
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 23760
components:
- type: Transform
- pos: -88.5,7.5
+ pos: -4.5,-20.5
parent: 2
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSupply
nameSet: True
- id: Warehouse
+ id: Evac Storage
- uid: 23787
components:
- type: Transform
@@ -145395,12 +146739,22 @@ entities:
- SurveillanceCameraSupply
nameSet: True
id: QM Bedroom
+ - uid: 26215
+ components:
+ - type: Transform
+ pos: -88.5,7.5
+ parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Warehouse
- proto: SurveillanceCameraWirelessRouterEntertainment
entities:
- - uid: 15992
+ - uid: 14530
components:
- type: Transform
- pos: -111.5,-30.5
+ pos: -99.5,2.5
parent: 2
- proto: SurveillanceWirelessCameraAnchoredEntertainment
entities:
@@ -145471,17 +146825,17 @@ entities:
id: PlasmaFire TV
- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- - uid: 16003
+ - uid: 5639
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -114.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-1.5
parent: 2
- - uid: 16023
+ - uid: 6016
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -113.5,-32.5
+ pos: -94.5,-0.5
parent: 2
- uid: 16989
components:
@@ -145494,6 +146848,25 @@ entities:
- SurveillanceCameraEntertainment
nameSet: True
id: LiveLeak
+- proto: SyndieFlag
+ entities:
+ - uid: 2406
+ components:
+ - type: Transform
+ pos: -13.5,19.5
+ parent: 2
+ - type: Contraband
+ allowedJobs: []
+ allowedDepartments:
+ - Security
+ severity: Syndicate
+- proto: SyndieHandyFlag
+ entities:
+ - uid: 18682
+ components:
+ - type: Transform
+ pos: -13.48303,18.436016
+ parent: 2
- proto: SynthesizerInstrument
entities:
- uid: 26036
@@ -145560,10 +146933,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -139.5,-7.5
parent: 2
- - uid: 1082
+ - uid: 973
components:
- type: Transform
- pos: -81.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-47.5
parent: 2
- uid: 1121
components:
@@ -145609,12 +146983,6 @@ entities:
- type: Transform
pos: -101.5,-66.5
parent: 2
- - uid: 1674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-44.5
- parent: 2
- uid: 1998
components:
- type: Transform
@@ -145658,17 +147026,28 @@ entities:
- type: Transform
pos: -36.5,-30.5
parent: 2
- - uid: 2546
+ - uid: 2548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-1.5
parent: 2
- uid: 2595
components:
- type: Transform
pos: -88.5,-26.5
parent: 2
+ - uid: 2613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -113.5,-29.5
+ parent: 2
+ - uid: 2624
+ components:
+ - type: Transform
+ pos: -97.5,-1.5
+ parent: 2
- uid: 2647
components:
- type: Transform
@@ -145854,16 +147233,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,-50.5
parent: 2
- - uid: 4155
- components:
- - type: Transform
- pos: -17.5,-54.5
- parent: 2
- - uid: 4156
- components:
- - type: Transform
- pos: -17.5,-50.5
- parent: 2
- uid: 4172
components:
- type: Transform
@@ -145891,15 +147260,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,-48.5
parent: 2
- - uid: 4254
- components:
- - type: Transform
- pos: -54.5,-68.5
- parent: 2
- - uid: 4282
+ - uid: 4262
components:
- type: Transform
- pos: -55.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,-70.5
parent: 2
- uid: 4291
components:
@@ -146155,31 +147520,6 @@ entities:
- type: Transform
pos: -90.5,-32.5
parent: 2
- - uid: 6710
- components:
- - type: Transform
- pos: -81.5,-39.5
- parent: 2
- - uid: 6711
- components:
- - type: Transform
- pos: -84.5,-39.5
- parent: 2
- - uid: 6712
- components:
- - type: Transform
- pos: -83.5,-39.5
- parent: 2
- - uid: 6716
- components:
- - type: Transform
- pos: -80.5,-39.5
- parent: 2
- - uid: 6721
- components:
- - type: Transform
- pos: -80.5,-40.5
- parent: 2
- uid: 6731
components:
- type: Transform
@@ -146202,21 +147542,11 @@ entities:
- type: Transform
pos: -88.5,-25.5
parent: 2
- - uid: 6854
- components:
- - type: Transform
- pos: -84.5,-40.5
- parent: 2
- uid: 6868
components:
- type: Transform
pos: -93.5,-29.5
parent: 2
- - uid: 6893
- components:
- - type: Transform
- pos: -83.5,-40.5
- parent: 2
- uid: 6992
components:
- type: Transform
@@ -146228,6 +147558,17 @@ entities:
- type: Transform
pos: -93.5,-28.5
parent: 2
+ - uid: 7109
+ components:
+ - type: Transform
+ pos: -78.5,-74.5
+ parent: 2
+ - uid: 7121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-1.5
+ parent: 2
- uid: 7328
components:
- type: Transform
@@ -146254,11 +147595,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -124.5,-55.5
parent: 2
- - uid: 7574
- components:
- - type: Transform
- pos: -60.5,-31.5
- parent: 2
- uid: 7598
components:
- type: Transform
@@ -146307,12 +147643,6 @@ entities:
- type: Transform
pos: -146.5,-45.5
parent: 2
- - uid: 8159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-23.5
- parent: 2
- uid: 8274
components:
- type: Transform
@@ -146423,15 +147753,11 @@ entities:
rot: 3.141592653589793 rad
pos: -36.5,-52.5
parent: 2
- - uid: 8981
- components:
- - type: Transform
- pos: -62.5,-31.5
- parent: 2
- - uid: 8983
+ - uid: 9028
components:
- type: Transform
- pos: -61.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-46.5
parent: 2
- uid: 9041
components:
@@ -146470,35 +147796,11 @@ entities:
- type: Transform
pos: -46.5,-24.5
parent: 2
- - uid: 9343
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-23.5
- parent: 2
- uid: 9437
components:
- type: Transform
pos: -47.5,-24.5
parent: 2
- - uid: 9461
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-44.5
- parent: 2
- - uid: 9625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -92.5,-42.5
- parent: 2
- - uid: 9626
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-42.5
- parent: 2
- uid: 9702
components:
- type: Transform
@@ -146535,34 +147837,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -92.5,-47.5
parent: 2
- - uid: 10171
- components:
- - type: Transform
- pos: -89.5,-46.5
- parent: 2
- uid: 10180
components:
- type: Transform
pos: -92.5,-19.5
parent: 2
- - uid: 10203
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-44.5
- parent: 2
- uid: 10455
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -37.5,-46.5
parent: 2
- - uid: 10906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-23.5
- parent: 2
- uid: 11104
components:
- type: Transform
@@ -146581,11 +147866,20 @@ entities:
rot: -1.5707963267948966 rad
pos: -26.5,8.5
parent: 2
- - uid: 13560
+ - uid: 13831
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-46.5
+ pos: -73.5,-44.5
+ parent: 2
+ - uid: 13965
+ components:
+ - type: Transform
+ pos: -73.5,-46.5
+ parent: 2
+ - uid: 13967
+ components:
+ - type: Transform
+ pos: -73.5,-45.5
parent: 2
- uid: 14047
components:
@@ -146611,16 +147905,40 @@ entities:
rot: 1.5707963267948966 rad
pos: -66.5,-54.5
parent: 2
- - uid: 14657
+ - uid: 14209
components:
- type: Transform
- pos: -136.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -113.5,-33.5
parent: 2
- - uid: 15011
+ - uid: 14243
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-29.5
+ parent: 2
+ - uid: 14245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-29.5
+ parent: 2
+ - uid: 14247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-33.5
+ parent: 2
+ - uid: 14251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-33.5
+ parent: 2
+ - uid: 14657
+ components:
+ - type: Transform
+ pos: -136.5,26.5
parent: 2
- uid: 15332
components:
@@ -146628,15 +147946,23 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,0.5
parent: 2
- - uid: 16000
+ - uid: 15922
components:
- type: Transform
- pos: -109.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-52.5
parent: 2
- - uid: 16001
+ - uid: 16290
components:
- type: Transform
- pos: -109.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-48.5
+ parent: 2
+ - uid: 16320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-47.5
parent: 2
- uid: 16476
components:
@@ -146663,6 +147989,17 @@ entities:
- type: Transform
pos: -30.5,-65.5
parent: 2
+ - uid: 16661
+ components:
+ - type: Transform
+ pos: -88.5,-46.5
+ parent: 2
+ - uid: 16806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -129.5,-29.5
+ parent: 2
- uid: 16945
components:
- type: Transform
@@ -146679,6 +148016,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -96.5,35.5
parent: 2
+ - uid: 17000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -129.5,-28.5
+ parent: 2
- uid: 17058
components:
- type: Transform
@@ -146731,18 +148074,24 @@ entities:
- type: Transform
pos: -91.5,-17.5
parent: 2
- - uid: 17825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-44.5
- parent: 2
- uid: 18291
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -101.5,30.5
parent: 2
+ - uid: 18620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-69.5
+ parent: 2
+ - uid: 18787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-61.5
+ parent: 2
- uid: 18788
components:
- type: Transform
@@ -146791,6 +148140,16 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,25.5
parent: 2
+ - uid: 19762
+ components:
+ - type: Transform
+ pos: -84.5,-42.5
+ parent: 2
+ - uid: 19914
+ components:
+ - type: Transform
+ pos: -80.5,-42.5
+ parent: 2
- uid: 20302
components:
- type: Transform
@@ -146801,6 +148160,12 @@ entities:
- type: Transform
pos: -121.5,36.5
parent: 2
+ - uid: 20504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-42.5
+ parent: 2
- uid: 20632
components:
- type: Transform
@@ -146847,11 +148212,10 @@ entities:
rot: 3.141592653589793 rad
pos: -35.5,-46.5
parent: 2
- - uid: 21047
+ - uid: 21674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-73.5
+ pos: -88.5,-42.5
parent: 2
- uid: 22086
components:
@@ -146863,6 +148227,12 @@ entities:
- type: Transform
pos: -23.5,-4.5
parent: 2
+ - uid: 22275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-18.5
+ parent: 2
- uid: 22298
components:
- type: Transform
@@ -146896,12 +148266,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,-6.5
parent: 2
- - uid: 22968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-6.5
- parent: 2
- uid: 23295
components:
- type: Transform
@@ -146919,6 +148283,11 @@ entities:
rot: 3.141592653589793 rad
pos: -134.5,-1.5
parent: 2
+ - uid: 23456
+ components:
+ - type: Transform
+ pos: -121.5,-0.5
+ parent: 2
- uid: 23704
components:
- type: Transform
@@ -146970,26 +148339,25 @@ entities:
- type: Transform
pos: -98.5,-24.5
parent: 2
- - uid: 25909
+ - uid: 26145
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-42.5
+ pos: -138.5,23.5
parent: 2
- - uid: 26055
+ - uid: 26146
components:
- type: Transform
- pos: -93.5,-61.5
+ pos: -138.5,24.5
parent: 2
- - uid: 26145
+ - uid: 26194
components:
- type: Transform
- pos: -138.5,23.5
+ pos: -74.5,-24.5
parent: 2
- - uid: 26146
+ - uid: 26195
components:
- type: Transform
- pos: -138.5,24.5
+ pos: -73.5,-24.5
parent: 2
- proto: TableCarpet
entities:
@@ -147031,17 +148399,28 @@ entities:
parent: 2
- proto: TableCounterMetal
entities:
+ - uid: 9639
+ components:
+ - type: Transform
+ pos: -132.5,-29.5
+ parent: 2
- uid: 21479
components:
- type: Transform
pos: -112.5,36.5
parent: 2
+ - uid: 24355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -132.5,-28.5
+ parent: 2
- proto: TableFancyBlue
entities:
- - uid: 23451
+ - uid: 22323
components:
- type: Transform
- pos: -67.5,-69.5
+ pos: -68.5,-70.5
parent: 2
- proto: TableFancyRed
entities:
@@ -147051,14 +148430,15 @@ entities:
rot: 1.5707963267948966 rad
pos: -119.5,26.5
parent: 2
-- proto: TableReinforced
+- proto: TableFancyWhite
entities:
- - uid: 321
+ - uid: 8567
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-16.5
+ pos: -81.5,-67.5
parent: 2
+- proto: TableReinforced
+ entities:
- uid: 323
components:
- type: Transform
@@ -147130,6 +148510,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,-7.5
parent: 2
+ - uid: 2410
+ components:
+ - type: Transform
+ pos: -13.5,18.5
+ parent: 2
- uid: 2514
components:
- type: Transform
@@ -147231,11 +148616,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-26.5
parent: 2
- - uid: 3919
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 2
- uid: 4543
components:
- type: Transform
@@ -147248,6 +148628,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -100.5,12.5
parent: 2
+ - uid: 5625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,0.5
+ parent: 2
+ - uid: 5642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,0.5
+ parent: 2
- uid: 5720
components:
- type: Transform
@@ -147263,6 +148655,12 @@ entities:
- type: Transform
pos: -111.5,-13.5
parent: 2
+ - uid: 7117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,0.5
+ parent: 2
- uid: 7292
components:
- type: Transform
@@ -147299,6 +148697,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -119.5,-42.5
parent: 2
+ - uid: 9336
+ components:
+ - type: Transform
+ pos: -91.5,-40.5
+ parent: 2
+ - uid: 9345
+ components:
+ - type: Transform
+ pos: -92.5,-40.5
+ parent: 2
- uid: 10074
components:
- type: Transform
@@ -147311,29 +148719,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,11.5
parent: 2
- - uid: 11612
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,6.5
- parent: 2
- - uid: 16013
+ - uid: 11247
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,-31.5
+ pos: -90.5,-40.5
parent: 2
- - uid: 16029
+ - uid: 11612
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -113.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,6.5
parent: 2
- - uid: 16032
+ - uid: 22697
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,-31.5
+ pos: -37.5,-26.5
parent: 2
- uid: 23881
components:
@@ -147896,6 +149296,12 @@ entities:
rot: 3.141592653589793 rad
pos: -60.5,-52.5
parent: 2
+ - uid: 14544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-31.5
+ parent: 2
- uid: 14795
components:
- type: Transform
@@ -147935,6 +149341,12 @@ entities:
- type: Transform
pos: -68.5,-37.5
parent: 2
+ - uid: 16001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,-33.5
+ parent: 2
- uid: 16506
components:
- type: Transform
@@ -147962,28 +149374,58 @@ entities:
rot: 1.5707963267948966 rad
pos: -35.5,-42.5
parent: 2
+ - uid: 17106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-33.5
+ parent: 2
- uid: 17109
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -66.5,-29.5
parent: 2
+ - uid: 17209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-33.5
+ parent: 2
+ - uid: 17797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-23.5
+ parent: 2
- uid: 17860
components:
- type: Transform
pos: -70.5,-35.5
parent: 2
+ - uid: 17990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-23.5
+ parent: 2
- uid: 18195
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -54.5,-44.5
parent: 2
- - uid: 19257
+ - uid: 18623
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-71.5
+ parent: 2
+ - uid: 19307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-40.5
parent: 2
- uid: 19768
components:
@@ -147996,12 +149438,36 @@ entities:
rot: 1.5707963267948966 rad
pos: -69.5,-26.5
parent: 2
+ - uid: 20290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-71.5
+ parent: 2
- uid: 20336
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -70.5,-37.5
parent: 2
+ - uid: 20771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-31.5
+ parent: 2
+ - uid: 21049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-31.5
+ parent: 2
+ - uid: 21087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-23.5
+ parent: 2
- uid: 21474
components:
- type: Transform
@@ -148029,28 +149495,6 @@ entities:
- type: Transform
pos: -119.5,-76.5
parent: 2
- - uid: 23435
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-29.5
- parent: 2
- - uid: 23453
- components:
- - type: Transform
- pos: -69.5,-70.5
- parent: 2
- - uid: 23454
- components:
- - type: Transform
- pos: -65.5,-70.5
- parent: 2
- - uid: 23667
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-30.5
- parent: 2
- uid: 23866
components:
- type: Transform
@@ -148111,22 +149555,16 @@ entities:
- type: Transform
pos: -57.5,-78.5
parent: 2
- - type: ContainerContainer
- containers:
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- type: ApcPowerReceiver
powerLoad: 500
missingComponents:
+ - Destructible
+ - Machine
- WiresPanel
- EncryptionKeyHolder
- TelecomServer
+ - ContainerContainer
+ - Construction
- proto: TelecomServerCircuitboard
entities:
- uid: 4499
@@ -148143,10 +149581,10 @@ entities:
parent: 2
- proto: TelecomServerFilledCommand
entities:
- - uid: 4451
+ - uid: 22699
components:
- type: Transform
- pos: -84.5,2.5
+ pos: -84.5,1.5
parent: 2
- proto: TelecomServerFilledCommon
entities:
@@ -148178,10 +149616,10 @@ entities:
parent: 2
- proto: TelecomServerFilledSecurity
entities:
- - uid: 16461
+ - uid: 17190
components:
- type: Transform
- pos: -86.5,2.5
+ pos: -86.5,1.5
parent: 2
- proto: TelecomServerFilledService
entities:
@@ -148289,6 +149727,12 @@ entities:
- type: Transform
pos: -96.5,-36.5
parent: 2
+ - uid: 6707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-28.5
+ parent: 2
- uid: 6842
components:
- type: Transform
@@ -148462,6 +149906,11 @@ entities:
- type: Transform
pos: -131.58072,-4.4554005
parent: 2
+ - uid: 23223
+ components:
+ - type: Transform
+ pos: -113.571075,-33.48745
+ parent: 2
- uid: 24567
components:
- type: Transform
@@ -148472,7 +149921,7 @@ entities:
- uid: 16894
components:
- type: Transform
- pos: -95.55058,35.704193
+ pos: -95.494835,32.70732
parent: 2
- uid: 19748
components:
@@ -148486,8 +149935,25 @@ entities:
- type: Transform
pos: -72.002045,-0.3785391
parent: 2
+- proto: ToolboxMechanical
+ entities:
+ - uid: 22894
+ components:
+ - type: Transform
+ pos: -66.50669,-71.42258
+ parent: 2
+ - uid: 23114
+ components:
+ - type: Transform
+ pos: -70.53794,-71.40695
+ parent: 2
- proto: ToolboxMechanicalFilled
entities:
+ - uid: 4273
+ components:
+ - type: Transform
+ pos: -113.43045,-33.284325
+ parent: 2
- uid: 7813
components:
- type: Transform
@@ -148504,16 +149970,6 @@ entities:
- type: Transform
pos: -92.551056,25.64724
parent: 2
- - uid: 23455
- components:
- - type: Transform
- pos: -65.50171,-70.36417
- parent: 2
- - uid: 23456
- components:
- - type: Transform
- pos: -69.56421,-70.37979
- parent: 2
- uid: 24577
components:
- type: Transform
@@ -148586,10 +150042,10 @@ entities:
parent: 2
- proto: ToyFigurineThief
entities:
- - uid: 16400
+ - uid: 8496
components:
- type: Transform
- pos: -73.4626,-53.38388
+ pos: -58.51475,-62.41395
parent: 2
- proto: ToyFigurineWizardFake
entities:
@@ -148636,11 +150092,6 @@ entities:
- type: Transform
pos: -19.5,11.5
parent: 2
- - uid: 25711
- components:
- - type: Transform
- pos: -82.5,-45.5
- parent: 2
- proto: TrainingBomb
entities:
- uid: 17799
@@ -148656,6 +150107,33 @@ entities:
parent: 7826
- type: Physics
canCollide: False
+- proto: trayScanner
+ entities:
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: -112.37078,-33.346825
+ parent: 2
+ - uid: 6785
+ components:
+ - type: Transform
+ pos: -121.71341,-0.56357
+ parent: 2
+ - uid: 6788
+ components:
+ - type: Transform
+ pos: -109.51924,-7.514839
+ parent: 2
+ - uid: 9644
+ components:
+ - type: Transform
+ pos: -121.385284,-0.31356978
+ parent: 2
+ - uid: 22279
+ components:
+ - type: Transform
+ pos: -116.77683,12.677293
+ parent: 2
- proto: TreasureCoinGold
entities:
- uid: 21064
@@ -148820,9 +150298,9 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
- 7763:
- - Left: Reverse
- - Right: Forward
+ 20287:
+ - Left: Forward
+ - Right: Reverse
- Middle: Off
7315:
- Left: Forward
@@ -149026,6 +150504,30 @@ entities:
- Left: Open
- Right: Open
- Middle: Close
+ 6054:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6790:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6794:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6000:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6743:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 6679:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
- type: Label
currentLabel: Cargo Conveyor
- type: NameModifier
@@ -149070,7 +150572,7 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 22205:
+ 14781:
- Left: Forward
- Right: Reverse
- Middle: Off
@@ -149240,11 +150742,6 @@ entities:
parent: 2
- proto: VendingMachineCigs
entities:
- - uid: 4317
- components:
- - type: Transform
- pos: -68.5,-49.5
- parent: 2
- uid: 7699
components:
- type: Transform
@@ -149409,11 +150906,6 @@ entities:
- type: Transform
pos: -26.5,-46.5
parent: 2
- - uid: 6261
- components:
- - type: Transform
- pos: -17.5,-29.5
- parent: 2
- uid: 19032
components:
- type: Transform
@@ -149496,14 +150988,14 @@ entities:
parent: 2
- proto: VendingMachineSeedsUnlocked
entities:
- - uid: 6761
+ - uid: 16324
components:
- type: Transform
- pos: -84.5,-47.5
+ pos: -88.5,-50.5
parent: 2
- proto: VendingMachineSustenance
entities:
- - uid: 7121
+ - uid: 6590
components:
- type: Transform
pos: -85.5,-47.5
@@ -149561,6 +151053,11 @@ entities:
- type: Transform
pos: -25.5,-0.5
parent: 2
+ - uid: 14256
+ components:
+ - type: Transform
+ pos: -109.5,-33.5
+ parent: 2
- proto: VendingMachineViroDrobe
entities:
- uid: 4171
@@ -149592,6 +151089,13 @@ entities:
- type: Transform
pos: -108.5,-18.5
parent: 2
+- proto: ViolinInstrument
+ entities:
+ - uid: 25894
+ components:
+ - type: Transform
+ pos: -62.509315,-34.466682
+ parent: 2
- proto: WallmountTelescreen
entities:
- uid: 6641
@@ -150283,11 +151787,6 @@ entities:
- type: Transform
pos: -89.5,-4.5
parent: 2
- - uid: 280
- components:
- - type: Transform
- pos: -89.5,-0.5
- parent: 2
- uid: 283
components:
- type: Transform
@@ -150308,6 +151807,12 @@ entities:
- type: Transform
pos: -36.5,-26.5
parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,-32.5
+ parent: 2
- uid: 393
components:
- type: Transform
@@ -150569,11 +152074,6 @@ entities:
- type: Transform
pos: -88.5,26.5
parent: 2
- - uid: 778
- components:
- - type: Transform
- pos: -101.5,-3.5
- parent: 2
- uid: 779
components:
- type: Transform
@@ -150604,16 +152104,6 @@ entities:
- type: Transform
pos: -144.5,-13.5
parent: 2
- - uid: 808
- components:
- - type: Transform
- pos: -93.5,-60.5
- parent: 2
- - uid: 819
- components:
- - type: Transform
- pos: -93.5,-58.5
- parent: 2
- uid: 827
components:
- type: Transform
@@ -150789,11 +152279,22 @@ entities:
- type: Transform
pos: -85.5,36.5
parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-34.5
+ parent: 2
- uid: 1001
components:
- type: Transform
pos: -47.5,-11.5
parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: -77.5,-34.5
+ parent: 2
- uid: 1025
components:
- type: Transform
@@ -150970,11 +152471,6 @@ entities:
- type: Transform
pos: -26.5,-51.5
parent: 2
- - uid: 1260
- components:
- - type: Transform
- pos: -16.5,-52.5
- parent: 2
- uid: 1262
components:
- type: Transform
@@ -151005,11 +152501,6 @@ entities:
- type: Transform
pos: -38.5,-36.5
parent: 2
- - uid: 1280
- components:
- - type: Transform
- pos: -16.5,-48.5
- parent: 2
- uid: 1281
components:
- type: Transform
@@ -151045,11 +152536,6 @@ entities:
- type: Transform
pos: -21.5,-55.5
parent: 2
- - uid: 1302
- components:
- - type: Transform
- pos: -16.5,-51.5
- parent: 2
- uid: 1306
components:
- type: Transform
@@ -151060,11 +152546,6 @@ entities:
- type: Transform
pos: -26.5,-55.5
parent: 2
- - uid: 1308
- components:
- - type: Transform
- pos: -16.5,-54.5
- parent: 2
- uid: 1309
components:
- type: Transform
@@ -151181,11 +152662,6 @@ entities:
- type: Transform
pos: -45.5,-3.5
parent: 2
- - uid: 1632
- components:
- - type: Transform
- pos: -96.5,-62.5
- parent: 2
- uid: 1637
components:
- type: Transform
@@ -151197,71 +152673,26 @@ entities:
- type: Transform
pos: -123.5,-58.5
parent: 2
- - uid: 1646
- components:
- - type: Transform
- pos: -101.5,-29.5
- parent: 2
- uid: 1651
components:
- type: Transform
pos: -98.5,-25.5
parent: 2
- - uid: 1693
- components:
- - type: Transform
- pos: -99.5,-1.5
- parent: 2
- uid: 1694
components:
- type: Transform
pos: -137.5,9.5
parent: 2
- - uid: 1704
- components:
- - type: Transform
- pos: -101.5,-21.5
- parent: 2
- uid: 1708
components:
- type: Transform
pos: -20.5,9.5
parent: 2
- - uid: 1718
- components:
- - type: Transform
- pos: -98.5,-6.5
- parent: 2
- - uid: 1732
- components:
- - type: Transform
- pos: -94.5,-6.5
- parent: 2
- - uid: 1738
- components:
- - type: Transform
- pos: -94.5,1.5
- parent: 2
- uid: 1744
components:
- type: Transform
pos: -138.5,27.5
parent: 2
- - uid: 1765
- components:
- - type: Transform
- pos: -97.5,1.5
- parent: 2
- - uid: 1801
- components:
- - type: Transform
- pos: -91.5,0.5
- parent: 2
- - uid: 1804
- components:
- - type: Transform
- pos: -91.5,-2.5
- parent: 2
- uid: 1827
components:
- type: Transform
@@ -151312,16 +152743,6 @@ entities:
- type: Transform
pos: -107.5,-42.5
parent: 2
- - uid: 1940
- components:
- - type: Transform
- pos: -77.5,-49.5
- parent: 2
- - uid: 1941
- components:
- - type: Transform
- pos: -77.5,-48.5
- parent: 2
- uid: 1961
components:
- type: Transform
@@ -151675,6 +153096,16 @@ entities:
- type: Transform
pos: -89.5,-16.5
parent: 2
+ - uid: 2590
+ components:
+ - type: Transform
+ pos: -117.5,-33.5
+ parent: 2
+ - uid: 2594
+ components:
+ - type: Transform
+ pos: -116.5,-29.5
+ parent: 2
- uid: 2669
components:
- type: Transform
@@ -151750,21 +153181,6 @@ entities:
- type: Transform
pos: -110.5,-47.5
parent: 2
- - uid: 3327
- components:
- - type: Transform
- pos: -66.5,-68.5
- parent: 2
- - uid: 3329
- components:
- - type: Transform
- pos: -67.5,-68.5
- parent: 2
- - uid: 3330
- components:
- - type: Transform
- pos: -68.5,-68.5
- parent: 2
- uid: 3738
components:
- type: Transform
@@ -152135,11 +153551,6 @@ entities:
- type: Transform
pos: -118.5,-1.5
parent: 2
- - uid: 5625
- components:
- - type: Transform
- pos: -88.5,-64.5
- parent: 2
- uid: 5631
components:
- type: Transform
@@ -152160,6 +153571,11 @@ entities:
- type: Transform
pos: -135.5,1.5
parent: 2
+ - uid: 5686
+ components:
+ - type: Transform
+ pos: -79.5,-35.5
+ parent: 2
- uid: 5690
components:
- type: Transform
@@ -152270,11 +153686,6 @@ entities:
- type: Transform
pos: -37.5,-70.5
parent: 2
- - uid: 6117
- components:
- - type: Transform
- pos: -86.5,-43.5
- parent: 2
- uid: 6262
components:
- type: Transform
@@ -152315,11 +153726,6 @@ entities:
- type: Transform
pos: -75.5,-31.5
parent: 2
- - uid: 6531
- components:
- - type: Transform
- pos: -79.5,-35.5
- parent: 2
- uid: 6532
components:
- type: Transform
@@ -152330,11 +153736,6 @@ entities:
- type: Transform
pos: -79.5,-25.5
parent: 2
- - uid: 6552
- components:
- - type: Transform
- pos: -88.5,-40.5
- parent: 2
- uid: 6556
components:
- type: Transform
@@ -152350,11 +153751,6 @@ entities:
- type: Transform
pos: -87.5,-51.5
parent: 2
- - uid: 6571
- components:
- - type: Transform
- pos: -79.5,-47.5
- parent: 2
- uid: 6574
components:
- type: Transform
@@ -152386,6 +153782,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -152.5,-42.5
parent: 2
+ - uid: 6732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-29.5
+ parent: 2
+ - uid: 6737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -113.5,-34.5
+ parent: 2
- uid: 6753
components:
- type: Transform
@@ -152401,11 +153809,6 @@ entities:
- type: Transform
pos: -127.5,10.5
parent: 2
- - uid: 6843
- components:
- - type: Transform
- pos: -79.5,-39.5
- parent: 2
- uid: 6914
components:
- type: Transform
@@ -152426,16 +153829,6 @@ entities:
- type: Transform
pos: -81.5,-36.5
parent: 2
- - uid: 6973
- components:
- - type: Transform
- pos: -77.5,-34.5
- parent: 2
- - uid: 6975
- components:
- - type: Transform
- pos: -79.5,-34.5
- parent: 2
- uid: 6990
components:
- type: Transform
@@ -152451,21 +153844,6 @@ entities:
- type: Transform
pos: -107.5,-51.5
parent: 2
- - uid: 7024
- components:
- - type: Transform
- pos: -79.5,-43.5
- parent: 2
- - uid: 7026
- components:
- - type: Transform
- pos: -77.5,-44.5
- parent: 2
- - uid: 7045
- components:
- - type: Transform
- pos: -77.5,-40.5
- parent: 2
- uid: 7081
components:
- type: Transform
@@ -153346,6 +154724,18 @@ entities:
rot: -1.5707963267948966 rad
pos: -68.5,-8.5
parent: 2
+ - uid: 10173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-49.5
+ parent: 2
+ - uid: 10177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-53.5
+ parent: 2
- uid: 10195
components:
- type: Transform
@@ -153412,11 +154802,6 @@ entities:
- type: Transform
pos: -35.5,-35.5
parent: 2
- - uid: 13428
- components:
- - type: Transform
- pos: -95.5,-68.5
- parent: 2
- uid: 13627
components:
- type: Transform
@@ -153465,6 +154850,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -123.5,-33.5
parent: 2
+ - uid: 13767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-54.5
+ parent: 2
- uid: 13819
components:
- type: Transform
@@ -153517,6 +154908,16 @@ entities:
- type: Transform
pos: -142.5,-21.5
parent: 2
+ - uid: 13997
+ components:
+ - type: Transform
+ pos: -78.5,-34.5
+ parent: 2
+ - uid: 13998
+ components:
+ - type: Transform
+ pos: -79.5,-36.5
+ parent: 2
- uid: 14025
components:
- type: Transform
@@ -153632,16 +155033,6 @@ entities:
- type: Transform
pos: -123.5,-56.5
parent: 2
- - uid: 16309
- components:
- - type: Transform
- pos: -80.5,-82.5
- parent: 2
- - uid: 16343
- components:
- - type: Transform
- pos: -84.5,-80.5
- parent: 2
- uid: 16447
components:
- type: Transform
@@ -153740,11 +155131,6 @@ entities:
- type: Transform
pos: -31.5,-39.5
parent: 2
- - uid: 17230
- components:
- - type: Transform
- pos: -80.5,-81.5
- parent: 2
- uid: 17234
components:
- type: Transform
@@ -153818,16 +155204,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -125.5,-31.5
parent: 2
- - uid: 19093
- components:
- - type: Transform
- pos: -89.5,-60.5
- parent: 2
- - uid: 19283
- components:
- - type: Transform
- pos: -92.5,-68.5
- parent: 2
- uid: 19576
components:
- type: Transform
@@ -153914,6 +155290,12 @@ entities:
- type: Transform
pos: -136.5,-34.5
parent: 2
+ - uid: 20282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -113.5,-28.5
+ parent: 2
- uid: 20343
components:
- type: Transform
@@ -154196,6 +155578,11 @@ entities:
- type: Transform
pos: -126.5,-68.5
parent: 2
+ - uid: 23094
+ components:
+ - type: Transform
+ pos: -84.5,-36.5
+ parent: 2
- uid: 23099
components:
- type: Transform
@@ -154207,11 +155594,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -125.5,-89.5
parent: 2
+ - uid: 23102
+ components:
+ - type: Transform
+ pos: -83.5,-36.5
+ parent: 2
- uid: 23119
components:
- type: Transform
pos: -136.5,21.5
parent: 2
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: -97.5,-35.5
+ parent: 2
+ - uid: 23130
+ components:
+ - type: Transform
+ pos: -100.5,-33.5
+ parent: 2
+ - uid: 23135
+ components:
+ - type: Transform
+ pos: -101.5,-35.5
+ parent: 2
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -75.5,-33.5
+ parent: 2
- uid: 23319
components:
- type: Transform
@@ -154301,24 +155713,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -126.5,-88.5
parent: 2
- - uid: 23719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,-33.5
- parent: 2
- - uid: 23728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,-33.5
- parent: 2
- - uid: 23737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,-33.5
- parent: 2
- uid: 23785
components:
- type: Transform
@@ -154944,6 +156338,12 @@ entities:
- type: Transform
pos: -81.5,-10.5
parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,-39.5
+ parent: 2
- uid: 262
components:
- type: Transform
@@ -155239,6 +156639,11 @@ entities:
- type: Transform
pos: -78.5,3.5
parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: -82.5,-78.5
+ parent: 2
- uid: 445
components:
- type: Transform
@@ -155899,11 +157304,6 @@ entities:
- type: Transform
pos: -73.5,-10.5
parent: 2
- - uid: 762
- components:
- - type: Transform
- pos: -92.5,-43.5
- parent: 2
- uid: 765
components:
- type: Transform
@@ -155934,21 +157334,11 @@ entities:
- type: Transform
pos: -94.5,-36.5
parent: 2
- - uid: 783
- components:
- - type: Transform
- pos: -100.5,-3.5
- parent: 2
- uid: 794
components:
- type: Transform
pos: -31.5,-0.5
parent: 2
- - uid: 796
- components:
- - type: Transform
- pos: -101.5,-25.5
- parent: 2
- uid: 797
components:
- type: Transform
@@ -156039,111 +157429,11 @@ entities:
- type: Transform
pos: -97.5,-34.5
parent: 2
- - uid: 874
- components:
- - type: Transform
- pos: -99.5,-0.5
- parent: 2
- - uid: 879
- components:
- - type: Transform
- pos: -99.5,0.5
- parent: 2
- - uid: 880
- components:
- - type: Transform
- pos: -99.5,-4.5
- parent: 2
- - uid: 881
- components:
- - type: Transform
- pos: -99.5,-5.5
- parent: 2
- - uid: 884
- components:
- - type: Transform
- pos: -100.5,-29.5
- parent: 2
- - uid: 886
- components:
- - type: Transform
- pos: -100.5,-25.5
- parent: 2
- - uid: 887
- components:
- - type: Transform
- pos: -97.5,-6.5
- parent: 2
- - uid: 892
- components:
- - type: Transform
- pos: -98.5,1.5
- parent: 2
- - uid: 894
- components:
- - type: Transform
- pos: -93.5,1.5
- parent: 2
- uid: 902
components:
- type: Transform
pos: -107.5,-60.5
parent: 2
- - uid: 907
- components:
- - type: Transform
- pos: -95.5,-6.5
- parent: 2
- - uid: 910
- components:
- - type: Transform
- pos: -96.5,-6.5
- parent: 2
- - uid: 912
- components:
- - type: Transform
- pos: -95.5,1.5
- parent: 2
- - uid: 914
- components:
- - type: Transform
- pos: -96.5,1.5
- parent: 2
- - uid: 925
- components:
- - type: Transform
- pos: -93.5,-6.5
- parent: 2
- - uid: 926
- components:
- - type: Transform
- pos: -92.5,1.5
- parent: 2
- - uid: 930
- components:
- - type: Transform
- pos: -91.5,-0.5
- parent: 2
- - uid: 932
- components:
- - type: Transform
- pos: -91.5,-1.5
- parent: 2
- - uid: 935
- components:
- - type: Transform
- pos: -91.5,-3.5
- parent: 2
- - uid: 937
- components:
- - type: Transform
- pos: -91.5,-4.5
- parent: 2
- - uid: 938
- components:
- - type: Transform
- pos: -91.5,-5.5
- parent: 2
- uid: 943
components:
- type: Transform
@@ -156169,35 +157459,16 @@ entities:
- type: Transform
pos: -86.5,-30.5
parent: 2
- - uid: 952
- components:
- - type: Transform
- pos: -85.5,-43.5
- parent: 2
- - uid: 954
- components:
- - type: Transform
- pos: -85.5,-42.5
- parent: 2
- - uid: 957
- components:
- - type: Transform
- pos: -85.5,-41.5
- parent: 2
- - uid: 959
- components:
- - type: Transform
- pos: -85.5,-40.5
- parent: 2
- - uid: 961
+ - uid: 967
components:
- type: Transform
- pos: -89.5,-43.5
+ pos: -110.5,-54.5
parent: 2
- - uid: 967
+ - uid: 974
components:
- type: Transform
- pos: -110.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-34.5
parent: 2
- uid: 979
components:
@@ -156224,20 +157495,10 @@ entities:
- type: Transform
pos: -85.5,-23.5
parent: 2
- - uid: 1020
- components:
- - type: Transform
- pos: -77.5,-50.5
- parent: 2
- - uid: 1024
- components:
- - type: Transform
- pos: -77.5,-47.5
- parent: 2
- uid: 1026
components:
- type: Transform
- pos: -77.5,-46.5
+ pos: -78.5,-51.5
parent: 2
- uid: 1027
components:
@@ -156367,7 +157628,8 @@ entities:
- uid: 1085
components:
- type: Transform
- pos: -90.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-28.5
parent: 2
- uid: 1086
components:
@@ -156429,6 +157691,12 @@ entities:
- type: Transform
pos: -89.5,32.5
parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -114.5,-33.5
+ parent: 2
- uid: 1161
components:
- type: Transform
@@ -156501,16 +157769,6 @@ entities:
- type: Transform
pos: -35.5,-17.5
parent: 2
- - uid: 1257
- components:
- - type: Transform
- pos: -16.5,-53.5
- parent: 2
- - uid: 1258
- components:
- - type: Transform
- pos: -16.5,-50.5
- parent: 2
- uid: 1261
components:
- type: Transform
@@ -156546,11 +157804,6 @@ entities:
- type: Transform
pos: -23.5,-47.5
parent: 2
- - uid: 1282
- components:
- - type: Transform
- pos: -16.5,-49.5
- parent: 2
- uid: 1284
components:
- type: Transform
@@ -156646,11 +157899,6 @@ entities:
- type: Transform
pos: -132.5,-0.5
parent: 2
- - uid: 1345
- components:
- - type: Transform
- pos: -16.5,-55.5
- parent: 2
- uid: 1346
components:
- type: Transform
@@ -157124,11 +158372,23 @@ entities:
- type: Transform
pos: -103.5,-61.5
parent: 2
+ - uid: 1590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -117.5,-29.5
+ parent: 2
- uid: 1592
components:
- type: Transform
pos: -138.5,28.5
parent: 2
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -114.5,-30.5
+ parent: 2
- uid: 1622
components:
- type: Transform
@@ -157154,31 +158414,16 @@ entities:
- type: Transform
pos: -107.5,-13.5
parent: 2
- - uid: 1652
- components:
- - type: Transform
- pos: -79.5,-41.5
- parent: 2
- uid: 1653
components:
- type: Transform
pos: -84.5,-51.5
parent: 2
- - uid: 1655
- components:
- - type: Transform
- pos: -79.5,-51.5
- parent: 2
- uid: 1656
components:
- type: Transform
pos: -88.5,-30.5
parent: 2
- - uid: 1661
- components:
- - type: Transform
- pos: -79.5,-36.5
- parent: 2
- uid: 1662
components:
- type: Transform
@@ -157214,16 +158459,6 @@ entities:
- type: Transform
pos: -89.5,-36.5
parent: 2
- - uid: 1678
- components:
- - type: Transform
- pos: -79.5,-42.5
- parent: 2
- - uid: 1679
- components:
- - type: Transform
- pos: -77.5,-36.5
- parent: 2
- uid: 1680
components:
- type: Transform
@@ -157249,36 +158484,16 @@ entities:
- type: Transform
pos: -95.5,-47.5
parent: 2
- - uid: 1687
- components:
- - type: Transform
- pos: -79.5,-49.5
- parent: 2
- - uid: 1689
- components:
- - type: Transform
- pos: -79.5,-50.5
- parent: 2
- uid: 1692
components:
- type: Transform
pos: -135.5,29.5
parent: 2
- - uid: 1696
- components:
- - type: Transform
- pos: -79.5,-46.5
- parent: 2
- uid: 1699
components:
- type: Transform
pos: -87.5,-30.5
parent: 2
- - uid: 1717
- components:
- - type: Transform
- pos: -77.5,-53.5
- parent: 2
- uid: 1719
components:
- type: Transform
@@ -157329,31 +158544,16 @@ entities:
- type: Transform
pos: -90.5,-51.5
parent: 2
- - uid: 1745
- components:
- - type: Transform
- pos: -78.5,-53.5
- parent: 2
- uid: 1749
components:
- type: Transform
pos: -94.5,-53.5
parent: 2
- - uid: 1753
- components:
- - type: Transform
- pos: -79.5,-40.5
- parent: 2
- uid: 1756
components:
- type: Transform
pos: -101.5,-36.5
parent: 2
- - uid: 1758
- components:
- - type: Transform
- pos: -79.5,-44.5
- parent: 2
- uid: 1760
components:
- type: Transform
@@ -157369,11 +158569,6 @@ entities:
- type: Transform
pos: -99.5,-33.5
parent: 2
- - uid: 1764
- components:
- - type: Transform
- pos: -79.5,-48.5
- parent: 2
- uid: 1769
components:
- type: Transform
@@ -157389,11 +158584,6 @@ entities:
- type: Transform
pos: -51.5,-78.5
parent: 2
- - uid: 1776
- components:
- - type: Transform
- pos: -97.5,-35.5
- parent: 2
- uid: 1779
components:
- type: Transform
@@ -157429,11 +158619,6 @@ entities:
- type: Transform
pos: -85.5,-34.5
parent: 2
- - uid: 1805
- components:
- - type: Transform
- pos: -79.5,-38.5
- parent: 2
- uid: 1806
components:
- type: Transform
@@ -157454,11 +158639,6 @@ entities:
- type: Transform
pos: -93.5,-44.5
parent: 2
- - uid: 1820
- components:
- - type: Transform
- pos: -79.5,-45.5
- parent: 2
- uid: 1821
components:
- type: Transform
@@ -157539,21 +158719,6 @@ entities:
- type: Transform
pos: -106.5,-60.5
parent: 2
- - uid: 1875
- components:
- - type: Transform
- pos: -77.5,-37.5
- parent: 2
- - uid: 1876
- components:
- - type: Transform
- pos: -77.5,-41.5
- parent: 2
- - uid: 1881
- components:
- - type: Transform
- pos: -89.5,-42.5
- parent: 2
- uid: 1885
components:
- type: Transform
@@ -157609,49 +158774,26 @@ entities:
- type: Transform
pos: -79.5,-20.5
parent: 2
- - uid: 1965
- components:
- - type: Transform
- pos: -77.5,-38.5
- parent: 2
- - uid: 1966
- components:
- - type: Transform
- pos: -79.5,-37.5
- parent: 2
- - uid: 1967
- components:
- - type: Transform
- pos: -77.5,-43.5
- parent: 2
- - uid: 1968
- components:
- - type: Transform
- pos: -77.5,-45.5
- parent: 2
- uid: 1969
components:
- type: Transform
pos: -94.5,-42.5
parent: 2
- - uid: 1970
+ - uid: 1991
components:
- type: Transform
- pos: -77.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -114.5,-29.5
parent: 2
- uid: 1996
components:
- type: Transform
pos: -96.5,-42.5
parent: 2
- - uid: 1999
- components:
- - type: Transform
- pos: -77.5,-39.5
- parent: 2
- uid: 2000
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -89.5,-40.5
parent: 2
- uid: 2003
@@ -157659,11 +158801,6 @@ entities:
- type: Transform
pos: -84.5,-18.5
parent: 2
- - uid: 2004
- components:
- - type: Transform
- pos: -100.5,-33.5
- parent: 2
- uid: 2005
components:
- type: Transform
@@ -157674,35 +158811,27 @@ entities:
- type: Transform
pos: -82.5,-36.5
parent: 2
- - uid: 2009
- components:
- - type: Transform
- pos: -84.5,-36.5
- parent: 2
- uid: 2012
components:
- type: Transform
pos: -94.5,-40.5
parent: 2
- - uid: 2025
- components:
- - type: Transform
- pos: -89.5,-41.5
- parent: 2
- uid: 2050
components:
- type: Transform
- pos: -83.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-39.5
parent: 2
- uid: 2055
components:
- type: Transform
pos: -101.5,-34.5
parent: 2
- - uid: 2087
+ - uid: 2058
components:
- type: Transform
- pos: -101.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-41.5
parent: 2
- uid: 2099
components:
@@ -157719,6 +158848,12 @@ entities:
- type: Transform
pos: -36.5,13.5
parent: 2
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -115.5,-33.5
+ parent: 2
- uid: 2130
components:
- type: Transform
@@ -157879,16 +159014,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -138.5,6.5
parent: 2
- - uid: 2358
+ - uid: 2352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -78.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -117.5,-30.5
parent: 2
- - uid: 2366
+ - uid: 2358
components:
- type: Transform
- pos: -86.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -78.5,-25.5
parent: 2
- uid: 2370
components:
@@ -157906,11 +159042,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -135.5,-29.5
parent: 2
- - uid: 2403
- components:
- - type: Transform
- pos: -92.5,-40.5
- parent: 2
- uid: 2437
components:
- type: Transform
@@ -157923,11 +159054,29 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,19.5
parent: 2
+ - uid: 2587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -116.5,-33.5
+ parent: 2
- uid: 2592
components:
- type: Transform
pos: -40.5,-70.5
parent: 2
+ - uid: 2596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-39.5
+ parent: 2
+ - uid: 2610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -117.5,-32.5
+ parent: 2
- uid: 2618
components:
- type: Transform
@@ -157938,6 +159087,12 @@ entities:
- type: Transform
pos: -40.5,-73.5
parent: 2
+ - uid: 2625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-40.5
+ parent: 2
- uid: 2636
components:
- type: Transform
@@ -158133,11 +159288,6 @@ entities:
- type: Transform
pos: -19.5,21.5
parent: 2
- - uid: 3428
- components:
- - type: Transform
- pos: -77.5,-35.5
- parent: 2
- uid: 3430
components:
- type: Transform
@@ -158309,6 +159459,12 @@ entities:
- type: Transform
pos: -6.5,-38.5
parent: 2
+ - uid: 3760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -69.5,-69.5
+ parent: 2
- uid: 3765
components:
- type: Transform
@@ -158400,6 +159556,18 @@ entities:
- type: Transform
pos: -12.5,-44.5
parent: 2
+ - uid: 4283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -117.5,-31.5
+ parent: 2
+ - uid: 4284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -115.5,-29.5
+ parent: 2
- uid: 4322
components:
- type: Transform
@@ -158467,12 +159635,6 @@ entities:
- type: Transform
pos: -107.5,32.5
parent: 2
- - uid: 4560
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,-53.5
- parent: 2
- uid: 4566
components:
- type: Transform
@@ -158571,6 +159733,11 @@ entities:
- type: Transform
pos: -10.5,-55.5
parent: 2
+ - uid: 5104
+ components:
+ - type: Transform
+ pos: -79.5,-51.5
+ parent: 2
- uid: 5168
components:
- type: Transform
@@ -158794,15 +159961,20 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,14.5
parent: 2
- - uid: 5753
+ - uid: 5726
components:
- type: Transform
- pos: -83.5,-53.5
+ pos: -75.5,-50.5
parent: 2
- - uid: 5754
+ - uid: 5750
components:
- type: Transform
- pos: -88.5,-43.5
+ pos: -75.5,-51.5
+ parent: 2
+ - uid: 5753
+ components:
+ - type: Transform
+ pos: -83.5,-53.5
parent: 2
- uid: 5755
components:
@@ -158905,16 +160077,6 @@ entities:
- type: Transform
pos: -93.5,-53.5
parent: 2
- - uid: 6020
- components:
- - type: Transform
- pos: -77.5,-52.5
- parent: 2
- - uid: 6021
- components:
- - type: Transform
- pos: -77.5,-51.5
- parent: 2
- uid: 6134
components:
- type: Transform
@@ -158930,10 +160092,10 @@ entities:
- type: Transform
pos: -100.5,-67.5
parent: 2
- - uid: 6318
+ - uid: 6484
components:
- type: Transform
- pos: -90.5,-43.5
+ pos: -79.5,-34.5
parent: 2
- uid: 6521
components:
@@ -159105,11 +160267,6 @@ entities:
- type: Transform
pos: -85.5,-78.5
parent: 2
- - uid: 6613
- components:
- - type: Transform
- pos: -84.5,-81.5
- parent: 2
- uid: 6614
components:
- type: Transform
@@ -159155,15 +160312,16 @@ entities:
- type: Transform
pos: -74.5,-79.5
parent: 2
- - uid: 6662
+ - uid: 6680
components:
- type: Transform
- pos: -84.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-43.5
parent: 2
- uid: 6692
components:
- type: Transform
- pos: -84.5,-79.5
+ pos: -100.5,-25.5
parent: 2
- uid: 6697
components:
@@ -159180,11 +160338,32 @@ entities:
- type: Transform
pos: -68.5,-80.5
parent: 2
+ - uid: 6719
+ components:
+ - type: Transform
+ pos: -75.5,-34.5
+ parent: 2
+ - uid: 6728
+ components:
+ - type: Transform
+ pos: -75.5,-49.5
+ parent: 2
+ - uid: 6730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-34.5
+ parent: 2
- uid: 6735
components:
- type: Transform
pos: -66.5,-80.5
parent: 2
+ - uid: 6738
+ components:
+ - type: Transform
+ pos: -75.5,-53.5
+ parent: 2
- uid: 6739
components:
- type: Transform
@@ -159220,11 +160399,51 @@ entities:
- type: Transform
pos: -70.5,-80.5
parent: 2
+ - uid: 6808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-43.5
+ parent: 2
- uid: 6811
components:
- type: Transform
pos: -50.5,-78.5
parent: 2
+ - uid: 6816
+ components:
+ - type: Transform
+ pos: -75.5,-42.5
+ parent: 2
+ - uid: 6818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-43.5
+ parent: 2
+ - uid: 6820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-42.5
+ parent: 2
+ - uid: 6824
+ components:
+ - type: Transform
+ pos: -75.5,-43.5
+ parent: 2
+ - uid: 6826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-43.5
+ parent: 2
+ - uid: 6833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-39.5
+ parent: 2
- uid: 6857
components:
- type: Transform
@@ -159287,16 +160506,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,8.5
parent: 2
- - uid: 7014
- components:
- - type: Transform
- pos: -80.5,-80.5
- parent: 2
- - uid: 7016
- components:
- - type: Transform
- pos: -80.5,-79.5
- parent: 2
- uid: 7017
components:
- type: Transform
@@ -159687,6 +160896,36 @@ entities:
- type: Transform
pos: -35.5,-51.5
parent: 2
+ - uid: 9366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-39.5
+ parent: 2
+ - uid: 9367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-41.5
+ parent: 2
+ - uid: 9373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-39.5
+ parent: 2
+ - uid: 9385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-42.5
+ parent: 2
+ - uid: 9387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-39.5
+ parent: 2
- uid: 9784
components:
- type: Transform
@@ -159746,6 +160985,12 @@ entities:
- type: Transform
pos: -85.5,3.5
parent: 2
+ - uid: 10183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-52.5
+ parent: 2
- uid: 10451
components:
- type: Transform
@@ -159791,11 +161036,41 @@ entities:
- type: Transform
pos: -20.5,-67.5
parent: 2
+ - uid: 11061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-43.5
+ parent: 2
+ - uid: 11066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-40.5
+ parent: 2
+ - uid: 11068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-43.5
+ parent: 2
- uid: 11075
components:
- type: Transform
pos: -39.5,-39.5
parent: 2
+ - uid: 11081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-41.5
+ parent: 2
+ - uid: 11083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,-43.5
+ parent: 2
- uid: 11110
components:
- type: Transform
@@ -159884,6 +161159,24 @@ entities:
- type: Transform
pos: -35.5,-34.5
parent: 2
+ - uid: 13714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,-34.5
+ parent: 2
+ - uid: 13721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,-34.5
+ parent: 2
+ - uid: 13746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-50.5
+ parent: 2
- uid: 13820
components:
- type: Transform
@@ -159894,6 +161187,27 @@ entities:
- type: Transform
pos: -142.5,-17.5
parent: 2
+ - uid: 13990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,-34.5
+ parent: 2
+ - uid: 13992
+ components:
+ - type: Transform
+ pos: -77.5,-45.5
+ parent: 2
+ - uid: 13994
+ components:
+ - type: Transform
+ pos: -77.5,-51.5
+ parent: 2
+ - uid: 13996
+ components:
+ - type: Transform
+ pos: -77.5,-49.5
+ parent: 2
- uid: 14026
components:
- type: Transform
@@ -159905,11 +161219,93 @@ entities:
rot: -1.5707963267948966 rad
pos: -137.5,-23.5
parent: 2
+ - uid: 14187
+ components:
+ - type: Transform
+ pos: -77.5,-41.5
+ parent: 2
+ - uid: 14188
+ components:
+ - type: Transform
+ pos: -77.5,-40.5
+ parent: 2
+ - uid: 14190
+ components:
+ - type: Transform
+ pos: -77.5,-42.5
+ parent: 2
+ - uid: 14191
+ components:
+ - type: Transform
+ pos: -77.5,-46.5
+ parent: 2
+ - uid: 14192
+ components:
+ - type: Transform
+ pos: -77.5,-50.5
+ parent: 2
+ - uid: 14193
+ components:
+ - type: Transform
+ pos: -77.5,-47.5
+ parent: 2
+ - uid: 14194
+ components:
+ - type: Transform
+ pos: -77.5,-48.5
+ parent: 2
+ - uid: 14195
+ components:
+ - type: Transform
+ pos: -77.5,-44.5
+ parent: 2
+ - uid: 14196
+ components:
+ - type: Transform
+ pos: -77.5,-43.5
+ parent: 2
- uid: 14591
components:
- type: Transform
pos: -138.5,-23.5
parent: 2
+ - uid: 14699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-51.5
+ parent: 2
+ - uid: 14700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-48.5
+ parent: 2
+ - uid: 15034
+ components:
+ - type: Transform
+ pos: -75.5,-45.5
+ parent: 2
+ - uid: 15035
+ components:
+ - type: Transform
+ pos: -75.5,-44.5
+ parent: 2
+ - uid: 15042
+ components:
+ - type: Transform
+ pos: -77.5,-53.5
+ parent: 2
+ - uid: 15249
+ components:
+ - type: Transform
+ pos: -75.5,-52.5
+ parent: 2
+ - uid: 15250
+ components:
+ - type: Transform
+ pos: -75.5,-37.5
+ parent: 2
- uid: 15271
components:
- type: Transform
@@ -159920,11 +161316,85 @@ entities:
- type: Transform
pos: -26.5,-58.5
parent: 2
+ - uid: 15988
+ components:
+ - type: Transform
+ pos: -76.5,-53.5
+ parent: 2
+ - uid: 15989
+ components:
+ - type: Transform
+ pos: -78.5,-53.5
+ parent: 2
+ - uid: 15992
+ components:
+ - type: Transform
+ pos: -75.5,-38.5
+ parent: 2
+ - uid: 16002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -114.5,-34.5
+ parent: 2
+ - uid: 16240
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,1.5
+ parent: 2
+ - uid: 16242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,0.5
+ parent: 2
- uid: 16296
components:
- type: Transform
pos: -138.5,-22.5
parent: 2
+ - uid: 16334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,-28.5
+ parent: 2
+ - uid: 16402
+ components:
+ - type: Transform
+ pos: -75.5,-46.5
+ parent: 2
+ - uid: 16417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-42.5
+ parent: 2
+ - uid: 16418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-43.5
+ parent: 2
+ - uid: 16422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-39.5
+ parent: 2
+ - uid: 16425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,3.5
+ parent: 2
+ - uid: 16448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,2.5
+ parent: 2
- uid: 16564
components:
- type: Transform
@@ -159945,6 +161415,11 @@ entities:
- type: Transform
pos: -32.5,-43.5
parent: 2
+ - uid: 16992
+ components:
+ - type: Transform
+ pos: -79.5,-53.5
+ parent: 2
- uid: 17027
components:
- type: Transform
@@ -159960,6 +161435,31 @@ entities:
- type: Transform
pos: -55.5,-76.5
parent: 2
+ - uid: 17054
+ components:
+ - type: Transform
+ pos: -75.5,-39.5
+ parent: 2
+ - uid: 17059
+ components:
+ - type: Transform
+ pos: -75.5,-40.5
+ parent: 2
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: -75.5,-48.5
+ parent: 2
+ - uid: 17073
+ components:
+ - type: Transform
+ pos: -75.5,-47.5
+ parent: 2
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: -75.5,-41.5
+ parent: 2
- uid: 17084
components:
- type: Transform
@@ -159993,6 +161493,12 @@ entities:
- type: Transform
pos: -19.5,6.5
parent: 2
+ - uid: 17124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-43.5
+ parent: 2
- uid: 17132
components:
- type: Transform
@@ -160075,6 +161581,17 @@ entities:
- type: Transform
pos: -20.5,-66.5
parent: 2
+ - uid: 17882
+ components:
+ - type: Transform
+ pos: -100.5,-29.5
+ parent: 2
+ - uid: 17904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-30.5
+ parent: 2
- uid: 18045
components:
- type: Transform
@@ -160093,30 +161610,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -115.5,-13.5
parent: 2
- - uid: 18128
+ - uid: 18114
components:
- type: Transform
- pos: -93.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-32.5
parent: 2
- - uid: 18135
+ - uid: 18119
components:
- type: Transform
- pos: -91.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-32.5
parent: 2
- uid: 18149
components:
- type: Transform
pos: -34.5,-45.5
parent: 2
- - uid: 18367
- components:
- - type: Transform
- pos: -101.5,-1.5
- parent: 2
- - uid: 18368
+ - uid: 18207
components:
- type: Transform
- pos: -100.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-35.5
parent: 2
- uid: 18374
components:
@@ -160133,40 +161648,55 @@ entities:
- type: Transform
pos: -131.5,16.5
parent: 2
+ - uid: 18626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-69.5
+ parent: 2
- uid: 18685
components:
- type: Transform
pos: -26.5,3.5
parent: 2
+ - uid: 18692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-69.5
+ parent: 2
- uid: 18749
components:
- type: Transform
pos: -27.5,9.5
parent: 2
- - uid: 18834
+ - uid: 18760
components:
- type: Transform
- pos: -91.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,-28.5
parent: 2
- - uid: 18890
+ - uid: 18778
components:
- type: Transform
- pos: -91.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-39.5
parent: 2
- - uid: 19163
+ - uid: 18781
components:
- type: Transform
- pos: -95.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,-39.5
parent: 2
- - uid: 19166
+ - uid: 18909
components:
- type: Transform
- pos: -94.5,-60.5
+ pos: -82.5,2.5
parent: 2
- - uid: 19167
+ - uid: 18979
components:
- type: Transform
- pos: -95.5,-60.5
+ pos: -82.5,0.5
parent: 2
- uid: 19168
components:
@@ -160203,11 +161733,6 @@ entities:
- type: Transform
pos: -88.5,-73.5
parent: 2
- - uid: 19307
- components:
- - type: Transform
- pos: -88.5,-61.5
- parent: 2
- uid: 19320
components:
- type: Transform
@@ -160218,15 +161743,15 @@ entities:
- type: Transform
pos: -140.5,-21.5
parent: 2
- - uid: 19455
+ - uid: 19447
components:
- type: Transform
- pos: -137.5,-21.5
+ pos: -82.5,1.5
parent: 2
- - uid: 19487
+ - uid: 19455
components:
- type: Transform
- pos: -88.5,-63.5
+ pos: -137.5,-21.5
parent: 2
- uid: 19491
components:
@@ -160238,35 +161763,10 @@ entities:
- type: Transform
pos: -117.5,-7.5
parent: 2
- - uid: 19555
- components:
- - type: Transform
- pos: -96.5,-64.5
- parent: 2
- - uid: 19559
- components:
- - type: Transform
- pos: -96.5,-61.5
- parent: 2
- - uid: 19569
- components:
- - type: Transform
- pos: -96.5,-66.5
- parent: 2
- - uid: 19570
- components:
- - type: Transform
- pos: -96.5,-63.5
- parent: 2
- - uid: 19620
- components:
- - type: Transform
- pos: -96.5,-67.5
- parent: 2
- - uid: 19621
+ - uid: 19563
components:
- type: Transform
- pos: -96.5,-65.5
+ pos: -97.5,-24.5
parent: 2
- uid: 19624
components:
@@ -160284,41 +161784,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -102.5,31.5
parent: 2
- - uid: 20034
- components:
- - type: Transform
- pos: -88.5,-65.5
- parent: 2
- - uid: 20036
- components:
- - type: Transform
- pos: -88.5,-67.5
- parent: 2
- - uid: 20148
- components:
- - type: Transform
- pos: -88.5,-62.5
- parent: 2
- - uid: 20222
+ - uid: 20029
components:
- type: Transform
- pos: -88.5,-66.5
+ pos: -97.5,-32.5
parent: 2
- uid: 20223
components:
- type: Transform
- pos: -91.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -114.5,-28.5
parent: 2
- uid: 20260
components:
- type: Transform
pos: -27.5,4.5
parent: 2
- - uid: 20266
- components:
- - type: Transform
- pos: -94.5,-68.5
- parent: 2
- uid: 20267
components:
- type: Transform
@@ -160334,26 +161815,11 @@ entities:
- type: Transform
pos: -122.5,34.5
parent: 2
- - uid: 20279
- components:
- - type: Transform
- pos: -95.5,-67.5
- parent: 2
- - uid: 20280
- components:
- - type: Transform
- pos: -93.5,-68.5
- parent: 2
- uid: 20281
components:
- type: Transform
pos: -90.5,-71.5
parent: 2
- - uid: 20282
- components:
- - type: Transform
- pos: -89.5,-61.5
- parent: 2
- uid: 20283
components:
- type: Transform
@@ -160374,26 +161840,6 @@ entities:
- type: Transform
pos: -90.5,-70.5
parent: 2
- - uid: 20287
- components:
- - type: Transform
- pos: -89.5,-68.5
- parent: 2
- - uid: 20289
- components:
- - type: Transform
- pos: -90.5,-68.5
- parent: 2
- - uid: 20290
- components:
- - type: Transform
- pos: -89.5,-67.5
- parent: 2
- - uid: 20291
- components:
- - type: Transform
- pos: -90.5,-60.5
- parent: 2
- uid: 20294
components:
- type: Transform
@@ -160497,6 +161943,24 @@ entities:
- type: Transform
pos: -23.5,9.5
parent: 2
+ - uid: 20729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-30.5
+ parent: 2
+ - uid: 20772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-28.5
+ parent: 2
+ - uid: 20773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,-33.5
+ parent: 2
- uid: 20840
components:
- type: Transform
@@ -160522,16 +161986,15 @@ entities:
- type: Transform
pos: -14.5,-63.5
parent: 2
- - uid: 21397
+ - uid: 21665
components:
- type: Transform
- pos: -99.5,-3.5
+ pos: -76.5,-36.5
parent: 2
- - uid: 21419
+ - uid: 21668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,0.5
+ pos: -76.5,-35.5
parent: 2
- uid: 21803
components:
@@ -160592,12 +162055,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -75.5,-28.5
parent: 2
- - uid: 22120
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -75.5,-33.5
- parent: 2
- uid: 22121
components:
- type: Transform
@@ -160624,6 +162081,11 @@ entities:
- type: Transform
pos: -103.5,33.5
parent: 2
+ - uid: 22282
+ components:
+ - type: Transform
+ pos: -97.5,-28.5
+ parent: 2
- uid: 22322
components:
- type: Transform
@@ -160654,29 +162116,11 @@ entities:
rot: 3.141592653589793 rad
pos: -135.5,9.5
parent: 2
- - uid: 22683
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,0.5
- parent: 2
- - uid: 22687
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-5.5
- parent: 2
- - uid: 22796
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,-5.5
- parent: 2
- - uid: 22797
+ - uid: 22811
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-6.5
+ pos: -89.5,-0.5
parent: 2
- uid: 22814
components:
@@ -160722,6 +162166,11 @@ entities:
- type: Transform
pos: -137.5,29.5
parent: 2
+ - uid: 23240
+ components:
+ - type: Transform
+ pos: -75.5,-36.5
+ parent: 2
- uid: 23462
components:
- type: Transform
@@ -160753,6 +162202,11 @@ entities:
- type: Transform
pos: -22.5,-70.5
parent: 2
+ - uid: 23929
+ components:
+ - type: Transform
+ pos: -82.5,3.5
+ parent: 2
- uid: 23937
components:
- type: Transform
@@ -160781,6 +162235,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -82.5,6.5
parent: 2
+ - uid: 24108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-36.5
+ parent: 2
- uid: 24109
components:
- type: Transform
@@ -160811,6 +162271,12 @@ entities:
- type: Transform
pos: -26.5,-69.5
parent: 2
+ - uid: 24335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -78.5,-37.5
+ parent: 2
- uid: 24362
components:
- type: Transform
@@ -161160,6 +162626,11 @@ entities:
- type: Transform
pos: -27.5,-16.5
parent: 2
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: -99.5,-0.5
+ parent: 2
- uid: 1358
components:
- type: Transform
@@ -161170,6 +162641,11 @@ entities:
- type: Transform
pos: -38.5,-48.5
parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: -92.5,-10.5
+ parent: 2
- uid: 1408
components:
- type: Transform
@@ -161240,11 +162716,6 @@ entities:
- type: Transform
pos: -71.5,-54.5
parent: 2
- - uid: 1516
- components:
- - type: Transform
- pos: -72.5,-54.5
- parent: 2
- uid: 1528
components:
- type: Transform
@@ -161295,6 +162766,12 @@ entities:
- type: Transform
pos: -21.5,-10.5
parent: 2
+ - uid: 1661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-69.5
+ parent: 2
- uid: 1664
components:
- type: Transform
@@ -161310,6 +162787,16 @@ entities:
- type: Transform
pos: -19.5,-10.5
parent: 2
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: -94.5,-10.5
+ parent: 2
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: -94.5,-2.5
+ parent: 2
- uid: 1767
components:
- type: Transform
@@ -161325,6 +162812,17 @@ entities:
- type: Transform
pos: -76.5,-15.5
parent: 2
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: -98.5,-2.5
+ parent: 2
+ - uid: 2167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-74.5
+ parent: 2
- uid: 2168
components:
- type: Transform
@@ -161505,11 +163003,6 @@ entities:
- type: Transform
pos: -127.5,-52.5
parent: 2
- - uid: 2548
- components:
- - type: Transform
- pos: -102.5,-36.5
- parent: 2
- uid: 2554
components:
- type: Transform
@@ -161520,6 +163013,16 @@ entities:
- type: Transform
pos: -127.5,-51.5
parent: 2
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: -88.5,-59.5
+ parent: 2
+ - uid: 2608
+ components:
+ - type: Transform
+ pos: -90.5,-59.5
+ parent: 2
- uid: 2677
components:
- type: Transform
@@ -161530,6 +163033,17 @@ entities:
- type: Transform
pos: -59.5,-21.5
parent: 2
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: -57.5,-68.5
+ parent: 2
+ - uid: 3340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,-68.5
+ parent: 2
- uid: 3360
components:
- type: Transform
@@ -161550,16 +163064,6 @@ entities:
- type: Transform
pos: -105.5,-0.5
parent: 2
- - uid: 3615
- components:
- - type: Transform
- pos: -72.5,-51.5
- parent: 2
- - uid: 3616
- components:
- - type: Transform
- pos: -71.5,-51.5
- parent: 2
- uid: 3620
components:
- type: Transform
@@ -161637,11 +163141,6 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,-1.5
parent: 2
- - uid: 4276
- components:
- - type: Transform
- pos: -61.5,-68.5
- parent: 2
- uid: 4557
components:
- type: Transform
@@ -161663,11 +163162,6 @@ entities:
- type: Transform
pos: -131.5,-41.5
parent: 2
- - uid: 5112
- components:
- - type: Transform
- pos: -61.5,-73.5
- parent: 2
- uid: 5118
components:
- type: Transform
@@ -161704,11 +163198,6 @@ entities:
- type: Transform
pos: -98.5,-48.5
parent: 2
- - uid: 7117
- components:
- - type: Transform
- pos: -73.5,-54.5
- parent: 2
- uid: 7512
components:
- type: Transform
@@ -161957,11 +163446,6 @@ entities:
- type: Transform
pos: -26.5,-41.5
parent: 2
- - uid: 9516
- components:
- - type: Transform
- pos: -113.5,-28.5
- parent: 2
- uid: 9667
components:
- type: Transform
@@ -162032,11 +163516,6 @@ entities:
- type: Transform
pos: -107.5,-25.5
parent: 2
- - uid: 11162
- components:
- - type: Transform
- pos: -108.5,-32.5
- parent: 2
- uid: 11184
components:
- type: Transform
@@ -162129,11 +163608,6 @@ entities:
- type: Transform
pos: -68.5,-59.5
parent: 2
- - uid: 13540
- components:
- - type: Transform
- pos: -108.5,-30.5
- parent: 2
- uid: 13619
components:
- type: Transform
@@ -162161,11 +163635,6 @@ entities:
- type: Transform
pos: -31.5,-65.5
parent: 2
- - uid: 14755
- components:
- - type: Transform
- pos: -101.5,-0.5
- parent: 2
- uid: 14801
components:
- type: Transform
@@ -162187,21 +163656,6 @@ entities:
- type: Transform
pos: -129.5,-55.5
parent: 2
- - uid: 15227
- components:
- - type: Transform
- pos: -73.5,-58.5
- parent: 2
- - uid: 15342
- components:
- - type: Transform
- pos: -115.5,-34.5
- parent: 2
- - uid: 15343
- components:
- - type: Transform
- pos: -112.5,-34.5
- parent: 2
- uid: 15884
components:
- type: Transform
@@ -162212,11 +163666,6 @@ entities:
- type: Transform
pos: -87.5,13.5
parent: 2
- - uid: 16038
- components:
- - type: Transform
- pos: -57.5,-61.5
- parent: 2
- uid: 16568
components:
- type: Transform
@@ -162289,10 +163738,10 @@ entities:
- type: Transform
pos: -123.5,23.5
parent: 2
- - uid: 23185
+ - uid: 23224
components:
- type: Transform
- pos: -52.5,-72.5
+ pos: -92.5,-0.5
parent: 2
- uid: 23337
components:
@@ -162369,11 +163818,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-21.5
parent: 2
+ - uid: 811
+ components:
+ - type: Transform
+ pos: -95.5,-58.5
+ parent: 2
- uid: 821
components:
- type: Transform
pos: -71.5,-58.5
parent: 2
+ - uid: 824
+ components:
+ - type: Transform
+ pos: -95.5,-67.5
+ parent: 2
- uid: 1003
components:
- type: Transform
@@ -162384,56 +163843,196 @@ entities:
- type: Transform
pos: -74.5,-20.5
parent: 2
- - uid: 1089
+ - uid: 1117
components:
- type: Transform
- pos: -97.5,3.5
+ pos: -100.5,-0.5
parent: 2
- uid: 1188
components:
- type: Transform
pos: -39.5,-69.5
parent: 2
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: -95.5,-60.5
+ parent: 2
- uid: 1218
components:
- type: Transform
pos: -94.5,3.5
parent: 2
+ - uid: 1302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-67.5
+ parent: 2
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: -99.5,-1.5
+ parent: 2
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: -95.5,-65.5
+ parent: 2
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: -95.5,-66.5
+ parent: 2
+ - uid: 1704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,-35.5
+ parent: 2
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: -96.5,-67.5
+ parent: 2
- uid: 1709
components:
- type: Transform
pos: -99.5,3.5
parent: 2
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: -72.5,-43.5
+ parent: 2
- uid: 1752
components:
- type: Transform
pos: -107.5,-21.5
parent: 2
- - uid: 1956
+ - uid: 1946
components:
- type: Transform
- pos: -89.5,0.5
+ pos: -99.5,-2.5
parent: 2
- - uid: 2131
+ - uid: 1960
components:
- type: Transform
- pos: -89.5,2.5
+ pos: -97.5,-2.5
parent: 2
- - uid: 2377
+ - uid: 1964
components:
- type: Transform
- pos: -89.5,1.5
+ pos: -95.5,-2.5
+ parent: 2
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: -100.5,2.5
+ parent: 2
+ - uid: 2015
+ components:
+ - type: Transform
+ pos: -72.5,-47.5
+ parent: 2
+ - uid: 2025
+ components:
+ - type: Transform
+ pos: -72.5,-46.5
+ parent: 2
+ - uid: 2366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,-37.5
+ parent: 2
+ - uid: 2368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,-36.5
+ parent: 2
+ - uid: 2371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,-36.5
+ parent: 2
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: -72.5,-45.5
parent: 2
- uid: 2541
components:
- type: Transform
pos: -66.5,-34.5
parent: 2
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: -72.5,-44.5
+ parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ pos: -95.5,-64.5
+ parent: 2
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: -95.5,-63.5
+ parent: 2
+ - uid: 2584
+ components:
+ - type: Transform
+ pos: -95.5,-62.5
+ parent: 2
+ - uid: 2622
+ components:
+ - type: Transform
+ pos: -93.5,-2.5
+ parent: 2
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: -92.5,-2.5
+ parent: 2
+ - uid: 2645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-67.5
+ parent: 2
+ - uid: 2646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-67.5
+ parent: 2
+ - uid: 2651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-67.5
+ parent: 2
+ - uid: 3314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-78.5
+ parent: 2
+ - uid: 3727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-62.5
+ parent: 2
- uid: 3729
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -95.5,-58.5
+ pos: -71.5,-76.5
parent: 2
- uid: 3730
components:
@@ -162441,6 +164040,48 @@ entities:
rot: -1.5707963267948966 rad
pos: -95.5,-54.5
parent: 2
+ - uid: 3741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-60.5
+ parent: 2
+ - uid: 3752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-71.5
+ parent: 2
+ - uid: 3753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-70.5
+ parent: 2
+ - uid: 3757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -70.5,-69.5
+ parent: 2
+ - uid: 3758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-72.5
+ parent: 2
+ - uid: 3761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-70.5
+ parent: 2
+ - uid: 3764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-71.5
+ parent: 2
- uid: 3817
components:
- type: Transform
@@ -162459,6 +164100,18 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-32.5
parent: 2
+ - uid: 3961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-63.5
+ parent: 2
+ - uid: 3965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-61.5
+ parent: 2
- uid: 3994
components:
- type: Transform
@@ -162471,6 +164124,24 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,-5.5
parent: 2
+ - uid: 4090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-69.5
+ parent: 2
+ - uid: 4097
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-64.5
+ parent: 2
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-63.5
+ parent: 2
- uid: 4547
components:
- type: Transform
@@ -162483,10 +164154,11 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-34.5
parent: 2
- - uid: 4632
+ - uid: 4561
components:
- type: Transform
- pos: -99.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -108.5,-38.5
parent: 2
- uid: 4655
components:
@@ -162494,12 +164166,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -103.5,21.5
parent: 2
+ - uid: 4827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-63.5
+ parent: 2
- uid: 5741
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -96.5,26.5
parent: 2
+ - uid: 6886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-58.5
+ parent: 2
- uid: 7084
components:
- type: Transform
@@ -162545,6 +164229,11 @@ entities:
- type: Transform
pos: -39.5,-10.5
parent: 2
+ - uid: 7115
+ components:
+ - type: Transform
+ pos: -72.5,-36.5
+ parent: 2
- uid: 7116
components:
- type: Transform
@@ -162680,6 +164369,28 @@ entities:
- type: Transform
pos: -97.5,8.5
parent: 2
+ - uid: 7481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-73.5
+ parent: 2
+ - uid: 7488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-75.5
+ parent: 2
+ - uid: 7489
+ components:
+ - type: Transform
+ pos: -72.5,-41.5
+ parent: 2
+ - uid: 7490
+ components:
+ - type: Transform
+ pos: -72.5,-40.5
+ parent: 2
- uid: 7514
components:
- type: Transform
@@ -162695,6 +164406,28 @@ entities:
- type: Transform
pos: -103.5,19.5
parent: 2
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: -72.5,-39.5
+ parent: 2
+ - uid: 7543
+ components:
+ - type: Transform
+ pos: -72.5,-42.5
+ parent: 2
+ - uid: 7574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-74.5
+ parent: 2
+ - uid: 7575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -71.5,-72.5
+ parent: 2
- uid: 7678
components:
- type: Transform
@@ -162746,6 +164479,12 @@ entities:
- type: Transform
pos: -31.5,-27.5
parent: 2
+ - uid: 8500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-68.5
+ parent: 2
- uid: 8520
components:
- type: Transform
@@ -162997,12 +164736,6 @@ entities:
- type: Transform
pos: -48.5,-17.5
parent: 2
- - uid: 9295
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-36.5
- parent: 2
- uid: 9307
components:
- type: Transform
@@ -163013,6 +164746,12 @@ entities:
- type: Transform
pos: -70.5,-17.5
parent: 2
+ - uid: 9311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,-64.5
+ parent: 2
- uid: 9313
components:
- type: Transform
@@ -163068,6 +164807,11 @@ entities:
- type: Transform
pos: -73.5,-15.5
parent: 2
+ - uid: 9453
+ components:
+ - type: Transform
+ pos: -100.5,3.5
+ parent: 2
- uid: 9463
components:
- type: Transform
@@ -163093,6 +164837,11 @@ entities:
- type: Transform
pos: -56.5,-25.5
parent: 2
+ - uid: 9483
+ components:
+ - type: Transform
+ pos: -100.5,0.5
+ parent: 2
- uid: 9508
components:
- type: Transform
@@ -163293,11 +165042,6 @@ entities:
- type: Transform
pos: -32.5,3.5
parent: 2
- - uid: 9731
- components:
- - type: Transform
- pos: -74.5,-59.5
- parent: 2
- uid: 9734
components:
- type: Transform
@@ -163503,16 +165247,6 @@ entities:
- type: Transform
pos: -27.5,-5.5
parent: 2
- - uid: 9952
- components:
- - type: Transform
- pos: -108.5,-29.5
- parent: 2
- - uid: 9953
- components:
- - type: Transform
- pos: -112.5,-28.5
- parent: 2
- uid: 9954
components:
- type: Transform
@@ -163663,11 +165397,6 @@ entities:
- type: Transform
pos: -76.5,-16.5
parent: 2
- - uid: 11164
- components:
- - type: Transform
- pos: -107.5,-28.5
- parent: 2
- uid: 11169
components:
- type: Transform
@@ -163683,16 +165412,6 @@ entities:
- type: Transform
pos: -87.5,-7.5
parent: 2
- - uid: 11247
- components:
- - type: Transform
- pos: -113.5,-34.5
- parent: 2
- - uid: 11269
- components:
- - type: Transform
- pos: -111.5,-34.5
- parent: 2
- uid: 11271
components:
- type: Transform
@@ -163871,6 +165590,11 @@ entities:
- type: Transform
pos: -29.5,-61.5
parent: 2
+ - uid: 12452
+ components:
+ - type: Transform
+ pos: -92.5,0.5
+ parent: 2
- uid: 12551
components:
- type: Transform
@@ -163887,11 +165611,6 @@ entities:
- type: Transform
pos: -56.5,-54.5
parent: 2
- - uid: 12694
- components:
- - type: Transform
- pos: -73.5,-51.5
- parent: 2
- uid: 12708
components:
- type: Transform
@@ -163905,7 +165624,7 @@ entities:
- uid: 12857
components:
- type: Transform
- pos: -74.5,-51.5
+ pos: -92.5,2.5
parent: 2
- uid: 12860
components:
@@ -164003,6 +165722,12 @@ entities:
- type: Transform
pos: -92.5,26.5
parent: 2
+ - uid: 14189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-64.5
+ parent: 2
- uid: 14300
components:
- type: Transform
@@ -164015,11 +165740,6 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-28.5
parent: 2
- - uid: 14488
- components:
- - type: Transform
- pos: -114.5,-34.5
- parent: 2
- uid: 14497
components:
- type: Transform
@@ -164030,6 +165750,12 @@ entities:
- type: Transform
pos: -17.5,-16.5
parent: 2
+ - uid: 14533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,1.5
+ parent: 2
- uid: 14576
components:
- type: Transform
@@ -164051,11 +165777,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,3.5
parent: 2
- - uid: 14654
+ - uid: 14731
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-78.5
+ parent: 2
+ - uid: 14733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-77.5
+ parent: 2
+ - uid: 14768
+ components:
+ - type: Transform
+ pos: -92.5,-1.5
parent: 2
- uid: 14830
components:
@@ -164143,11 +165880,6 @@ entities:
- type: Transform
pos: -57.5,-17.5
parent: 2
- - uid: 15987
- components:
- - type: Transform
- pos: -74.5,-54.5
- parent: 2
- uid: 15994
components:
- type: Transform
@@ -164168,10 +165900,20 @@ entities:
- type: Transform
pos: -60.5,-21.5
parent: 2
- - uid: 16096
+ - uid: 15998
components:
- type: Transform
rot: -1.5707963267948966 rad
+ pos: -56.5,-63.5
+ parent: 2
+ - uid: 16012
+ components:
+ - type: Transform
+ pos: -95.5,-61.5
+ parent: 2
+ - uid: 16015
+ components:
+ - type: Transform
pos: -95.5,-59.5
parent: 2
- uid: 16107
@@ -164194,11 +165936,6 @@ entities:
- type: Transform
pos: -37.5,-53.5
parent: 2
- - uid: 16115
- components:
- - type: Transform
- pos: -77.5,-54.5
- parent: 2
- uid: 16120
components:
- type: Transform
@@ -164249,6 +165986,12 @@ entities:
- type: Transform
pos: -47.5,-62.5
parent: 2
+ - uid: 16172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,1.5
+ parent: 2
- uid: 16185
components:
- type: Transform
@@ -164264,11 +166007,23 @@ entities:
- type: Transform
pos: -52.5,-62.5
parent: 2
+ - uid: 16211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,0.5
+ parent: 2
- uid: 16215
components:
- type: Transform
pos: -43.5,-62.5
parent: 2
+ - uid: 16225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-0.5
+ parent: 2
- uid: 16228
components:
- type: Transform
@@ -164309,16 +166064,6 @@ entities:
- type: Transform
pos: -56.5,-51.5
parent: 2
- - uid: 16278
- components:
- - type: Transform
- pos: -109.5,-28.5
- parent: 2
- - uid: 16279
- components:
- - type: Transform
- pos: -108.5,-28.5
- parent: 2
- uid: 16280
components:
- type: Transform
@@ -164339,32 +166084,11 @@ entities:
- type: Transform
pos: -92.5,13.5
parent: 2
- - uid: 16301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-39.5
- parent: 2
- uid: 16306
components:
- type: Transform
pos: -91.5,13.5
parent: 2
- - uid: 16307
- components:
- - type: Transform
- pos: -111.5,-28.5
- parent: 2
- - uid: 16317
- components:
- - type: Transform
- pos: -114.5,-28.5
- parent: 2
- - uid: 16319
- components:
- - type: Transform
- pos: -115.5,-28.5
- parent: 2
- uid: 16321
components:
- type: Transform
@@ -164400,26 +166124,6 @@ entities:
- type: Transform
pos: -118.5,28.5
parent: 2
- - uid: 16329
- components:
- - type: Transform
- pos: -73.5,-62.5
- parent: 2
- - uid: 16336
- components:
- - type: Transform
- pos: -73.5,-61.5
- parent: 2
- - uid: 16341
- components:
- - type: Transform
- pos: -73.5,-63.5
- parent: 2
- - uid: 16344
- components:
- - type: Transform
- pos: -73.5,-64.5
- parent: 2
- uid: 16349
components:
- type: Transform
@@ -164445,11 +166149,6 @@ entities:
- type: Transform
pos: -99.5,6.5
parent: 2
- - uid: 16354
- components:
- - type: Transform
- pos: -110.5,-34.5
- parent: 2
- uid: 16355
components:
- type: Transform
@@ -164470,6 +166169,12 @@ entities:
- type: Transform
pos: -97.5,-48.5
parent: 2
+ - uid: 16424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,2.5
+ parent: 2
- uid: 16469
components:
- type: Transform
@@ -164510,11 +166215,6 @@ entities:
- type: Transform
pos: -101.5,-48.5
parent: 2
- - uid: 16535
- components:
- - type: Transform
- pos: -108.5,-34.5
- parent: 2
- uid: 16536
components:
- type: Transform
@@ -164616,11 +166316,6 @@ entities:
- type: Transform
pos: -21.5,-28.5
parent: 2
- - uid: 16572
- components:
- - type: Transform
- pos: -19.5,-28.5
- parent: 2
- uid: 16573
components:
- type: Transform
@@ -164731,12 +166426,6 @@ entities:
- type: Transform
pos: -65.5,-17.5
parent: 2
- - uid: 16794
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-36.5
- parent: 2
- uid: 16799
components:
- type: Transform
@@ -164858,7 +166547,7 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -74.5,-36.5
+ pos: -72.5,-64.5
parent: 2
- uid: 17014
components:
@@ -164935,21 +166624,11 @@ entities:
- type: Transform
pos: -60.5,-59.5
parent: 2
- - uid: 17106
- components:
- - type: Transform
- pos: -108.5,-33.5
- parent: 2
- uid: 17107
components:
- type: Transform
pos: -61.5,-63.5
parent: 2
- - uid: 17111
- components:
- - type: Transform
- pos: -74.5,-58.5
- parent: 2
- uid: 17113
components:
- type: Transform
@@ -164965,6 +166644,12 @@ entities:
- type: Transform
pos: -23.5,-68.5
parent: 2
+ - uid: 17126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-54.5
+ parent: 2
- uid: 17139
components:
- type: Transform
@@ -165045,55 +166730,28 @@ entities:
- type: Transform
pos: -59.5,-64.5
parent: 2
- - uid: 17232
- components:
- - type: Transform
- pos: -109.5,-34.5
- parent: 2
- uid: 17233
components:
- type: Transform
- pos: -115.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-64.5
parent: 2
- uid: 17235
components:
- type: Transform
- pos: -115.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,-59.5
parent: 2
- uid: 17256
components:
- type: Transform
pos: -59.5,-17.5
parent: 2
- - uid: 17400
- components:
- - type: Transform
- pos: -115.5,-30.5
- parent: 2
- - uid: 17402
- components:
- - type: Transform
- pos: -115.5,-29.5
- parent: 2
- - uid: 17403
- components:
- - type: Transform
- pos: -115.5,-31.5
- parent: 2
- - uid: 17407
- components:
- - type: Transform
- pos: -74.5,-53.5
- parent: 2
- - uid: 17408
- components:
- - type: Transform
- pos: -77.5,-59.5
- parent: 2
- - uid: 17409
+ - uid: 17345
components:
- type: Transform
- pos: -77.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-64.5
parent: 2
- uid: 17414
components:
@@ -165106,10 +166764,11 @@ entities:
- type: Transform
pos: -46.5,-65.5
parent: 2
- - uid: 17518
+ - uid: 17843
components:
- type: Transform
- pos: -74.5,-64.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,-64.5
parent: 2
- uid: 18150
components:
@@ -165135,6 +166794,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -111.5,29.5
parent: 2
+ - uid: 18627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-75.5
+ parent: 2
+ - uid: 18629
+ components:
+ - type: Transform
+ pos: -69.5,-34.5
+ parent: 2
- uid: 18727
components:
- type: Transform
@@ -165163,6 +166833,12 @@ entities:
rot: 3.141592653589793 rad
pos: -90.5,31.5
parent: 2
+ - uid: 19170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-74.5
+ parent: 2
- uid: 19313
components:
- type: Transform
@@ -165211,6 +166887,12 @@ entities:
- type: Transform
pos: -67.5,-22.5
parent: 2
+ - uid: 19775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-76.5
+ parent: 2
- uid: 19794
components:
- type: Transform
@@ -165234,10 +166916,33 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,-2.5
parent: 2
- - uid: 20299
+ - uid: 20036
components:
- type: Transform
- pos: -89.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-73.5
+ parent: 2
+ - uid: 20330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-79.5
+ parent: 2
+ - uid: 20346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-79.5
+ parent: 2
+ - uid: 20500
+ components:
+ - type: Transform
+ pos: -72.5,-37.5
+ parent: 2
+ - uid: 20802
+ components:
+ - type: Transform
+ pos: -96.5,-2.5
parent: 2
- uid: 21011
components:
@@ -165328,6 +167033,18 @@ entities:
- type: Transform
pos: -26.5,13.5
parent: 2
+ - uid: 21663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-70.5
+ parent: 2
+ - uid: 21666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-70.5
+ parent: 2
- uid: 21723
components:
- type: Transform
@@ -165389,6 +167106,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -97.5,21.5
parent: 2
+ - uid: 22803
+ components:
+ - type: Transform
+ pos: -72.5,-50.5
+ parent: 2
- uid: 22935
components:
- type: Transform
@@ -165400,16 +167122,47 @@ entities:
rot: 1.5707963267948966 rad
pos: -97.5,19.5
parent: 2
- - uid: 23160
+ - uid: 23092
components:
- type: Transform
- pos: -74.5,-52.5
+ pos: -72.5,-48.5
+ parent: 2
+ - uid: 23106
+ components:
+ - type: Transform
+ pos: -72.5,-49.5
+ parent: 2
+ - uid: 23107
+ components:
+ - type: Transform
+ pos: -72.5,-53.5
parent: 2
- uid: 23196
components:
- type: Transform
pos: -44.5,-23.5
parent: 2
+ - uid: 23214
+ components:
+ - type: Transform
+ pos: -72.5,-54.5
+ parent: 2
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: -72.5,-51.5
+ parent: 2
+ - uid: 23217
+ components:
+ - type: Transform
+ pos: -71.5,-51.5
+ parent: 2
+ - uid: 23271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-36.5
+ parent: 2
- uid: 23291
components:
- type: Transform
@@ -165457,6 +167210,12 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,3.5
parent: 2
+ - uid: 23466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,-59.5
+ parent: 2
- uid: 23502
components:
- type: Transform
@@ -165556,11 +167315,6 @@ entities:
- type: Transform
pos: -121.5,23.5
parent: 2
- - uid: 24454
- components:
- - type: Transform
- pos: -82.5,3.5
- parent: 2
- uid: 24470
components:
- type: Transform
@@ -165595,6 +167349,13 @@ entities:
- type: Transform
pos: -44.5,-49.5
parent: 2
+- proto: WardrobeEngineeringFilled
+ entities:
+ - uid: 25781
+ components:
+ - type: Transform
+ pos: -131.5,-8.5
+ parent: 2
- proto: WardrobeGeneticsFilled
entities:
- uid: 4196
@@ -165609,15 +167370,15 @@ entities:
- type: Transform
pos: -68.5,-52.5
parent: 2
- - uid: 2575
+ - uid: 20777
components:
- type: Transform
- pos: -68.5,-78.5
+ pos: -69.5,-79.5
parent: 2
- - uid: 22478
+ - uid: 20778
components:
- type: Transform
- pos: -66.5,-78.5
+ pos: -67.5,-79.5
parent: 2
- proto: WardrobeMixedFilled
entities:
@@ -165633,30 +167394,20 @@ entities:
parent: 2
- proto: WardrobePrisonFilled
entities:
- - uid: 6499
- components:
- - type: Transform
- pos: -86.5,-41.5
- parent: 2
- - uid: 6725
- components:
- - type: Transform
- pos: -90.5,-41.5
- parent: 2
- - uid: 6824
+ - uid: 19354
components:
- type: Transform
- pos: -100.5,-26.5
+ pos: -86.5,-40.5
parent: 2
- - uid: 7036
+ - uid: 21390
components:
- type: Transform
- pos: -100.5,-22.5
+ pos: -82.5,-40.5
parent: 2
- - uid: 7038
+ - uid: 21420
components:
- type: Transform
- pos: -100.5,-30.5
+ pos: -78.5,-40.5
parent: 2
- proto: WardrobeRoboticsFilled
entities:
@@ -165871,15 +167622,10 @@ entities:
- type: Transform
pos: -32.5,5.5
parent: 2
- - uid: 20727
- components:
- - type: Transform
- pos: -74.5,-62.5
- parent: 2
- - uid: 20730
+ - uid: 17043
components:
- type: Transform
- pos: -67.5,-64.5
+ pos: -75.5,-63.5
parent: 2
- uid: 22008
components:
@@ -165942,6 +167688,11 @@ entities:
parent: 2
- proto: WeaponCapacitorRecharger
entities:
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: -111.5,-29.5
+ parent: 2
- uid: 6673
components:
- type: Transform
@@ -165969,6 +167720,12 @@ entities:
- type: Transform
pos: -88.5,-25.5
parent: 2
+ - uid: 14543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,8.5
+ parent: 2
- uid: 22082
components:
- type: Transform
@@ -166006,10 +167763,15 @@ entities:
- uid: 14639
components:
- type: Transform
- pos: -78.498375,-30.215405
+ pos: -77.588585,-33.179184
parent: 2
- proto: WeaponTurretSyndicateBroken
entities:
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: -14.5,18.5
+ parent: 2
- uid: 22789
components:
- type: Transform
@@ -166049,6 +167811,11 @@ entities:
parent: 2
- proto: WeldingFuelTankFull
entities:
+ - uid: 2544
+ components:
+ - type: Transform
+ pos: -22.5,-69.5
+ parent: 2
- uid: 4390
components:
- type: Transform
@@ -166059,6 +167826,11 @@ entities:
- type: Transform
pos: -107.5,-17.5
parent: 2
+ - uid: 7464
+ components:
+ - type: Transform
+ pos: -84.5,-74.5
+ parent: 2
- uid: 8270
components:
- type: Transform
@@ -166069,10 +167841,10 @@ entities:
- type: Transform
pos: -115.5,-12.5
parent: 2
- - uid: 20729
+ - uid: 14769
components:
- type: Transform
- pos: -61.5,-64.5
+ pos: -67.5,-64.5
parent: 2
- uid: 21005
components:
@@ -166132,28 +167904,28 @@ entities:
canCollide: False
- proto: Windoor
entities:
- - uid: 2967
+ - uid: 2013
components:
- type: Transform
- pos: -49.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-71.5
parent: 2
- - uid: 16005
+ - uid: 2059
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -111.5,-29.5
+ pos: -53.5,-72.5
parent: 2
- - uid: 18341
+ - uid: 2967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-60.5
+ pos: -49.5,-8.5
parent: 2
- - uid: 23113
+ - uid: 18341
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,-71.5
+ pos: -50.5,-60.5
parent: 2
- proto: WindoorHydroponicsLocked
entities:
@@ -166167,11 +167939,23 @@ entities:
lastSignals:
DoorStatus: True
- type: Door
- secondsUntilStateChange: -169098.02
+ secondsUntilStateChange: -192828.02
state: Opening
- type: Airlock
autoClose: False
- - uid: 9345
+ - uid: 23283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-23.5
+ parent: 2
+ - uid: 23313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-21.5
+ parent: 2
+ - uid: 23429
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -166265,6 +168049,17 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,-26.5
parent: 2
+ - uid: 22702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-26.5
+ parent: 2
+ - uid: 23992
+ components:
+ - type: Transform
+ pos: -37.5,-16.5
+ parent: 2
- proto: WindoorSecureEngineeringLocked
entities:
- uid: 5724
@@ -166387,6 +168182,20 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-56.5
parent: 2
+- proto: WindoorServiceLocked
+ entities:
+ - uid: 14529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-0.5
+ parent: 2
+ - uid: 14531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,2.5
+ parent: 2
- proto: WindoorTheatreLocked
entities:
- uid: 3372
@@ -166422,6 +168231,11 @@ entities:
- type: Transform
pos: -31.5,-49.5
parent: 2
+ - uid: 809
+ components:
+ - type: Transform
+ pos: -104.5,-0.5
+ parent: 2
- uid: 1265
components:
- type: Transform
@@ -166547,6 +168361,12 @@ entities:
- type: Transform
pos: -31.5,13.5
parent: 2
+ - uid: 14197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,-21.5
+ parent: 2
- uid: 14570
components:
- type: Transform
@@ -166557,10 +168377,17 @@ entities:
- type: Transform
pos: -64.5,-36.5
parent: 2
- - uid: 16408
+ - uid: 15921
components:
- type: Transform
- pos: -74.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,-36.5
+ parent: 2
+ - uid: 16354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-21.5
parent: 2
- uid: 17183
components:
@@ -166568,6 +168395,22 @@ entities:
rot: 3.141592653589793 rad
pos: -61.5,-17.5
parent: 2
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: -72.5,-56.5
+ parent: 2
+ - uid: 20548
+ components:
+ - type: Transform
+ pos: -101.5,-0.5
+ parent: 2
+ - uid: 23215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-36.5
+ parent: 2
- uid: 23418
components:
- type: Transform
@@ -166600,143 +168443,149 @@ entities:
parent: 2
- proto: WindowDirectional
entities:
- - uid: 2532
+ - uid: 886
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-70.5
parent: 2
- - uid: 2534
+ - uid: 887
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-73.5
parent: 2
- - uid: 2581
+ - uid: 893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-72.5
parent: 2
- - uid: 2582
+ - uid: 894
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-70.5
+ pos: -48.5,-71.5
parent: 2
- - uid: 2615
+ - uid: 1805
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-73.5
+ pos: -50.5,-74.5
parent: 2
- - uid: 2630
+ - uid: 2361
components:
- type: Transform
- pos: -56.5,-70.5
+ pos: -53.5,-70.5
parent: 2
- - uid: 2640
+ - uid: 2563
components:
- type: Transform
- pos: -56.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-73.5
parent: 2
- - uid: 2642
+ - uid: 7751
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-71.5
+ pos: -53.5,-74.5
parent: 2
- - uid: 2651
+ - uid: 9113
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-58.5
parent: 2
- - uid: 4095
+ - uid: 9114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-59.5
parent: 2
- - uid: 4249
+ - uid: 9115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-61.5
parent: 2
- - uid: 4256
+ - uid: 14855
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -56.5,-68.5
+ pos: -53.5,-69.5
parent: 2
- - uid: 4260
+ - uid: 15245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-70.5
+ parent: 2
+ - uid: 15622
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-68.5
+ pos: -51.5,-69.5
parent: 2
- - uid: 4275
+ - uid: 16396
components:
- type: Transform
- pos: -57.5,-73.5
+ pos: -53.5,-74.5
parent: 2
- - uid: 4280
+ - uid: 16409
components:
- type: Transform
- pos: -59.5,-73.5
+ pos: -52.5,-74.5
parent: 2
- - uid: 4283
+ - uid: 16412
components:
- type: Transform
- pos: -60.5,-73.5
+ pos: -51.5,-74.5
parent: 2
- - uid: 4621
+ - uid: 16751
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-73.5
parent: 2
- - uid: 5104
+ - uid: 16753
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-69.5
parent: 2
- - uid: 5110
+ - uid: 16754
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-72.5
+ pos: -53.5,-69.5
parent: 2
- - uid: 5426
+ - uid: 16771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,-69.5
parent: 2
- - uid: 5686
+ - uid: 16772
components:
- type: Transform
- pos: -58.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-69.5
parent: 2
- - uid: 9113
+ - uid: 20804
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-58.5
+ pos: -49.5,-74.5
parent: 2
- - uid: 9114
+ - uid: 26200
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-38.5
parent: 2
- - uid: 9115
+ - uid: 26201
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-61.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,-38.5
parent: 2
- proto: WindowFrostedDirectional
entities:
@@ -166758,23 +168607,23 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-37.5
parent: 2
- - uid: 9528
+ - uid: 5643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-1.5
parent: 2
- - uid: 15988
+ - uid: 14204
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,1.5
parent: 2
- - uid: 15989
+ - uid: 14205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,0.5
parent: 2
- uid: 22301
components:
@@ -166788,12 +168637,6 @@ entities:
parent: 2
- proto: WindowReinforcedDirectional
entities:
- - uid: 259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-63.5
- parent: 2
- uid: 2069
components:
- type: Transform
@@ -166806,12 +168649,6 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,-7.5
parent: 2
- - uid: 2161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-21.5
- parent: 2
- uid: 2255
components:
- type: Transform
@@ -166830,12 +168667,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -119.5,-55.5
parent: 2
- - uid: 2480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-56.5
- parent: 2
- uid: 2830
components:
- type: Transform
@@ -166935,22 +168766,6 @@ entities:
rot: 3.141592653589793 rad
pos: -92.5,-24.5
parent: 2
- - uid: 3924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-26.5
- parent: 2
- - uid: 3925
- components:
- - type: Transform
- pos: -39.5,-16.5
- parent: 2
- - uid: 3926
- components:
- - type: Transform
- pos: -37.5,-16.5
- parent: 2
- uid: 4005
components:
- type: Transform
@@ -166967,23 +168782,6 @@ entities:
- type: Transform
pos: -111.5,-13.5
parent: 2
- - uid: 6120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-40.5
- parent: 2
- - uid: 6484
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-40.5
- parent: 2
- - uid: 6726
- components:
- - type: Transform
- pos: -80.5,-39.5
- parent: 2
- uid: 7298
components:
- type: Transform
@@ -167006,23 +168804,6 @@ entities:
- type: Transform
pos: -121.5,-48.5
parent: 2
- - uid: 7379
- components:
- - type: Transform
- pos: -111.5,-57.5
- parent: 2
- - uid: 7421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-60.5
- parent: 2
- - uid: 7469
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-62.5
- parent: 2
- uid: 7530
components:
- type: Transform
@@ -167121,21 +168902,6 @@ entities:
rot: 3.141592653589793 rad
pos: -118.5,-58.5
parent: 2
- - uid: 7617
- components:
- - type: Transform
- pos: -118.5,-57.5
- parent: 2
- - uid: 7625
- components:
- - type: Transform
- pos: -117.5,-57.5
- parent: 2
- - uid: 7634
- components:
- - type: Transform
- pos: -116.5,-57.5
- parent: 2
- uid: 7644
components:
- type: Transform
@@ -167153,65 +168919,38 @@ entities:
- type: Transform
pos: -119.5,-56.5
parent: 2
- - uid: 8065
- components:
- - type: Transform
- pos: -115.5,-57.5
- parent: 2
- - uid: 8145
- components:
- - type: Transform
- pos: -114.5,-57.5
- parent: 2
- uid: 8153
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -101.5,12.5
parent: 2
- - uid: 8168
- components:
- - type: Transform
- pos: -113.5,-57.5
- parent: 2
- uid: 8553
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -95.5,26.5
parent: 2
- - uid: 9515
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 2
- - uid: 9643
- components:
- - type: Transform
- pos: -83.5,-39.5
- parent: 2
- - uid: 9645
+ - uid: 9388
components:
- type: Transform
- pos: -84.5,-39.5
+ pos: -90.5,-40.5
parent: 2
- - uid: 10202
+ - uid: 9390
components:
- type: Transform
- pos: -81.5,-39.5
+ pos: -92.5,-40.5
parent: 2
- - uid: 10205
+ - uid: 9454
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,-40.5
+ pos: -91.5,-40.5
parent: 2
- - uid: 11097
+ - uid: 9515
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-23.5
+ pos: -31.5,-18.5
parent: 2
- uid: 11135
components:
@@ -167219,199 +168958,23 @@ entities:
rot: 3.141592653589793 rad
pos: -99.5,12.5
parent: 2
- - uid: 11171
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-55.5
- parent: 2
- - uid: 13558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-40.5
- parent: 2
- - uid: 13595
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-55.5
- parent: 2
- - uid: 13616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-59.5
- parent: 2
- - uid: 13656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-59.5
- parent: 2
- - uid: 13709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-59.5
- parent: 2
- - uid: 13721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-59.5
- parent: 2
- - uid: 13882
- components:
- - type: Transform
- pos: -112.5,-57.5
- parent: 2
- - uid: 13965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,-57.5
- parent: 2
- - uid: 13966
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,-57.5
- parent: 2
- - uid: 13967
- components:
- - type: Transform
- pos: -119.5,-57.5
- parent: 2
- - uid: 13968
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -113.5,-57.5
- parent: 2
- - uid: 13990
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,-57.5
- parent: 2
- - uid: 13992
- components:
- - type: Transform
- pos: -121.5,-57.5
- parent: 2
- - uid: 13994
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,-57.5
- parent: 2
- - uid: 13996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,-57.5
- parent: 2
- - uid: 13997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,-57.5
- parent: 2
- - uid: 13998
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -121.5,-57.5
- parent: 2
- - uid: 14020
+ - uid: 16709
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -114.5,-57.5
+ pos: -91.5,-41.5
parent: 2
- - uid: 14021
+ - uid: 18201
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -116.5,-57.5
+ pos: -92.5,-41.5
parent: 2
- - uid: 14023
+ - uid: 20563
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -118.5,-57.5
- parent: 2
- - uid: 14049
- components:
- - type: Transform
- pos: -122.5,-57.5
- parent: 2
- - uid: 14092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-61.5
- parent: 2
- - uid: 14096
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-62.5
- parent: 2
- - uid: 14110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-61.5
- parent: 2
- - uid: 16459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-56.5
- parent: 2
- - uid: 17345
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.5,-60.5
- parent: 2
- - uid: 20346
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-60.5
- parent: 2
- - uid: 20413
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-62.5
- parent: 2
- - uid: 20414
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-61.5
- parent: 2
- - uid: 20417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-61.5
- parent: 2
- - uid: 20418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-62.5
- parent: 2
- - uid: 22521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-60.5
+ pos: -90.5,-41.5
parent: 2
- uid: 24314
components:
@@ -167425,24 +168988,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,11.5
parent: 2
- - uid: 24907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -121.5,-63.5
- parent: 2
- - uid: 24910
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -120.5,-63.5
- parent: 2
- - uid: 24913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -120.5,-63.5
- parent: 2
- uid: 26076
components:
- type: Transform
@@ -167464,60 +169009,23 @@ entities:
parent: 2
- proto: WoodenSupport
entities:
- - uid: 4985
- components:
- - type: Transform
- pos: -101.5,-7.5
- parent: 2
- - uid: 4986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-35.5
- parent: 2
- - uid: 4987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -101.5,3.5
- parent: 2
- uid: 4988
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -105.5,-2.5
parent: 2
- - uid: 6546
- components:
- - type: Transform
- pos: -75.5,-67.5
- parent: 2
- uid: 6553
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -102.5,-58.5
parent: 2
- - uid: 6596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -85.5,-58.5
- parent: 2
- - uid: 8544
- components:
- - type: Transform
- pos: -50.5,-64.5
- parent: 2
- - uid: 9240
- components:
- - type: Transform
- pos: -95.5,-11.5
- parent: 2
- - uid: 9242
+ - uid: 7487
components:
- type: Transform
- pos: -83.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,-72.5
parent: 2
- uid: 9287
components:
@@ -167540,10 +169048,11 @@ entities:
- type: Transform
pos: -25.5,-11.5
parent: 2
- - uid: 23717
+ - uid: 22122
components:
- type: Transform
- pos: -53.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,-11.5
parent: 2
- uid: 24626
components:
@@ -167551,12 +169060,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,-46.5
parent: 2
- - uid: 24663
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-30.5
- parent: 2
- uid: 25646
components:
- type: Transform
@@ -167585,42 +169088,11 @@ entities:
- type: Transform
pos: -15.5,-49.5
parent: 2
- - uid: 9243
- components:
- - type: Transform
- pos: -77.5,-69.5
- parent: 2
- - uid: 9442
- components:
- - type: Transform
- pos: -71.5,-77.5
- parent: 2
- - uid: 15160
- components:
- - type: Transform
- pos: -70.5,-66.5
- parent: 2
- uid: 19561
components:
- type: Transform
pos: -18.5,-15.5
parent: 2
- - uid: 19774
- components:
- - type: Transform
- pos: -75.5,-72.5
- parent: 2
- - uid: 22358
- components:
- - type: Transform
- pos: -73.5,-75.5
- parent: 2
- - uid: 24439
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-29.5
- parent: 2
- uid: 24552
components:
- type: Transform
@@ -167635,6 +169107,12 @@ entities:
parent: 2
- proto: WoodenSupportWall
entities:
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-11.5
+ parent: 2
- uid: 432
components:
- type: Transform
@@ -167653,22 +169131,28 @@ entities:
rot: -1.5707963267948966 rad
pos: -50.5,-15.5
parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-11.5
+ parent: 2
- uid: 1038
components:
- type: Transform
pos: -105.5,-18.5
parent: 2
- - uid: 1179
+ - uid: 1153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -100.5,-4.5
parent: 2
- - uid: 1317
+ - uid: 1179
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -101.5,-6.5
+ pos: -98.5,-54.5
parent: 2
- uid: 1790
components:
@@ -167703,27 +169187,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -134.5,-16.5
parent: 2
- - uid: 4764
+ - uid: 6504
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-66.5
parent: 2
- - uid: 18196
+ - uid: 6508
components:
- type: Transform
- pos: -53.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-65.5
parent: 2
- - uid: 19871
+ - uid: 8480
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -102.5,-48.5
+ pos: -83.5,-58.5
parent: 2
- - uid: 23297
+ - uid: 19871
components:
- type: Transform
- pos: -53.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: -102.5,-48.5
parent: 2
- uid: 25448
components:
@@ -167736,11 +169221,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -106.5,-53.5
parent: 2
- - uid: 25450
- components:
- - type: Transform
- pos: -81.5,-58.5
- parent: 2
- uid: 25954
components:
- type: Transform
diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml
index a9ac169d3cdf..89c8e56b78ad 100644
--- a/Resources/Prototypes/Actions/types.yml
+++ b/Resources/Prototypes/Actions/types.yml
@@ -328,3 +328,15 @@
itemIconStyle: NoItem
useDelay: 1 # emote spam
event: !type:ToggleActionEvent
+
+- type: entity
+ id: FakeMindShieldToggleAction
+ name: action-name-toggle-fake-mindshield
+ description: action-description-toggle-fake-mindshield
+ components:
+ - type: InstantAction
+ icon: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon }
+ iconOn: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on }
+ itemIconStyle: NoItem
+ useDelay: 1
+ event: !type:FakeMindShieldToggleEvent
diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
index db01b7ab4152..4b3f3f933922 100644
--- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
+++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml
@@ -58,7 +58,7 @@
id: CrateEngineeringCableMV
parent: CrateElectrical
name: MV cable crate
- description: 3 coils of LV cables.
+ description: 3 coils of MV cables.
components:
- type: StorageFill
contents:
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
index 22a5688a4e34..0a95ecc295ff 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
@@ -331,6 +331,7 @@
- id: SecurityTechFabCircuitboard
- id: WeaponDisabler
- id: WantedListCartridge
+ - id: DrinkHosFlask
# Hardsuit table, used for suit storage as well
- type: entityTable
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
index 70924a1e6e76..d0304bd4ad6e 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/condiments.yml
@@ -3,7 +3,7 @@
startingInventory:
FoodCondimentPacketAstrotame: 5
FoodCondimentPacketBbq: 5
- FoodCondimentPacketFrostoil: 5
+ FoodCondimentPacketColdsauce: 5
FoodCondimentPacketHorseradish: 5
FoodCondimentPacketHotsauce: 5
FoodCondimentPacketKetchup: 5
@@ -17,4 +17,4 @@
SpoonPlastic: 10
KnifePlastic: 10
FoodPlatePlastic: 10
- FoodPlateSmallPlastic: 10
\ No newline at end of file
+ FoodPlateSmallPlastic: 10
diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml
index d5a9b0f1b9a3..3246117e7186 100644
--- a/Resources/Prototypes/Catalog/spellbook_catalog.yml
+++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml
@@ -64,6 +64,20 @@
- !type:ListingLimitedStockCondition
stock: 1
+# Taking an Eldritch spell, good proof of concept and a way to celebrate everything magic.
+- type: listing
+ id: SpellbookVoidApplause
+ name: spellbook-voidapplause-name
+ description: spellbook-voidapplause-desc
+ productAction: ActionVoidApplause
+ cost:
+ WizCoin: 1
+ categories:
+ - SpellbookUtility
+ conditions:
+ - !type:ListingLimitedStockCondition
+ stock: 1
+
- type: listing
id: SpellbookCharge
name: spellbook-charge-name
diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
index f9ea34b38993..62e9a01edc06 100644
--- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
+++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
@@ -17,6 +17,7 @@
- ClothingShoesChameleon
- BarberScissors
- ChameleonProjector
+ - FakeMindShieldImplanter
- AgentIDCard
- type: thiefBackpackSet
@@ -62,6 +63,7 @@
- RadioJammer
- TraitorCodePaper
- Emag
+ - AccessBreaker
- Lighter
- CigPackSyndicate
- Telecrystal10 #The thief cannot use them, but it may induce communication with traitors
diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml
index 0a5e812a64ca..3e0bd698aafd 100644
--- a/Resources/Prototypes/Catalog/uplink_catalog.yml
+++ b/Resources/Prototypes/Catalog/uplink_catalog.yml
@@ -865,16 +865,29 @@
# Disruption
+- type: listing
+ id: UplinkAccessBreaker
+ name: uplink-access-breaker-name
+ description: uplink-access-breaker-desc
+ productEntity: AccessBreaker
+ discountCategory: veryRareDiscounts
+ discountDownTo:
+ Telecrystal: 3
+ cost:
+ Telecrystal: 5
+ categories:
+ - UplinkDisruption
+
- type: listing
id: UplinkEmag
name: uplink-emag-name
description: uplink-emag-desc
productEntity: Emag
- discountCategory: veryRareDiscounts
+ discountCategory: rareDiscounts
discountDownTo:
- Telecrystal: 5
+ Telecrystal: 2
cost:
- Telecrystal: 8
+ Telecrystal: 4
categories:
- UplinkDisruption
@@ -1341,6 +1354,20 @@
categories:
- UplinkImplants
+- type: listing
+ id: UplinkRadioImplanter
+ name: uplink-radio-implanter-name
+ description: uplink-radio-implanter-desc
+ icon: { sprite: /Textures/Objects/Devices/encryption_keys.rsi, state: synd_label }
+ productEntity: RadioImplanter
+ discountCategory: usualDiscounts
+ discountDownTo:
+ Telecrystal: 1
+ cost:
+ Telecrystal: 2
+ categories:
+ - UplinkImplants
+
- type: listing
id: UplinkMicroBombImplanter
name: uplink-micro-bomb-implanter-name
@@ -1435,6 +1462,20 @@
components:
- SurplusBundle
+- type: listing
+ id: UplinkFakeMindshield
+ name: uplink-fake-mindshield-name
+ description: uplink-fake-mindshield-desc
+ icon: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on }
+ productEntity: FakeMindShieldImplanter
+ discountDownTo:
+ Telecrystal: 2
+ cost:
+ Telecrystal: 4
+ categories:
+ - UplinkImplants
+
+
# Wearables
- type: listing
diff --git a/Resources/Prototypes/Datasets/Names/borg.yml b/Resources/Prototypes/Datasets/Names/borg.yml
index 8b8181eec9c2..a98ae9ecac58 100644
--- a/Resources/Prototypes/Datasets/Names/borg.yml
+++ b/Resources/Prototypes/Datasets/Names/borg.yml
@@ -39,3 +39,9 @@
- Cute-Bot
- Makeshifter
- Twin
+ - S.A.U.L
+ - Honker
+ - Clanker
+ - Is-The-Robot
+ - 9 of 7
+ - Dank bot
diff --git a/Resources/Prototypes/Datasets/damage_force_say.yml b/Resources/Prototypes/Datasets/damage_force_say.yml
new file mode 100644
index 000000000000..a3d2c28f56c1
--- /dev/null
+++ b/Resources/Prototypes/Datasets/damage_force_say.yml
@@ -0,0 +1,17 @@
+- type: localizedDataset
+ id: ForceSayStringDataset
+ values:
+ prefix: damage-force-say-
+ count: 7
+
+- type: localizedDataset
+ id: ForceSaySleepDataset
+ values:
+ prefix: damage-force-say-sleep-
+ count: 1
+
+- type: localizedDataset
+ id: ForceSayNumbDataset
+ values:
+ prefix: damage-force-say-numb-
+ count: 5
diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
index 77f53f9417a3..19ff2f278f41 100644
--- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
+++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
@@ -33,6 +33,7 @@
- GPS
- WeldingMask
components:
+ - StationMap
- SprayPainter
- NetworkConfigurator
- RCD
@@ -112,6 +113,7 @@
- Multitool
- AppraisalTool
components:
+ - StationMap
- SprayPainter
- NetworkConfigurator
- RCD
diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
index b97df840a748..4ce8bbb9605c 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml
@@ -136,6 +136,41 @@
radius: 7
energy: 3
+- type: entity
+ parent: ClothingHeadHardsuitWithLightBase
+ id: ClothingHeadHelmetHardsuitGoliath
+ name: goliath hardsuit helmet
+ description: A sturdy hardsuit helmet, infused with a goliath's hide and an eerie, unblinking eye cut from its mass.
+ components:
+ - type: Sprite
+ sprite: Clothing/Head/Hardsuits/goliathhelm.rsi
+ layers:
+ - state: icon
+ - state: icon-unshaded
+ shader: unshaded
+ - state: light-overlay
+ visible: false
+ shader: unshaded
+ map: [ "light" ]
+ - type: HandheldLight
+ addPrefix: false
+ - type: ToggleableLightVisuals
+ clothingVisuals:
+ head:
+ - state: equipped-head-light
+ shader: unshaded
+ - type: Clothing
+ clothingVisuals:
+ head:
+ - state: equipped-head
+ - state: equipped-head-unshaded
+ shader: unshaded
+ - type: PointLight
+ radius: 6
+ - type: PressureProtection
+ highPressureMultiplier: 0.72
+ lowPressureMultiplier: 1000
+
- type: entity
parent: ClothingHeadHardsuitBase
id: ClothingHeadHelmetHardsuitMaxim
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
index 0e84fca06d3b..d2ece7e1d5a9 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml
@@ -124,6 +124,11 @@
- type: HeldSpeedModifier
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSpatio
+ - type: Tag
+ tags:
+ - Hardsuit
+ - WhitelistChameleon
+ - HardsuitSpatio
#Salvage Hardsuit
- type: entity
@@ -156,6 +161,42 @@
- type: ToggleableClothing
clothingPrototype: ClothingHeadHelmetHardsuitSalvage
+#Goliath Hardsuit
+- type: entity
+ parent: [ClothingOuterHardsuitBase, BaseCargoContraband]
+ id: ClothingOuterHardsuitGoliath
+ name: goliath hardsuit
+ description: A lightweight hardsuit, adorned with a patchwork of thick, chitinous goliath hide.
+ components:
+ - type: Sprite
+ sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
+ - type: Clothing
+ sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
+ - type: PressureProtection
+ highPressureMultiplier: 0.5
+ lowPressureMultiplier: 1000
+ - type: ExplosionResistance
+ damageCoefficient: 0.3
+ - type: Armor
+ modifiers:
+ coefficients:
+ Blunt: 0.7
+ Slash: 0.7
+ Piercing: 0.5
+ Heat: 0.7 #Goliath hide gets grilled instead of you
+ Radiation: 0.3
+ Caustic: 0.8
+ - type: ClothingSpeedModifier
+ walkModifier: 0.8
+ sprintModifier: 0.8
+ - type: HeldSpeedModifier
+ - type: ToggleableClothing
+ clothingPrototype: ClothingHeadHelmetHardsuitGoliath
+ - type: Construction
+ graph: HardsuitGoliath
+ node: hardsuitGoliath
+
+#Maxim Hardsuit
- type: entity
parent: [ClothingOuterHardsuitBase, BaseCargoContraband]
id: ClothingOuterHardsuitMaxim
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
index accd24dd3cc0..16debab47bf0 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
@@ -61,8 +61,17 @@
components:
- type: Sprite
sprite: Clothing/OuterClothing/Vests/hazard.rsi
+ layers:
+ - state: icon
+ - state: icon-unshaded
+ shader: unshaded
- type: Clothing
sprite: Clothing/OuterClothing/Vests/hazard.rsi
+ clothingVisuals:
+ outerClothing:
+ - state: equipped-OUTERCLOTHING
+ - state: equipped-OUTERCLOTHING-unshaded
+ shader: unshaded
- type: Tag
tags:
- HiViz
diff --git a/Resources/Prototypes/Entities/Effects/eldritch.yml b/Resources/Prototypes/Entities/Effects/eldritch.yml
new file mode 100644
index 000000000000..196fe288e70f
--- /dev/null
+++ b/Resources/Prototypes/Entities/Effects/eldritch.yml
@@ -0,0 +1,25 @@
+- type: entity
+ id: EffectVoidBlink
+ name: void blink
+ categories: [ HideSpawnMenu ]
+ save: false
+ components:
+ # TODO: PointLight is temp until I can make a shader & overlay for negative light or until this can support it
+ - type: PointLight
+ radius: 3
+ energy: 1
+ softness: 10
+ color: "#301934"
+ - type: Transform
+ noRot: true
+ - type: Sprite
+ sprite: Objects/Magic/Eldritch/eldritch_actions.rsi
+ drawdepth: Effects
+ noRot: true
+ layers:
+ - state: "voidblink"
+ - type: TimedDespawn
+ lifetime: 1
+ - type: Tag
+ tags:
+ - HideContextMenu
diff --git a/Resources/Prototypes/Entities/Effects/puddle.yml b/Resources/Prototypes/Entities/Effects/puddle.yml
index 36f0faa1df1a..0cc4d14c0ec7 100644
--- a/Resources/Prototypes/Entities/Effects/puddle.yml
+++ b/Resources/Prototypes/Entities/Effects/puddle.yml
@@ -101,7 +101,7 @@
layers:
- sprite: Fluids/wet_floor_sparkles.rsi
state: sparkles
- drawdepth: FloorObjects
+ drawdepth: Puddles
color: "#FFFFFF80"
- type: entity
@@ -120,7 +120,7 @@
layers:
- sprite: Fluids/puddle.rsi
state: splat0
- drawdepth: FloorObjects
+ drawdepth: Puddles
color: "#FFFFFF80"
- type: Physics
bodyType: Static
diff --git a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
index 011e49696e40..4f00247684b9 100644
--- a/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
+++ b/Resources/Prototypes/Entities/Markers/atmos_blocker.yml
@@ -86,7 +86,7 @@
- type: entity
name: Atmos Fix Freezer Marker
id: AtmosFixFreezerMarker
- description: "Change air temp to 235K, for freezer with a big of wiggle room to get set up."
+ description: "Change air temp to 235K, for freezer with a bit of wiggle room to get set up."
parent: MarkerBase
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Markers/construction_ghost.yml b/Resources/Prototypes/Entities/Markers/construction_ghost.yml
index 04a8a0950238..2f0b6c87c8ab 100644
--- a/Resources/Prototypes/Entities/Markers/construction_ghost.yml
+++ b/Resources/Prototypes/Entities/Markers/construction_ghost.yml
@@ -7,4 +7,7 @@
color: '#3F38'
- type: ConstructionGhost
- type: Clickable
- - type: InteractionOutline
\ No newline at end of file
+ - type: InteractionOutline
+ - type: GuideHelp
+ guides:
+ - Construction
diff --git a/Resources/Prototypes/Entities/Markers/marker_base.yml b/Resources/Prototypes/Entities/Markers/marker_base.yml
index ecd4cf500421..a7c841ffd19a 100644
--- a/Resources/Prototypes/Entities/Markers/marker_base.yml
+++ b/Resources/Prototypes/Entities/Markers/marker_base.yml
@@ -9,6 +9,9 @@
- type: Marker
- type: Clickable
- type: InteractionOutline
+ - type: Tag
+ tags:
+ - ForceFixRotations
- type: Sprite
drawdepth: Overdoors
sprite: Markers/cross.rsi
diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
index 28e4042afb4f..fdc6574c9495 100644
--- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
+++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
@@ -167,7 +167,6 @@
- cell_slot
- type: Lock
locked: true
- breakOnEmag: false
unlockOnClick: false
- type: ActivatableUIRequiresLock
- type: LockedWiresPanel
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
index 4ec6a81eea09..aeb731ec50a4 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml
@@ -90,6 +90,7 @@
- id: FoodMeatGoliath
amount: 3
- id: MaterialGoliathHide1
+ amount: 3
- type: entity
id: ActionGoliathTentacle
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
index be96414dcb2f..a873309eb784 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
@@ -355,6 +355,7 @@
pack: MedibotAds
- type: Inventory
templateId: medibot
+ - type: DoAfter
- type: entity
parent:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
index bbe5cf244b2a..c7de98b4a44d 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/condiments.yml
@@ -140,7 +140,7 @@
- type: entity
parent: BaseFoodCondimentPacket
- id: FoodCondimentPacketFrostoil
+ id: FoodCondimentPacketColdsauce
name: coldsauce
description: Coldsauce. Leaves the tongue numb in its passage.
components:
@@ -149,7 +149,7 @@
food:
maxVol: 10
reagents:
- - ReagentId: Frostoil
+ - ReagentId: Coldsauce
Quantity: 10
- type: Icon
state: packet-frostoil
@@ -375,7 +375,7 @@
solutions:
food:
reagents:
- - ReagentId: Frostoil
+ - ReagentId: Coldsauce
Quantity: 30
- type: Sprite
layers:
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
index dca9b662d0be..94d18760eb03 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml
@@ -1388,7 +1388,7 @@
reagents:
- ReagentId: Nutriment
Quantity: 4
- - ReagentId: Frostoil
+ - ReagentId: FrostOil
Quantity: 10
- ReagentId: Vitamin
Quantity: 4
diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
index 146fac039d03..818e56a37a74 100644
--- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
+++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
@@ -132,7 +132,7 @@
- type: entity
id: CigaretteDylovene
parent: SoakedCigarette
- name: Urinal Cake Disolver
+ name: Urinal Cake Dissolver
components:
- type: SolutionContainerManager
solutions:
diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
index e15d1a22a5c0..c1ef5f497f98 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/power_electronics.yml
@@ -77,7 +77,7 @@
components:
- type: Sprite
sprite: Objects/Misc/module.rsi
- state: generic
+ state: engineering
- type: StaticPrice
price: 85
- type: Tag
diff --git a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
index 82d43cf7d824..4facfd91b3af 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/flatpack.yml
@@ -64,7 +64,9 @@
- type: StaticPrice
price: 500
- type: GuideHelp
- guides: [ AME, Power ]
+ guides:
+ - AME
+ - Power
- type: StealTarget
stealGroup: AmePartFlatpack
@@ -80,7 +82,9 @@
layers:
- state: singularity-generator
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -94,7 +98,9 @@
layers:
- state: radiation-collector
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -108,7 +114,9 @@
layers:
- state: containment-field-generator
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -122,7 +130,9 @@
layers:
- state: emitter
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -136,7 +146,9 @@
layers:
- state: tesla-generator
- type: GuideHelp
- guides: [ Power ] # TODO add tesla guide
+ guides:
+ - TeslaEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -150,7 +162,9 @@
layers:
- state: tesla-coil
- type: GuideHelp
- guides: [ Power ] # TODO add tesla guide
+ guides:
+ - TeslaEngine
+ - Power
- type: entity
parent: BaseFlatpack
@@ -164,7 +178,9 @@
layers:
- state: grounding-rod
- type: GuideHelp
- guides: [ Power ] # TODO add tesla guide
+ guides:
+ - TeslaEngine
+ - Power
- type: entity
parent: BaseFlatpack
diff --git a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
index 0df74d80d6ab..64efe77c7c17 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml
@@ -67,6 +67,11 @@
- HolofanProjector
- type: StaticPrice
price: 80
+ - type: GuideHelp
+ guides:
+ - AtmosTools
+ - Fires
+ - Spacing
- type: entity
parent: HolofanProjector
diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
index 82b9f62837a4..bc9202324d39 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml
@@ -30,6 +30,9 @@
solutions:
steel:
canReact: false
+ - type: GuideHelp
+ guides:
+ - ExpandingRepairingStation
- type: entity
parent: SheetMetalBase
diff --git a/Resources/Prototypes/Entities/Objects/Materials/parts.yml b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
index 700c08e096af..1106ce057c81 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/parts.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/parts.yml
@@ -68,6 +68,9 @@
Quantity: 4.5
- ReagentId: Carbon
Quantity: 0.5
+ - type: GuideHelp
+ guides:
+ - ExpandingRepairingStation
- type: entity
parent: PartRodMetal
diff --git a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
index 734111af6dc8..c4ec20465ee5 100644
--- a/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
+++ b/Resources/Prototypes/Entities/Objects/Materials/scrap.yml
@@ -77,7 +77,9 @@
- state: metal-1
map: [ "base" ]
- type: Item
- size: Ginormous
+ size: Large
+ shape:
+ - 0,0,4,4 # 5x5
heldPrefix: metal
- type: MultiHandedItem
- type: RandomSprite
@@ -135,7 +137,9 @@
junk-airlock-1: ""
junk-airlock-2: ""
- type: Item
- size: Ginormous
+ size: Large
+ shape:
+ - 0,0,4,4 # 5x5
heldPrefix: "airlock"
- type: MultiHandedItem
- type: PhysicalComposition
@@ -273,7 +277,9 @@
layers:
- state: junk-firelock-1
- type: Item
- size: Ginormous
+ size: Large
+ shape:
+ - 0,0,4,4 # 5x5
heldPrefix: firelock-1
- type: MultiHandedItem
- type: PhysicalComposition
@@ -290,7 +296,9 @@
layers:
- state: junk-firelock-2
- type: Item
- size: Ginormous
+ size: Large
+ shape:
+ - 0,0,4,4 # 5x5
heldPrefix: firelock-2
- type: MultiHandedItem
- type: PhysicalComposition
diff --git a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
index 791a0d09453e..ee40316e62d8 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
@@ -7,10 +7,10 @@
- type: Appearance
- type: AccessReader
access: [ [ "CentralCommand" ] ]
- breakOnEmag: false
+ breakOnAccessBreaker: false
- type: Lock
lockOnClick: false
- breakOnEmag: false
+ breakOnAccessBreaker: false
- type: EntityStorage
capacity: 1 # Its smol.
itemCanStoreMobs: false # just leaving this here explicitly since I know at some point someone will want to use this to hold a mob. This also prevents it from becoming His Grace.
diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
index beffe8959a60..d40f48dc7d90 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml
@@ -179,6 +179,14 @@
- type: Implanter
implant: FreedomImplant
+- type: entity
+ id: RadioImplanter
+ suffix: radio Syndicate
+ parent: BaseImplantOnlyImplanterSyndi
+ components:
+ - type: Implanter
+ implant: RadioImplant
+
- type: entity
id: UplinkImplanter
suffix: uplink
@@ -245,6 +253,14 @@
- type: Implanter
implant: DeathAcidifierImplant
+- type: entity
+ id: FakeMindShieldImplanter
+ suffix: fake mindshield
+ parent: BaseImplantOnlyImplanterSyndi
+ components:
+ - type: Implanter
+ implant: FakeMindShieldImplant
+
# Security and Command implanters
- type: entity
@@ -254,3 +270,13 @@
components:
- type: Implanter
implant: MindShieldImplant
+
+# Centcomm implanters
+
+- type: entity
+ id: RadioImplanterCentcomm
+ suffix: radio Centcomm
+ parent: BaseImplantOnlyImplanter
+ components:
+ - type: Implanter
+ implant: RadioImplantCentcomm
diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
index 21b710a61803..c688c7cadc1b 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml
@@ -116,7 +116,7 @@
parent: Kudzu
components:
- type: Sprite
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
sprite: Objects/Misc/kudzuflower.rsi
state: kudzu_11
- type: Kudzu
@@ -247,8 +247,10 @@
solutions:
food:
reagents:
- - ReagentId: Protein
+ - ReagentId: Razorium
Quantity: 2
+ - ReagentId: Protein
+ Quantity: 1
- type: Respirator
damage:
types:
@@ -256,6 +258,9 @@
damageRecovery:
types:
Asphyxiation: -0.25
+ - type: Tag
+ tags:
+ - Meat
- type: entity
name: dark haze
diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
index 28788e9a1376..c4e270176927 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
@@ -142,6 +142,18 @@
components:
- Cuffable # useless if you cant be cuffed
+- type: entity
+ parent: BaseSubdermalImplant
+ id: RadioImplant
+ name: radio implant
+ description: This implant grants access to the Syndicate channel without a headset.
+ categories: [ HideSpawnMenu ]
+ components:
+ - type: SubdermalImplant
+ - type: RadioImplant
+ radioChannels:
+ - Syndicate
+
- type: entity
parent: [ BaseSubdermalImplant, StorePresetUplink ]
id: UplinkImplant
@@ -311,6 +323,17 @@
- Dead
- type: Rattle
+- type: entity
+ parent: BaseSubdermalImplant
+ id: FakeMindShieldImplant
+ name: fake mindshield implant
+ description: This implant allows the implanter to produce a fake signal that NT security huds use to identify individuals implanted with a mindshield.
+ categories: [ HideSpawnMenu ]
+ components:
+ - type: SubdermalImplant
+ implantAction: FakeMindShieldToggleAction
+ - type: FakeMindShieldImplant
+
# Sec and Command implants
- type: entity
@@ -325,3 +348,17 @@
- type: Tag
tags:
- MindShield
+
+# Centcomm implants
+
+- type: entity
+ parent: BaseSubdermalImplant
+ id: RadioImplantCentcomm
+ name: radio implant
+ description: This implant grants access to the Centcomm channel without a headset. Only authorized for Centcomm employees.
+ categories: [ HideSpawnMenu ]
+ components:
+ - type: SubdermalImplant
+ - type: RadioImplant
+ radioChannels:
+ - CentCom
diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
index 903226895890..37a77acff1f0 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml
@@ -40,6 +40,9 @@
damage:
types:
Blunt: 5
+ - type: GuideHelp
+ guides:
+ - ExpandingRepairingStation
- type: entity
name: steel dark checker tile
@@ -1548,6 +1551,23 @@
- type: Stack
stackType: FloorTileAstroSnow
+- type: entity
+ id: FloorTileItemAstroAsteroidSand
+ parent: FloorTileItemBase
+ name: asteroid astro-sand
+ description: Fake sand. Luckily, it's not as coarse as the real thing.
+ components:
+ - type: Sprite
+ state: asteroid
+ - type: Item
+ heldPrefix: asteroid
+ - type: FloorTile
+ outputs:
+ - Plating
+ - FloorAstroAsteroidSand
+ - type: Stack
+ stackType: FloorTileAstroAsteroidSand
+
- type: entity
name: large wood floor
parent: FloorTileItemBase
diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml
index 3bd4a89d5323..a52fac98c274 100644
--- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml
+++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml
@@ -84,10 +84,10 @@
Slash: 1
- type: entity
- name: riot laser shield
+ name: ablative shield
parent: [ BaseShield, BaseRestrictedContraband ]
id: RiotLaserShield
- description: A riot shield built for withstanding lasers, but not much else.
+ description: An ablative shield built for withstanding lasers, but not much else.
components:
- type: Sprite
state: riot_laser-icon
@@ -104,10 +104,10 @@
Heat: 1
- type: entity
- name: riot bullet shield
+ name: ballistic shield
parent: [ BaseShield, BaseRestrictedContraband ]
id: RiotBulletShield
- description: A ballistic riot shield built for withstanding bullets, but not much else.
+ description: A ballistic shield built for protecting against firearms, but not much else.
components:
- type: Sprite
state: riot_bullet-icon
diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
index 5cc3adef900d..ff8e98339956 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml
@@ -570,7 +570,7 @@
id: BorgModuleOperative
parent: [ BaseBorgModuleSyndicate, BaseProviderBorgModule, BaseSyndicateContraband ]
name: operative cyborg module
- description: A module that comes with a crowbar, an Emag and a syndicate pinpointer.
+ description: A module that comes with a crowbar, an Emag, an Access Breaker and a syndicate pinpointer.
components:
- type: Sprite
layers:
@@ -580,6 +580,7 @@
items:
- Crowbar
- Emag
+ - AccessBreaker
- PinpointerSyndicateNuclear
- type: BorgModuleIcon
icon: { sprite: Interface/Actions/actions_borg.rsi, state: syndicate-operative-module }
diff --git a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
index c67e7ff8c316..7a575b984e3e 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/atmos.yml
@@ -32,3 +32,9 @@
materialComposition:
Steel: 400
Glass: 100
+ - type: GuideHelp
+ guides:
+ - AtmosTools
+ - PipeNetworks
+ - Pipes
+ - GasCanisters
diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
index edaa8288145e..7cc09a90081c 100644
--- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
+++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml
@@ -531,7 +531,8 @@
sprite: Objects/Specific/Chemistry/pills.rsi
- type: Pill
- type: Food
- forceFeedDelay: 1
+ delay: 0.6
+ forceFeedDelay: 2
transferAmount: null
eatMessage: food-swallow
useSound: /Audio/Items/pill.ogg
diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml b/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml
new file mode 100644
index 000000000000..15c1beba8ed2
--- /dev/null
+++ b/Resources/Prototypes/Entities/Objects/Tools/access_breaker.yml
@@ -0,0 +1,22 @@
+- type: entity
+ parent: [BaseItem, BaseSyndicateContraband]
+ id: AccessBreakerUnlimited
+ suffix: Unlimited
+ name: authentication disruptor
+ description: A hacked access configurator, specialized to unlock and erase access from digital locks.
+ components:
+ - type: Emag
+ emagType: Access
+ - type: Sprite
+ sprite: Objects/Tools/access_breaker.rsi
+ state: icon
+ - type: Item
+ sprite: Objects/Tools/access_breaker.rsi
+
+- type: entity
+ parent: AccessBreakerUnlimited
+ id: AccessBreaker
+ suffix: Limited
+ components:
+ - type: LimitedCharges
+ - type: AutoRecharge
diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
index 7cc57faaa4b4..4c24117caab8 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml
@@ -29,6 +29,10 @@
- type: PhysicalComposition
materialComposition:
Steel: 15
+ - type: GuideHelp
+ guides:
+ - VoltageNetworks
+ - Power
- type: entity
id: CableHVStack
diff --git a/Resources/Prototypes/Entities/Objects/Tools/emag.yml b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
index 28c007a63f1b..616772a4fcd9 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/emag.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/emag.yml
@@ -3,7 +3,7 @@
id: EmagUnlimited
suffix: Unlimited
name: cryptographic sequencer
- description: The all-in-one hacking solution. The thinking man's lockpick. The iconic EMAG.
+ description: The all-in-one hacking solution. Friend of any syndicate. The iconic EMAG.
components:
- type: Emag
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
index 4016457263eb..11f40764b7d0 100644
--- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml
+++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml
@@ -126,6 +126,9 @@
Steel: 100
- type: StaticPrice
price: 22
+ - type: GuideHelp
+ guides:
+ - Construction
- type: entity
name: multitool
@@ -174,6 +177,12 @@
Plastic: 100
- type: StaticPrice
price: 56
+ - type: GuideHelp
+ guides:
+ - Networking
+ - WirePanels
+ - Airlocks
+ - InspectingPower
- type: entity
name: network configurator
@@ -224,7 +233,7 @@
price: 56
- type: GuideHelp
guides:
- - NetworkConfigurator
+ - Networking
#Power tools
#Later on these should switch probably switch damage when changing the tool behavior.
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
index cd736a33d082..4c3fd937e03f 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml
@@ -98,10 +98,10 @@
stateLocked: cursed_door
stateUnlocked: decursed_door
- type: Lock
- breakOnEmag: false
+ breakOnAccessBreaker: false
- type: AccessReader
access: [["Wizard"]]
- breakOnEmag: false
+ breakOnAccessBreaker: false
- type: Projectile
deleteOnCollide: false
onlyCollideWhenShot: true
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
index a927d880ef9d..c9748a0b6124 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml
@@ -48,7 +48,7 @@
# Don't parent to BaseWeaponShotgun because it differs significantly
parent: [BaseItem, BaseGunWieldable, BaseSyndicateContraband]
id: WeaponShotgunBulldog
- description: It's a magazine-fed shotgun designed for close quarters combat. Uses .50 shotgun shells.
+ description: An automatic magazine-fed shotgun for close-quarters combat. Kicks like a mule on steroids. Uses .50 shotgun shells.
components:
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/bulldog.rsi
@@ -116,7 +116,7 @@
sprite: Objects/Weapons/Guns/Shotguns/db_shotgun_inhands_64x.rsi
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
- type: Gun
- fireRate: 2
+ fireRate: 3
- type: BallisticAmmoProvider
capacity: 2
- type: Construction
@@ -138,8 +138,8 @@
name: Enforcer
parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband]
id: WeaponShotgunEnforcer
- description: A premium combat shotgun based on the Kammerer design, featuring an upgraded clip capacity. .50 shotgun shells.
- components:
+ description: A premium semi-automatic shotgun, and the pride of all security forces. Uses .50 shotgun shells.
+ components: # intend for Enforcer to have wider choke for semi-auto function
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/enforcer.rsi
- type: Clothing
@@ -161,8 +161,8 @@
name: Kammerer
parent: [BaseWeaponShotgun, BaseGunWieldable, BaseRestrictedContraband]
id: WeaponShotgunKammerer
- description: When an old Remington design meets modern materials, this is the result. A favourite weapon of militia forces throughout many worlds. Uses .50 shotgun shells.
- components:
+ description: An old yet faithful design, and a favorite among irregular forces of many worlds. Uses .50 shotgun shells.
+ components: # intend for Kammerer to have tighter choke for slower fire rate and/or manual cycling
- type: Item
size: Normal
shape:
@@ -173,8 +173,8 @@
- type: Clothing
sprite: Objects/Weapons/Guns/Shotguns/pump.rsi
- type: GunRequiresWield #remove when inaccuracy on spreads is fixed
- - type: BallisticAmmoProvider
- capacity: 4
+ - type: Gun
+ fireRate: 1
- type: Tag
tags:
- WeaponShotgunKammerer
@@ -184,7 +184,7 @@
parent: [ BaseWeaponShotgun, BaseSecurityBartenderContraband ]
id: WeaponShotgunSawn
description: Groovy! Uses .50 shotgun shells.
- components:
+ components: # needs to be super inaccurate because you don't need to wield it
- type: Sprite
sprite: Objects/Weapons/Guns/Shotguns/sawn.rsi
- type: Clothing
@@ -193,7 +193,7 @@
size: Small
sprite: Objects/Weapons/Guns/Shotguns/sawn_inhands_64x.rsi
- type: Gun
- fireRate: 4
+ fireRate: 3
- type: BallisticAmmoProvider
capacity: 2
- type: Construction
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
index 4ea0061c9614..cca3a6f30215 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml
@@ -63,6 +63,10 @@
- CartridgeAntiMateriel
capacity: 5
proto: CartridgeAntiMateriel
+ - type: CursorOffsetRequiresWield
+ - type: EyeCursorOffset
+ maxOffset: 3
+ pvsIncrease: 0.3
- type: entity
name: musket
diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
index edbe58f584f7..57550d30ad6a 100644
--- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml
+++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml
@@ -36,7 +36,7 @@
Blunt: 7
bluntStaminaDamageFactor: 2.0
angle: 60
- animation: WeaponArcSlash
+ animation: WeaponArcThrust
- type: StaminaDamageOnHit
damage: 35
sound: /Audio/Weapons/egloves.ogg
diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml
index 473b75fd59c0..67a82d99e583 100644
--- a/Resources/Prototypes/Entities/Stations/base.yml
+++ b/Resources/Prototypes/Entities/Stations/base.yml
@@ -70,6 +70,7 @@
- /Maps/Ruins/djstation.yml
- /Maps/Ruins/empty_flagship.yml
- /Maps/Ruins/old_ai_sat.yml
+ - /Maps/Ruins/ruined_prison_ship.yml
- /Maps/Ruins/syndicate_dropship.yml
- /Maps/Ruins/whiteship_ancient.yml
- /Maps/Ruins/whiteship_bluespacejumper.yml
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
index f8099f28d78a..b1001797ae3d 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml
@@ -174,6 +174,11 @@
# This tag is used to nagivate the Airlock construction graph. It's needed because the construction graph is shared between Airlock, AirlockGlass, and HighSecDoor
- type: PryUnpowered
- type: BlockWeather
+ - type: GuideHelp
+ guides:
+ - Airlocks
+ - WirePanels
+ - Networking
placement:
mode: SnapgridCenter
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
index dd4d1a4d3bbc..311c32b2fdb2 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml
@@ -23,6 +23,9 @@
cost: 4
delay: 6
fx: EffectRCDDeconstruct6
+ - type: Tag
+ tags:
+ - ForceFixRotations # Allow fixrotations to target these
- type: Destructible
thresholds:
- trigger:
@@ -117,6 +120,11 @@
enabled: false
castShadows: false
- type: NavMapDoor
+ - type: GuideHelp
+ guides:
+ - FireAndGasControl
+ - Fires
+ - Spacing
- type: entity
id: Firelock
@@ -188,6 +196,9 @@
- GlassAirlockLayer
- type: Occluder
enabled: false
+ - type: Tag
+ tags:
+ - ForceNoFixRotations # Prevent fixrotations from targeting these, since the base Firelock is targeted
- type: Door
occludes: false
- type: Physics
diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
index 14d99f3adf72..f4e7829d52b4 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml
@@ -65,6 +65,7 @@
tags:
- Structure
- Wall
+ - ForceNoFixRotations # Don't want the fixrotations command to target these
- type: ContainerContainer
containers:
battery-container: !type:Container
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
index ef25bea8c8fa..d61f6dd21c90 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml
@@ -22,6 +22,10 @@
crushDamage:
types:
Blunt: 25 # yowch
+ openSound:
+ path: /Audio/Machines/blastdoor.ogg
+ closeSound:
+ path: /Audio/Machines/blastdoor.ogg
- type: Occluder
- type: Appearance
- type: RadiationBlocker
@@ -39,6 +43,11 @@
- board
- type: StaticPrice
price: 500
+ - type: InteractionPopup
+ interactSuccessString: comp-window-knock
+ messagePerceivedByOthers: comp-window-knock
+ interactSuccessSound:
+ path: /Audio/Effects/glass_knock.ogg
- type: entity
id: BlastDoorOpen
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
index 28cdfb3f8ab1..41e85e6c3fa1 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml
@@ -34,6 +34,9 @@
containers:
board: !type:Container
- type: NavMapDoor
+ - type: Tag
+ tags:
+ - ForceNoFixRotations # Don't want the fixrotations command to target these
- type: Door
openDrawDepth: BlastDoors
closedDrawDepth: BlastDoors
@@ -49,9 +52,9 @@
types:
Blunt: 5 # getting shutters closed on you probably doesn't hurt that much
openSound:
- path: /Audio/Machines/blastdoor.ogg
+ path: /Audio/Machines/shutter.ogg
closeSound:
- path: /Audio/Machines/blastdoor.ogg
+ path: /Audio/Machines/shutter.ogg
- type: Weldable
time: 3
- type: Appearance
@@ -93,10 +96,10 @@
lastSignals:
DoorStatus: false
- type: InteractionPopup
- interactSuccessString: comp-window-knock
- messagePerceivedByOthers: comp-window-knock
+ interactSuccessString: shutter-rattle
+ messagePerceivedByOthers: shutter-rattle
interactSuccessSound:
- path: /Audio/Effects/glass_knock.ogg
+ collection: FenceRattle
- type: BlockWeather
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
index 4b3b4c18743e..86b17e2584c0 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml
@@ -36,6 +36,9 @@
- type: FootstepModifier
footstepSoundCollection:
collection: FootstepHull
+ - type: Tag
+ tags:
+ - ForceFixRotations
- type: entity
id: CounterBase
diff --git a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
index e6b04766189c..77a0b2df1d97 100644
--- a/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
+++ b/Resources/Prototypes/Entities/Structures/Furniture/carpets.yml
@@ -14,7 +14,9 @@
key: full
base: carpet_
- type: Tag
- tags: [ Carpet ]
+ tags:
+ - Carpet
+ - ForceFixRotations
- type: Physics
canCollide: false
- type: Fixtures
@@ -22,12 +24,12 @@
damageContainer: Inorganic
- type: Destructible
thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 10
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
behaviors:
- - !type:DoActsBehavior
- acts: [ "Destruction" ]
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
- type: Butcherable
butcheringType: Knife
butcherDelay: 2
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
index 8167229ae5b3..2e58679e7cad 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml
@@ -48,6 +48,10 @@
type: AtmosAlertsComputerBoundUserInterface
enum.WiresUiKey.Key:
type: WiresBoundUserInterface
+ - type: GuideHelp
+ guides:
+ - AtmosphericAlertsComputer
+ - DeviceMonitoringAndControl
- type: entity
parent: BaseComputerAiAccess
@@ -81,6 +85,10 @@
type: AtmosMonitoringConsoleBoundUserInterface
enum.WiresUiKey.Key:
type: WiresBoundUserInterface
+ - type: GuideHelp
+ guides:
+ - AtmosphericNetworkMonitor
+ - DeviceMonitoringAndControl
- type: entity
parent: BaseComputer
@@ -148,6 +156,9 @@
board: !type:Container
ents: []
disk_slot: !type:ContainerSlot {}
+ - type: GuideHelp
+ guides:
+ - ShuttleCraft
- type: entity
parent: BaseComputerShuttle
@@ -610,7 +621,7 @@
color: "#3c5eb5"
- type: Tag
tags:
- - EmagImmune
+ - AccessBreakerImmune
- type: ItemSlots
- type: ContainerContainer
containers:
@@ -741,6 +752,10 @@
radius: 1.5
energy: 1.6
color: "#e6e227"
+ - type: GuideHelp
+ guides:
+ - SolarPanels
+ - Power
- type: entity
parent: BaseComputerAiAccess
diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
index 741e0a397111..7d1719a7083f 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml
@@ -7,7 +7,7 @@
- type: Sprite
noRot: true
sprite: Structures/Machines/artifact_analyzer.rsi
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
layers:
- state: icon
- state: unshaded
diff --git a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
index 96de462b79c6..770a17a8ff7c 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/fatextractor.yml
@@ -35,7 +35,7 @@
visible: false
map: ["enum.FatExtractorVisualLayers.Smoke"]
- type: Lock
- breakOnEmag: false
+ breakOnAccessBreaker: false
- type: GenericVisualizer
visuals:
enum.StorageVisuals.Open:
diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
index 402c408ed844..9efa7ce6f2bd 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml
@@ -101,6 +101,7 @@
responsePings: false
notifyAdmins: true
- type: Emagged
+ emagType: Interaction
- type: entity
parent: FaxMachineBase
diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
index 421d2809d4a0..c95609c55abd 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml
@@ -22,7 +22,7 @@
- type: StationAiVision
- type: Sprite
sprite: Structures/Machines/holopad.rsi
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
snapCardinals: true
layers:
- state: base
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index 8591f7beb0de..3b54273ceef7 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -351,6 +351,7 @@
- FauxTileJungleAstroGrass
- FauxTileAstroIce
- FauxTileAstroSnow
+ - FauxTileAstroAsteroidSand
- OreBagOfHolding
- DeviceQuantumSpinInverter
- type: EmagLatheRecipes
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
index c8727fab933c..99fb34bd9ab1 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml
@@ -75,7 +75,10 @@
path: /Audio/Ambience/Objects/gas_pump.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
-
+ - type: GuideHelp
+ guides:
+ - Pumps
+
- type: entity
parent: GasBinaryBase
id: GasVolumePump
@@ -134,7 +137,10 @@
- type: WiredNetworkConnection
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
-
+ - type: GuideHelp
+ guides:
+ - Pumps
+
- type: entity
parent: GasBinaryBase
id: GasPassiveGate
@@ -165,7 +171,10 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
-
+ - type: GuideHelp
+ guides:
+ - PassiveGate
+
- type: entity
parent: GasBinaryBase
id: GasValve
@@ -215,7 +224,10 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
-
+ - type: GuideHelp
+ guides:
+ - ManualValve
+
- type: entity
parent: GasBinaryBase
id: SignalControlledValve
@@ -276,7 +288,10 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
-
+ - type: GuideHelp
+ guides:
+ - SignalValve
+
- type: entity
parent: GasBinaryBase
id: GasPort
@@ -307,7 +322,10 @@
node: port
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
-
+ - type: GuideHelp
+ guides:
+ - GasCanisters
+
- type: entity
parent: GasVentPump
id: GasDualPortVentPump
@@ -365,7 +383,10 @@
enabled: true
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
-
+ - type: GuideHelp
+ guides:
+ - AirVent
+
- type: entity
parent: [ BaseMachine, ConstructibleMachine ]
id: GasRecycler
@@ -429,7 +450,7 @@
board: GasRecyclerMachineCircuitboard
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasValve
-
+
- type: entity
parent: GasBinaryBase
id: HeatExchanger
@@ -471,6 +492,9 @@
node: radiator
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
+ - type: GuideHelp
+ guides:
+ - Radiators
- type: entity
parent: HeatExchanger
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
index 22b56908ea81..57574f7f7de9 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/gas_pipe_sensor.yml
@@ -2,7 +2,7 @@
parent: [AirSensorBase, GasPipeBase]
id: GasPipeSensor
name: gas pipe sensor
- description: Reports on the status of the gas in the attached pipe network.
+ description: Reports on the status of the gas in the attached pipe network.
placement:
mode: SnapgridCenter
components:
@@ -16,8 +16,8 @@
- map: ["base"]
state: base
- map: [ "enum.PowerDeviceVisualLayers.Powered" ]
- state: lights
- shader: unshaded
+ state: lights
+ shader: unshaded
- type: Appearance
- type: GenericVisualizer
visuals:
@@ -34,7 +34,7 @@
- type: ExtensionCableReceiver
- type: Construction
graph: GasPipeSensor
- node: sensor
+ node: sensor
- type: NodeContainer
nodes:
monitored:
@@ -44,34 +44,38 @@
- type: Tag
tags:
- AirSensor
- - Unstackable
+ - Unstackable
+ - type: GuideHelp
+ guides:
+ - AtmosphericNetworkMonitor
+ - DeviceMonitoringAndControl
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorDistribution
+ parent: GasPipeSensor
+ id: GasPipeSensorDistribution
suffix: Distribution
components:
- type: Label
currentLabel: gas-pipe-sensor-distribution-loop
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorWaste
+ parent: GasPipeSensor
+ id: GasPipeSensorWaste
suffix: Waste
components:
- type: Label
currentLabel: gas-pipe-sensor-waste-loop
- type: entity
- parent: GasPipeSensor
- id: GasPipeSensorMixedAir
+ parent: GasPipeSensor
+ id: GasPipeSensorMixedAir
suffix: Mixed air
components:
- type: Label
currentLabel: gas-pipe-sensor-mixed-air
- type: entity
- parent: GasPipeSensor
+ parent: GasPipeSensor
id: GasPipeSensorTEGHot
suffix: TEG hot
components:
@@ -79,9 +83,9 @@
currentLabel: gas-pipe-sensor-teg-hot-loop
- type: entity
- parent: GasPipeSensor
+ parent: GasPipeSensor
id: GasPipeSensorTEGCold
suffix: TEG cold
components:
- type: Label
- currentLabel: gas-pipe-sensor-teg-cold-loop
\ No newline at end of file
+ currentLabel: gas-pipe-sensor-teg-cold-loop
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
index 5562715fdb21..9637c55bc760 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml
@@ -32,6 +32,9 @@
- type: GasMiner
maxExternalPressure: 300
spawnAmount: 400
+ - type: GuideHelp
+ guides:
+ - GasMiningAndStorage
- type: entity
name: O2 gas miner
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
index ef436b4299c4..a6c322189b52 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml
@@ -84,6 +84,10 @@
- type: Construction
graph: GasPipe
node: half
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
- type: entity
parent: GasPipeBase
@@ -117,6 +121,10 @@
Blunt: 8
soundHit:
collection: MetalThud # this NEEDS to changed to the metal pipe falling sound effect on april first every year
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
- type: entity
parent: GasPipeBase
@@ -157,6 +165,10 @@
damage:
types:
Blunt: 8 # Woe, pipe be upon ye!
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
- type: entity
parent: GasPipeBase
@@ -193,6 +205,10 @@
Blunt: 10
soundHit:
collection: MetalThud
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
- type: entity
parent: GasPipeBase
@@ -228,6 +244,10 @@
Blunt: 10
soundHit:
collection: MetalThud
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
- type: entity
id: GasPipeBroken
@@ -253,3 +273,7 @@
behaviors:
- !type:DoActsBehavior
acts: ["Destruction"]
+ - type: GuideHelp
+ guides:
+ - Pipes
+ - PipeNetworks
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
index eae848c7aa93..832a23e8ac4a 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/portable.yml
@@ -95,6 +95,9 @@
max: 2
- !type:DoActsBehavior
acts: [ "Destruction" ]
+ - type: GuideHelp
+ guides:
+ - PortableScrubber
- type: entity
id: SpaceHeater
@@ -180,6 +183,9 @@
max: 3
- !type:DoActsBehavior
acts: [ "Destruction" ]
+ - type: GuideHelp
+ guides:
+ - Thermomachines
- type: entity
parent: SpaceHeater
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
index bde7136850f0..06656d017756 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/trinary.yml
@@ -72,7 +72,10 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
-
+ - type: GuideHelp
+ guides:
+ - MixingAndFiltering
+
- type: entity
parent: GasFilter
id: GasFilterFlipped
@@ -162,7 +165,10 @@
path: /Audio/Ambience/Objects/gas_hiss.ogg
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasFlowRegulator
-
+ - type: GuideHelp
+ guides:
+ - MixingAndFiltering
+
- type: entity
parent: GasMixer
id: GasMixerFlipped
@@ -210,7 +216,7 @@
parent: GasPipeBase
id: PressureControlledValve
name: pneumatic valve
- description: Valve controlled by pressure.
+ description: A bidirectional valve controlled by pressure. Opens if the output pipe is lower than the pressure of the control pipe by 101.325 kPa.
placement:
mode: SnapgridCenter
components:
@@ -262,4 +268,9 @@
graph: GasTrinary
node: pneumaticvalve
- type: AtmosMonitoringConsoleDevice
- navMapBlip: GasFlowRegulator
\ No newline at end of file
+ navMapBlip: GasFlowRegulator
+ - type: GuideHelp
+ guides:
+ - PneumaticValve
+ - Pumps
+ - Valves
diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
index 5da85544fca7..1b738dedfd24 100644
--- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
+++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml
@@ -70,7 +70,11 @@
- type: Weldable
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
-
+ - type: GuideHelp
+ guides:
+ - AirVent
+ - DeviceMonitoringAndControl
+
- type: entity
parent: GasUnaryBase
id: GasPassiveVent
@@ -96,7 +100,10 @@
node: passivevent
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
-
+ - type: GuideHelp
+ guides:
+ - PassiveVent
+
- type: entity
parent: [GasUnaryBase, AirSensorBase]
id: GasVentScrubber
@@ -147,7 +154,11 @@
- type: Weldable
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentScrubber
-
+ - type: GuideHelp
+ guides:
+ - AirScrubber
+ - DeviceMonitoringAndControl
+
- type: entity
parent: GasUnaryBase
id: GasOutletInjector
@@ -188,7 +199,10 @@
- enum.LightLayers.Unshaded
- type: AtmosMonitoringConsoleDevice
navMapBlip: GasVentOpening
-
+ - type: GuideHelp
+ guides:
+ - AirInjector
+
- type: entity
parent: [ BaseMachinePowered, ConstructibleMachine ]
id: BaseGasThermoMachine
@@ -234,7 +248,10 @@
- type: PowerSwitch
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
-
+ - type: GuideHelp
+ guides:
+ - Thermomachines
+
- type: entity
parent: BaseGasThermoMachine
id: GasThermoMachineFreezer
@@ -441,3 +458,6 @@
- type: PowerSwitch
- type: AtmosMonitoringConsoleDevice
navMapBlip: Thermoregulator
+ - type: GuideHelp
+ guides:
+ - GasCondensing
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
index 01c85a184e97..d5b7e3667d74 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/base_particleaccelerator.yml
@@ -26,7 +26,8 @@
- type: Pullable
- type: Clickable
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityTeslaEngine
- type: Appearance
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
index 9d3ce9c931f2..0a36d91e38d1 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml
@@ -46,8 +46,10 @@
Level1: {state: particle1}
Level2: {state: particle2}
Level3: {state: particle3}
- - type: GuideHelp
- guides: [ Singularity, Power ]
+ - type: GuideHelp # why does this even have a guidebook link in the first place
+ guides:
+ - SingularityTeslaEngine
+ - Power
- type: entity
name: anti particles
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
index 3742c037ff50..6b8de781b844 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/collector.yml
@@ -68,7 +68,9 @@
- type: Rotatable
- type: Pullable
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
- type: ContainerContainer
containers:
gas_tank: !type:ContainerSlot {}
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
index 096aeb2a8b18..610ab4262149 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/containment.yml
@@ -65,7 +65,10 @@
True: { visible: true }
False: { visible: false }
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityTeslaEngine
+ - SingularityEngine
+ - Power
- type: entity
@@ -100,6 +103,7 @@
throwForce: 50
- type: SyncSprite
- type: GuideHelp
- guides: [ Singularity, Power ]
-
-
+ guides:
+ - SingularityTeslaEngine
+ - SingularityEngine
+ - Power
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
index 298e238f018c..110cbbf5dcea 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/emitter.yml
@@ -91,7 +91,8 @@
- type: Machine
board: EmitterCircuitboard
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityTeslaEngine
- type: DeviceNetwork
deviceNetId: Wireless
receiveFrequencyId: BasicDevice
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
index 45a40bf0faf3..8f902f858550 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/generator.yml
@@ -32,5 +32,7 @@
- type: Anchorable
- type: Pullable
- type: GuideHelp
- guides: [ Singularity, Power ]
+ guides:
+ - SingularityEngine
+ - Power
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
index bf2c6cfcc0c9..461b17efbb69 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml
@@ -61,8 +61,11 @@
enabled: true
radius: 10
- type: Appearance
- - type: GuideHelp
- guides: [ Singularity, Power ] # uhhh.. I would hoped they'd have read the manual before ever getting in viewing distance...
+ - type: GuideHelp # Always strive to be helpful in trying times.
+ guides:
+ - SingularityEngine
+ - SingularityTeslaEngine
+ - Power
- type: WarpPoint
follow: true
location: singularity
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
index dc2ad1687a5b..fbb1d8c1b0bd 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml
@@ -101,7 +101,10 @@
SheetSteel1:
min: 2
max: 4
- #- type: GuideHelp # TODO - add Tesla Guide
+ - type: GuideHelp
+ guides:
+ - TeslaEngine
+ - SingularityTeslaEngine
- type: entity
id: TeslaGroundingRod
@@ -184,5 +187,7 @@
SheetSteel1:
min: 2
max: 4
- #- type: GuideHelp # TODO - add Tesla Guide
-
+ - type: GuideHelp
+ guides:
+ - TeslaEngine
+ - SingularityTeslaEngine
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
index 558504d57975..909601e06665 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml
@@ -108,6 +108,11 @@
interactSuccessString: petting-success-tesla
interactFailureString: petting-failure-tesla
interactSuccessSpawn: EffectHearts
+ - type: GuideHelp # For the curious among the brave.
+ guides:
+ - TeslaEngine
+ - SingularityTeslaEngine
+ - Power
- type: entity
id: TeslaMiniEnergyBall
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
index bdd90f2f16af..27b2c5c5a88f 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml
@@ -25,5 +25,8 @@
layer:
- Opaque
- type: Anchorable
- #- type: GuideHelp # TODO - add Tesla Guide
+ - type: GuideHelp
+ guides:
+ - TeslaEngine
+ - Power
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
index ecc5f20420b9..550dddc8476f 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml
@@ -98,7 +98,9 @@
containers:
fuelSlot: !type:ContainerSlot
- type: GuideHelp
- guides: [ AME, Power ]
+ guides:
+ - AME
+ - Power
- type: Electrified
onHandInteract: false
onInteractUsing: false
@@ -201,7 +203,9 @@
graph: AmeShielding
node: ameShielding
- type: GuideHelp
- guides: [ AME, Power ]
+ guides:
+ - AME
+ - Power
- type: Electrified
onHandInteract: false
onInteractUsing: false
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
index 6d483bd9cedf..2be509e8e64a 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml
@@ -87,6 +87,9 @@
onBump: false
requirePower: true
highVoltageNode: output
+ - type: GuideHelp
+ guides:
+ - ShuttleCraft
# Base Wallmount Generator
@@ -140,6 +143,9 @@
supplyRampRate: 500
supplyRampTolerance: 500
- type: WallMount
+ - type: GuideHelp
+ guides:
+ - ShuttleCraft
# Construction Frames
@@ -225,6 +231,9 @@
- type: ContainerContainer
containers:
board: !type:Container
+ - type: GuideHelp
+ guides:
+ - ShuttleCraft
# RTG - no fuel requirement
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
index c822e0c0b31c..a7b55841e50d 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml
@@ -75,7 +75,9 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: GuideHelp
- guides: [ PortableGenerator, Power ]
+ guides:
+ - PortableGenerator
+ - Power
# Core functionality
- type: PortableGenerator
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
index e43ee9adca41..f64f6612b0da 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml
@@ -28,7 +28,7 @@
- MidImpassable, LowImpassable, BulletImpassable
- type: Sprite
sprite: Structures/Power/Generation/solar_panel.rsi
- state: normal
+ state: solar_panel_glass
- type: NodeContainer
examinable: true
nodes:
@@ -39,7 +39,7 @@
group: Generator
loadNode: output
sprite: Structures/Power/Generation/solar_panel.rsi
- state: static
+ state: solar_panel_glass
collectionName: SolarPanel
- type: Anchorable
- type: Pullable
@@ -50,6 +50,77 @@
requirePower: true
highVoltageNode: output
- type: RequireProjectileTarget
+ - type: GuideHelp
+ guides:
+ - SolarPanels
+
+- type: entity
+ id: SolarPanelPlasma
+ parent: SolarPanelBasePhysSprite
+ name: solar panel plasma
+ description: A plasma solar panel that generates power.
+ components:
+ - type: PowerSupplier
+ supplyRampTolerance: 500
+ supplyRampRate: 500
+ - type: SolarPanel
+ maxSupply: 1000
+ - type: Sprite
+ sprite: Structures/Power/Generation/solar_panel.rsi
+ state: solar_panel_plasma
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 150
+ behaviors:
+ - !type:PlaySoundBehavior
+ sound:
+ collection: GlassBreak
+ - !type:ChangeConstructionNodeBehavior
+ node: solarpanelplasma_broken
+ - !type:DoActsBehavior
+ acts: ["Breakage"]
+ - type: Construction
+ graph: SolarPanel
+ node: solarpanelplasma
+
+- type: entity
+ id: SolarPanelUranium
+ parent: SolarPanelBasePhysSprite
+ name: solar panel uranium
+ description: A uranium solar panel that generates power.
+ components:
+ - type: PowerSupplier
+ supplyRampTolerance: 500
+ supplyRampRate: 500
+ - type: SolarPanel
+ maxSupply: 1500
+ - type: Sprite
+ sprite: Structures/Power/Generation/solar_panel.rsi
+ state: solar_panel_uranium
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 200
+ behaviors:
+ - !type:PlaySoundBehavior
+ sound:
+ collection: GlassBreak
+ - !type:ChangeConstructionNodeBehavior
+ node: solarpaneluranium_broken
+ - !type:DoActsBehavior
+ acts: ["Breakage"]
+ - type: Construction
+ graph: SolarPanel
+ node: solarpaneluranium
- type: entity
id: SolarPanel
@@ -89,7 +160,7 @@
suffix: Broken
components:
- type: Sprite
- state: broken
+ state: solar_panel_glass_broken
- type: Damageable
damageContainer: StructuralInorganic
damageModifierSet: Metallic
@@ -113,6 +184,70 @@
graph: SolarPanel
node: solarpanel_broken
+- type: entity
+ id: SolarPanelPlasmaBroken
+ parent: SolarPanelBasePhysSprite
+ name: plasma solar panel
+ description: A broken plasma solar panel.
+ suffix: Broken
+ components:
+ - type: Sprite
+ state: solar_panel_plasma_broken
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 50
+ behaviors:
+ - !type:PlaySoundBehavior
+ sound:
+ collection: GlassBreak
+ - !type:SpawnEntitiesBehavior
+ spawn:
+ ShardGlassPlasma:
+ min: 1
+ max: 2
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - type: Construction
+ graph: SolarPanel
+ node: solarpanelplasma_broken
+
+- type: entity
+ id: SolarPanelUraniumBroken
+ parent: SolarPanelBasePhysSprite
+ name: uranium solar panel
+ description: A broken uranium solar panel.
+ suffix: Broken
+ components:
+ - type: Sprite
+ state: solar_panel_uranium_broken
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 50
+ behaviors:
+ - !type:PlaySoundBehavior
+ sound:
+ collection: GlassBreak
+ - !type:SpawnEntitiesBehavior
+ spawn:
+ ShardGlassUranium:
+ min: 1
+ max: 2
+ - !type:DoActsBehavior
+ acts: [ "Destruction" ]
+ - type: Construction
+ graph: SolarPanel
+ node: solarpaneluranium_broken
+
- type: entity
id: SolarAssembly
name: solar assembly
@@ -159,6 +294,9 @@
node: solarassembly
defaultTarget: solarpanel
- type: RequireProjectileTarget
+ - type: GuideHelp
+ guides:
+ - SolarPanels
- type: entity
id: SolarTracker
@@ -204,3 +342,6 @@
graph: SolarPanel
node: solartracker
- type: RequireProjectileTarget
+ - type: GuideHelp
+ guides:
+ - SolarPanels
diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
index f5fe4285429c..85410a6ba886 100644
--- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml
@@ -97,7 +97,9 @@
sound:
path: /Audio/Ambience/Objects/vending_machine_hum.ogg
- type: GuideHelp
- guides: [ TEG, Power ]
+ guides:
+ - TEG
+ - Power
- type: StealTarget
stealGroup: Teg
- type: Machine
@@ -158,7 +160,9 @@
- type: Anchorable
- type: Pullable
- type: GuideHelp
- guides: [ TEG, Power ]
+ guides:
+ - TEG
+ - Power
# functionality
- type: NodeContainer
diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml
index 88b95044c358..593c4311f80d 100644
--- a/Resources/Prototypes/Entities/Structures/Power/apc.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml
@@ -143,6 +143,10 @@
priority: 1
- type: StaticPrice
price: 500
+ - type: GuideHelp
+ guides:
+ - VoltageNetworks
+ - Power
# APC under construction
- type: entity
diff --git a/Resources/Prototypes/Entities/Structures/Power/smes.yml b/Resources/Prototypes/Entities/Structures/Power/smes.yml
index db98b0d0f7cf..a8b5ac9c5371 100644
--- a/Resources/Prototypes/Entities/Structures/Power/smes.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/smes.yml
@@ -92,6 +92,11 @@
sendBroadcastAttemptEvent: true
examinableAddress: true
- type: WiredNetworkConnection
+ - type: GuideHelp
+ guides:
+ - PowerStorage
+ - VoltageNetworks
+ - Power
# SMES' in use
diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml
index 9d3eff90c737..27c5cbb4edbc 100644
--- a/Resources/Prototypes/Entities/Structures/Power/substation.yml
+++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml
@@ -108,6 +108,10 @@
requirePower: true
highVoltageNode: input
mediumVoltageNode: output
+ - type: GuideHelp
+ guides:
+ - VoltageNetworks
+ - Power
# Compact Wall Substation Base
- type: entity
@@ -214,6 +218,10 @@
totalIntensity: 100
- type: StationInfiniteBatteryTarget
- type: WallMount
+ - type: GuideHelp
+ guides:
+ - VoltageNetworks
+ - Power
# Substations in use
diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
index fa8b382ade8a..cbc556cb12e9 100644
--- a/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
+++ b/Resources/Prototypes/Entities/Structures/Shuttles/thrusters.yml
@@ -55,6 +55,9 @@
collection: MetalBreak
- type: StaticPrice
price: 300
+ - type: GuideHelp
+ guides:
+ - ShuttleCraft
placement:
mode: SnapgridCenter
diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
index 57ba3432ba3e..68d015d0de3c 100644
--- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
+++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml
@@ -2,32 +2,37 @@
id: AirSensorBase
abstract: true
components:
- - type: DeviceNetwork
- deviceNetId: AtmosDevices
- receiveFrequencyId: AtmosMonitor
- transmitFrequencyId: AtmosMonitor
- prefix: device-address-prefix-sensor
- sendBroadcastAttemptEvent: true
- examinableAddress: true
- - type: WiredNetworkConnection
- - type: DeviceNetworkRequiresPower
- - type: AtmosDevice
- - type: AtmosMonitor
- temperatureThresholdId: stationTemperature
- pressureThresholdId: stationPressure
- gasThresholdPrototypes:
- Oxygen: stationOxygen
- Nitrogen: stationNitrogen
- CarbonDioxide: stationCO2
- Plasma: stationPlasma
- Tritium: stationTritium
- WaterVapor: stationWaterVapor
- Ammonia: stationAmmonia
- NitrousOxide: stationNO
- Frezon: danger
- - type: Tag
- tags:
- - AirSensor
+ - type: DeviceNetwork
+ deviceNetId: AtmosDevices
+ receiveFrequencyId: AtmosMonitor
+ transmitFrequencyId: AtmosMonitor
+ prefix: device-address-prefix-sensor
+ sendBroadcastAttemptEvent: true
+ examinableAddress: true
+ - type: WiredNetworkConnection
+ - type: DeviceNetworkRequiresPower
+ - type: AtmosDevice
+ - type: AtmosMonitor
+ temperatureThresholdId: stationTemperature
+ pressureThresholdId: stationPressure
+ gasThresholdPrototypes:
+ Oxygen: stationOxygen
+ Nitrogen: stationNitrogen
+ CarbonDioxide: stationCO2
+ Plasma: stationPlasma
+ Tritium: stationTritium
+ WaterVapor: stationWaterVapor
+ Ammonia: stationAmmonia
+ NitrousOxide: stationNO
+ Frezon: danger
+ - type: Tag
+ tags:
+ - AirSensor
+ - ForceFixRotations
+ - type: GuideHelp
+ guides:
+ - DeviceMonitoringAndControl
+ - AtmosphericsSystems
- type: entity
id: AirSensor
@@ -37,54 +42,54 @@
placement:
mode: SnapgridCenter
components:
- - type: Transform
- anchored: true
- - type: Damageable
- damageContainer: Inorganic
- damageModifierSet: Metallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 100
- behaviors:
- - !type:DoActsBehavior
- acts: ["Destruction"]
- - type: Physics
- canCollide: false
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PhysShapeAabb
- bounds: "-0.25,-0.25,0.25,0.25"
- density: 20
- mask:
- - ItemMask
- restitution: 0.3
- friction: 0.2
- - type: Clickable
- - type: InteractionOutline
- - type: ApcPowerReceiver
- - type: ExtensionCableReceiver
- - type: AccessReader
- access: [ [ "Atmospherics" ] ]
- - type: Construction
- graph: AirSensor
- node: sensor
- - type: Appearance
- - type: Sprite
- drawdepth: FloorObjects
- sprite: Structures/Specific/Atmospherics/sensor.rsi
- layers:
- - state: gsensor1
- map: [ "enum.PowerDeviceVisualLayers.Powered" ]
- - type: GenericVisualizer
- visuals:
- enum.PowerDeviceVisuals.Powered:
- enum.PowerDeviceVisualLayers.Powered:
- True: { state: gsensor1 }
- False: { state: gsensor0 }
+ - type: Transform
+ anchored: true
+ - type: Damageable
+ damageContainer: Inorganic
+ damageModifierSet: Metallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 100
+ behaviors:
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
+ - type: Physics
+ canCollide: false
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeAabb
+ bounds: "-0.25,-0.25,0.25,0.25"
+ density: 20
+ mask:
+ - ItemMask
+ restitution: 0.3
+ friction: 0.2
+ - type: Clickable
+ - type: InteractionOutline
+ - type: ApcPowerReceiver
+ - type: ExtensionCableReceiver
+ - type: AccessReader
+ access: [ [ "Atmospherics" ] ]
+ - type: Construction
+ graph: AirSensor
+ node: sensor
+ - type: Appearance
+ - type: Sprite
+ drawdepth: FloorObjects
+ sprite: Structures/Specific/Atmospherics/sensor.rsi
+ layers:
+ - state: gsensor1
+ map: [ "enum.PowerDeviceVisualLayers.Powered" ]
+ - type: GenericVisualizer
+ visuals:
+ enum.PowerDeviceVisuals.Powered:
+ enum.PowerDeviceVisualLayers.Powered:
+ True: { state: gsensor1 }
+ False: { state: gsensor0 }
- type: entity
parent: BaseItem
@@ -92,14 +97,14 @@
name: air sensor assembly
description: Air sensor assembly. An assembly of air sensors?
components:
- - type: Item
- size: Small
- - type: Anchorable
- - type: Construction
- graph: AirSensor
- node: assembly
- - type: Sprite
- drawdepth: FloorObjects
- sprite: Structures/Specific/Atmospherics/sensor.rsi
- layers:
- - state: gsensor0
+ - type: Item
+ size: Small
+ - type: Anchorable
+ - type: Construction
+ graph: AirSensor
+ node: assembly
+ - type: Sprite
+ drawdepth: FloorObjects
+ sprite: Structures/Specific/Atmospherics/sensor.rsi
+ layers:
+ - state: gsensor0
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
index 1db376ceeb24..c8c03a95e87e 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml
@@ -104,6 +104,9 @@
access: [["Atmospherics"], ["Engineering"], ["Research"]]
- type: Lock
locked: false
+ - type: GuideHelp
+ guides:
+ - GasCanisters
- type: entity
parent: GasCanister
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
index 82959ebdd8fb..657c803d928d 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml
@@ -112,6 +112,10 @@
collection: MetalGlassBreak
params:
volume: -4
+ - type: GuideHelp
+ guides:
+ - AirAlarms
+ - DeviceMonitoringAndControl
- type: entity
id: AirAlarmAssembly
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
index 03bc3e4a8d09..38371ee29b04 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/fire_alarm.yml
@@ -85,6 +85,9 @@
- type: Damageable
damageContainer: StructuralInorganic
damageModifierSet: Metallic
+ - type: GuideHelp
+ guides:
+ - Networking
- type: Destructible
thresholds:
- trigger:
diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
index 556d3d430a54..fddf753a209d 100644
--- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
+++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml
@@ -152,7 +152,7 @@
- type: Clickable
- type: InteractionOutline
- type: Sprite
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
sprite: Structures/conveyor.rsi
layers:
- state: switch-off
diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml
index 3433ffc366ba..a0a2b60d6d70 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml
@@ -94,19 +94,19 @@
name: clockwork grille
description: A flimsy framework of iron rods assembled in traditional Ratvarian fashion.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille
- layers:
- - state: ratvargrille
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille
- - type: Construction
- graph: ClockGrille
- node: clockGrille
- deconstructionTarget: start
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille
+ layers:
+ - state: ratvargrille
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille
+ - type: Construction
+ graph: ClockGrille
+ node: clockGrille
+ deconstructionTarget: start
- type: entity
id: GrilleBroken
@@ -114,38 +114,41 @@
name: grille
description: A flimsy framework of iron rods. It has seen better days.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/grille.rsi
- state: grille_broken
- - type: Icon
- sprite: Structures/Walls/grille.rsi
- state: grille_broken
- - type: RCDDeconstructable
- cost: 6
- delay: 4
- fx: EffectRCDDeconstruct4
- - type: Construction
- graph: Grille
- node: grilleBroken
- deconstructionTarget: start
- - type: Fixtures # overwrite BaseStructure parent.
- - type: Physics
- bodyType: Static
- canCollide: false
- - type: Damageable
- damageContainer: StructuralInorganic
- damageModifierSet: FlimsyMetallic
- - type: Destructible
- thresholds:
- - trigger:
- !type:DamageTrigger
- damage: 10
- behaviors:
- - !type:ChangeConstructionNodeBehavior
- node: start
- - !type:DoActsBehavior
- acts: ["Destruction"]
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/grille.rsi
+ state: grille_broken
+ - type: Icon
+ sprite: Structures/Walls/grille.rsi
+ state: grille_broken
+ - type: RCDDeconstructable
+ cost: 6
+ delay: 4
+ fx: EffectRCDDeconstruct4
+ - type: Construction
+ graph: Grille
+ node: grilleBroken
+ deconstructionTarget: start
+ - type: Fixtures # overwrite BaseStructure parent.
+ - type: Physics
+ bodyType: Static
+ canCollide: false
+ - type: Tag
+ tags:
+ - ForceNoFixRotations
+ - type: Damageable
+ damageContainer: StructuralInorganic
+ damageModifierSet: FlimsyMetallic
+ - type: Destructible
+ thresholds:
+ - trigger:
+ !type:DamageTrigger
+ damage: 10
+ behaviors:
+ - !type:ChangeConstructionNodeBehavior
+ node: start
+ - !type:DoActsBehavior
+ acts: ["Destruction"]
- type: entity
id: ClockworkGrilleBroken
@@ -153,84 +156,90 @@
name: clockwork grille
description: A flimsy framework of iron rods assembled in traditional Ratvarian fashion. It has seen better days.
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- state: brokenratvargrille
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: brokenratvargrille
- - type: Construction
- graph: ClockGrille
- node: clockGrilleBroken
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: brokenratvargrille
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: brokenratvargrille
+ - type: Construction
+ graph: ClockGrille
+ node: clockGrilleBroken
- type: entity
id: GrilleDiagonal
parent: Grille
name: diagonal grille
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/grille.rsi
- layers:
- - state: grille_diagonal
- - state: electrified_diagonal
- sprite: Effects/electricity.rsi
- map: ["enum.ElectrifiedLayers.Sparks"]
- shader: unshaded
- visible: false
- - type: Icon
- sprite: Structures/Walls/grille.rsi
- state: grille_diagonal
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PolygonShape
- vertices:
- - "-0.5,-0.5"
- - "0.5,0.5"
- - "0.5,-0.5"
- mask:
- - FullTileMask
- layer:
- - WallLayer
- - type: Construction
- graph: GrilleDiagonal
- node: grilleDiagonal
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/grille.rsi
+ layers:
+ - state: grille_diagonal
+ - state: electrified_diagonal
+ sprite: Effects/electricity.rsi
+ map: ["enum.ElectrifiedLayers.Sparks"]
+ shader: unshaded
+ visible: false
+ - type: Icon
+ sprite: Structures/Walls/grille.rsi
+ state: grille_diagonal
+ - type: Tag
+ tags:
+ - Diagonal
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PolygonShape
+ vertices:
+ - "-0.5,-0.5"
+ - "0.5,0.5"
+ - "0.5,-0.5"
+ mask:
+ - FullTileMask
+ layer:
+ - WallLayer
+ - type: Construction
+ graph: GrilleDiagonal
+ node: grilleDiagonal
- type: entity
id: ClockworkGrilleDiagonal
parent: ClockworkGrille
name: diagonal clockwork grille
components:
- - type: Sprite
- drawdepth: Walls
- sprite: Structures/Walls/clockwork_grille.rsi
- layers:
- - state: ratvargrille_diagonal
- - state: electrified_diagonal
- sprite: Effects/electricity.rsi
- map: ["enum.ElectrifiedLayers.Sparks"]
- shader: unshaded
- visible: false
- - type: Icon
- sprite: Structures/Walls/clockwork_grille.rsi
- state: ratvargrille_diagonal
- - type: Fixtures
- fixtures:
- fix1:
- shape:
- !type:PolygonShape
- vertices:
- - "-0.5,-0.5"
- - "0.5,0.5"
- - "0.5,-0.5"
- mask:
- - FullTileMask
- layer:
- - WallLayer
- - type: Construction
- graph: GrilleDiagonal
- node: clockworkGrilleDiagonal
+ - type: Sprite
+ drawdepth: Walls
+ sprite: Structures/Walls/clockwork_grille.rsi
+ layers:
+ - state: ratvargrille_diagonal
+ - state: electrified_diagonal
+ sprite: Effects/electricity.rsi
+ map: ["enum.ElectrifiedLayers.Sparks"]
+ shader: unshaded
+ visible: false
+ - type: Icon
+ sprite: Structures/Walls/clockwork_grille.rsi
+ state: ratvargrille_diagonal
+ - type: Tag
+ tags:
+ - Diagonal
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PolygonShape
+ vertices:
+ - "-0.5,-0.5"
+ - "0.5,0.5"
+ - "0.5,-0.5"
+ mask:
+ - FullTileMask
+ layer:
+ - WallLayer
+ - type: Construction
+ graph: GrilleDiagonal
+ node: clockworkGrilleDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
index 79fe4368724c..57e4daed5af6 100644
--- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml
+++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml
@@ -56,9 +56,6 @@
id: WallBrick
name: brick wall
components:
- - type: Tag
- tags:
- - Wall
- type: Sprite
sprite: Structures/Walls/brick.rsi
- type: Icon
@@ -546,6 +543,7 @@
- type: Tag
tags:
- Wall
+ - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/plastitanium_diagonal.rsi
@@ -687,6 +685,9 @@
snap:
- Wall
components:
+ - type: Tag
+ tags:
+ - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/reinforced_diagonal.rsi
@@ -829,6 +830,7 @@
- type: Tag
tags:
- Wall
+ - Diagonal
- type: Sprite
drawdepth: Walls
sprite: Structures/Walls/shuttle_diagonal.rsi
diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
index 8421b6b4dc67..8cc6312fdf1a 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml
@@ -122,6 +122,9 @@
drawdepth: WallTops
sprite: Structures/Windows/clockwork_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -152,4 +155,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: clockworkWindowDiagonal
\ No newline at end of file
+ node: clockworkWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
index 9d05fbb5e236..9565ee655559 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml
@@ -64,6 +64,9 @@
drawdepth: WallTops
sprite: Structures/Windows/mining_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -91,4 +94,4 @@
- East
- type: DamageVisuals
damageOverlay:
- sprite: Structures/Windows/cracks_diagonal.rsi
\ No newline at end of file
+ sprite: Structures/Windows/cracks_diagonal.rsi
diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
index 8758e1075eba..532c18b25307 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml
@@ -122,6 +122,9 @@
drawdepth: WallTops
sprite: Structures/Windows/plasma_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -152,4 +155,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: plasmaWindowDiagonal
\ No newline at end of file
+ node: plasmaWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
index c50bc6e030b0..d544db9b800c 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml
@@ -121,6 +121,9 @@
drawdepth: WallTops
sprite: Structures/Windows/plastitanium_window_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: Icon
sprite: Structures/Windows/plastitanium_window_diagonal.rsi
state: state0
@@ -195,4 +198,4 @@
doAfterDelay: 3
- type: Damageable
damageContainer: StructuralInorganic
- damageModifierSet: RGlass
\ No newline at end of file
+ damageModifierSet: RGlass
diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
index 238b71e3fde0..9981d50ab59a 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml
@@ -129,6 +129,9 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_window_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -159,4 +162,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedWindowDiagonal
\ No newline at end of file
+ node: reinforcedWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
index 2ad0eb84105a..358943c58e34 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml
@@ -125,6 +125,9 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_plasma_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -155,4 +158,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedPlasmaWindowDiagonal
\ No newline at end of file
+ node: reinforcedPlasmaWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
index daae6a4726d7..8febce29d062 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml
@@ -122,6 +122,9 @@
drawdepth: WallTops
sprite: Structures/Windows/reinforced_uranium_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -152,4 +155,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: reinforcedUraniumWindowDiagonal
\ No newline at end of file
+ node: reinforcedUraniumWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
index f70b684abd26..75f6b1fc83f2 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml
@@ -67,6 +67,9 @@
drawdepth: WallTops
sprite: Structures/Windows/shuttle_window_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -94,4 +97,4 @@
- East
- type: DamageVisuals
damageOverlay:
- sprite: Structures/Windows/cracks_diagonal.rsi
\ No newline at end of file
+ sprite: Structures/Windows/cracks_diagonal.rsi
diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
index db9322800905..0ead248dd8fa 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml
@@ -117,6 +117,9 @@
drawdepth: WallTops
sprite: Structures/Windows/uranium_window_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -147,4 +150,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: uraniumWindowDiagonal
\ No newline at end of file
+ node: uraniumWindowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml
index 5b6530a9e5d2..861791c0896b 100644
--- a/Resources/Prototypes/Entities/Structures/Windows/window.yml
+++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml
@@ -254,6 +254,9 @@
drawdepth: WallTops
sprite: Structures/Windows/window_diagonal.rsi
state: state0
+ - type: Tag
+ tags:
+ - Diagonal
- type: IconSmooth
mode: Diagonal
key: windows
@@ -284,4 +287,4 @@
sprite: Structures/Windows/cracks_diagonal.rsi
- type: Construction
graph: WindowDiagonal
- node: windowDiagonal
\ No newline at end of file
+ node: windowDiagonal
diff --git a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
index c37a6338dc49..a99f35a7d9d1 100644
--- a/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
+++ b/Resources/Prototypes/Entities/Structures/cargo_telepad.yml
@@ -22,7 +22,7 @@
- MachineMask
- type: Sprite
sprite: Structures/cargo_telepad.rsi
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
layers:
- state: offline
map: [ "enum.CargoTelepadLayers.Base" ]
diff --git a/Resources/Prototypes/Entities/Structures/conveyor.yml b/Resources/Prototypes/Entities/Structures/conveyor.yml
index d1281ceba6d1..2e94026c15f9 100644
--- a/Resources/Prototypes/Entities/Structures/conveyor.yml
+++ b/Resources/Prototypes/Entities/Structures/conveyor.yml
@@ -14,7 +14,7 @@
- type: Sprite
sprite: Structures/conveyor.rsi
state: conveyor_started_cw
- drawdepth: FloorObjects
+ drawdepth: HighFloorObjects
- type: ApcPowerReceiver
- type: ExtensionCableReceiver
- type: Physics
diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
index bdb8862a8293..e9e9294e6364 100644
--- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
+++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml
@@ -17,7 +17,7 @@
- type: ActivatableUI
key: enum.CryostorageUIKey.Key
- type: AccessReader
- breakOnEmag: false
+ breakOnAccessBreaker: false
access: [["Cryogenics"]]
- type: InteractionOutline
- type: Cryostorage
diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml
index 21d17f02279f..07a377e00564 100644
--- a/Resources/Prototypes/Guidebook/engineering.yml
+++ b/Resources/Prototypes/Guidebook/engineering.yml
@@ -13,9 +13,28 @@
id: Construction
name: guide-entry-construction
text: "/ServerInfo/Guidebook/Engineering/Construction.xml"
- children:
+ children:
+ - Airlocks
+ - ExpandingRepairingStation
+ - WirePanels
+
+- type: guideEntry
+ id: ExpandingRepairingStation
+ name: guide-entry-expandingrepairingstation
+ text: "/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml"
+
+- type: guideEntry
+ id: Airlocks
+ name: guide-entry-airlocks
+ text: "/ServerInfo/Guidebook/Engineering/Airlocks.xml"
+ children:
- AirlockSecurity
-
+
+- type: guideEntry
+ id: WirePanels
+ name: guide-entry-wirepanels
+ text: "/ServerInfo/Guidebook/Engineering/WirePanels.xml"
+
- type: guideEntry
id: AirlockSecurity
name: guide-entry-airlock-security
@@ -26,13 +45,206 @@
name: guide-entry-atmospherics
text: "/ServerInfo/Guidebook/Engineering/Atmospherics.xml"
children:
+ - GasManipulation
+ - AtmosphericsSystems
+ - AtmosphericUpsets
+ - AtmosTools
+ - Gasses
+
+- type: guideEntry
+ id: GasManipulation
+ name: guide-entry-gasmanipulation
+ text: "/ServerInfo/Guidebook/Engineering/GasManipulation.xml"
+ children:
+ - AtmosphereInOut
+ - Pipes
+ - Pumps
+ - Valves
+ - MixingAndFiltering
+ - GasCanisters
+ - Thermomachines
+ - GasCondensing
+
+- type: guideEntry
+ id: Pipes
+ name: guide-entry-pipes
+ text: "/ServerInfo/Guidebook/Engineering/Pipes.xml"
+
+- type: guideEntry
+ id: Pumps
+ name: guide-entry-pumps
+ text: "/ServerInfo/Guidebook/Engineering/Pumps.xml"
+
+- type: guideEntry
+ id: AtmosphereInOut
+ name: guide-entry-atmosphereinout
+ text: "/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml"
+ children:
+ - AirVent
+ - PassiveVent
+ - AirInjector
+ - AirScrubber
+ - PortableScrubber
+
+- type: guideEntry
+ id: AirVent
+ name: guide-entry-airvent
+ text: "/ServerInfo/Guidebook/Engineering/AirVent.xml"
+
+- type: guideEntry
+ id: PassiveVent
+ name: guide-entry-passivevent
+ text: "/ServerInfo/Guidebook/Engineering/PassiveVent.xml"
+
+- type: guideEntry
+ id: AirInjector
+ name: guide-entry-airinjector
+ text: "/ServerInfo/Guidebook/Engineering/AirInjector.xml"
+
+- type: guideEntry
+ id: AirScrubber
+ name: guide-entry-airscrubber
+ text: "/ServerInfo/Guidebook/Engineering/AirScrubber.xml"
+
+- type: guideEntry
+ id: PortableScrubber
+ name: guide-entry-portablescrubber
+ text: "/ServerInfo/Guidebook/Engineering/PortableScrubber.xml"
+
+- type: guideEntry
+ id: Valves
+ name: guide-entry-valves
+ text: "/ServerInfo/Guidebook/Engineering/Valves.xml"
+ children:
+ - ManualValve
+ - SignalValve
+ - PneumaticValve
+ - PassiveGate
+
+- type: guideEntry
+ id: ManualValve
+ name: guide-entry-manualvalve
+ text: "/ServerInfo/Guidebook/Engineering/ManualValve.xml"
+
+- type: guideEntry
+ id: SignalValve
+ name: guide-entry-signalvalve
+ text: "/ServerInfo/Guidebook/Engineering/SignalValve.xml"
+
+- type: guideEntry
+ id: PneumaticValve
+ name: guide-entry-pneumaticvalve
+ text: "/ServerInfo/Guidebook/Engineering/PneumaticValve.xml"
+
+- type: guideEntry
+ id: PassiveGate
+ name: guide-entry-passivegate
+ text: "/ServerInfo/Guidebook/Engineering/PassiveGate.xml"
+
+- type: guideEntry
+ id: MixingAndFiltering
+ name: guide-entry-mixingandfiltering
+ text: "/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml"
+
+- type: guideEntry
+ id: GasCanisters
+ name: guide-entry-gascanisters
+ text: "/ServerInfo/Guidebook/Engineering/GasCanisters.xml"
+
+- type: guideEntry
+ id: Thermomachines
+ name: guide-entry-thermomachines
+ text: "/ServerInfo/Guidebook/Engineering/Thermomachines.xml"
+ children:
+ - Radiators
+
+- type: guideEntry
+ id: GasCondensing
+ name: guide-entry-gascondensing
+ text: "/ServerInfo/Guidebook/Engineering/GasCondensing.xml"
+
+- type: guideEntry
+ id: Radiators
+ name: guide-entry-radiators
+ text: "/ServerInfo/Guidebook/Engineering/Radiators.xml"
+
+- type: guideEntry
+ id: AtmosphericsSystems
+ name: guide-entry-atmosphericssystems
+ text: "/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml"
+ children:
+ - PipeNetworks
+ - DeviceMonitoringAndControl
+ - FireAndGasControl
+ - GasMiningAndStorage
+
+- type: guideEntry
+ id: PipeNetworks
+ name: guide-entry-pipenetworks
+ text: "/ServerInfo/Guidebook/Engineering/PipeNetworks.xml"
+
+- type: guideEntry
+ id: DeviceMonitoringAndControl
+ name: guide-entry-devicemonitoringandcontrol
+ text: "/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml"
+ children:
+ - AirAlarms
+ - AtmosphericAlertsComputer
+ - AtmosphericNetworkMonitor
+
+- type: guideEntry
+ id: AirAlarms
+ name: guide-entry-airalarms
+ text: "/ServerInfo/Guidebook/Engineering/AirAlarms.xml"
+
+- type: guideEntry
+ id: AtmosphericAlertsComputer
+ name: guide-entry-atmosphericalertscomputer
+ text: "/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml"
+
+- type: guideEntry
+ id: AtmosphericNetworkMonitor
+ name: guide-entry-atmosphericnetworkmonitor
+ text: "/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml"
+
+- type: guideEntry
+ id: FireAndGasControl
+ name: guide-entry-fireandgascontrol
+ text: "/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml"
+
+- type: guideEntry
+ id: GasMiningAndStorage
+ name: guide-entry-gasminingandstorage
+ text: "/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml"
+
+- type: guideEntry
+ id: AtmosphericUpsets
+ name: guide-entry-atmosphericupsets
+ text: "/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml"
+ children:
- Fires
+ - Spacing
- type: guideEntry
id: Fires
name: guide-entry-fires
text: "/ServerInfo/Guidebook/Engineering/Fires.xml"
+- type: guideEntry
+ id: Spacing
+ name: guide-entry-spacing
+ text: "/ServerInfo/Guidebook/Engineering/Spacing.xml"
+
+- type: guideEntry
+ id: AtmosTools
+ name: guide-entry-atmostools
+ text: "/ServerInfo/Guidebook/Engineering/AtmosTools.xml"
+
+- type: guideEntry
+ id: Gasses
+ name: guide-entry-gasses
+ text: "/ServerInfo/Guidebook/Engineering/Gasses.xml"
+
- type: guideEntry
id: ShuttleCraft
name: guide-entry-shuttle-craft
@@ -43,14 +255,8 @@
name: guide-entry-networking
text: "/ServerInfo/Guidebook/Engineering/Networking.xml"
children:
- - NetworkConfigurator
- AccessConfigurator
-- type: guideEntry
- id: NetworkConfigurator
- name: guide-entry-network-configurator
- text: "/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml"
-
- type: guideEntry
id: AccessConfigurator
name: guide-entry-access-configurator
@@ -60,12 +266,44 @@
id: Power
name: guide-entry-power
text: "/ServerInfo/Guidebook/Engineering/Power.xml"
+ children:
+ - Generators
+ - InspectingPower
+ - PowerStorage
+ - Ramping
+ - VoltageNetworks
+
+- type: guideEntry
+ id: InspectingPower
+ name: guide-entry-inspectingpower
+ text: "/ServerInfo/Guidebook/Engineering/InspectingPower.xml"
+
+- type: guideEntry
+ id: PowerStorage
+ name: guide-entry-powerstorage
+ text: "/ServerInfo/Guidebook/Engineering/PowerStorage.xml"
+
+- type: guideEntry
+ id: Ramping
+ name: guide-entry-ramping
+ text: "/ServerInfo/Guidebook/Engineering/Ramping.xml"
+
+- type: guideEntry
+ id: VoltageNetworks
+ name: guide-entry-voltagenetworks
+ text: "/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml"
+
+- type: guideEntry
+ id: Generators
+ name: guide-entry-generators
+ text: "/ServerInfo/Guidebook/Engineering/Generators.xml"
children:
- PortableGenerator
- AME
- - Singularity
+ - SingularityTeslaEngine
- TEG
- RTG
+ - SolarPanels
- type: guideEntry
id: AME
@@ -73,9 +311,22 @@
text: "/ServerInfo/Guidebook/Engineering/AME.xml"
- type: guideEntry
- id: Singularity
- name: guide-entry-singularity
- text: "/ServerInfo/Guidebook/Engineering/Singularity.xml"
+ id: SingularityTeslaEngine
+ name: guide-entry-singularityteslaengine
+ text: "/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml"
+ children:
+ - SingularityEngine
+ - TeslaEngine
+
+- type: guideEntry
+ id: SingularityEngine
+ name: guide-entry-singularityengine
+ text: "/ServerInfo/Guidebook/Engineering/SingularityEngine.xml"
+
+- type: guideEntry
+ id: TeslaEngine
+ name: guide-entry-teslaengine
+ text: "/ServerInfo/Guidebook/Engineering/TeslaEngine.xml"
- type: guideEntry
id: TEG
@@ -91,3 +342,8 @@
id: PortableGenerator
name: guide-entry-portable-generator
text: "/ServerInfo/Guidebook/Engineering/PortableGenerator.xml"
+
+- type: guideEntry
+ id: SolarPanels
+ name: guide-entry-solarpanels
+ text: "/ServerInfo/Guidebook/Engineering/SolarPanels.xml"
diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml
index 7349f3c3d724..de7be63d2b85 100644
--- a/Resources/Prototypes/Hydroponics/seeds.yml
+++ b/Resources/Prototypes/Hydroponics/seeds.yml
@@ -1136,7 +1136,7 @@
idealLight: 9
idealHeat: 298
chemicals:
- Frostoil:
+ FrostOil:
Min: 1
Max: 10
PotencyDivisor: 10
diff --git a/Resources/Prototypes/Magic/teleport_spells.yml b/Resources/Prototypes/Magic/teleport_spells.yml
index 6f1ed9a6e43a..6e359cc611f2 100644
--- a/Resources/Prototypes/Magic/teleport_spells.yml
+++ b/Resources/Prototypes/Magic/teleport_spells.yml
@@ -16,3 +16,28 @@
sprite: Objects/Magic/magicactions.rsi
state: blink
event: !type:TeleportSpellEvent
+
+# TODO: Second level upgrade sometime that allows swapping with all objects
+- type: entity
+ id: ActionVoidApplause
+ name: Void Applause
+ description: Clap your hands and swap places with the target.
+ components:
+ - type: EntityTargetAction
+ useDelay: 15
+ range: 16
+ sound: !type:SoundPathSpecifier
+ path: /Audio/Magic/Eldritch/voidblink.ogg
+ itemIconStyle: BigAction
+ whitelist:
+ components:
+ - Body
+ canTargetSelf: false
+ interactOnMiss: false
+ checkCanAccess: false
+ repeat: false
+ icon:
+ sprite: Objects/Magic/Eldritch/eldritch_actions.rsi
+ state: voidblink
+ event: !type:VoidApplauseSpellEvent
+ effect: EffectVoidBlink
diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml
index 0025273c003c..bce479bab4b3 100644
--- a/Resources/Prototypes/Maps/Pools/default.yml
+++ b/Resources/Prototypes/Maps/Pools/default.yml
@@ -5,6 +5,7 @@
- Bagel
- Box
- Cog
+ - Convex
- Core
- Elkridge
- Fland
diff --git a/Resources/Prototypes/Maps/amber.yml b/Resources/Prototypes/Maps/amber.yml
index 6d6743123fa9..02e277ec629c 100644
--- a/Resources/Prototypes/Maps/amber.yml
+++ b/Resources/Prototypes/Maps/amber.yml
@@ -3,63 +3,64 @@
mapName: 'Amber'
mapPath: /Maps/amber.yml
minPlayers: 7
- maxPlayers: 50
+ maxPlayers: 60
stations:
Amber:
stationProto: StandardNanotrasenStation
components:
- - type: StationNameSetup
- mapNameTemplate: '{0} Amber Station {1}'
- nameGenerator:
- !type:NanotrasenNameGenerator
- prefixCreator: '14-SB'
- - type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/emergency_amber.yml
- - type: StationJobs
- availableJobs:
- #service
- Captain: [ 1, 1 ]
- HeadOfPersonnel: [ 1, 1 ]
- Bartender: [ 1, 1 ]
- Botanist: [ 2, 2 ]
- Chef: [ 1, 1 ]
- Janitor: [ 2, 2 ]
- Chaplain: [ 1, 1 ]
- Librarian: [ 1, 1 ]
- ServiceWorker: [ 1, 3 ]
- Reporter: [ 1, 1 ]
- #engineering
- ChiefEngineer: [ 1, 1 ]
- AtmosphericTechnician: [ 2, 2 ]
- StationEngineer: [ 2, 4 ]
- TechnicalAssistant: [ 1, 1 ]
- #medical
- ChiefMedicalOfficer: [ 1, 1 ]
- Chemist: [ 2, 2 ]
- MedicalDoctor: [ 2, 4 ]
- Paramedic: [ 2, 2 ]
- MedicalIntern: [ 1, 2 ]
- Psychologist: [ 1, 1 ]
- #science
- ResearchDirector: [ 1, 1 ]
- Scientist: [ 4, 4 ]
- ResearchAssistant: [ 1, 2 ]
- #security
- HeadOfSecurity: [ 1, 1 ]
- Warden: [ 1, 1 ]
- SecurityOfficer: [ 4, 4 ]
- Detective: [ 1, 1 ]
- SecurityCadet: [ 1, 1 ]
- Lawyer: [ 1, 1 ]
- #supply
- Quartermaster: [ 1, 1 ]
- SalvageSpecialist: [ 2, 3 ]
- CargoTechnician: [ 2, 3 ]
- #civilian
- Passenger: [ -1, -1 ]
- Clown: [ 1, 1 ]
- Mime: [ 1, 1 ]
- Musician: [ 1, 1 ]
- #silicon
- StationAi: [ 1, 1 ]
- Borg: [ 2, 2 ]
+ - type: StationNameSetup
+ mapNameTemplate: '{0} Amber Station {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14-SB'
+ - type: StationEmergencyShuttle
+ emergencyShuttlePath: /Maps/Shuttles/emergency_amber.yml
+ - type: StationJobs
+ availableJobs:
+ # command
+ Captain: [ 1, 1 ]
+ #service
+ HeadOfPersonnel: [ 1, 1 ]
+ Bartender: [ 1, 1 ]
+ Botanist: [ 2, 2 ]
+ Chef: [ 1, 1 ]
+ Janitor: [ 2, 2 ]
+ Chaplain: [ 1, 1 ]
+ Librarian: [ 1, 1 ]
+ ServiceWorker: [ 2, 2 ]
+ #engineering
+ ChiefEngineer: [ 1, 1 ]
+ AtmosphericTechnician: [ 2, 2 ]
+ StationEngineer: [ 2, 4 ]
+ TechnicalAssistant: [ 2, 2 ]
+ #medical
+ ChiefMedicalOfficer: [ 1, 1 ]
+ Chemist: [ 2, 2 ]
+ MedicalDoctor: [ 4, 4 ]
+ Paramedic: [ 2, 2 ]
+ MedicalIntern: [ 2, 2 ]
+ Psychologist: [ 1, 1 ]
+ #science
+ ResearchDirector: [ 1, 1 ]
+ Scientist: [ 4, 4 ]
+ ResearchAssistant: [ 2, 2 ]
+ #security
+ HeadOfSecurity: [ 1, 1 ]
+ Warden: [ 1, 1 ]
+ SecurityOfficer: [ 4, 4 ]
+ Detective: [ 1, 1 ]
+ SecurityCadet: [ 2, 2 ]
+ Lawyer: [ 2, 2 ]
+ #supply
+ Quartermaster: [ 1, 1 ]
+ SalvageSpecialist: [ 3, 3 ]
+ CargoTechnician: [ 3, 3 ]
+ #civilian
+ Passenger: [ -1, -1 ]
+ Clown: [ 1, 1 ]
+ Mime: [ 1, 1 ]
+ Musician: [ 1, 1 ]
+ Reporter: [ 1, 1 ]
+ #silicon
+ StationAi: [ 1, 1 ]
+ Borg: [ 3, 3 ]
diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml
index 37314df1304b..e74e47eeb123 100644
--- a/Resources/Prototypes/Maps/box.yml
+++ b/Resources/Prototypes/Maps/box.yml
@@ -46,9 +46,9 @@
#security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 5, 5 ]
+ SecurityOfficer: [ 5, 7 ]
Detective: [ 1, 1 ]
- SecurityCadet: [ 4, 4 ]
+ SecurityCadet: [ 2, 4 ]
Lawyer: [ 2, 2 ]
#supply
Quartermaster: [ 1, 1 ]
@@ -61,5 +61,4 @@
Musician: [ 1, 1 ]
#silicon
StationAi: [ 1, 1 ]
- Borg: [ 2, 2 ]
-
+ Borg: [ 2, 2 ]
\ No newline at end of file
diff --git a/Resources/Prototypes/Maps/convex.yml b/Resources/Prototypes/Maps/convex.yml
new file mode 100644
index 000000000000..816ece623f73
--- /dev/null
+++ b/Resources/Prototypes/Maps/convex.yml
@@ -0,0 +1,64 @@
+- type: gameMap
+ id: Convex
+ mapName: 'Convex'
+ mapPath: /Maps/convex.yml
+ minPlayers: 75
+ stations:
+ Convex:
+ stationProto: StandardNanotrasenStation
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: '{0} Convex Recreational Complex {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14-SM'
+ - type: StationEmergencyShuttle
+ emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml
+ - type: StationJobs
+ availableJobs:
+ #service
+ Captain: [ 1, 1 ]
+ HeadOfPersonnel: [ 1, 1 ]
+ Bartender: [ 2, 2 ]
+ Botanist: [ 3, 3 ]
+ Chef: [ 2, 2 ]
+ Janitor: [ 3, 3 ]
+ Chaplain: [ 1, 1 ]
+ Librarian: [ 1, 1 ]
+ ServiceWorker: [ 3, 3 ]
+ Reporter: [ 1, 2 ]
+ #engineering
+ ChiefEngineer: [ 1, 1 ]
+ AtmosphericTechnician: [ 3, 3 ]
+ StationEngineer: [ 5, 5 ]
+ TechnicalAssistant: [ 4, 4 ]
+ #medical
+ ChiefMedicalOfficer: [ 1, 1 ]
+ Chemist: [ 3, 3 ]
+ MedicalDoctor: [ 6, 6 ]
+ Paramedic: [ 1, 1 ]
+ MedicalIntern: [ 4, 4 ]
+ #science
+ ResearchDirector: [ 1, 1 ]
+ Scientist: [ 5, 5 ]
+ ResearchAssistant: [ 6, 6 ]
+ #security
+ HeadOfSecurity: [ 1, 1 ]
+ Warden: [ 1, 1 ]
+ SecurityOfficer: [ 8, 8 ]
+ Detective: [ 1, 1 ]
+ SecurityCadet: [ 4, 4 ]
+ Lawyer: [ 2, 2 ]
+ #supply
+ Quartermaster: [ 1, 1 ]
+ SalvageSpecialist: [ 3, 3 ]
+ CargoTechnician: [ 4, 4 ]
+ #civilian
+ Passenger: [ -1, -1 ]
+ Clown: [ 1, 1 ]
+ Mime: [ 1, 1 ]
+ Musician: [ 1, 1 ]
+ Boxer: [2, 2]
+ #silicon
+ StationAi: [ 1, 1 ]
+ Borg: [ 3, 3 ]
diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml
index c8a367d17cdf..124db0327b5f 100644
--- a/Resources/Prototypes/Maps/loop.yml
+++ b/Resources/Prototypes/Maps/loop.yml
@@ -38,6 +38,7 @@
Chemist: [ 3, 3 ]
MedicalDoctor: [ 4, 5 ]
Paramedic: [ 2, 2 ]
+ Psychologist: [ 1, 1 ]
MedicalIntern: [ 4, 4 ]
#science
ResearchDirector: [ 1, 1 ]
diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml
index 40f6b0700210..d9770af26e0c 100644
--- a/Resources/Prototypes/Maps/marathon.yml
+++ b/Resources/Prototypes/Maps/marathon.yml
@@ -46,7 +46,7 @@
#security
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 4, 4 ]
+ SecurityOfficer: [ 8, 8 ]
Detective: [ 1, 1 ]
SecurityCadet: [ 4, 4 ]
Lawyer: [ 2, 2 ]
diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml
index c271bf40ce64..1932d6651f03 100644
--- a/Resources/Prototypes/Maps/meta.yml
+++ b/Resources/Prototypes/Maps/meta.yml
@@ -3,6 +3,7 @@
mapName: 'Meta Station'
mapPath: /Maps/meta.yml
minPlayers: 50
+ maxPlayers: 80
stations:
Meta:
stationProto: StandardNanotrasenStation
@@ -16,7 +17,7 @@
emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml
- type: StationJobs
availableJobs:
- #service
+ #service (18)
Captain: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
Bartender: [ 2, 2 ]
@@ -27,37 +28,37 @@
Librarian: [ 1, 1 ]
ServiceWorker: [ 2, 2 ]
Reporter: [ 2, 2 ]
- #engineering
+ #engineering (11)
ChiefEngineer: [ 1, 1 ]
AtmosphericTechnician: [ 3, 3 ]
- StationEngineer: [ 6, 8 ]
- TechnicalAssistant: [ 6, 8 ]
- #medical
+ StationEngineer: [ 5, 7 ]
+ TechnicalAssistant: [ 4, 4 ]
+ #medical (11)
ChiefMedicalOfficer: [ 1, 1 ]
- Chemist: [ 2, 3 ]
+ Chemist: [ 2, 2 ]
MedicalDoctor: [ 4, 6 ]
- MedicalIntern: [ 4, 6 ]
+ MedicalIntern: [ 4, 4 ]
Paramedic: [ 1, 2 ]
- #science
+ #science (9)
ResearchDirector: [ 1, 1 ]
- Scientist: [ 5, 7 ]
- ResearchAssistant: [ 3, 6 ]
- #security
+ Scientist: [ 6, 8 ]
+ ResearchAssistant: [ 4, 4 ]
+ #security (12)
HeadOfSecurity: [ 1, 1 ]
Warden: [ 1, 1 ]
- SecurityOfficer: [ 6, 6 ]
+ SecurityOfficer: [ 7, 7 ]
Detective: [ 1, 1 ]
SecurityCadet: [ 4, 4 ]
Lawyer: [ 2, 2 ]
- #supply
+ #supply (10)
Quartermaster: [ 1, 1 ]
SalvageSpecialist: [ 3, 3 ]
- CargoTechnician: [ 3, 5 ]
- #civilian
+ CargoTechnician: [ 4, 6 ]
+ #civilian (3+)
Passenger: [ -1, -1 ]
Clown: [ 1, 1 ]
Mime: [ 1, 1 ]
Musician: [ 1, 1 ]
- #silicon
+ #silicon (5)
StationAi: [ 1, 1 ]
Borg: [ 4, 4 ]
diff --git a/Resources/Prototypes/Maps/plasma.yml b/Resources/Prototypes/Maps/plasma.yml
index 85e8661200c9..17cbb5c9af5a 100644
--- a/Resources/Prototypes/Maps/plasma.yml
+++ b/Resources/Prototypes/Maps/plasma.yml
@@ -3,6 +3,7 @@
mapName: 'Plasma'
mapPath: /Maps/plasma.yml
minPlayers: 30
+ maxPlayers: 80
stations:
Plasma:
stationProto: StandardNanotrasenStation
diff --git a/Resources/Prototypes/Parallaxes/plasma.yml b/Resources/Prototypes/Parallaxes/plasma.yml
new file mode 100644
index 000000000000..6110248539d7
--- /dev/null
+++ b/Resources/Prototypes/Parallaxes/plasma.yml
@@ -0,0 +1,53 @@
+- type: parallax
+ id: PlasmaStation
+ layers:
+ - texture:
+ !type:ImageParallaxTextureSource
+ path: "/Textures/Parallaxes/layer1.png"
+ slowness: 0.998046875
+ scale: "1, 1"
+ - texture:
+ !type:GeneratedParallaxTextureSource
+ id: "hq_wizard_stars"
+ configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml"
+ slowness: 0.996625
+ - texture:
+ !type:GeneratedParallaxTextureSource
+ id: "hq_wizard_stars_dim"
+ configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml"
+ slowness: 0.989375
+ - texture:
+ !type:GeneratedParallaxTextureSource
+ id: "hq_wizard_stars_faster"
+ configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml"
+ slowness: 0.987265625
+ - texture:
+ !type:GeneratedParallaxTextureSource
+ id: "hq_wizard_stars_dim_faster"
+ configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml"
+ slowness: 0.984352
+ - texture:
+ !type:ImageParallaxTextureSource
+ path: "/Textures/Parallaxes/planet.png"
+ slowness: 0.998046875
+ scale: "2, 2"
+ controlHomePosition: "361, 292"
+ worldHomePosition: "0, 0"
+ tiled: false
+ - texture:
+ !type:ImageParallaxTextureSource
+ path: "/Textures/Parallaxes/Asteroids.png"
+ slowness: 0.968046875
+ scale: "1.3, 1.3"
+ - texture:
+ !type:ImageParallaxTextureSource
+ path: "/Textures/Parallaxes/Asteroids.png"
+ slowness: 0.938046875
+ scale: "1, 1"
+ layersLQ:
+ - texture:
+ !type:GeneratedParallaxTextureSource
+ id: ""
+ configPath: "/Prototypes/Parallaxes/parallax_config.toml"
+ slowness: 0.875
+ layersLQUseHQ: false
diff --git a/Resources/Prototypes/Procedural/Themes/maints.yml b/Resources/Prototypes/Procedural/Themes/maints.yml
new file mode 100644
index 000000000000..39ab39b0ea6f
--- /dev/null
+++ b/Resources/Prototypes/Procedural/Themes/maints.yml
@@ -0,0 +1,169 @@
+- type: dungeonRoom
+ id: Maints5x5a
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 0,0
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5b
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 6,0
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5c
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 12,0
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5d
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 18,0
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5e
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 0,6
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5f
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 6,6
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5g
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 12,6
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5h
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 18,6
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5i
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 0,12
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5j
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 6,12
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5k
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 12,12
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5l
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 18,12
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5m
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 0,18
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5n
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 6,18
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5o
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 12,18
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5p
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 18,18
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5q
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 0,24
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5r
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 6,24
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5s
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 12,24
+ tags:
+ - Maints
+
+- type: dungeonRoom
+ id: Maints5x5t
+ size: 5,5
+ atlas: /Maps/Dungeon/maints.yml
+ offset: 18,24
+ tags:
+ - Maints
+
+- type: entity
+ id: MaintsRoomMarker
+ parent: BaseRoomMarker
+ name: Maints interior marker
+ components:
+ - type: RoomFill
+ roomWhitelist:
+ tags:
+ - Maints
diff --git a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
index 4cc2810792f6..f419605307e3 100644
--- a/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
+++ b/Resources/Prototypes/Reagents/Consumable/Food/condiments.yml
@@ -18,6 +18,15 @@
color: darkred
recognizable: true
+- type: reagent
+ id: Coldsauce
+ name: reagent-name-coldsauce
+ group: Foods
+ desc: reagent-desc-coldsauce
+ physicalDesc: reagent-physical-desc-cold
+ flavor: cold
+ color: skyblue
+
- type: reagent
id: Cornoil
name: reagent-name-cornoil
@@ -28,15 +37,6 @@
color: yellow
recognizable: true
-- type: reagent
- id: Frostoil
- name: reagent-name-frostoil
- group: Foods
- desc: reagent-desc-frostoil
- physicalDesc: reagent-physical-desc-cold
- flavor: cold
- color: skyblue
-
- type: reagent
id: HorseradishSauce
name: reagent-name-horseradish-sauce
diff --git a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
index d6f63055396c..d2cf44e6d64b 100644
--- a/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
+++ b/Resources/Prototypes/Reagents/Consumable/Food/ingredients.yml
@@ -274,3 +274,33 @@
- !type:AdjustReagent
reagent: Nutriment
amount: 0.1
+
+- type: reagent
+ id: FrostOil
+ name: reagent-name-frost-oil
+ group: Foods
+ desc: reagent-desc-frost-oil
+ physicalDesc: reagent-physical-desc-oily
+ flavor: cold
+ color: skyblue
+ metabolisms:
+ Food:
+ effects:
+ - !type:AdjustReagent
+ reagent: Nutriment #Oils enhance nutrition
+ amount: 0.75
+ Poison:
+ effects:
+ - !type:AdjustTemperature
+ amount: -250 # thermal energy, not temp
+ - !type:HealthChange
+ conditions:
+ - !type:ReagentThreshold
+ min: 5
+ damage:
+ types:
+ Cold: 1
+ - !type:PopupMessage
+ type: Local
+ messages: [ "frost-oil-effect-light-cold" ]
+ probability: 0.2
diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml
index 7cfe0e2283f2..91030c090cba 100644
--- a/Resources/Prototypes/Reagents/fun.yml
+++ b/Resources/Prototypes/Reagents/fun.yml
@@ -399,3 +399,21 @@
conditions:
- !type:ReagentThreshold
min: 50
+
+- type: reaction
+ id: WehHewExplosion
+ impact: High
+ priority: 20
+ reactants:
+ JuiceThatMakesYouWeh:
+ amount: 1
+ JuiceThatMakesYouHew:
+ amount: 1
+ effects:
+ - !type:ExplosionReactionEffect
+ explosionType: Radioactive
+ maxIntensity: 200
+ intensityPerUnit: 2
+ intensitySlope: 1
+ maxTotalIntensity: 250
+ tileBreakScale: 0.00001
diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
index f27b751572bb..8dee23d0217d 100644
--- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
+++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml
@@ -25,6 +25,24 @@
steps:
- tool: Screwing
doAfter: 2
+ - to: solarpanelplasma
+ conditions:
+ - !type:EntityAnchored
+ steps:
+ - material: PlasmaGlass
+ amount: 2
+ doAfter: 0.5
+ completed:
+ - !type:SnapToGrid
+ - to: solarpaneluranium
+ conditions:
+ - !type:EntityAnchored
+ steps:
+ - material: UraniumGlass
+ amount: 2
+ doAfter: 0.5
+ completed:
+ - !type:SnapToGrid
- to: solarpanel
conditions:
- !type:EntityAnchored
@@ -42,7 +60,7 @@
name: solar tracker electronics
icon:
sprite: Objects/Misc/module.rsi
- state: id_mod
+ state: engineering
doAfter: 1
- material: Glass
amount: 2
@@ -50,6 +68,40 @@
completed:
- !type:SnapToGrid
+ - node: solarpanelplasma
+ entity: SolarPanelPlasma
+ edges:
+ - to: solarassembly
+ completed:
+ - !type:SnapToGrid
+ southRotation: true
+ - !type:SpawnPrototype
+ prototype: SheetPGlass1
+ amount: 2
+ conditions:
+ - !type:EntityAnchored
+ anchored: true
+ steps:
+ - tool: Prying
+ doAfter: 0.5
+
+ - node: solarpaneluranium
+ entity: SolarPanelUranium
+ edges:
+ - to: solarassembly
+ completed:
+ - !type:SnapToGrid
+ southRotation: true
+ - !type:SpawnPrototype
+ prototype: SheetUGlass1
+ amount: 2
+ conditions:
+ - !type:EntityAnchored
+ anchored: true
+ steps:
+ - tool: Prying
+ doAfter: 0.5
+
- node: solarpanel
entity: SolarPanel
edges:
@@ -84,6 +136,40 @@
- tool: Prying
doAfter: 0.5
+ - node: solarpanelplasma_broken
+ entity: SolarPanelPlasmaBroken
+ edges:
+ - to: solarassembly
+ completed:
+ - !type:SnapToGrid
+ southRotation: true
+ - !type:SpawnPrototype
+ prototype: ShardGlassPlasma
+ amount: 2
+ conditions:
+ - !type:EntityAnchored
+ anchored: true
+ steps:
+ - tool: Prying
+ doAfter: 0.5
+
+ - node: solarpaneluranium_broken
+ entity: SolarPanelUraniumBroken
+ edges:
+ - to: solarassembly
+ completed:
+ - !type:SnapToGrid
+ southRotation: true
+ - !type:SpawnPrototype
+ prototype: ShardGlassUranium
+ amount: 2
+ conditions:
+ - !type:EntityAnchored
+ anchored: true
+ steps:
+ - tool: Prying
+ doAfter: 0.5
+
- node: solartracker
entity: SolarTracker
edges:
diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml
index 92bea76ffdaa..cecb2495551a 100644
--- a/Resources/Prototypes/Recipes/Construction/utilities.yml
+++ b/Resources/Prototypes/Recipes/Construction/utilities.yml
@@ -785,7 +785,7 @@
- type: construction
id: PressureControlledValve
name: pneumatic valve
- description: Valve controlled by pressure.
+ description: A bidirectional valve controlled by pressure. Opens if the output pipe is lower than the pressure of the control pipe by 101.325 kPa.
graph: GasTrinary
startNode: start
targetNode: pneumaticvalve
diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml
new file mode 100644
index 000000000000..0bb82cf26111
--- /dev/null
+++ b/Resources/Prototypes/Recipes/Crafting/Graphs/goliath_hardsuit.yml
@@ -0,0 +1,22 @@
+- type: constructionGraph
+ id: HardsuitGoliath
+ start: start
+ graph:
+ - node: start
+ edges:
+ - to: hardsuitGoliath
+ steps:
+ - tag: HardsuitSpatio
+ icon:
+ sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi
+ state: icon
+ name: spationaut hardsuit
+ doAfter: 10
+ - material: Durathread
+ amount: 5
+ doAfter: 10
+ - material: GoliathHide
+ amount: 12
+ doAfter: 10
+ - node: hardsuitGoliath
+ entity: ClothingOuterHardsuitGoliath
diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml
index 55ffdf5176f8..9a203a4d626d 100644
--- a/Resources/Prototypes/Recipes/Crafting/improvised.yml
+++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml
@@ -240,3 +240,16 @@
icon:
sprite: Objects/Storage/petcarrier.rsi
state: icon
+
+- type: construction
+ name: goliath hardsuit
+ id: HardsuitGoliath
+ graph: HardsuitGoliath
+ startNode: start
+ targetNode: hardsuitGoliath
+ category: construction-category-clothing
+ objectType: Item
+ description: A lightweight hardsuit, adorned with a patchwork of thick, chitinous goliath hide.
+ icon:
+ sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi
+ state: icon
diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml
index 19b02993b27e..b1e8cee32ded 100644
--- a/Resources/Prototypes/Recipes/Lathes/misc.yml
+++ b/Resources/Prototypes/Recipes/Lathes/misc.yml
@@ -190,6 +190,11 @@
id: FauxTileAstroSnow
result: FloorTileItemAstroSnow
+- type: latheRecipe
+ parent: BaseFauxTileRecipe
+ id: FauxTileAstroAsteroidSand
+ result: FloorTileItemAstroAsteroidSand
+
- type: latheRecipe
id: FloorGreenCircuit
result: FloorTileItemGCircuit4
diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml
index 33227b47d36d..7e9f8c7d2244 100644
--- a/Resources/Prototypes/Recipes/Reactions/drinks.yml
+++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml
@@ -519,7 +519,7 @@
reactants:
Beer:
amount: 10
- Frostoil:
+ FrostOil:
amount: 1
products:
IcedBeer: 10
diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml
index 7d524a9c7ae0..6d32948f8942 100644
--- a/Resources/Prototypes/Recipes/Reactions/food.yml
+++ b/Resources/Prototypes/Recipes/Reactions/food.yml
@@ -284,6 +284,18 @@
products:
Hotsauce: 3
+- type: reaction
+ id: CookingColdsauce
+ reactants:
+ JuiceTomato:
+ amount: 1
+ TableSalt:
+ amount: 1
+ FrostOil:
+ amount: 1
+ products:
+ Coldsauce: 3
+
- type: reaction
id: CookingVinegar
reactants:
diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml
index 2bd8ee5fa239..cdb82255448e 100644
--- a/Resources/Prototypes/Research/civilianservices.yml
+++ b/Resources/Prototypes/Research/civilianservices.yml
@@ -114,6 +114,7 @@
- FauxTileJungleAstroGrass
- FauxTileAstroIce
- FauxTileAstroSnow
+ - FauxTileAstroAsteroidSand
- type: technology
id: BiochemicalStasis
diff --git a/Resources/Prototypes/SoundCollections/emotes.yml b/Resources/Prototypes/SoundCollections/emotes.yml
index 04d2b3b2e8e2..c93a46572b10 100644
--- a/Resources/Prototypes/SoundCollections/emotes.yml
+++ b/Resources/Prototypes/SoundCollections/emotes.yml
@@ -30,6 +30,11 @@
- /Audio/Effects/Emotes/clap3.ogg
- /Audio/Effects/Emotes/clap4.ogg
+- type: soundCollection
+ id: ClapSingle
+ files:
+ - /Audio/Effects/Emotes/clap-single.ogg
+
- type: soundCollection
id: Snaps
files:
diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml
index 65fd672e1aa8..b5d5fb7dc015 100644
--- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml
+++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml
@@ -623,6 +623,12 @@
spawn: FloorTileItemAstroSnow
maxCount: 30
+- type: stack
+ id: FloorTileAstroAsteroidSand
+ name: asteroid astro-sand floor
+ spawn: FloorTileItemAstroAsteroidSand
+ maxCount: 30
+
- type: stack
id: FloorTileWoodLarge
name: large wood floor
diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml
index 0a7d2c0af6e9..6c8714be2032 100644
--- a/Resources/Prototypes/Tiles/floors.yml
+++ b/Resources/Prototypes/Tiles/floors.yml
@@ -1915,6 +1915,17 @@
deconstructTools: [ Prying ]
itemDrop: FloorTileItemAstroSnow
+# Asteroid Sand
+- type: tile
+ id: FloorAstroAsteroidSand
+ name: tiles-astro-asteroid-sand
+ parent: FloorAsteroidSand
+ baseTurf: Plating
+ isSubfloor: false
+ deconstructTools: [ Prying ]
+ itemDrop: FloorTileItemAstroAsteroidSand
+ weather: false
+
- type: tile
id: FloorWoodLarge
name: tiles-wood-large
diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml
index c562c2fec0e3..b7b3ba1ddc47 100644
--- a/Resources/Prototypes/Traits/disabilities.yml
+++ b/Resources/Prototypes/Traits/disabilities.yml
@@ -64,3 +64,11 @@
maxSoundDistance: 7
sounds:
collection: Paracusia
+
+- type: trait
+ id: PainNumbness
+ name: trait-painnumbness-name
+ description: trait-painnumbness-desc
+ category: Disabilities
+ components:
+ - type: PainNumbness
diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml
index 9fab1aeed807..82b4b4057470 100644
--- a/Resources/Prototypes/Voice/speech_emote_sounds.yml
+++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml
@@ -438,6 +438,8 @@
sounds:
Clap:
collection: Claps
+ ClapSingle:
+ collection: ClapSingle
Snap:
collection: Snaps
params:
@@ -450,6 +452,9 @@
sounds:
Clap:
path: /Audio/Voice/Diona/diona_clap.ogg
+ # TODO: Replace this with a similar wood themed single clap
+ ClapSingle:
+ collection: ClapSingle
Snap:
path: /Audio/Voice/Diona/diona_snap.ogg
params:
@@ -468,6 +473,8 @@
variation: 0.125
Clap:
collection: Claps
+ ClapSingle:
+ collection: ClapSingle
Snap:
collection: Snaps
params:
diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml
index 9de4bb2b7019..a346f8614841 100644
--- a/Resources/Prototypes/Voice/speech_emotes.yml
+++ b/Resources/Prototypes/Voice/speech_emotes.yml
@@ -214,11 +214,26 @@
- BorgChassis
chatMessages: ["chat-emote-msg-clap"]
chatTriggers:
- - clap
- claps
- clapping
- clapped
+- type: emote
+ id: ClapSingle
+ name: chat-emote-name-clap-single
+ category: Hands
+ icon: Interface/Emotes/clap.png #TODO: Needs a sprite that distinguishes it better from clap
+ whitelist:
+ components:
+ - Hands
+ blacklist:
+ components:
+ - BorgChassis
+ chatMessages: [ "chat-emote-msg-clap-single" ]
+ chatTriggers:
+ - clap
+ - claps their hands together
+
- type: emote
id: Snap
name: chat-emote-name-snap
diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml
index ea2dffbe6a30..805eb4d5239c 100644
--- a/Resources/Prototypes/tags.yml
+++ b/Resources/Prototypes/tags.yml
@@ -1,5 +1,8 @@
# PUT YOUR TAGS IN ALPHABETICAL ORDER
+- type: Tag
+ id: AccessBreakerImmune
+
- type: Tag
id: AirAlarm
@@ -440,6 +443,9 @@
- type: Tag
id: Debug
+- type: Tag
+ id: Diagonal
+
- type: Tag
id: Dice
@@ -656,6 +662,9 @@
- type: Tag
id: Hardsuit # Prevent melee injectors that can't penetrate hardsuits from injecting the wearer (nettles)
+- type: Tag
+ id: HardsuitSpatio
+
- type: Tag
id: Haunted
@@ -837,6 +846,9 @@
- type: Tag
id: MailingUnitElectronics
+- type: Tag
+ id: Maints
+
- type: Tag
id: Matchstick
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AME.xml b/Resources/ServerInfo/Guidebook/Engineering/AME.xml
index 4b55ce85c552..2881e1c0c561 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/AME.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/AME.xml
@@ -1,7 +1,8 @@
# Antimatter Engine (AME)
+ The Antimatter Engine is a short-term support generator for the station, providing a sizable chunk of power for a limited time.
- The AME is one of the simplest engines available. You put together the multi-tile structure, stick some fuel into it, and you're all set. This doesn't mean it is perfectly safe though; you may need to deal with the AME overheating.
+ It's mainly used to assist engineers in starting up bigger engines like the [textlink="Singularity Engine" link="SingularityEngine"] or [textlink="Tesla Engine" link="TeslaEngine"], by supplementing the station's [textlink="batteries" link="PowerStorage"] with partial power to extend their runtime.
## Construction
Required parts:
@@ -11,15 +12,65 @@
- To assemble an AME, start by wrenching down the controller on the near end of a HV wire. On most stations, there's catwalks to assist with this. From there, start putting down a 3x3 or larger square of AME parts in preparation for construction, making sure to maximize the number of "center" pieces that are surrounded on all 8 sides.
+ The AME Controller is the part of the AME that outputs power to the station's grid through an [textlink="HV connection" link="VoltageNetworks"].
+ Because of this, you'll want to start your AME construction with the controller on top of an [color=orange]HV wire[/color].
- Once this is done, you can use a multitool to convert each AME part into shielding, which should form a finished AME configuration. From there, insert a fuel jar, set the fuel rate to [color=#a4885c]twice the core count or less[/color], and turn on injection. Any more than this ratio will eventually result in the engine [color=#ff0000]overheating and[/color], shortly afterwards, [color=#ff0000]exploding[/color].
+ Most stations have exposed [color=orange]HV wiring[/color] or designated spots to wrench an AME controller, so that it connects to the grid.
- ## Fuel Economy
- The closer you are to the perfect ratio of [color=#a4885c]1:2[/color] AME cores to fuel injection rate, the more efficient you'll be. You're cutting fuel efficiency to [color=#a4885c]50% and less[/color] if you're using more cores, but a lower fuel injection rate.
- For an example, [color=#76db91]3 cores and 6 fuel injected[/color] will generate [color=#76db91]240kW[/color], while [color=#f0684d]8 cores and 8 fuel injected[/color] will generate [color=#f0684d]160kW[/color]; you'd be generating 80kW less while spending 2 more fuel per injection.
+ AME shielding is the physical structure that makes the antimatter engine. It's made by converting AME flatpacks into shielding using a multitool.
- ## Upgrading the AME
+ To construct an AME, start putting down a 3x3 or larger square of AME flatpacks in preparation for construction, making sure to maximize the number of "center" pieces that are surrounded on all eight sides.
+ The greater amount of center pieces, the more cores your AME will have, and the more power it will be able to output safely.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Once this is done, you can use a multitool to convert each AME flatpack into shielding, which should form a finished AME configuration.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ [color=#999999][italic]An example of a one core setup[italic][/color]
+
+
+ ## Operation
+ To start the AME, insert a fuel jar into the AME controller, and set the safe injection rate.
+
+ The safe injection rate is the point where the AME can safely run without overheating, while maximizing power output.
+
+ This rate is always twice the core count.
+
+ For example, an AME with one core will have a safe injection rate of 2. With two cores, the safe injection rate would be 4, and so on.
+
+ Any more than this ratio will eventually result in the engine [color=#ff0000]overheating[/color] and, shortly afterwards, [color=#ff0000]exploding[/color].
+
+ The AME controller will [textlink="report" link="InspectingPower"] on both the amount of power it is providing to the grid, and the theoretical maximum power it could provide if demanded.
- You can generally only upgrade the AME by installing more cores, which can be done by ordering more AME flatpacks from [color=#a4885c]Cargo[/color].
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml b/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml
new file mode 100644
index 000000000000..cee11539d4af
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AirAlarms.xml
@@ -0,0 +1,65 @@
+
+ # Air Alarms
+ The Air Alarm is a device that enables central monitoring and control over all relevant Atmos devices linked to it.
+
+
+
+
+
+ Using the Air Alarm, Atmos can quickly and efficiently manage the atmosphere in a given area.
+
+ A room will often have an Air Alarm mounted on the wall, for quick control over multiple devices in that room.
+
+ You can see how to link devices in the [textlink="Link" link="Networking"] guide.
+
+ ## User Interface
+ Interacting with an Air Alarm will bring up a menu with 3 sections:
+ - Top: The current status of the air alarm. This includes the current pressure and temperature of the area the air alarm is monitoring.
+ - Middle: Lists of linked [textlink="Air Vents" link="AirVent"] and [textlink="Air Scrubbers" link="AirScrubber"], as well as all sensors reporting back to the air alarm.
+ - Bottom: Buttons to control air alarm operating modes, as well as the ability to toggle the automatic changing of modes.
+
+ ## Alarm Status
+ Air alarms quickly communicate the status of the area they are monitoring through the color of the light on the device:
+ - [color=green]Normal[/color]: The area is safe to breathe in.
+ - [color=yellow]Warning[/color]: The area is starting to deviate from the desired atmosphere, and is becoming unsafe.
+ - [color=red]Danger[/color]: The area is no longer safe, internals and/or hardsuits are required.
+
+ Air alarms will automatically drop (close) linked [textlink="firelocks" link="FireAndGasControl"] when the [color=Red]Danger[/color] status is reached.
+ These [textlink="firelocks" link="FireAndGasControl"] will automatically raise (open) when the status returns to [color=green]Normal[/color].
+
+ Air alarms have [textlink="signal" link="Networking"] outputs for each of the three statuses, which can be used to trigger other [textlink="signal" link="Networking"] devices when the status changes.
+
+ ## Sensors
+ All [textlink="Air Vents" link="AirVent"] and [textlink="Air Scrubbers" link="AirScrubber"] have a built-in sensor, which reports back to the air alarm.
+ These sensors can be adjusted in the [bold]Sensors[/bold] tab of the air alarm menu.
+
+ An air alarm's status is directly determined by the thresholds on each sensor.
+ If a sensor reports a pressure, temperature, or gas composition outside the set thresholds, the air alarm will change its status accordingly.
+
+ These thresholds can be adjusted and disabled as needed.
+ For example, if you are monitoring a room that naturally has a low temperature (such as a freezer) or a high temperature (such as a burn chamber), you can adjust the temperature thresholds to match the expected values.
+
+ An air sensor can also be constructed and [textlink="linked" link="Networking"] to an air alarm.
+
+
+
+
+
+ This is useful for monitoring areas that you don't have an air vent or scrubber in already.
+
+ ## Operating Modes
+ To control connected devices quickly, air alarms feature operating modes, which quickly changes the behavior of all linked devices to achieve a desired effect.
+ - None: Disables all devices linked to the air alarm.
+ - Filtering: [textlink="Air Vents" link="AirVent"] will be enabled with their external bound set to standard atmospheric pressure. [textlink="Air Scrubbers" link="AirScrubber"] will be enabled and scrub all waste gasses normally.
+ - Filtering (Wide): Same as Filtering, but all linked [textlink="Air Scrubbers" link="AirScrubber"] will enable their WideNet mode.
+ - Fill: [textlink="Air Vents" link="AirVent"] will be enabled with their external bound set to max pressure, [color=orange][protodata="GasVentPump" comp="GasVentPump" member="MaxPressure"/] kPa[/color]. [textlink="Air Scrubbers" link="AirScrubber"] will be disabled.
+ - Panic: [textlink="Air Vents" link="AirVent"] will be disabled, and [textlink="Air Scrubbers" link="AirScrubber"] will be set to siphon mode.
+
+ Air alarms will automatically switch between the Filtering and Filtering (Wide) modes based on the current status of the area they are monitoring.
+ - If the area reaches [color=red]Danger[/color] status or above, the air alarm will switch to Filtering (Wide) mode.
+ - If the area reaches [color=green]Normal[/color] or [color=yellow]Warning[/color] status, the air alarm will switch to Filtering mode.
+
+ This behavior can be disabled by toggling the "Auto" box in the bottom section of the air alarm menu.
+
+ Relevant tips on how to fix [textlink="spacing" link="Spacing"] and [textlink="fires" link="Fires"] can be found in the relevant guides.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml
new file mode 100644
index 000000000000..3c4027dcb3bc
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AirInjector.xml
@@ -0,0 +1,15 @@
+
+ #Air Injector
+ The air injector is a special vent that forces gasses into the atmosphere it's exposed to.
+
+
+
+ It is primarily used to force gasses into high-pressure rooms like the station's [textlink="gas storage rooms" link="GasMiningAndStorage"], or a burn chamber.
+
+ The air injector does not require [textlink="power" link="Power"] to function.
+
+ The air injector will inject gasses into the atmosphere it's exposed to until the atmosphere reaches [color=orange][protodata="GasOutletInjector" comp="GasOutletInjector" member="MaxPressure"/] kPa[/color].
+
+ The air injector's speed is proportional to the amount of gas in the injector.
+ The more gas in the injector, the faster it will inject gas into the exposed atmosphere.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml
new file mode 100644
index 000000000000..ebf1ffb6af32
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AirScrubber.xml
@@ -0,0 +1,46 @@
+
+ # Air Scrubber
+ The air scrubber is essential in maintaining an atmosphere free of waste gasses emitted by breathing creatures and atmospheric upsets.
+ Its primary job is to scrub unwanted gasses from the atmosphere it's exposed to.
+
+
+
+ The air scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
+
+ The default behavior of an air scrubber is to scrub all gasses except Nitrogen and Oxygen from the atmosphere it's exposed to. It will continue this behavior unless directed by a [textlink="linked" link="Networking"] [textlink="air alarm" link="AirAlarms"].
+
+ The scrubber can be welded with any welding tool to stop it from functioning.
+
+ ## Configuration Options
+ When [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"], air scrubbers gain more functionality.
+
+ The target gasses for scrubbing can be defined in the "Gas filters" dropdown. Keep in mind this resets if you change [textlink="air alarm" link="AirAlarms"] modes.
+
+ Air scrubbers have two "direction" options: Scrubbing and Siphoning.
+ - Scrubbing scrubs gasses as defined in the gas filters.
+ - Siphoning ignores all gas filters, and sucks all gasses out of the atmosphere.
+
+ Both of these modes are limited by the Rate setting, which defines the rate (in litres) at which the scrubber sucks gasses from its exposed atmosphere.
+
+ Air scrubbers also have a "WideNet" setting, which expands the radius of the scrubber's operating range. Normally, the scrubber scrubs the atmosphere on the single tile it's exposed to.
+ In WideNet mode, the scrubber scrubs gas from the 4 tiles surrounding the scrubber, as shown:
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This effectively multiplies its total speed, as air scrubbers will now preform their scrubbing work on 5 tiles at once.
+
+ Scrubbers [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"] in auto mode will automatically enable WideNet mode under the [textlink="air alarm's" link="AirAlarms"] "Filtering (Wide)" mode when a high concentration of unwanted gasses is detected in the atmosphere.
+
+ WideNet is extremely useful in quickly scrubbing large amounts of tritium from plasma burn chambers.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml
new file mode 100644
index 000000000000..d6b81fa19b63
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AirVent.xml
@@ -0,0 +1,64 @@
+
+ # Air Vent
+ The air vent is a standard vent, found in all rooms that you want to pressurize with a breathable atmosphere.
+ Its primary job is to transfer gasses into the atmosphere it's exposed to until it reaches a set pressure.
+
+
+
+
+
+ The air vent requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
+
+ The air vent can be welded with any welding tool to stop it from functioning.
+
+ ## Default Operation
+ The default behavior of an air vent is to simply output gas to the exposed atmosphere at a pressure of [color=orange][protodata="GasVentPump" comp="GasVentPump" member="DefaultExternalBound"/] kPa[/color].
+
+ The speed of the air vent scales with the difference between twice the connected [textlink="pipenet's" link="PipeNetworks"] pressure and the pressure of the exposed atmosphere.
+ To put it in a word equation:
+
+ [italic]Speed = 2 × Pipenet Pressure - Exposed Atmosphere Pressure[/italic]
+
+
+ For example, this means that an air vent will be unable to pump to 101.3 kPa if the gas inside the vent goes below half that.
+
+ ## Pressure Lockout
+ Air vents will enter [color=red]pressure lockout[/color] when the pressure of the atmosphere it's exposed to is below [color=orange][protodata="GasVentPump" comp="GasVentPump" member="UnderPressureLockoutThreshold"/] kPa[/color].
+ This is to prevent wasting useful gasses to space if a room is not sealed.
+ The lights on the air vent will turn [color=yellow]yellow[/color] to highlight this change.
+
+ This can be [color=green]overridden[/color] by using a screwdriver on the vent, or setting the mode to Fill on a connected [textlink="air alarm" link="AirAlarms"].
+
+ It is important to note that air vents in [color=red]pressure lockout[/color] still very slowly leak out gas.
+ The amount of gas they leak out is relative to the current pressure of the pipenet they're connected to.
+
+ ## Configuration Options
+ When [textlink="linked" link="Networking"] to an [textlink="air alarm" link="AirAlarms"], air vents gain more functionality.
+
+ Air vents have two "vent direction" options: Releasing and Siphoning.
+ - Releasing simply releases gasses into the atmosphere from the connected pipenet.
+ - Siphoning sucks the air out of the atmosphere and into the connected pipenet. The lights on the air vent will turn [color=red]red[/color] to highlight this change.
+
+ ## Pressure Bounds
+ Air vents have a pressure bound system, which controls the pressure at which an air vent will pressurize an atmosphere, or draw from a connected pipenet. These limits are taken into account in both releasing and siphoning modes.
+
+ The "PressureBound" setting has four options:
+ - ExternalBound makes the air vent respect the pressure limits defined in the External bound entry.
+ - InternalBound makes the air vent respect the pressure limits defined in the Internal bound entry.
+ - Both makes the air vent respect the pressure limits defined in both the External and Internal bound entries.
+ - NoBound makes the air vent respect no limit.
+
+ When the vent is in releasing mode:
+ - If the External bound pressure is set to 101.3 kPa, the air vent will not pressurize the atmosphere above 101.3 kPa.
+ - If the Internal bound pressure is set to 50 kPa, the air vent will not draw gas from the connected pipe if its pressure is below 50 kPa.
+
+ When the vent is in siphoning mode:
+ - If the External bound pressure is set to 101.3 kPa, the air vent will siphon gases until the atmosphere reaches 101.3 kPa.
+ - If the Internal bound pressure is set to 50 kPa, the air vent will not push gases into the pipenet if its pressure is above 50 kPa.
+
+ If you're still confused about PressureBounds, here's a simple way to think about it:
+ - You can think of the External bound as the upper limit for the exposed atmosphere. "I will not pressurize the exposed atmosphere past this pressure, or draw from the atmosphere below this pressure."
+ - You can think of the Internal bound as the lower limit for the connected pipenet. "I will not draw from my source below this pressure, or push air into the pipenet above this pressure."
+ - The "Pressure bound" settings simply define which limits to respect or ignore.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml
index 82faa608109a..fd8df9bb0234 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/AirlockSecurity.xml
@@ -27,16 +27,13 @@
- Close the maintenance panel using the screwdriver.
## High security airlocks
- For airlocks leading to the more sensitive areas of the space station, the use of stronger deterrents are advised. High security airlocks have improved armor plating to protect its internal wiring, along with an electrified security grille.
+ For airlocks leading to the more sensitive areas of the space station, the use of stronger deterrents are advised. High security airlocks have improved armor plating to protect its internal wiring.
To upgrade a medium security airlock to a high security airlock, you will require the following materials:
-
-
-
@@ -49,17 +46,19 @@
- Use the screwdriver to open the airlock maintenance panel.
- Add the plasteel sheets to the airlock.
- Weld the plasteel sheets into place.
- - Add the metal rods to the airlock.
- Close the maintenance panel using the screwdriver.
## Maximum security airlocks
- You can optionally upgrade a high security airlock to a maximum security airlock. Maximum security airlocks possess an additional layer of plasteel plating on top of its other protections.
+ You can optionally upgrade a high security airlock to a maximum security airlock. Maximum security airlocks possess an additional layer of electrified wire mesh on top of its other protections, which can shock any unauthorized personnel attempting to tamper with the airlock.
To upgrade a high security airlock to a maximum security airlock, you will require the following materials:
+
+
+
@@ -72,5 +71,6 @@
- Use the screwdriver to open the airlock maintenance panel.
- Add the plasteel sheets to the airlock.
- Weld the plasteel sheets into place.
+ - Add the metal rods to the airlock.
- Close the maintenance panel using the screwdriver.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml b/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml
new file mode 100644
index 000000000000..9b657c53997e
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Airlocks.xml
@@ -0,0 +1,137 @@
+
+ # Airlocks
+ Airlocks are used to control access to different areas of the station.
+
+
+
+
+
+
+ Airlocks can be opened using either [color=yellow][bold][keybind="Use"][/bold][/color] with an empty hand, [color=yellow][bold][keybind="ActivateItemInWorld"][/bold][/color] if hands are full, or by colliding with the airlock.
+
+ Airlocks will only open if you have an ID card with the correct access level.
+ The ID card must be in your hand or in your ID slot.
+ In the case of having multiple IDs, the airlock will check them all when you try to open it.
+ This behavior is also the same for IDs in a PDA.
+
+ The access level required to open the door can be modified using an Access Configurator, or by using a Multitool on the door electronics for the airlock (which requires deconstruction).
+
+
+
+
+
+
+
+ Airlocks block gas flow, so they can be used to seal off areas in case of a [textlink="hull breach" link="Spacing"] or a [textlink="fire." link="Fires"]
+ They also store gas on their tile, even when closed, so be careful when opening them during or after a gas leak.
+
+ ## Bolting and Emergency Access
+ Airlocks can be bolted to prevent them from being opened or pried open by hand. When this occurs, the airlock will display red lights on the top of the door.
+
+ Airlocks can also be set to emergency access. In this mode, anyone can open the airlock, regardless of access level. When this occurs, the airlock will display flashing yellow lights on the top of the door.
+
+ ## Remote Control
+ Airlocks can be controlled remotely, either by the station AI or by using a Door Remote.
+
+
+
+
+ [color=#999999][italic]The Station AI, which has remote control over all airlocks[italic][/color]
+
+
+
+
+
+
+
+
+
+
+
+ [color=#999999][italic]Precious door remotes. With unlimited power...[italic][/color]
+
+
+
+ Department heads usually get door remotes for their respective department.
+
+ They can open, close, bolt, and set to emergency access using these remotes.
+
+ ## Linking
+ Airlocks can be linked using the [textlink="Link" link="Networking"] system to other devices.
+ This allows for proper station airlocks to space, or to link multiple airlocks together.
+
+ ## Styling
+ Airlocks can come in different styles to match station departments. The department style commonly reflects the required access level.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Airlocks can be repainted using a spray painter.
+
+
+
+
+ ## Wiring
+ Airlocks have internal wiring under their maintenance panel, which can be opened using a screwdriver.
+ Each wire controls some aspect of the airlock's functionality.
+ When you either pulse, cut, or mend the wire, it will affect the airlock in different ways.
+
+ The lights next to the wires will indicate the status of the wire:
+ - A steady light indicates that the system is functioning as normal.
+ - A flashing light indicates that the system is malfunctioning. It is either not working or is behaving not as intended.
+ - No light indicates that the system is not powered.
+
+ Below is a list of the wires and their functions:
+
+ [color=#a4885c]Bolt Wire (BOLT)[/color]
+ - [color=yellow]Pulse the wire[/color]: Bolts or unbolts the door.
+ - [color=red]Cut the wire[/color]: Bolts the door.
+ - [color=green]Mend the wire[/color]: Does nothing.
+
+ [color=#a4885c]Power Wire (POWR)[/color]
+ - [color=yellow]Pulse the wire[/color]: Cuts power to the door for a short time.
+ - [color=red]Cut the wire[/color]: Either cuts power to the door if both power wires are cut, or causes a short circuit if only one is cut, shocking people without insulated gloves.
+ - [color=green]Mend the wire[/color]: Either restores power to the door if both power wires are cut, or stops the short circuit if only one is cut.
+
+ [color=#a4885c]Log Wire (LOG)[/color]
+ - [color=yellow]Pulse the wire[/color]: Temporary disables door logging.
+ - [color=red]Cut the wire[/color]: Disables door logging.
+ - [color=green]Mend the wire[/color]: Re-enables door logging.
+
+ [color=#a4885c]Bolt Light (BLIT)[/color]
+ - [color=yellow]Pulse the wire[/color]: Turns the system off temporarily, or turns it back on.
+ - [color=red]Cut the wire[/color]: Prevents the bolt light from turning on, which communicates if the door is bolted or not.
+ - [color=green]Mend the wire[/color]: Turns the system back on.
+
+ [color=#a4885c]Timer Light (TIMR)[/color]
+ - [color=yellow]Pulse the wire[/color]: Reduces the door timer temporarily.
+ - [color=red]Cut the wire[/color]: Disables the timer. The door will close as soon as it is safe to do so.
+ - [color=green]Mend the wire[/color]: Re-enables the timer.
+
+ [color=#a4885c]Safety Light (SAFE)[/color]
+ - [color=yellow]Pulse the wire[/color]: Disables the safety system temporarily.
+ - [color=red]Cut the wire[/color]: Disables the safety system. The door will close even if there is an obstruction.
+ - [color=green]Mend the wire[/color]: Re-enables the safety system.
+
+ [color=#a4885c]AI Access Light (AIA)[/color]
+ - [color=yellow]Pulse the wire[/color]: Does nothing.
+ - [color=red]Cut the wire[/color]: Disables AI access. The AI can no longer control the door.
+ - [color=green]Mend the wire[/color]: Re-enables AI access.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml
new file mode 100644
index 000000000000..3c3114ed4bbc
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosTools.xml
@@ -0,0 +1,52 @@
+
+ # Atmos Tools
+ Atmospheric Technicians have the same core toolset as Engineers, but they also have access to two new tools, the Holofan Projector and the Gas Analyzer.
+
+
+
+
+
+
+ ## Holofan Projector
+ The Holofan Projector is a tool that can project a barrier of hard-light which blocks air and gas flow, while still allowing people to pass through.
+
+
+
+
+
+
+ This is super useful for moving in between [textlink="firelock buffers" link="FireAndGasControl"] without leaking gas between rooms, as well a signifying to regular crew that a room may be unsafe for entry.
+ It can also be used for forming a temporary barrier to allow crew to quickly move between a spaced and unspaced area without risk of leaking air from other rooms.
+
+ It has an internal charge that will deplete with each use, but it can be recharged by taking out the power cell and inserting it into a cell charger or recharger.
+
+ Holofans that are placed adjacent to a [textlink="firelock" link="FireAndGasControl"] will deactivate the firelock lockout, allowing the firelock to be opened by hand.
+
+ ## Gas Analyzer
+ The Gas Analyzer is a tool that can be used to analyze the gas composition of an exposed atmosphere, or any [textlink="atmospheric device" link="GasManipulation"] containing gas.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ You can use the Gas Analyzer by clicking on a gas-containing [textlink="device" link="GasManipulation"], or by clicking on the air in the room.
+
+ When used, the gas analyzer will report on:
+ - The volume of the device measured (not the volume of the gas!)
+ - The total pressure of the gas, in kPa
+ - The temperature of the gas, in Kelvin (K) and Celsius (C)
+ - The precise composition of the gas in molar amounts, and as a percentage of the total gas volume
+
+ At the bottom of the UI, the gas analyzer will display a visual indication of the different [textlink="gasses" link="Gasses"] present in the composition, as well as their relative concentrations.
+
+ When the gas analyzer is analyzing binary and trinary [textlink="devices" link="GasManipulation"] (devices with two and three inputs/outputs), it will display the composition of each input/output separately. This is useful for troubleshooting gas [textlink="mixing and filtering" link="MixingAndFiltering"] setups.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml
new file mode 100644
index 000000000000..126b2335fc94
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosphereInOut.xml
@@ -0,0 +1,25 @@
+
+ #Atmosphere Input and Output
+ Inserting and extracting gasses from a present (or non-present) atmosphere is an essential part of Atmos' job.
+
+
+
+
+
+
+
+
+ With these devices, Atmos can insert, extract, or scrub unwanted gasses from any atmosphere they would like.
+ This allows the maintaining of a safe, breathable atmosphere.
+
+ Some of these devices require [textlink="power" link="Power"] to function, and can be linked to an [textlink="air alarm." link="AirAlarms"]
+
+ [textlink="Linking" link="Networking"] compatible devices to an air alarm unlocks more configuration options and functionality. Otherwise, these devices follow their default behavior as defined in the subguides.
+
+
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml
new file mode 100644
index 000000000000..77a2a2df5f6a
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericAlertsComputer.xml
@@ -0,0 +1,30 @@
+
+ # Atmospheric Alerts Computer
+ The Atmospheric Alerts Computer is a computer that shows information on all air alarms and fire alarms across the station.
+
+
+
+
+
+ It is a useful tool for quickly identifying areas that require attention.
+
+ The Atmospheric Alerts Computer is often found in Atmospherics, and is used by Atmospherics Technicians to monitor atmospheres across the entire station.
+ However, it is also a good indicator for general engineers to gauge station damage.
+
+ The computer displays lists of Air Alarms in [color=orange]Warning[/color] and [color=red]Danger[/color] levels. Additionally, the computer displays the location of all air alarms, color-coded based on their current status.
+
+ Air alarms with the normal status are hidden by default.
+ You can toggle the visibility of normal air alarms by adjusting the filters at the bottom of the interface.
+
+ The map draws a box around the area that the air alarm is monitoring, which can help identify the area that is in danger.
+ This box will change color based on the status of the air alarm.
+
+ If an Air Alarm is unpowered, it is shown as greyed out on the list and on the map.
+
+ Clicking on an air alarm on the list or on the map will show detailed information about the atmosphere in that area, which can help gauge the type of emergency that is occurring.
+
+ A list of triggered [textlink="fire alarms" link="FireAndGasControl"] is also displayed on the Atmospheric Alerts Computer in a separate tab, which can be used to quickly identify areas that might be on fire.
+
+ You can silence specific alarms (such as alarms that monitor burn chambers and freezers) by clicking on the alarm in the list and pressing the "Silence alerts" button.
+ This will hide the alarm from the list, but it will still be visible on the map.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml
new file mode 100644
index 000000000000..53007d5fdd28
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericNetworkMonitor.xml
@@ -0,0 +1,47 @@
+
+ # Atmospheric Network Monitor
+ The Atmospheric Network Monitor is a computer that shows information on monitored [textlink="pipe networks" link="PipeNetworks"] across the station.
+
+
+
+
+
+ It is a useful tool for quickly gauging the tempreature, pressure, and gas composition of station [textlink="pipe networks" link="PipeNetworks"], as well as how they spread throughout the station.
+
+ ## Listed Networks
+ The Atmospheric Network Monitor displays a list of all monitored [textlink="pipe networks" link="PipeNetworks"] on the station.
+
+ Each network is color-coded and named based on the name and color of the Gas Pipe Sensor that is monitoring it.
+ To change the name or color of a network, you can rename it with a labeler, or change the color using a spray painter.
+
+ Clicking on a network will show detailed information about the network, as well as highlighting the network on the station map.
+
+ This information includes the molar amount of the gas in the entire network, as well as the composition of the gas in the network.
+ This can prove extremely useful for monitoring important networks like the Distro pipenet, which can not function correctly if below certain pressures.
+
+ ## Station Map
+ The Atmospheric Network Monitor displays the location of all [textlink="pipe networks" link="PipeNetworks"] on the station map, as well as any pipe-based devices.
+ Note that the pipe network doesn't need to have an attached Gas Pipe Sensor to be visible on the map.
+
+ These devices are colored on the map based on their color on the station, which can help identify seperate [textlink="pipe networks" link="PipeNetworks"], and the devices that are connected to them.
+
+ Pipe based devices are grouped together on the map's legend based on their function:
+ - A [bold]Network Opening[/bold] is a device that connects a pipe network to the station's atmosphere. Think [textlink="Air Vents" link="AirVents"], [textlink="Passive Vents" link="PassiveVent"], and [textlink="Air Injectors" link="AirInjector"].
+ - An [bold]Air Scrubber[/bold] is just an [textlink="Air Scrubber" link="AirScrubber"].
+ - A [bold]Flow Regulator[/bold] is a device that controls the flow of gas through a pipe network. Think [textlink="Gas Pumps" link="Pumps"], [textlink="Gas Valves" link="Valves"], and [textlink="Gas Mixers/Filters" link="MixingAndFiltering"]. The arrow on the device indicates the direction of gas flow. This also often determines where a pipe network is seperated or split.
+ - A [bold]Thermoregulator[/bold] is any device that does something to the temperature of the gas in a pipe network. Think [textlink="Thermomachines" link="Thermomachines"], [textlink="Radiators" link="Radiators"], and even Medical Cryopods.
+
+ ## Gas Pipe Sensors
+ Atmospheric Network Monitors collect data on [textlink="pipe networks" link="PipeNetworks"] through Gas Pipe Sensors.
+
+
+
+
+
+ By default, the station should have gas pipe sensors on all major [textlink="pipe networks" link="PipeNetworks"]. Examples include the Distro and Waste networks.
+
+ If you wish to monitor a new network, you can construct a gas pipe sensor and it will automatically be visible on the Atmospheric Network Monitor.
+ Make sure you construct the sensor on the pipe network you want to monitor.
+ [textlink="Pipe networks" link="PipeNetworks"] can easily be seperated by a simple Gas Pump or Valve, which can cause the sensor to report data on a completely different network.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml
new file mode 100644
index 000000000000..9267ff3511b2
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericUpsets.xml
@@ -0,0 +1,22 @@
+
+ # Atmospheric Upsets
+ Atmospheric upsets are deviations from the normal atmospheric conditions that should be maintained on the station.
+
+ These upsets can be caused by a variety of factors, such as [textlink="fires" link="Fires"], [textlink="spacing" link="Spacing"], or other events that can quickly spread throughout the station and make the atmosphere uninhabitable for the crew.
+
+ For reference, the normal atmospheric conditions on the station are 101.3 kPa of pressure and 293.15 K (20°C) of temperature.
+ The standard station mix is also 78% nitrogen, 22% oxygen.
+
+ ## Damage Control
+ For all atmospheric emergencies, it's important to act quickly to prevent the spread of dangerous conditions, and to contain the spread as much as possible.
+
+ Opening [textlink="firelocks" link="FireAndGasControl"] to the exposed area will often lead to you having to fix [italic]two[/italic] problems instead of one.
+
+ Be sure to use your [textlink="holofan projector" link="AtmosTools"] to prevent the spread of dangerous conditions between [textlink="firelock buffers" link="FireAndGasControl"].
+
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml
index 1e06d5193e1b..ff88040325b4 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Atmospherics.xml
@@ -1,67 +1,25 @@
# Atmospherics
+ Atmospherics is the engineering subdepartment responsible for maintaining the station's atmosphere, and ensuring that it is safe and breathable for the crew.
- Atmospherics setups are a necessity for your long-term comfort, but are generally underdocumented, resulting in them being a bit tricky to set up. The following attempts to cover the basics.
+ Atmospherics is run by Atmospheric Technicians, who are overseen by the Chief Engineer.
- ## Standard Mix
- Breathing pure O2 or pure N2 is generally bad for the health of your crew, and it is recommended to instead aim for a mix of [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color] It's recommended that your gas mixer setup be set to output at least 300kPA for faster re-pressurization of rooms, without posing too much of an overpressurization risk, should traitors sabotage the distro.
-
-
-
+
+
- Variations on this mix may be necessary for the long-term comfort of atypical crew, (for example, Voxes, who are poisoned by Oxygen and breathe Nitrogen). For atypical crew (to be implemented), it is recommended to try and give them their own personal space, isolated by either an airlock or disposals section. Keep in mind that both methods are leaky and you will need scrubbers on both sides of the lock to clean up any leaked gasses.
-
-
+ [color=#999999][italic][italic][/color]
- ## Vents and Scrubbers
- Vents and scrubbers are core atmospherics devices that fill and cleanse rooms, respectively. By default, they are configured for filling rooms to standard pressure (101.24kPa) and to remove all non-O2/N2 gasses from a room. They can be reconfigured from their default settings by linking them to an Air Alarm, allowing you to configure how they respond to various types of gasses or pressure levels.
-
-
-
-
- During standard operation, if a normal vent detects that the outside environment is space, it will automatically cease operation until a minimum pressure is reached to avoid destruction of useful gasses. This can be fixed by pressurizing the room up to that minimum pressure by refilling it with a gas canister (potentially multiple, if the room is of significant size).
-
- Should you encounter a situation where scrubbers aren't cleaning a room fast enough (and the "Siphon" functionality still cannot keep up), employ portable scrubbers by dragging them to the affected location and wrenching them down. They work much faster than typical scrubbers and can clean up a room quite quickly. Large spills may require you to employ multiple.
-
-
-
- # Gas mixes and Burn chambers
- In the event you finish all the tasks at hand, you can make some extra money by creating new chemical gasses.
-
- ##Tritium
- Tritium is a clear, green gas that is highly flammable, radioactive, and combusts when in contact with oxygen, making it very helpful when running the [color=#a4885c]TEG[/color].
- It can be made by burning 1% Plasma and 96% or more Oxygen in the Burn Chamber (Ideal ratio is 3% Plasma to 97% Oxygen). You can extract this gas through scrubbers.
+ ## Responsibilities
+ Generally, you'll be responding to [textlink="atmospheric upsets" link="AtmosphericUpsets"] throughout the station.
+ These can range from minor leaks to full-on [textlink="fires" link="Fires"] or [textlink="spacing" link="Spacing"] incidents.
-
-
-
-
-
-
+ People from other departments may also request [textlink="canned gasses" link="GasCanisters"] for their department duties, such as [textlink="plasma" link="Gasses"] for the [textlink="Research Department" link="Science"] or [textlink="carbon dioxide" link="Gasses"] for [textlink="Chemistry" link="Chemist"].
- ##Frezon
- Frezon is a bluish-green gas that is very complex and very dangerous. To obtain frezon, you must mix Tritium, Oxygen, and Nitrogen in a 70K room to start the reaction, and prevent the Tritium from combusting with the oxygen.
+ In your downtime, you may seek to improve the station by setting up rooms with different atmospheres for [textlink="Voxes" link="Vox"] and other species, or by setting up production of [textlink="exotic gasses" link="Gasses"] for the station's needs.
-
-
-
-
-
-
-
- It is critical to understand that a frezon leak can devastate the station, causing a wintery hell filled with itchy sweaters and cold burns. Frezon is very cold, and can freeze the station to death if even a few moles get out, so make sure that you lock your canisters or just move your Frezon straight into a storage room.
-
- ## Reference Sheet
- - Standard atmospheric mix is [color=#a4885c]78% N2 and 22% O2 at 101.24kPa.[/color]
- - Gas obeys real math. You can use the equation:
-
- [color=cyan]PV = nRT[/color]
-
-
- ([color=#a4885c]Pressure kPa * Volume L = Moles * R * Temperature K[/color])
- to derive information you might need to know about a gas. R is approximately 8.31446.
+ When there's no work to do, you may be expected to help regular Station Engineers with their tasks, and mentor new Station Engineers and Atmospheric Technicians.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml
new file mode 100644
index 000000000000..a242a4088862
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/AtmosphericsSystems.xml
@@ -0,0 +1,58 @@
+
+ # Atmospherics Systems
+ Atmos has a wide variety of devices catered to moving, managing, and otherwise manipulating gas.
+ These devices often work together to maintain a safe, breathable atmosphere for the crew, or to achieve a common task.
+
+ This section delves into the various systems that Atmos has at their disposal, how they interconnect, and how they are ideally used.
+
+
+
+
+
+
+
+
+
+
+
+
+ ## Pipe Networks
+
+
+ [color=#999999][italic]Interconnected pipes with a common task — commonly called Pipenets[italic][/color]
+
+
+
+
+
+
+
+ ## Device Monitoring and Control
+
+
+ [color=#999999][italic]Monitoring and control over devices that manage a local atmosphere[italic][/color]
+
+
+
+
+
+
+
+ ## Fire and Gas Control
+
+
+ [color=#999999][italic]Devices to control and prevent gas leaks and fires[italic][/color]
+
+
+
+
+
+
+
+ ## Gas Mining and Storage
+
+
+ [color=#999999][italic] Devices to mine new gas for the station to use, and store it for later[italic][/color]
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
index 15f2f1553942..0457b8c4b85b 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Construction.xml
@@ -1,11 +1,27 @@
# Construction
- By pressing [color=#a4885c][keybind="OpenCraftingMenu"][/color], one can open the construction menu, which allows you to craft and build a variety of objects.
+
+
+
+
+
+
- When placing objects that "snap" to the grid, you can hold [color=#a4885c]Shift[/color] to place an entire line at a time, and [color=#a4885c]Ctrl[/color] to place an entire grid at a time.
+
+ The Construction Menu is how you build and craft objects in the game.
+ It can be accessed by pressing [color=yellow][bold][keybind="OpenCraftingMenu"][/bold][/color].
+
+ When placing objects that "snap" to the grid, you can hold [color=yellow][bold][keybind="EditorLinePlace"][/bold][/color] to place an entire line at a time, and [color=yellow][bold][keybind="EditorGridPlace"][/bold][/color] to place an entire grid at a time.
When crafting objects with a lot of ingredients, keep in mind you don't have to hold everything at once; you can simply place the ingredients on the floor, in your backpack or on a table near you, and they'll be used up during crafting like normal.
- When placing a "building ghost" somewhere in the world, press [color=#a4885c][keybind="EditorRotateObject"][/color] to rotate the ghost clockwise. If you are building a mirrorable component (think: Gas Mixers/Filters), you can press [color=#a4885c][keybind="EditorFlipObject"][/color] to flip the ghost.
+ When placing a "building ghost" somewhere in the world, press [color=yellow][bold][keybind="EditorRotateObject"][/bold][/color] to rotate the ghost clockwise.
+ If you are building a mirrorable component (think: Gas Mixers/Filters), you can press [color=yellow][bold][keybind="EditorFlipObject"][/bold][/color] to flip the ghost.
+
+ You can also use [color=yellow][bold][keybind="RotateObjectClockwise"][/bold][/color] and [color=yellow][bold][keybind="RotateObjectCounterclockwise"][/bold][/color] to rotate an object clockwise or counterclockwise if it's already built, as long as it is unanchored (unwrenched).
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml b/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml
new file mode 100644
index 000000000000..b536bcbde8e1
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/DeviceMonitoringAndControl.xml
@@ -0,0 +1,39 @@
+
+ # Device Monitoring and Control
+ Given the station-wide nature of the atmospherics network, it is important to have a way to monitor and control devices from a central location.
+
+ Using these systems, Atmospherics can monitor and control the atmosphere across the entire station.
+
+
+
+
+
+
+ ## Air Alarms
+
+
+ [color=#999999][italic]Wide area monitoring and control over atmos devices[italic][/color]
+
+
+
+
+
+
+ ## Atmospheric Alerts Computer
+
+
+ [color=#999999][italic]Station-wide monitoring of air alarms[italic][/color]
+
+
+
+
+
+
+
+ ## Atmospheric Network Monitor
+
+
+ [color=#999999][italic]Monitoring of whole pipe networks[italic][/color]
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
index b2bf4e698a5f..d3b6da030429 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Engineering.xml
@@ -1,29 +1,31 @@
-# Engineering
-[color=#f39f27]Engineering[/color] is a combination of construction work, repair work, maintaining a death machine that happens to produce power, and making sure the station contains breathable air.
+ # Engineering
+ [color=#f39f27]Engineering[/color] is a combination of [textlink="construction" link="Construction"] work, [textlink="repair" link="ExpandingRepairingStation"] work, maintaining a death machine that happens to produce [textlink="power" link="Power"], and making sure the station contains [textlink="breathable air" link="Atmospherics"].
-## Personnel
-[color=#f39f27]Engineering[/color]'s staff is made up of Technical Assistants, Station Engineers and Atmospheric Technicians. Engineering is run by the Chief Engineer.
+ ## Personnel
+ [color=#f39f27]Engineering[/color]'s staff is made up of Technical Assistants, Station Engineers and Atmospheric Technicians.
+ Engineering is run by the Chief Engineer.
-
-## Tools
+
+ ## Tools
-
+
-Your core toolset is a small variety of tools. If you're an engineer, then you should have a belt on your waist containing one of each; if not, you can likely find them in maintenance shafts and in tool storage within assorted toolboxes and vending machines.
+ Your core toolset is a small variety of tools.
+ If you're an engineer, then you should have a belt on your waist containing one of each; if not, you can likely find them in maintenance shafts and in tool storage within assorted toolboxes and vending machines.
-Most tasks will have explainers for how to perform them on examination; for example, if you're constructing a wall, it'll tell you the next step if you look at it a bit closer.
+ Most tasks will have explainers for how to perform them on examination; for example, if you're [textlink="constructing" link="Construction"] a wall, it'll tell you the next step if you look at it a bit closer.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml b/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml
new file mode 100644
index 000000000000..1d3b8842b995
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/ExpandingRepairingStation.xml
@@ -0,0 +1,39 @@
+
+ # Expanding and Repairing Stations
+ In Space Station 14, it is common for players to want to expand the station, or repair holes left by meteors or other damage.
+
+ ## Lattice
+ Lattice is bare rodwork placed in empty space. It's used as a foundation for building and anchoring objects onto the station.
+
+
+
+
+
+
+ You can create lattice by placing rods on empty space using [color=yellow][bold][keybind="Use"][/bold][/color]. Remember you can craft steel sheets into rods using the construction menu.
+
+ Lattice cannot hold pressure, and all gasses will leak out into space through it.
+
+ You can use wirecutters to remove lattice by using [color=yellow][bold][keybind="Use"][/bold][/color] on them.
+
+ If the game is preventing you from placing lattice, it's because there is another separated grid too close to the grid you're trying to expand. You can use a wirecutter to remove the offending grid.
+
+ ## Hull Tiles
+ Hull tiles are solid foundation for the station, where all the other parts of the station rest upon.
+
+
+
+
+
+
+
+
+ Lattice can be made into hull tiles by using either steel or almost any type of floor tile on them by pressing [color=yellow][bold][keybind="Use"][/bold][/color].
+ This will convert the lattice into a hull tile, which can hold pressure and gasses.
+
+ It is advised to use floor tiles to replace lattice instead of steel sheets, as you can craft 4 floor tiles from a single steel sheet.
+
+ You can use an RCD to deconstruct hull tiles into lattice.
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml b/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml
new file mode 100644
index 000000000000..7bf5071d287c
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/FireAndGasControl.xml
@@ -0,0 +1,77 @@
+
+ # Fire and Gas Control
+ Unfortunately, [textlink="fires" link="Fires"], [textlink="spacing" link="Spacing"], and other [textlink="atmospheric upsets" link="AtmosphericUpsets"] are a common occurrence on the station.
+ These upsets can quickly spread throughout the station and make the atmosphere uninhabitable for the crew.
+
+
+
+
+
+
+
+
+ To combat this, stations have a variety of devices to help prevent these upsets from spreading.
+
+ ## Firelocks
+ Firelocks are a simple and effective way to prevent fires from spreading throughout the station.
+
+ Based on conditions sensed by the firelock, or through instruction from a connected [textlink="air" link="AirAlarms"] or fire alarm, they can close off sections of the station to prevent the spread of dangerous conditions.
+
+ ## Station Sectioning
+ Firelocks are intentionally placed in key areas to divide the station into sections. Open spaces like hallways or promenades are divided into smaller sections. This prevents the spread of dangerous conditions to the entire station through connected rooms, hallways, and other open spaces.
+
+ ## Basic Operation
+ When not connected to an [textlink="air alarm" link="AirAlarms"] or fire alarm, firelocks will function based on the conditions they sense. Firelocks will drop (close) if:
+ - The temperature between the two sides of the firelock is different by [color=orange][protodata="Firelock" comp="Firelock" member="TemperatureThreshold"/] K[/color] or more.
+ - The pressure between the two sides of the firelock is different by [color=orange][protodata="Firelock" comp="Firelock" member="PressureThreshold"/] kPa[/color] or more.
+
+ If these conditions continue, the firelock will enter lockout mode. Firelocks in lockout mode will have [color=red]red[/color] lights and cannot be pried open by hand. They can only be opened by people with Engineering access or by using a crowbar.
+
+ Firelocks in lockout mode cannot be opened by using Engineering access if they are unpowered. Only a crowbar can open an unpowered firelock in lockout mode.
+
+ If the conditions between the two sides of the firelock return to within acceptable differences, the firelock will disable lockout mode, and can be opened by anyone.
+ Note that this only means that the conditions are the same on both sides of the firelock, not that they are safe.
+
+ A common example of this is a firelock that has released due to both sides being exposed to space.
+
+ ## Connecting to Air and Fire Alarms
+ Firelocks can be connected to [textlink="air alarms" link="AirAlarms"] and fire alarms to receive instructions on when to drop.
+ Firelocks use the [textlink="List system" link="Networking"], and you can connect these devices using a multitool or network configurator.
+
+
+
+
+
+
+
+
+
+ Each firelock has its own unique address. The process for connecting air vents, scrubbers, and sensors to air alarms is very similar.
+
+ ## Operation Under Air Alarms
+ When connected to an air alarm, firelocks will also drop under the command of the connected [textlink="air alarm" link="AirAlarms"].
+
+ Firelocks will drop if the air alarm reaches a [color=red]Danger[/color] alert state. Firelocks will remain dropped until the air alarm returns to a [color=green]Green[/color] alert state.
+
+ Firelocks that are in lockout mode will not raise even if the air alarm returns to a [color=green]Green[/color] alert state. Even if the pressure difference is resolved, the firelock will remain dropped until the air alarm re-sends a green alert state.
+
+ ## Operation Under Fire Alarms
+ When connected to a fire alarm, firelocks will drop if the fire alarm is triggered. Firelocks will remain dropped until the fire alarm is reset.
+
+ ## Fire Alarms
+ Fire alarms are devices that can be used to centrally control all connected firelocks.
+
+
+
+
+
+ Devices with sensors can be [textlink="linked" link="Networking"] to fire alarms, which will trigger the fire alarm if the sensor enters the [color=red]Danger[/color] temperature threshold as defined by its sensors.
+
+ When the fire alarm is triggered, all connected firelocks will be overridden with a [color=red]Danger[/color] alert state and will drop.
+
+ The alarm will automatically clear itself when the sensor returns to a [color=green]Normal[/color] temperature threshold.
+
+ You can trigger and reset a fire alarm manually by interacting with it.
+
+ This can be used to quickly drop firelocks in a room manually, or to raise them after an upset has been resolved.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
index c03c8af9a625..ca728f1e8d60 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Fires.xml
@@ -1,29 +1,25 @@
-
- # Fires & Space
+
+ # Fires
+ Fires are arguably the most dangerous atmospheric upset that can occur on the station.
- Fires and spacings are an inevitability due to the highly flammable plasma gas and the endless vacuum of space present in and around the station, so it's important to know how to manage them.
+
+
+
+
- ## Spacing
- Space is arguably the easier of the two to handle. Be aware; active spacings will slowly siphon the air out of the station's air reserves. If you find it impossible to fix structural damage due to some other hazard, make sure to limit the airflow to that room. (Currently only half-valid due to the Gas Miners infinitely replenishing most of the useful gases)
+ They often make high-pressure and high-temperature gases, which can quickly spread throughout the station if firelocks or doors are opened carelessly, even if only for a moment.
- While it does render an area uninhabitable, it can be trivially solved by simply following a two step process. Step one is to seal the hole that caused the vacuum.
+ If people are caught in a fire, they can quickly become incapacitated, die, and even ash, rendering them unrevivable.
- Step two is to repressurize the affected area. Note that the affected area will NOT fill from the station's distro network by default. Some atmospheric devices, specifically air vents, have built-in safeguards that cause the device to be disabled if pressure in a room drops too low. This features prevents spacings from venting the distro network unintentionally.
+ ## Combating Fires
+ The key elements of a fire are fuel and oxygen.
+ Removing any of these two elements will extinguish the fire.
+ For example, fires that have no oxygen flowing to them will slowly snuff themselves out, and fires that have no fuel will also extinguish themselves.
- As a result, there are three main options to repressurize the affected area:
+ Exposing the fire to space will extinguish it, as all the gas will simply be spaced.
+ You can then [textlink="fix" link="ExpandingRepairingStation"] the [textlink="spacing" link="Spacing"] and repressurize the area.
- 1. Assuming distro vents and pipes have not been destroyed in some unfortunate accident, you may set surrounding air alarms to the "Fill" setting. This will cause connected air vents to override their safeguards and begin repressurizing the area.
- - Be aware this setting also allows vents to OVERpressurize a room, so this process must be monitored at all times.
-
- 2. Another option is to open any firelocks that were engaged in response to the original spacing. This will cause the pressure to equalize between both areas.
- - This option generally causes more firelocks to engage in the surrounding area, potentially causing disruptions or making the second area unsafe for station crew.
-
- 3. The final option is to bring a canister into the spaced area and open its release valve. An air canister at 4500kpa can fully repressurize around 20-30 tiles before running out of gas.
- - This option requires the canister be brought in from outside (generally atmos), which can be slow and time consuming depending on the situation.
-
-
- ## Fires
- Fires can be dealt with through a multitude of ways, but some of the most effective methods include:
- - Spacing the enflamed area if possible. This will destroy all of the gasses in the room, which may be a problem if you're already straining life support.
- - Dumping a Frezon canister into the enflamed area. This will ice over the flames and halt any ongoing reaction, provided you use enough Frezon. Additionally, this does not result in destruction of material, so you can simply scrub the room afterwards.
+ ## Tips
+ - [bold]Know the signs of a future fire.[/bold] If an area is filled with highly flammable gasses, it's only a matter of time before a careless passenger sets it off. Try to isolate the area and scrub the gasses out as quickly as possible.
+ - [bold]Prevent the spread of gasses using a holofan projector.[/bold] Letting gasses through a firelock can make other rooms dangerous, even for a moment. This increases the number of rooms you have to fix.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml b/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml
new file mode 100644
index 000000000000..5512f7fbdc00
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/GasCanisters.xml
@@ -0,0 +1,30 @@
+
+ # Gas Canisters
+
+
+
+
+
+
+
+
+
+
+
+ Gas canisters are a way to store gas in a portable container for easy transport.
+ They can store [color=orange][protodata="StorageCanister" comp="GasCanister" member="Volume"/] liters[/color] of gas.
+
+ You can connect handheld tanks to a gas canister to refill them using the release valve on the canister.
+ The release valve also has a adjustable pressure regulator to control the pressure of the handheld tank connected.
+
+ Opening the release valve on a canister with no handheld tank connected will release gas into the atmosphere, at the specified regulator pressure.
+
+ [bold]Be sure to close the release valve before you eject your handheld tank![/bold]
+
+ ## Connector Ports
+ Gas canisters and [textlink="portable scrubbers" link="PortableScrubber"] can be connected to a [textlink="pipenet" link="PipeNetworks"] by anchoring (wrenching) the device on top of a connector.
+ When connected, gas will be free to move in and out of the canister to balance pressure, temperature, and composition.
+
+ A pump can be used to insert or extract gas from a canister, useful for filling or emptying a canister entirely.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml b/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml
new file mode 100644
index 000000000000..3dd05c0f3089
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/GasCondensing.xml
@@ -0,0 +1,23 @@
+
+ # Gas Condensing
+ Gas condensers take gasses and condense them into their liquid (reagent) forms.
+
+
+
+
+
+ For example, water vapor can be condensed into liquid water, oxygen into liquid oxygen, and so on.
+
+ It has a [textlink="pipenet" link="PipeNetworks"] connection to input gas, and an internal tank to store the condensed liquid.
+
+ A condensor will stop condensing gas if the tank is full.
+ You can take liquid out of the condenser by interacting with it using any empty container.
+
+ Gas condensors can take multiple gasses as input, and will condense them into their liquid forms.
+ For example, if you input a mixture of oxygen and nitrogen, you will get liquid oxygen and liquid nitrogen in the output tank.
+
+ Because [textlink="Chemistry" link="Chemist"] works with limited reagents in liquid form, they will highly appreciate the work of a skilled atmospherics technician who can provide them with the reagents they need.
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml b/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml
new file mode 100644
index 000000000000..3a3857ae4cb3
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/GasManipulation.xml
@@ -0,0 +1,108 @@
+
+ # Gas Manipulation
+ Atmos has a wide variety of tools and equipment at their disposal for the manipulation of gasses throughout the station.
+
+ [bold]Warning: unanchoring (unwrenching) most devices containing gas will [color=red]leak gas[/color] into the atmosphere.[/bold]
+ You can safely unanchor [textlink="canisters" link="GasCanisters"], [textlink="portable scrubbers" link="PortableScrubber"], [textlink="condensers" link="GasCondensing"], and [textlink="thermomachines" link="Thermomachines"].
+
+
+
+
+
+
+
+
+
+ ## Pipes
+
+
+ [color=#999999][italic]Distributing gasses from one place to another[italic][/color]
+
+
+
+
+
+
+
+ ## Pumps
+
+
+ [color=#999999][italic]Forcing the movement of gasses from one place to another[italic][/color]
+
+
+
+
+
+
+
+
+
+
+ ## Atmosphere Input and Output
+
+
+ [color=#999999][italic]Inserting and extracting gasses from a present (or non-present) atmosphere[italic][/color]
+
+
+
+
+
+
+
+
+
+ ## Valves
+
+
+ [color=#999999][italic]Controlling the flow of gas through pipes[italic][/color]
+
+
+
+
+
+
+
+ ## Mixing and Filtering
+
+
+ [color=#999999][italic]Manipulating the composition of gas[italic][/color]
+
+
+
+
+
+
+
+
+
+
+
+ ## Gas Canisters
+
+
+ [color=#999999][italic]Storing and transporting gas for easy use by the crew[italic][/color]
+
+
+
+
+
+
+
+
+
+ ## Thermomachines and Radiators
+
+
+ [color=#999999][italic]Manipulating the temperature of gasses in a pipenet or atmosphere[italic][/color]
+
+
+
+
+
+
+ ## Gas Condensing
+
+
+ [color=#999999][italic]Condensing gasses for further use[italic][/color]
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml
new file mode 100644
index 000000000000..dd633a2804aa
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/GasMiningAndStorage.xml
@@ -0,0 +1,66 @@
+
+ # Gas Mining and Storage
+ Gasses are often permanently used. Whether they are lost to [textlink="space" link="Spacing"] or used in a burn chamber, the station needs to be able to produce more gas to replace what is lost.
+ It also needs to store this gas in a safe and efficient manner.
+
+ ## Gas Miners
+ Gas miners are used to replenish the station's gas supply. They are found in the gas storage tanks in Atmospherics.
+
+
+
+
+
+
+ Gas miners constantly produce room temperature gas and push it into the exposed atmosphere. They require no power to function, and never stop working unless they have reached the defined [bold]cutoff pressure[/bold].
+
+ You can see more information about the gas miners by inspecting them using [color=yellow][bold][keybind="ExamineEntity"][/bold][/color].
+ Try inspecting the gas miners presented above.
+
+ Gas miners come in tiers, with the larger versions having a higher pressure cutoff than the smaller versions.
+
+
+
+
+
+
+
+ If gas miners are ever unanchored from the station, they can be reanchored using a regular wrench.
+
+ ## Gas Storage
+ Gas storage tanks are used to store gas produced by the gas miners, and to make it available to other processes. They are found in Atmospherics.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ [color=#999999][italic]An example of a small gas holding tank[italic][/color]
+
+
+ Various atmos processes insert and remove gasses from the gas storage tanks.
+ For example:
+ - The gas miner provides fresh gasses to the gas storage tanks, if there is room.
+ - The recyclernet injects reclaimed gasses into the gas storage tanks for reuse.
+ - Setups like the distronet and burn chamber remove gasses from the gas storage tanks.
+
+ Gas storage tanks are designed to be able to be measured using a [textlink="Gas Analyzer" link="AtmosTools"].
+ Because the outflow vent is a [textlink="passive vent" link="PassiveVent"], you can use a [textlink="gas analyzer" link="AtmosTools"] to measure the gas content of the [textlink="pump's" link="Pumps"] input, which is drawing from the gas storage tank.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml b/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml
new file mode 100644
index 000000000000..a5fadbaa84c2
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Gasses.xml
@@ -0,0 +1,122 @@
+
+ # Gasses
+ Gasses are a critical part of the station's operation.
+ You may know them as the stuff you breathe, but they are also used in many other ways.
+
+ Gasses have certain properties that make them useful for different tasks.
+ Atmospherics can also synthesize exotic gasses from other gasses, which can be used for special purposes.
+
+ ## Oxygen
+
+
+
+
+
+
+
+
+ A common gas, used by most species on the station to breathe.
+
+ Oxygen is an oxidizer, which means it supports combustion.
+ This makes it both useful when fusing gasses in a burn chamber, and dangerous when mixed with flammable gasses.
+
+ ## Nitrogen
+
+
+
+
+
+
+
+
+ An inert gas, used in part with oxygen to create a breathable atmosphere.
+
+ Nitrogen is very stable and comprises most of a standard breathable atmosphere.
+
+ Some species like Slimes breathe nitrogen, with the Vox species requiring strictly nitrogen to breathe.
+
+ ## Air Mix
+
+
+
+
+
+ A mixture of gasses that is breathable to most species on the station.
+ It consists of 21% oxygen and 79% nitrogen.
+
+
+ ## Carbon Dioxide
+
+
+
+
+ A waste gas produced by most species on the station. A common byproduct of combustion.
+
+ Despite seeming useless, some departments use it in their line of work.
+
+ ## Water Vapor
+
+
+
+ A common gas, produced by the burning of plasma and other processes.
+
+ Water vapor has a good specific heat capacity compared to other gasses, making it useful for moving heat around.
+
+ ## Plasma
+
+
+
+ A highly flammable gas that is used in many processes on the station.
+
+ Engineering uses this gas to generate power and create exotic gasses.
+
+ Burning it generates a lot of heat, as well as gas byproducts such as carbon dioxide, water vapor, and tritium, depending on the efficiency of the burn.
+
+ Plasma gas also has a good specific heat capacity, making it useful for moving heat around.
+
+ ## Tritium
+
+
+
+ An extremely flammable radioactive gas that is used in the creation of frezon.
+
+ Tritium is produced when burning plasma in a burn chamber, and can be used to create frezon gas in a complicated mixing process.
+
+ The efficiency of tritium fusion depends on various factors such as burn richness and temperature.
+
+ ## Frezon
+
+
+
+
+ A highly sought after gas, due to the difficulty in creating it and its many properties.
+
+ It has an extremely high specific heat capacity, making it excellent for moving large amounts of heat around.
+
+ Frezon can combine in the air with nitrogen to create nitrous oxide, alongside cooling down the air significantly to below freezing temperatures.
+
+ Frezon is very complicated to create, requiring a mix of tritium, oxygen, and nitrogen, all tuned precisely to create the gas.
+ If you're looking to create this gas yourself, here's what you need to know:
+ - Frezon is produced by the combination of oxygen, tritium, and nitrogen.
+ - Tritium and oxygen are mixed at a ratio of around 1:8.
+ - Nitrogen is required as a catalyst for the reaction. The amount of nitrogen consumed is dependent on the efficiency of the reaction.
+ - The frezon reaction only occurs at cryogenic temperatures, below 73.15 K. The efficency of the reaction (how much frezon is produced) is dependent on the temperature. The closer to 73.15 K, the more frezon is produced, and the less nitrogen is consumed.
+
+ Remember, atmospherics is all about experimentation and process optimization. Try it until you get it right!
+
+ ## Nitrous Oxide
+
+
+
+
+ A recreational and waste gas, produced by slimes and the combination of frezon and nitrogen.
+
+ ## Ammonia
+
+
+
+ A gas produced by the decomposition of bodies.
+
+ Can be condensed to create ammonia, which can be used to make space cleaner.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Generators.xml b/Resources/ServerInfo/Guidebook/Engineering/Generators.xml
new file mode 100644
index 000000000000..0bd532643587
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Generators.xml
@@ -0,0 +1,75 @@
+
+ # Generators
+ Generators are devices that produce power for the station. They vary in size and power output, and each has its own unique quirks and requirements.
+
+ Engineers are intended to setup low-tier generators like Solar Arrays and the AME at the start of the shift, to give enough time to setup higher-tier generators like the Singularity Engine for sustained power for the rest of the shift.
+
+
+
+
+
+
+ ## Singularity and Tesla Engine
+
+
+ [color=#999999][italic]Devices capable of infinite energy — and destructive potential[italic][/color]
+
+
+
+
+
+
+
+ ## Antimatter Engine
+
+
+ [color=#999999][italic]Short-term support generator for the station[italic][/color]
+
+
+
+
+
+
+
+
+ ## Thermo-electric Generator
+
+
+ [color=#999999][italic]Advanced atmospherics generator that harnesses the energy of gasses[italic][/color]
+
+
+
+
+
+
+
+
+ ## Solar Panels
+
+
+ [color=#999999][italic]Low-maintenance passive power source[italic][/color]
+
+
+
+
+
+
+
+
+
+ ## Portable Generators
+
+
+ [color=#999999][italic]Portable generators for crew use and emergency power[italic][/color]
+
+
+
+
+
+
+ ## Radioisotope Thermoelectric Generator
+
+
+ [color=#999999][italic]Zero-maintenance passive power source[italic][/color]
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml b/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml
new file mode 100644
index 000000000000..a4a63cec1f8b
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/InspectingPower.xml
@@ -0,0 +1,60 @@
+
+ # Inspecting Power
+ Engineers can inspect a power network to see useful statistics about it.
+ This can help engineers diagnose power issues and find root causes to problems.
+
+ ## Power Monitoring Computer
+ The Power Monitoring Computer is a device that can be used to inspect all the power networks on the station.
+
+
+
+
+
+ The Power Monitoring Computer has two major sections, a station map and the power statistics.
+
+ The station map shows:
+ - The station layout, with [color=green]low[/color], [color=yellow]medium[/color], and [color=orange]high[/color] [textlink="voltage networks" link="VoltageNetworks"] highlighted.
+ - [textlink="All APCs, SMES, and substations." link="VoltageNetworks"]
+ - All power [textlink="producers" link="Generators"] connected to the station (note that they don't have to be connected to a power network to be shown).
+
+ The power statistics show:
+ - The total [textlink="generator" link="Generators"] output, which is what the generators are currently producing to match grid demand.
+ - The total [textlink="battery" link="PowerStorage"] usage, which is the amount of power being drawn from batteries. Grids completely powered by generators will show low battery usage.
+ - The total network loads, which is the amount of power being requested by the station.
+
+ In an ideal situation, the total generator output should match the total network load, and the total battery usage should be low.
+ Using these three statistics, engineers can get an accurate picture of the station's power situation.
+ For example:
+ - If the total generator output is lower than the total network load, the station is in a power deficit.
+ - If the total battery usage is high, the station is drawing power from batteries to make up the difference.
+ - If it is zero with the generator load below the total network load, then the station is actively in a brownout, as the batteries are fully discharged.
+ - If the total generator output is higher than the total network load, the SMESes are charging.
+
+ ## Device Tabs
+ The Power Monitoring Computer has tabs for each device category on the station.
+ Navigating these power tabs will show the power statistics for each device category.
+ For example:
+ - Clicking on a source will show what that source is supplying the power to, and how much power it is supplying. It will also highlight the devices that are connected to that source.
+ - Clicking on an SMES, Substation, or APC will show the two power grids it is connected to, how much power it is receiving, and how much power it is distributing, as well as the exact devices that are making an exchange with the target device.
+
+ ## Inspecting via Multitool
+ The Multitool can be used to inspect power cables to see their power statistics.
+
+
+
+
+
+ When you click on a cable with the Multitool, it will show the cable's power statistics. This includes:
+ - The current supply, which is the amount of power the source is providing.
+ - The current supply from batteries, which is the amount of power being drawn from batteries.
+ - The theoretical supply, which is the maximum amount of power the source could provide if demanded.
+ - The ideal consumption, which is the current demand on the cable.
+ - The input storage, which is the capacity of batteries that are currently charging.
+ - The output storage, which is the capacity of batteries that are currently discharging.
+
+ Note that this information is relevant only to the voltage network you inspected.
+ A [color=green]low voltage[/color] cable (which likely only services a few rooms) will not show the same statistics as a [color=orange]high voltage[/color] cable (which services the entire station).
+
+ This is useful information to keep in mind, as it can help you troubleshoot why "this room is powered, but this one isn't!"
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml b/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml
new file mode 100644
index 000000000000..d13a5ebdc0be
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/ManualValve.xml
@@ -0,0 +1,15 @@
+
+ # Manual Valve
+ The manual valve is as simple as it gets.
+ Allows or blocks the flow of gasses depending on if it's open or closed.
+
+
+
+
+ Gas can freely flow between both sides with no restrictions.
+
+ Manual valves are used in a variety of applications, for example:
+ - Allowing or blocking the bypass of a recyclernet, to space waste gas directly
+ - Connecting or isolating heaters/coolers from the station's distro
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml
new file mode 100644
index 000000000000..5814dd4b0838
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/MixingAndFiltering.xml
@@ -0,0 +1,55 @@
+
+ # Mixing and Filtering
+ Gas mixers and filters are essential tools for manipulating the composition of gases within a [textlink="pipe network" link="PipeNetworks"].
+
+
+
+
+
+ ## Gas Mixer
+ Gas mixers are used to combine gases in specific ratios within a [textlink="pipe network." link="PipeNetworks"]
+ They are essential for creating controlled gas mixtures for various applications.
+
+ Gas mixers have 3 connections: 2 inputs and 1 output, as shown below:
+
+
+
+
+
+
+
+
+
+ Gas mixers will still respect the requested gas mixture even if one of the input gases is not available. For example:
+ - If the requested mixture is 22% oxygen and 78% nitrogen, but there is no available oxygen, the mixer will not work until oxygen is available.
+ - If oxygen is available, but at a pressure lower than required to create the proper mixture at the requested pressure, the mixer will still create the mixture, but the output will be at a lower pressure than requested.
+
+ Gas mixers also mix gasses based on pressure, not on mols. This can cause problems if the gasses are at different temperatures. For example:
+ - Presume a gas mixer was asked to mix Oxygen and Nitrogen at a ratio of 1:2 at a certain pressure.
+ - The Nitrogen in this case is double the temperature of the Oxygen.
+ - Hotter gas has more pressure, and thus fewer mols per volume than Oxygen.
+ - Because of this, Nitrogen will have half the mols compared to Oxygen when the gas mixer attempts to create the mix.
+ - The output will be 1:1 instead of 1:2. You'll have 1 mol of Nitrogen per 1 mol of Oxygen, instead of 2 mols of Nitrogen per 1 mol of Oxygen.
+
+ Gas mixers can be used in a variety of applications, for example:
+ - Mixing oxygen and nitrogen to create a breathable atmosphere
+ - Mixing oxygen and plasma for plasma burning to create Tritium
+
+ ## Gas Filter
+ Gas filters are used to separate gases from a mixture within a [textlink="pipe network." link="PipeNetworks"]
+
+
+
+
+
+
+
+
+
+
+ Gas filters will become blocked and will not filter gas if either output is blocked.
+
+ Gas filters can be used in a variety of applications, for example:
+ - Filtering out unwanted gases from a [textlink="pipe network" link="PipeNetworks"]
+ - Separating specific gases for storage in a station's recyclernet
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml b/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml
deleted file mode 100644
index 6c47d4a916fe..000000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/NetworkConfigurator.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
- # Network Configurator
- The network configurator allows you to manipulate device lists, link devices together and configure accesses for airlocks through door electronics.
-
-
-
- The configurator has two modes: List and Link. You can press [color=gray]Alt+Z[/color] or [color=gray]Alt+Y[/color] to switch between them.
-
- ## List Mode
- In list mode you can click on network devices to save them on the configurator and then on a network device that has a device list like the [color=#a4885c]Air Alarm[/color].
-
- When clicking on a device like the Air Alarm, a UI will open, displaying the list currently saved on the device and buttons to manipulate that list.
-
- You can:
- - Replace the current list with the one saved on the configurator
- - Add the list on the configurator to the current one
- - Clear the current list
- - Copy the current list to the configurator
- - Visualize the connections to the devices on the current list
-
- Pressing [color=gray][keybind="ActivateItemInHand"][/color] opens the list saved on the configurator where you can remove saved devices.
-
- ## Link Mode
- With link mode, you can click on a device that is capable of device linking and then click on any other device that is either a sink or source.
-
- For example, first clicking on a source, like a [color=#a4885c]signal button[/color], and then on sink, like a [color=#a4885c]small light[/color], opens a UI that displays the source ports on the left side and the sink ports on the right.
-
- Now, you can either click [color=gray]Link Defaults[/color] to link the default ports for a source + sink combination, or press on a source port and then a sink port to connect them.
-
- An example of a default link for the aforementioned combinaton of devices would be:
-
- [color=cyan]Pressed 🠒 Toggle[/color]
-
- When you're done connecting the ports you want, you can click on [color=gray]OK[/color] to close the UI.
-
- You can quickly link multiple devices to their default port by first clicking on a device that can be linked and then using [color=gray]Alt+Left Mouse button[/color] on the devices you want to link together.
-
- ## Airlock Access
- To configure an airlock's access, simply take the airlock's door electronics and interact with it using a network configurator (or multitool). Select the accesses you want, insert the door electronics into an airlock frame, and construct to finish!
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Networking.xml b/Resources/ServerInfo/Guidebook/Engineering/Networking.xml
index 74e2b0462519..3ffdccfeb78e 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Networking.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Networking.xml
@@ -1,24 +1,64 @@
# Networking
- Some devices on the station need to communicate with each other, and they do this by utilizing device networking.
- With networking, machines and devices can send arbitrary data between each other.
- There are multiple networks that get used, such as the wireless and wired network.
- Each network device has a frequency it receives on. PDAs, for example, use the frequency: [color=green]220.2[/color]
+ On the station, devices need to communicate to each other to preform their functions.
+ [textlink="Air alarms" link="AirAlarms"] need to talk to their respective devices, [textlink="doors" link="Airlocks"] need to be linked to form proper airlocks, and much more.
- Note: The following operations will require use of the Network Configurator to be performed:
+ This is done through two systems, the Link system and the List system.
- ## Device Lists
- Some devices need to know which other devices to communicate with specifically.
-
-
-
- Air alarms, for example, require you to tell it which vents, scrubbers, sensors, and firelocks to interact with.
+ You can use either the Multitool or Network Configurator to interact with these systems.
+ You can switch between the different systems using [color=yellow][bold][keybind="AltActivateItemInHand"][/bold][/color] or by hovering your cursor over the device and using [color=yellow][bold][keybind="AltActivateItemInWorld"][/bold][/color].
- ## Linking
- If a device, basic or advanced, needs finer controls of how and which devices it connects to, it will generally use device linking.
+
+
+
+
-
-
+
- With linking, you can connect the outputs of a device, like [color=gray]On[/color] or [color=gray]Off[/color], with the inputs of a device, like the airlocks [color=gray]Open[/color] or [color=gray]Close[/color] inputs.
+
+
+ Some devices will require access to link devices to them.
+ For example, you need Atmospherics access to link devices to an [textlink="air alarm" link="AirAlarms"].
+ For doors, you'll need the access level of the door you're linking to.
+
+ ## Link System
+ The link system is used for explicitly linking two devices, such as linking a door to another door.
+
+
+
+
+
+
+
+
+ Under the link system, devices have [bold]ports[/bold] that are capable of either sending or receiving signals.
+
+ Hovering over a port using your cursor will show a tooltip that tells you what the port does.
+ For example, output ports will state the conditions under which they will invoke a signal, and input ports will state what the device will do if it receives a signal.
+
+ ## List System
+ The list system is used for linking multiple devices to a single primary device, such as linking multiple atmospherics devices to an air alarm.
+
+
+
+
+
+
+
+
+
+ Each device has its own unique address, which is used to identify it in the list system. When you link a device to a primary device, you are adding the device's address to a list of devices that the primary device will communicate with.
+
+ You can save a device's address to your tool by interacting with the device using [color=yellow][bold][keybind="Use"][/bold][/color].
+
+ Once you have a list of devices saved to your tool, you can link them to a primary device by interacting with the primary device using [color=yellow][bold][keybind="Use"][/bold][/color], which will bring up a UI.
+
+ The UI has multiple options:
+ - Set: Overwrites the current list of linked devices with the devices saved on the tool.
+ - Add: Adds the devices saved on the tool to the current list of linked devices.
+ - Clear: Removes all linked devices from the air alarm.
+ - Copy: Copies the list of currently linked devices to the tool.
+ - Show: Draws a line between the primary device and all linked devices. This is useful for visualizing the area the air alarm covers.
+
+ If you need to clear your tool, you can press [color=yellow][bold][keybind="Use"][/bold][/color] on the tool or use [color=yellow][bold][keybind="ActivateItemInHand"][/bold][/color] to bring up a list of saved devices, and then press the "Clear" button.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml b/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml
new file mode 100644
index 000000000000..7a7a8f770300
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PassiveGate.xml
@@ -0,0 +1,15 @@
+
+ # Passive Gate
+ The passive gate is a simple one-way valve that prevents gasses from flowing backwards.
+
+
+
+
+ The valve's input is on the side of the [color=red]red[/color] circle.
+ The valve also shows the current flow rate of the pipe when examined.
+
+ It's useful in many applications, for example:
+ - Preventing a pure gas from getting contaminated via a mixed gas flowing back through the pipe.
+ - Preventing pressure or temperature changes across two [textlink="pipenets" link="PipeNetworks"] in the opposite direction.
+ - Quickly checking the flow rate on a pipenet without needing a [textlink="gas analyzer" link="AtmosTools"].
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml b/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml
new file mode 100644
index 000000000000..eac70540aa42
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PassiveVent.xml
@@ -0,0 +1,15 @@
+
+ # Passive Vent
+ The passive vent is an extremely basic vent.
+ It serves as a direct connection between the pipenet it's connected to and the atmosphere it's exposed to.
+
+
+
+ Gasses are free to move between the passive vent and the atmosphere it's connected to.
+ The passive vent requires no [textlink="power" link="Power"] to function.
+
+ This vent is commonly found in the station's [textlink="gas storage tanks" link="GasMiningAndStorage"] and connected to the station's wastenet.
+ It is a simple and reliable way to pull gasses from a gas miner, or to space unwanted gasses safely.
+
+ The passive vent can be welded with any welding tool to stop it from functioning.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml b/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml
new file mode 100644
index 000000000000..6bdaaa0f46ae
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PipeNetworks.xml
@@ -0,0 +1,41 @@
+
+ # Pipe Networks
+ Pipe networks — commonly called Pipenets — are a series of interconnected [textlink="pipes" link="Pipes"], usually with a common task.
+
+
+
+
+
+
+
+
+
+
+
+ Pipenets are used all throughout the station to deliver, remove, or otherwise move gas throughout it.
+ Great examples are the station's Distro or Wastenet, which deliver breathable air and remove waste gas, respectively.
+
+ ## How Pipenets Work
+ In Space Station 14, pipenets behave as a whole, defined volume, with input/output points at the ends of the network.
+ Forcing or vacuuming gas in or out using a [textlink="pump" link="Pumps"] will affect the entire network, not just the pipe it's connected to.
+
+ Pipenets are only separated by devices capable of interrupting flow, or by certain devices.
+ For example, a [textlink="Pressure Pump" link="Pumps"] will not allow gas to flow through it unless it's powered and has gas to pump.
+
+ Some examples of devices that separate pipe networks are:
+ - [textlink="Pressure and Volumetric Pumps" link="Pumps"]
+ - [textlink="Gas Mixers and Filters" link="MixingAndFiltering"]
+ - [textlink="All Valves" link="Valves"]
+ - [textlink="Radiators" link="Radiators"]
+
+ An example of a pipenet being seperated into two, distinct pipenets by a [textlink="pump" link="Pumps"] is shown below:
+
+
+
+
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml b/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml
new file mode 100644
index 000000000000..92df26bcd3e1
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Pipes.xml
@@ -0,0 +1,25 @@
+
+ # Pipes
+ Pipes are used to distribute gasses from one place to another.
+ There are a wide variety of pipes available to construct:
+
+
+
+
+
+
+
+
+
+ Pipes will [color=#a4885c]automatically connect[/color] to other pipes when anchored (or wrenched) to the hull to form a [textlink="network of pipes." link="PipeNetworks"]
+ A network of pipes is commonly called a [textlink="pipenet" link="PipeNetworks"].
+
+ Pipes will [color=red]not connect[/color] to pipes that are already connected to a different pipe.
+ For example, building a bent pipe on top of a straight pipe to form a makeshift T-junction will not work.
+
+ However, two pipes can share a tile as long as one isn't obstructing the other's connection to another pipe.
+ For example, two bend pipes can be placed on the same tile, with one moving gas from north to east, and the other moving gas from west to south.
+
+ You can color pipes (and most equipment that handles gasses) using a spray painter.
+ This is commonly done to distinguish the air and waste components of the station's Distro pipenet.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml b/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml
new file mode 100644
index 000000000000..d69facf697e7
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PneumaticValve.xml
@@ -0,0 +1,43 @@
+
+ # Pneumatic Valve
+ The pneumatic valve is a bidirectional valve controlled via a pressure input.
+
+
+
+
+ The pneumatic valve has 3 connections: input, output, and control.
+ The "input" side will be the input/output connection with the highest pressure, and can switch sides, making the valve bidirectional.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The valve will [color=green]open[/color] when the pressure on the output side is lower than the pressure on the control side by [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color].
+
+ The valve will [color=red]close[/color] when the pressure of the output side reaches the pressure of the control side within [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color].
+
+ For example, a pneumatic valve with a control pressure of 500 kPa will open when the output pressure is 500 kPa - [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color] or lower, and it will close when the output pressure is 500 kPa - [color=orange][protodata="PressureControlledValve" comp="PressureControlledValve" member="Threshold"/] kPa[/color] or higher.
+
+ The valve's control pressure is determined by a pipenet connection, and as such can be adjusted on the fly by a [textlink="pump" link="Pumps"] or another source of pressure control.
+
+ ## Differences to Pumps
+
+ The pneumatic valve is different from a [textlink="pump" link="Pumps"] which moves gas via work.
+ The pneumatic valve is a passive device that moves gas based on the higher pressure of the input gas, and as such it can sometimes fill volumes faster than a [textlink="pump" link="Pumps"] can.
+
+ For example, a pneumatic valve with a control pressure of 500 kPa will fill a volume faster than a pressure [textlink="pump" link="Pumps"] set to 500 kPa.
+ However, the [textlink="pump" link="Pumps"] will be able to maintain the pressure in the volume more accurately.
+
+ The pneumatic valve can be used in a variety of applications, for example:
+ - To automatically vent gasses in a burn chamber based on control input
+ - The filling of a volume quickly, based on a customizable control pressure
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml
index ee637de51492..55a1e7fde54e 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/PortableGenerator.xml
@@ -1,7 +1,8 @@
# Portable Generators
- Need power? No engines running? The "P.A.C.M.A.N." line of portable generators has you covered.
+ The "P.A.C.M.A.N." line of portable generators are used to provide emergency or supplemental power to key rooms, areas, or even departments.
+ They are easy to set up and maintain, and can be used to power critical systems and areas in the event of a power outage.
@@ -16,10 +17,12 @@
- The J.R.P.A.C.M.A.N. can be found across the station in maintenance shafts, and is ideal for crew to set up themselves whenever there are power issues. Its output of up to [color=orange][protodata="PortableGeneratorJrPacman" comp="FuelGenerator" member="MaxTargetPower" format="N0"/] W[/color] is enough to power a few important devices.
+ The J.R.P.A.C.M.A.N. can be found across the station in maintenance shafts, and is ideal for crew to set up themselves whenever there are power issues.
+ Its output of up to [color=orange][protodata="PortableGeneratorJrPacman" comp="FuelGenerator" member="MaxTargetPower" format="N0"/] W[/color] is enough to power a room or two, which can prove invaluable in a place like Medbay or Chemistry in the Medical Department.
+
Setup is incredibly easy: wrench it down above an [color=green]LV[/color] power cable, give it some welding fuel, and start it up.
- Welding fuel should be plentiful to find around the station. In a pinch, you can even transfer some from the big tanks with a soda can or water bottle. Just remember to empty the soda can first, I don't think it likes soda as fuel.
+ Welding fuel is the only fuel source the J.R.P.A.C.M.A.N. can use, and it can be found in welding fuel tanks across the station, commonly in maintenance areas.
# The Big Ones
@@ -33,11 +36,12 @@
- The (S.U.P.E.R.)P.A.C.M.A.N. is intended for usage by engineering for advanced power scenarios. Bootstrapping larger engines, powering departments, and so on.
+ The P.A.C.M.A.N. and S.U.P.E.R.P.A.C.M.A.N. is intended for usage by engineering for larger power outages and supplementing power in the event of a deficit.
+ Bootstrapping larger [textlink="engines" link="SingularityTeslaEngine"], powering departments, and so on.
The S.U.P.E.R.P.A.C.M.A.N. boasts a larger power output (up to [color=orange][protodata="PortableGeneratorSuperPacman" comp="FuelGenerator" member="MaxTargetPower" format="N0"/] W[/color]) and longer runtime at maximum output, but scales down to lower outputs less efficiently.
- They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] power cables, and are able to switch between them for flexibility.
+ They connect directly to [color=yellow]MV[/color] or [color=orange]HV[/color] [textlink="power cables" link="VoltageNetworks"], and are able to switch between them for flexibility.
The S.U.P.E.R.P.A.C.M.A.N and P.A.C.M.A.N require uranium sheets and plasma sheets as fuel, respectively.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml
new file mode 100644
index 000000000000..287e591ff320
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PortableScrubber.xml
@@ -0,0 +1,21 @@
+
+ # Portable Scrubber
+ The portable scrubber is a portable machine that can be used to scrub the atmosphere in a room.
+
+
+
+
+ It is invaluable for quickly scrubbing unwanted gasses from a room when regular [textlink="scrubbers" link="AirScrubber"] are working too slow, or when a [textlink="scrubber" link="AirScrubber"] is not present.
+
+ The portable scrubber requires [textlink="power" link="Power"] through a nearby [textlink="LV cable" link="VoltageNetworks"] to function.
+
+ The portable scrubber automatically starts scrubbing all non-breathable gasses from the room when it is bolted (wrenched) to the floor.
+
+ It will stop scrubbing when unbolted (unwrenched) from the floor, or when its internal volume is full. The scrubber has an internal capacity of [color=orange][protodata="PortableScrubber" comp="PortableScrubber" member="Volume"/] liters[/color].
+
+ ## Dumping Waste and Storage
+ The scrubber's internal volume can be emptied by bolting (wrenching it) onto a [textlink="connector" link="GasCanisters"].
+
+ Stations commonly have a dedicated emptying point to quickly transfer the waste from the scrubber to the station's wastenet.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Power.xml b/Resources/ServerInfo/Guidebook/Engineering/Power.xml
index 7dd227ee9b98..1d99223cabcf 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Power.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Power.xml
@@ -1,53 +1,35 @@
# Power
+ Power is the lifeblood of the station.
+ Without it, the station will quickly fall into chaos.
+ Engineers are responsible for maintaining the station's power grid, ensuring that power is supplied, distributed, and all departments are satisfied.
- SS14 has a fairly in-depth power system through which all devices on the station receive electricity. It's divided into three main powernets; High Voltage, Medium Voltage, and Low Voltage.
-
-
-
+
+
+
+
+
+
- ## Cabling
- The three major cable types (HV, MV, and LV) can be used to form independent powernets. Examine them for a description of their uses.
-
-
-
-
-
-
- ## Power storage
- Each power storage device presented functions as the transformer for its respective power level (HV, MV, and LV), and also provides a fairly sizable backup battery to help flatten out spikes and dips in power usage.
-
-
-
-
-
+ There are many different aspects to Space Station 14's power system simulation, as well as Engineering's intended gameplay.
- ## Ramping
- Contrary to what one might expect from a video game electrical simulation, power is not instantly provided upon request. Generators and batteries take time to ramp up to match the draw imposed on them, which leads to brownouts when there are large changes in current draw all at once; for example, when batteries run out.
+ Some important information to keep in mind includes:
+ - Station [textlink="generators" link="Generators"] are tiered and follow a hierarchy. The lower the tier, the less they are sustainable, but the easier they are to setup. The higher the tier, the more sustainable they are, but the more complex they are to setup.
+ - Space Station 14 features [textlink="voltage networks" link="VoltageNetworks"], which distribute power across the station and are stepped down in voltage by machines, so they can be used by other machines.
+ - Power [textlink="generators" link="Generators"] have [textlink="ramping" link="Ramping"], which means they take time to match the grid's demand to their supply.
- ## Installing power storage
- Substations are the most self-explanatory. Simply install the machine on top of an MV and HV cable; it will draw power from the HV cable to provide to MV.
+ ## Starting Out
+ At the start of the shift, the station is running off of purely [textlink="battery" link="PowerStorage"] power.
+ This will at most last 5-10 minutes, depending on the station's power draw.
- Installing APCs is similarly simple, except APCs are exclusively wallmounted machinery and cannot be installed on the floor. Make sure it has both MV and LV connections.
+ To extend this, you can start up the station's [textlink="Antimatter Engine" link="AME"], or [textlink="AME." link="AME"]
+ This will extend the runtime of the station's batteries by a significant amount, giving you more time to setup the station's higher-tier [textlink="generators." link="Generators"]
+ You can extend this even further by setting up [textlink="solar panels" link="SolarPanels"], which generate power for free.
- Installing a SMES requires you construct a cable terminal to use as the input. The SMES will draw power from the terminal and send power out from underneath. The terminal will ensure that the HV input and HV output do not connect. Avoid connecting a SMES to itself; this will result in a short circuit, which can result in power flickering or outages depending on severity.
+ After setting up the [textlink="AME" link="AME"] and [textlink="Solars" link="SolarPanels"], you should be generating a decent amount of power.
- ## APC breaking
- Currently the only power storage device that has a limit to its power to the network is the APC. As soon as all connected devices and machinery demand more than [color=#a4885c]24kW[/color] of power, its breaker will pop and everything will turn off. In the case that you are not an engineer, call an engineer (or cyborg) to re-enable it, after reducing the load back down to [color=#a4885c]below[/color] 24kW.
-
-
-
-
- ## Checking the power grid
- 1. Use the [color=#a4885c]t-ray scanner[/color] in order to locate cables that are hidden under tiles. (skip this step if cables aren't hidden)
- 2. Pry open the tile that is blocking your access to the cable with a [color=#a4885c]crowbar[/color]. (skip this step if cables aren't hidden)
- 3. Equip your trusty [color=#a4885c]Multitool[/color] and click on any cable to see the power-grid stats.
-
-
-
-
-
+ Now that you've bought yourself time, you can focus on setting up higher-tier [textlink="generators" link="Generators"] like the [textlink="Singularity Engine" link="SingularityEngine"], which can provide power for the rest of the shift.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml
new file mode 100644
index 000000000000..efd0167eb13b
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/PowerStorage.xml
@@ -0,0 +1,50 @@
+
+ # Power Storage
+ Because of [textlink="Power Ramping" link="Ramping"], it is important to have power storage devices to help flatten out spikes and dips in power usage, as well as to provide power in the event of a power deficit.
+
+ Each transformer for its respective power level ([color=orange]HV[/color], [color=yellow]MV[/color], and [color=green]LV[/color]) has an attached small battery to handle minor spikes and dips; however, this is not viable in the case of a large grid deficit.
+
+ ## SMES
+
+ The Superconducting Magnetic Energy Storage (SMES) unit is a device that can store a large amount of power and release it quickly.
+
+
+
+
+
+ In order to charge the SMES unit, [color=orange]HV[/color] power must be provided to a cable terminal pointing at the SMES unit. The SMES will draw power from the terminal and send power out from underneath.
+
+ The terminal will ensure that the [color=orange]HV input[/color] and [color=orange]HV output[/color] do not connect.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SMESes can store [color=orange][protodata="SMESBasic" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESBasic" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power.
+
+ If the battery is full, the SMES will pass through the power it receives from the input cable to the output cable. In the event of a power deficit, the SMES will ramp up to supplement the power draw.
+
+ ## Advanced SMES
+ The Advanced SMES unit is a more advanced version of the SMES unit that can store even more power.
+
+
+
+
+
+ They're primarily used in station SMES arrays to store large amounts of power for the station's power grid.
+ They help to buy engineers time to setup power at roundstart, or to provide power in the event of a power deficit for extended periods of time.
+
+ Advanced SMESes can store [color=orange][protodata="SMESAdvanced" comp="Battery" member="MaxCharge" format="N0"/] J[/color] of energy, and can output a maximum [color=orange][protodata="SMESAdvanced" comp="PowerNetworkBattery" member="MaxSupply" format="N0"/] W[/color] of power.
+
+ Keep in mind that these aren't a magic solution to power deficits, and they can't store infinite energy.
+ A station load will drain these battries quickly if there is no power source partially supporting them.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml
new file mode 100644
index 000000000000..7b399b0e5a40
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Pumps.xml
@@ -0,0 +1,48 @@
+
+# Pumps
+ Pumps are the primary way of actively moving gasses through a [textlink="pipenet." link="PipeNetworks"]
+ They take gas from one side, and push it to the other.
+ There are two different types of pumps:
+
+
+
+
+
+
+ Some important things to note about pumps:
+ - Pumps [color=#a4885c]require power[/color] through a nearby LV cable to function.
+ - Pumps output on the side with the red stripe.
+ - Gas cannot move backwards through pumps (although if you are using a pump to do solely this, you should use the [textlink="passive gate" link="PassiveGate"] instead).
+ - Pumps cannot move gasses into pipes with pressures or volumes exceeding their [color=#a4885c]limit[/color]. This causes them to be [color=red]blocked[/color].
+
+ Pumps will show a colorful animation when they are doing work.
+ If they have no gas to pump, or they are blocked, they will show a blinking [color=red]red[/color] animation.
+ Pumps that are off, have no power, or are unanchored will show no animation.
+
+ ## Pressure Pumps
+ Pressure pumps are the most common type of pump.
+ They move gas based on [color=#a4885c]pressure[/color], making them useful for controlling the exact pressure of a pipe, or for drawing a vacuum.
+
+
+
+
+
+ A pressure pump [color=red]cannot[/color] move gas to a pipe that has a pressure higher or equal to the pressure set on the pump.
+
+ For example, a pressure pump cannot pump gas to a pipe that is currently at 500 kPa, if the pressure pump is set at 500 kPa.
+
+ Pressure pumps can pump up to a maximum pressure of [color=orange][protodata="GasPressurePump" comp="GasPressurePump" member="MaxTargetPressure"/] kPa[/color].
+ They will become [color=red]blocked[/color] if they try to push gas into a pipe higher than this pressure.
+
+ ## Volumetric Pumps
+ Volumetric pumps are an alternative pump, moving gas based on [color=#a4885c]volume[/color].
+
+
+
+
+
+ They are extremely useful for moving large amounts of gas quickly.
+ They can typically achieve higher pressures than a pressure pump.
+
+ While volumetric pumps work off of the principle of volume, they will become [color=red]blocked[/color] if they try to push gas into a pipe higher than [color=orange][protodata="GasVolumePump" comp="GasVolumePump" member="HigherThreshold"/] kPa[/color].
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
index 6149b580494f..06280d5eefb2 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/RTG.xml
@@ -5,16 +5,21 @@
- Making power using a Radioisotope Thermoelectric Generator (RTG) is similar to making power using solars.
- RTGs only provide [color=#a4885c]10kW[/color] of power, but they provide it for free and for the entire round.
- Basically, if you connect an RTG to your power grid, it'll give you [color=#a4885c]free power[/color].
+ A Radioisotope Thermoelectric Generator (RTG) is a passive power source that generates power from the decay of radioactive isotopes.
+
+ They require no maintenance and are a reliable source of power, making them ideal for powering essential systems that need to be online at all times, like Telecoms, the AI, or the Crew Monitoring Server.
+
+ RTGs always generate [color=orange][protodata="GeneratorRTG" comp="PowerSupplier" member="MaxSupply" format="N0"/] W[/color] of power, and must be connected to an [color=orange]HV power[/color] [textlink="network" link="VoltageNetworks"] to function.
+
However, they're only accessible through salvage finding one on an expedition. Should they bring some in, make sure to thank them!
+ ## RTG Damage
- Sometimes, RTGs appear damaged.
+ If RTGs take enough damage, they can become damaged RTGs.
Damaged RTGs behave just like regular ones, but they're [color=yellow]radioactive[/color].
+
That means they're more dangerous, but on the bright side, you can put radiation collectors next to them to turn that radiation into more power.
This is usually more worthwhile, considering the power is still free, so long as you can find a safe spot to put the RTG(s) in.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml
new file mode 100644
index 000000000000..0d3ec5f8f6a4
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Radiators.xml
@@ -0,0 +1,26 @@
+
+ # Radiators
+ Radiators are a device that enables the exchange of heat energy between a [textlink="pipenet" link="PipeNetworks"] and the environment.
+
+
+
+
+
+ Radiators are completely passive: they do not require power to function.
+ They will always equalize the temperature of the gas in the [textlink="pipenet" link="PipeNetworks"] with the environment.
+
+ Radiators have two methods of transferring heat: convection and radiation.
+ - Convection is the transfer of heat through the movement of gas.
+ - Radiation is the transfer of heat through electromagnetic waves.
+
+ If a radiator is in a vacuum, it will only be able to transfer heat through radiation.
+ If it is in an atmosphere, it will be able to transfer heat through both convection and radiation.
+
+ Under convection, you can only get as cold or as hot as the atmosphere or [textlink="pipenet" link="PipeNetworks"] you're exchanging heat with (given the temperature of the gas in the [textlink="pipenet" link="PipeNetworks"] or atmosphere stays the same).
+
+ If you're exchanging heat with space, you can only get as cold as space.
+ To increase the efficiency of radiation, you can build radiators on lattice, which will allow the radiator to radiate more heat, compared to being directly attached to hull tile.
+
+ Increasing the flow rate of gas through the radiator will increase the rate of heat exchange.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml
new file mode 100644
index 000000000000..6799353143f6
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Ramping.xml
@@ -0,0 +1,20 @@
+
+ # Ramping
+ Contrary to what one might expect from a video game electrical simulation, power is not instantly provided upon request.
+
+ Generators and batteries take time to ramp up to match the draw imposed on them, which leads to brownouts when there are large changes in current draw all at once; for example, when batteries run out.
+
+ Observe the following example:
+ - Say you have a generator that outputs 100 kW of power.
+ - If you have a device that draws 50 kW of power, the generator will output 50 kW of power to match the grid's demand to its supply.
+ - If you then turn on a device that draws another 50 kW of power, the generator will take time to ramp up to 100 kW of power. It will not provide this power instantly.
+ - During this time, devices will not recieve the power they need, and the grid will experience a temporary brownout.
+ - After some seconds have passed, the generator will have ramped up to 100 kW of power, and the brownout will end. All devices are now satisfied with the power they are receiving.
+
+ During a shift, this is most commonly observed when a generator runs out of fuel and suddenly stops producing power.
+ Suddenly, the grid is hit with a large deficit of power (as supply has fallen below demand), and all devices will experience a brownout until SMESes or other generators can ramp up to match the new demand.
+
+ This can also happen when a large power consuming device, or department, is reconnected to the grid.
+ The sudden increase in power draw will cause a brownout until the generators can ramp up to match the new demand.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml
index 21956d600cbe..8dc7cdf57dd2 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/Shuttlecraft.xml
@@ -1,7 +1,9 @@
# Shuttle-craft
- Shuttle construction is simple and easy, albeit rather expensive and hard to pull off within an hour. It's a good activity if you have a significant amount of spare time on your hands and want a bit of a challenge.
+ Shuttle construction is straightforward, albeit rather expensive and hard to pull off within an hour.
+
+ It's a good activity if you have a significant amount of spare time on your hands and want a bit of a challenge.
## Getting started
Required parts:
@@ -22,7 +24,7 @@
Optional parts:
-
+
@@ -31,9 +33,104 @@
- Head out into space with steel sheets and metal rods in hand, and once you're three or more tiles away from the station, click near or under you with the rods in hand. This will place some lattice, which can then be turned into plating with steel sheets or floor tiles. Expand your lattice platform by clicking just off the edge with some rods in hand.
+ ## Foundation
+ For this step you'll need steel sheets, metal rods, and floor tiles (optional).
+
+
+
+
+
+
+
+
+
+
+
+ Head out into space with steel sheets and metal rods in hand, and click on the edge of the station to place lattice.
+
+ Place a line of lattice about 3-4 tiles away from the station, then start building a platform with lattice.
+
+ Keep doing this until you have a platform that is at least 3x3 in size, which is connected to the station via a single lattice line.
+
+ Once you're finished constructing the base of your shuttle, you can use wirecutters to snip the connecting lattice that joins your new ship and the station.
+
+ This platform is considered a different grid from the station, and thus will not have any gravity or be held in place by a station anchor — it can move around freely.
+
+ You can expand your lattice platform further by clicking just off the edge with some rods in hand.
+
+ ## Docking Ports
+ Shuttle airlocks serve as docking ports, where ships can dock to stations safely.
+
+ The orientation of docking ports is important, as it determines on which face the shuttle will dock.
+
+ The little numb on the bottom of the docking port determines the direction of the docking port.
+
+
+
+
+
+
+ ## Directional Control
+ From there, once you have the shape you want, bring out and install thrusters at the edges.
+
+
+
+
+
+
+
+
+ It's a good idea to install four thrusters, one on each side of the platform, to ensure you can move in any direction.
+
+ They must be pointing outward into space to function and will not fire if there's a tile in the way of the nozzle.
+ You can rotate thrusters—even anchored ones—using either [color=yellow][bold][keybind="RotateObjectClockwise"][/bold][/color] or [color=yellow][bold][keybind="RotateObjectCounterclockwise"][/bold][/color] to rotate clockwise or counterclockwise.
+
+ Thrusters can be disabled or enabled using [color=yellow][bold][keybind="Use"][/bold][/color] with an empty hand or [color=yellow][bold][keybind="ActivateItemInWorld"][/bold][/color].
+
+ ## Rotational Control
+ Now that you have directional control, you'll need to install a gyroscope to control your rotation.
+
+
+
+
+ The placement of the gyroscope is not as important as the thrusters, but it should be somewhere convenient for you to access and power.
+
+ Note for large mass objects, you may need more than one gyroscope to rotate effectively.
+
+ ## Power
+ Now that you have all the systems in place, you'll need to power them.
+
+ For small shuttles, a J.R.P.A.C.M.A.N.-type portable generator is a good choice. It provides straight LV power, so you don't have to worry about transformers.
+ Fuel for the generator is also commonly found in maintenance tunnels.
+
+
+
+
+
+
+
+
+
+
+ Some stations, however, provide much better generators and compact solutions like the Shuttle APU or the static generator.
+ These output HV and will have to be stepped down to MV and LV.
+ Luckily, these stations also usually provide wallmount substation boards for this purpose.
+
+
+
+
+
+
+
+
+
+
+
+
- From there, once you have the shape you want, bring out and install thrusters at the edges. They must be pointing outward into space to function and will not fire if there's a tile in the way of the nozzle. Install a gyroscope where convenient, and use your substation and generator to set up power. Construct a wall on top of an MV cable and then install an APC on that to power the devices onboard.
+ ## Piloting
+ Finally, install the shuttle computer wherever it is convenient and ensure all your thrusters and gyroscopes are receiving power (remember to wire the MV and LV networks!).
+ If they are, congratulations! You should have a functional shuttle!
- Finally, install the shuttle computer wherever is convenient and ensure all your thrusters and gyroscopes are receiving power (remember to wire the MV and LV networks!). If they are; congratulations, you should have a functional shuttle! Making it livable and good looking is left as an exercise to the reader.
+ Making it livable and good-looking is left as an exercise to the reader.
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml
new file mode 100644
index 000000000000..dd2991e56daf
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/SignalValve.xml
@@ -0,0 +1,17 @@
+
+ # Signal Valve
+ The signal valve is a valve that can be controlled via [textlink="signals." link="Networking"]
+
+
+
+
+ The signal valve is similar to the manual valve. Gas can flow unrestricted in both directions, and it can be operated manually.
+
+ The signal valve has 3 [textlink="signal" link="Networking"] inputs, which can open, close, or toggle the valve.
+
+ Signal valves can be used in a variety of applications, for example:
+ - Remote control of valves in hazardous areas or areas inaccessible to crew
+ - Convenient control over a valve in a hard-to-reach area
+ - Automation with other [textlink="signal-enabled" link="Networking"] machines and equipment such as [textlink="air alarms" link="AirAlarms"] and remote signallers
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml b/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml
deleted file mode 100644
index bdfe94737323..000000000000
--- a/Resources/ServerInfo/Guidebook/Engineering/Singularity.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-
- # Singularity / Tesla Engine
-
- The Singularity Engine / Tesla Engine can yield [color=#a4885c]infinite power[/color], with no fueling required. It can also [color=red]destroy the whole station[/color] with equal ease. It uses a Particle Accelerator to fire high energy particles at a Singularity Generator to form a singularity or ball lightning.
- The singularity then pulses radiation which is absorbed by Radiation Collectors, or the ball lightning then zaps nearby tesla coils and grounding rods to provide power.
-
- # Setting it up
-
- Both engines requires 4 subsystems to work properly; two are shared between both engines:
-
- ## Containment field generators and Emitters
-
-
-
-
-
- The emitters connect to MV cables and fire lasers as long as they have power and are turned on.
- Fire the emitters at enabled containment field generators to activate them.
- If two containment field generators are active, in range and are in the same cardinal axis, a containment field will appear.
- The containment field will repel the singularity or tesla, keeping it from escaping, and yield a little bit of power every time anything bounces off of them.
-
- The emitter lasers and the containment fields can also cause damage and/or cause you to be sent flying into deep space; [color=#a4885c]avoid touching them[/color] when active.
- It is recommended to [color=#a4885c]lock the emitters[/color] with [keybind="AltActivateItemInWorld"/], to prevent any break-in no-gooders from loosing the singularity or tesla by simply switching off the field.
-
- Teslas can have significantly smaller containment fields than singularity containment fields; adjusting field size is recommended, as the tesla becomes easier to keep watch on in a simply 3x3 field setup.
-
- ## Particle accelerator
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters. Its emitters should always face the generator.
- Some stations already have an unfinished PA. To complete it, first ensure there is a MV cable beneath the PA power box, anchor all the parts, and then add an LV cable to each part.
-
-
-
- Then use a screwdriver to screw back the panels.
- [color=#a4885c]Scan parts[/color] using the PA control computer to check if it's operational (the PA will not function if you do not scan it!). If it shows up as incomplete, examine what's missing.
-
-
-
-
- The other two subsystems are unique to each other:
-
- ## Gravitational singularity generator or Ball lightning generator
-
-
-
-
- The generator should be anchored at the center of the containment area, since this is where the singularity/tesla should appear at.
-
- ## Radiation collectors or Tesla coils
-
-
-
-
- The radiation collectors connect to HV cables and generate power from nearby radiation sources when turned on.
- Radiation collectors require a tank full of gaseous plasma in order to operate.
- Continous radiation exposure will gradually convert the stored plasma into tritium, so replace depleted plasma tanks with fresh ones regularly to maintain a high power output.
-
-
-
-
-
- The tesla coils connect to HV cables and provide a stream of power after being zapped by the ball lightning.
- However, tesla coils usually do not fully absorb the lightning strike, and the grounding rods are required to prevent lighting from arcing to and obliterating nearby machines.
- Do note that one grounding rod is not a foolproof solution; get [color=#a4885c]at least 4 rods[/color] around the containment field to make it mathematically unlikely for the tesla to escape.
- As the ball lightning zaps tesla coils, they will degrade from wear; make sure to [color=#a4885c]weld them[/color] every now and then to keep generating power.
-
- ## Turning on the Engines
-
- [color=red]Do not[/color] turn the PA on unless all the other subsystems are working properly and there is enough power to start the engine.
-
- Turn power on using the PA control computer. Set the strength to an appropriate level. The higher the output stength is set on PA control computer, the bigger the singularity will be.
-
- Currently, the output power does not affect the ball lightning, beyond giving the ball lightning extra orbs around it.
-
- The PA will now draw power from the power net and start firing particles at the generators.
-
-
-
-
-
-
-
- A singularity or ball lightning will soon appear at the position of the Gravitational singularity generator.
-
-
- or
-
-
-
- If no particles are hitting the singularity, the singularity will start to slowly decay until it disappears.
- This is not the case for the tesla; feel free to disconnect the PA after the tesla has been set up.
-
- ## Safety
- The singularity emits a large amount of radiation around it, so always keep a distance from it. Consider getting [color=yellow]radiation shielding gear[/color] beforehand. Seek medical attention if you are experiencing health issues.
-
-
-
-
-
-
-
-
-
-
-
- The singularity might move around, but the containment field will repel it.
-
- The tesla creates large bolts of lightning around it, so make sure to wear insuls before approaching it. If you aren't, and it zaps you, pray that the ball lightning doesn't stunlock you and eventually send you into crit.
-
-
-
- If a singularity or tesla escapes its containment field, often referred to as a "singuloose" or "tesloose" respectively, it will attract and then consume everything in its way, growing larger as it does so, or it will begin to obliterate every machine in its path, and shock all crew personnel.
-
- In such circumstances, there is little to be done other than running in the opposite direction.
-
-
-
- However, if science has happened to research [color=#D381C9]Portable Particle Decelerators[/color], or if cargo can order them in time, you may be able to stop the singularity from eating the whole station.
- Good luck on the tesla, though; it is merely too powerful to recontain after breaching.
-
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml
new file mode 100644
index 000000000000..6b4bb1780a6f
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/SingularityEngine.xml
@@ -0,0 +1,108 @@
+
+ # Singularity Engine
+ The Singularity Engine is a powerful generator that uses a contained singularity to produce energy for the station.
+
+
+
+
+
+
+ It generates power by collecting the radiation emitted by the singularity using Radiation Collectors and gaseous plasma.
+
+ ## Starting the Singularity Engine
+ To start the Singularity Engine, engineers must follow these steps:
+ - Place the Singularity Generator in the middle of the containment field. Some stations start with the generator already in place, while others require engineers to bring it from cold storage.
+ - Turn on the four Containment Field Generators.
+ - Turn on and lock the Emitters.
+ - Confirm that the Containment Field Generators have created a Containment Field around the Singularity.
+ - Turn on the Radiation Collectors. These require plasma to produce power. They might not come fueled, so be sure to refill them.
+ - Construct the Particle Accelerator.
+ - Turn on the Particle Accelerator Control Computer and set the power level to the desired power level.
+
+ Once these steps are complete, the Singularity Engine will start producing power for the station.
+ Be sure to monitor the singularity's power level and containment field to prevent it from escaping and destroying the station.
+ Check in to refill the collectors often, as they will run out of plasma over time.
+
+ ## Containment Field
+ To prevent the singularity from escaping and destroying the station, engineers must contain it within a Containment Field.
+
+ It is suggested to use a max size containment field for the singularity. Any smaller and the singularity may outgrow its field and escape.
+
+ Containment pylons should be arranged in a square, with 7 tiles of spacing between each pylon.
+
+
+
+
+
+
+
+ ## Power Levels and Decay
+ Because singularities emit radiation, they decay, losing power over time.
+
+ To counter this decay, the Particle Accelerator emits particles that collide with the singularity, feeding and sustaining it.
+
+ Singularities have defined power levels, which determine their radiation output.
+ Engineers can increase or decrease the singularity's power level by adjusting the power level on the Particle Accelerator Control Computer.
+
+ Particle Accelerators normally operate between power levels 1 and 3, which translate to a power level of 1 to 3 on the singularity.
+
+ Power levels also determine how big the singularity is, with higher power levels sustaining larger singularities capable of producing more power.
+
+ ## Producing Power
+ The Singularity Engine produces power by capturing the radiation emitted by it using Radiation Collectors.
+
+
+
+
+ They require gaseous plasma to function. The plasma containers attached to the collectors must be filled with plasma to produce power.
+
+ You can turn on the collectors by interacting with them using [color=yellow][bold][keybind="Use"][/bold][/color].
+
+ You can also eject the tank by interacting with the collector using [color=yellow][bold][keybind="AltActivateItemInWorld"][/bold][/color].
+ From here, you can refill the tank with plasma using a plasma canister and reinsert it into the collector.
+
+ The maximum power the radiation collector can produce is determined by:
+ - The amount of radiation it is capturing (which is effectively the Singularity's power level),
+ - and the amount of plasma it has in its connected tank.
+
+ Over time, the collector will drain the tank of plasma, which reduces it's effective power output.
+ Eventually, the tank will be empty, and the collector will stop producing power. Be sure to refill the tank often!
+
+ ## Radiation Protection
+ The singularity emits a massive amount of radiation, which can kill crew members who are not wearing proper protection.
+ Be sure to wear a radiation suit or an engineering hardsuit when working near the singularity.
+ This won't completely negate the radiation, but it will reduce the damage you take.
+
+
+
+
+
+
+
+
+
+
+
+ The Chief Engineer has a special hardsuit that negates all radiation damage, which allows them to work near the singularity without fear of accumulating radiation damage over time.
+
+ ## Singularity Properties
+ The Singularity has several properties, which both make it dangerous and useful for power generation:
+ - It has a strong gravitational pull that can suck in objects and crew members.
+ - It has an event horizon, which can permanently destroy any object that touches it, whether it be a crew member or station equipment. Any object swallowed by the singularity is lost forever, and feeds the singularity.
+ - It constantly emits radiation that can harm crew members who aren't wearing proper protection.
+ - The singularity can decay over time, losing power and radiation output.
+
+ ## Loosed Singularity (Singuloose)
+ If the singularity escapes its containment field, it will begin to consume the station, destroying everything in its path.
+ The more it consumes, the larger it grows, making it harder to potentially contain it again.
+
+ The singularity can be destroyed by firing antiparticles at it using a Portable Particle Decelerator, but this is a risky and dangerous operation that requires careful planning and execution.
+ Often multiple decelerators firing at once are needed to destroy a singularity.
+
+ Portable Particle Decelerators can be either researched and made by the Research Department, or they can be bought from Cargo.
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml
new file mode 100644
index 000000000000..d6fe22985eda
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/SingularityTeslaEngine.xml
@@ -0,0 +1,97 @@
+
+ # Singularity / Tesla Engine
+
+ The Singularity Engine / Tesla Engine can yield [color=#a4885c]infinite power[/color] for the entire shift, making it a valuable asset to the station.
+
+ It can also [color=red]destroy the whole station[/color] with equal ease, and requires careful preparation and monitoring to prevent a [bold]loose[/bold].
+
+ # Setting it up
+ Both engines follow the same basic setup steps, but have different subsystems and requirements.
+
+ ## Containment Field
+ The Containment Field is a multi-tile beam field that repels the singularity or tesla, keeping it from escaping.
+
+ The emitter lasers and the containment fields can also cause damage and/or cause you to be sent flying into deep space; [color=#a4885c]avoid touching them[/color] when active.
+
+
+
+
+
+
+
+ Containment Fields are generated between active Containment Field Generators, which are powered by emitters.
+
+ A containment field generator can generate a containment field if:
+ - The generator has been turned on,
+ - another field generator is within 8 tiles,
+ - and the field generators are on the same cardinal axis.
+
+ This means that the maximum length of a containment field is 7 tiles.
+
+ You can turn on a containment field generator by interacting with it using [color=yellow][bold][keybind="Use"][/bold][/color].
+ Containment field generators won't work if they aren't turned on, even when struck by an emitter. Remember to turn on the field generator!
+
+ The containment field generator has an internal energy level, which is filled by striking it with an emitter. When the containment field generator has enough stored energy, it will generate a containment field.
+
+ This energy level will naturally decay over time, and the field will disappear when the energy level reaches zero after a delay.
+
+ When the containment field is active, you cannot turn off the field generator or unanchor it. You must wait for the field to decay before you can turn off the generator.
+
+
+
+
+
+
+
+
+
+ ## Emitters
+ Emitters are the devices that power the containment field generators.
+
+
+
+
+
+ The emitters connect to MV cables, and fire lasers as long as they have power and are turned on.
+
+ It is recommended to [color=#a4885c]lock the emitters[/color] with [color=yellow][bold][keybind="AltActivateItemInWorld"][/bold][/color], to prevent any break-in no-gooders from loosing the singularity or tesla by simply switching off the field.
+
+ ## Particle Accelerator
+ The Particle Accelerator (PA) is a multi-tile structure that launches accelerated particles from its emitters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Some stations already have an unfinished PA.
+ To complete it, first ensure there is a MV cable beneath the PA power box, anchor all the parts, and then add an LV cable to each part.
+
+
+
+
+
+ Then use a screwdriver to screw back the panels.
+ [color=#a4885c]Scan parts[/color] using the PA control computer to check if it's operational (the PA will not function if you do not scan it!).
+ If it shows up as incomplete, examine what's missing.
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml
new file mode 100644
index 000000000000..d97d2a78d7f1
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/SolarPanels.xml
@@ -0,0 +1,97 @@
+
+ # Solar Panels
+ Solar Panels are a low-maintenance passive power source that generates power from incoming sunlight.
+
+ They are a renewable source of power that can be used to supplement generators in the station's power grid.
+ This is extremely useful, as while most generators burn through some type of fuel in some form or fashion, solar panels generate power for free.
+
+
+
+
+
+
+
+ ## Power Generation
+ Solar panels generate power based on their relative angle to the sun, and if they are occluded by other objects.
+
+ Because of this, you might see some panels generating 0 W of power, while others generate a lot more.
+ This is because the station is occluding some panels, so don't worry about it too much.
+ Most stations have solar arrays placed at all sides of the station, so there's always some power being generated.
+
+ Solar panels generate [color=orange]HV power[/color], and as such require an [color=orange]HV wire[/color] running underneath them to connect to the station's power grid.
+
+ ## Power Bridge
+ Solar panels might seem like an unnecessary power source at first glance.
+ After all, we have this giant black hole in the center of the station.
+ Why bother setting up solars when we can use that?
+
+ It's ideal to set up solars alongside the [textlink="AME" link="AME"] for a few reasons:
+ - Having active solar panels alongside the [textlink="AME" link="AME"] increases the runtime of the station's batteries significantly more than just the [textlink="AME" link="AME"] alone. This can buy engineers more time to setup bigger power sources.
+ - Having active solar panels can reduce load on other grid producers. For example, if the solar arrays are producing enough power to satisfy half the station's needs, that is reflected in a reduced load on other engines, which can reduce the amount of fuel they burn.
+
+
+ ## Adjusting Panels
+ Because the station is orbiting a star, the sun's position in space changes over time.
+ Solar panels need to be pointing straight at the sun to generate power efficiently, and they need to move over time to keep up with the sun's position.
+
+ The angle at which solar panels face to can be adjusted at a Solar Control Computer.
+
+
+
+
+ You can also adjust the rate at which the panels move to track the sun.
+
+ The rate at which the sun moves around the station changes each shift, so time the sun's position and adjust the rate accordingly.
+
+ The Solar Control Computer also reports on the total power generated by the solar panels.
+
+ ## Construction
+
+ Solar panels can be constructed by using two glass sheets on a solar assembly.
+
+
+
+
+
+
+ You can purchase solar assemblies from Cargo.
+
+ ## Repairs
+ Solar panels can sometimes be damaged, and require repair.
+
+
+
+
+
+ To fix them, you can use a crowbar to pry the broken glass shards out of the panel.
+ Weld these glass shards into glass sheets, and then use them to make a new panel.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ## Setting Up Solar Panel Arrays
+ Solar panel arrays are commonly found on the exterior of the station, and are used to generate large amounts of free power for the station.
+
+ You can either spacewalk to them from the outside, or you can run a loop through the station's maintenance tunnels to reach them.
+ Solar array machine rooms are often marked with signs, and locked behind engineering access.
+
+
+
+
+
+ At the start of the shift, solar panels are misaligned and disconnected from the grid.
+ You will need to align them and connect them to the station's power grid to start generating power.
+
+ This usually involves running a line of [color=orange]HV wire[/color] to the pannels from the solar array machine room, and then using a Solar Control Computer to align the panels.
+
+ Solar array machine rooms frequently have a Solar Control Computer nearby, as well as an [textlink="SMES" link="PowerStorage"] to store the power generated by the panels for later use.
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml
new file mode 100644
index 000000000000..01097c10e2bc
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Spacing.xml
@@ -0,0 +1,23 @@
+
+ # Spacing
+ Spacing is the most common form of atmospheric upset that can occur on the station.
+
+ While the damage that caused the spacing is often time-consuming to [textlink="fix" link="ExpandingRepairingStation"], the actual spacing problem can be quickly resolved by simply repressurizing the area.
+
+ Fixing spacing generally follows two simple steps:
+
+ 1. Identify the area that has been spaced, and [textlink="seal the hole." link="ExpandingRepairingStation"]
+
+ - If you're having trouble finding the hole, you can carefully listen for the flow of air rushing by you, if air is currently leaking to space.
+ - Look for any holes underneath girders that may be hard to see.
+
+ 2. Repressurize the area.
+
+ - [textlink="Air vents" link="AirVent"] enter pressure lockout when a room is spaced, so you'll need to override the vents to repressurize the area. You can do this by setting the connected [textlink="air alarm" link="AirAlarms"] to fill, or by using a screwdriver on a vent to manually override it temporarily.
+
+ ## Things to Avoid
+ - Keep in mind that while you have an infinite supply of [textlink="mined gas" link="GasMiningAndStorage"], it is not quick enough to fill up multiple rooms at once. Setting [textlink="air alarms" link="AirAlarms"] to fill first [italic]before[/italic] fixing the root problem will often lead to wasted time and gas.
+
+ - Leaving [textlink="air alarms" link="AirAlarms"] on the Fill mode unsupervised may lead to overpressuring a room, which can potentially harm crew if it gets out of hand.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml
index fa6cf5df69bb..f79ad044cebe 100644
--- a/Resources/ServerInfo/Guidebook/Engineering/TEG.xml
+++ b/Resources/ServerInfo/Guidebook/Engineering/TEG.xml
@@ -1,9 +1,12 @@
# Thermo-electric Engine (TEG)
- The TEG generates power by exchanging heat between hot and cold gases. On the station, hot gas is usually created by burning plasma, and an array of heat-exchanging pipes in space radiates away heat to cool down circulated gases.
+ The TEG generates power by exchanging heat between hot and cold gases.
+ On the station, hot gas is usually created by burning plasma, and an array of [textlink="heat-exchanging" link="Radiators"] pipes in space radiates away heat to cool down circulated gases.
- The TEG relies heavily on atmospherics piping. The only truly special component about it is the generator core and circulators; the rest is all off-the-shelf atmospherics equipment. Note that while the exact layout may vary significantly depending on the station, the general components and setup are usually the same.
+ The TEG relies heavily on [textlink="atmospherics" link="Atmospherics"] [textlink="piping." link="Pipes"]
+ The only truly special component about it is the generator core and circulators; the rest is all off-the-shelf atmospherics equipment.
+ Note that while the exact layout may vary significantly depending on the station, the general components and setup are usually the same.
## Generator
@@ -15,60 +18,40 @@
- The circulators take in either a hot or cold gas, and pass it through the machine to exchange heat. The gas then gets output on the other end of the circulator. The generator produces the actual power and outputs it over an HV wire.
+ The circulators take in either a hot or cold gas, and pass it through the machine to exchange heat.
+ The gas then gets output on the other end of the circulator. The generator produces the actual power and outputs it over an [color=orange]HV wire[/color].
- Note that the circulators are [color=#a4885c]directional[/color]: they will only let gas through one way. You can see this direction in-game by examining the circulator itself. A pressure difference is required across the input and output, so pumps are generally provided and must be turned on.
+ Note that the circulators are [color=#a4885c]directional[/color]: they will only let gas through one way.
+ You can see this direction in-game by examining the circulator itself.
+ A pressure difference is required across the input and output, so pumps are generally provided and must be turned on.
- There is no preference for which side must be hot or cold, there need only be a difference in temperature between them. The gases in the two "loops" are never mixed, [color=#a4885c]only energy is exchanged between them[/color]. The hot side will cool down, the cold side will heat up.
+ There is no preference for which side must be hot or cold, there need only be a difference in temperature between them.
+ The gases in the two "loops" are never mixed, [color=#a4885c]only energy is exchanged between them[/color].
+ The hot side will cool down, the cold side will heat up.
## The Pipes
- There are 2 major pipenets to worry about here: [color=red]The Hot Loop[/color] (where gas will be burnt for heat), and [color=cyan]The Cold Loop[/color] (where circulated, heated waste gas will either be removed into space or cooled back down). Make sure that [color=#a4885c][bold]both pipenets do NOT mix[/bold][/color], as only heat should be transferred between the two through the TEG.
+ There are 2 major [textlink="pipenets" link="PipeNetworks"] to worry about here: [color=red]The Hot Loop[/color] (where gas will be burnt for heat), and [color=cyan]The Cold Loop[/color] (where circulated, heated waste gas will either be removed into space or cooled back down).
+ Make sure that [color=#a4885c][bold]both [textlink="pipenets" link="PipeNetworks"] do NOT mix[/bold][/color], as only heat should be transferred between the two through the TEG.
# The Hot Loop
- As I'm sure a wise person once said: the best way to make something hot is to light it on fire. Well, depending on context, that may not be very wise, but luckily your engineering department has just what's needed to do it wisely after all.
+ As I'm sure a wise person once said: the best way to make something hot is to light it on fire.
+ Well, depending on context, that may not be very wise, but luckily your engineering department has just what's needed to do it wisely after all.
- As stated above, there are many different layouts one can follow to heat up (or cool down) gases; this part of the guide will cover 2 common methods one will often see for the hot loop when the TEG is setup: [color=#a4885c]The Pipe Burn[/color], and [color=red]the Burn Chamber[/color].
+ As stated above, there are many different layouts one can follow to heat up (or cool down) gases; this part of the guide will cover some common methods one will often see for the hot loop, involving [color=red]the Burn Chamber[/color].
- Side note: Plasma fires burn relatively cool compared to, for example, Tritium fires. It may be viable to extract Tritium from an extraction setup (using a 96/4 ratio of O2/Plasma) and react it with Oxygen to get truly hellish temperatures for power. Although, this is just a recommendation; I'm not ya mum.
-
- ## The Pipe Burn
-
- Also known as the naive method, this is generally discouraged when working for efficiency. However, if all you need is a smidge of power to run the station, and you don't feel like setting up the burn chamber, this method will do.
-
- [color=#444444]TODO: Remove this section when atmos pipes are updated to have pressure/temperature limits in a future atmos refactor.[/color]
-
- Most (if not all) pipe burns follow this general layout:
-
- Gas input -> High-pressure pump -> Pipe segment (with heater) -> Low-pressure pump -> Circulator
-
-
-
-
-
-
-
-
-
-
-
- - The Gas input is pretty self-explanatory; this is where you will input the O2-Plasma mix to be burnt. A 2:1 (67/33) ratio of Oxygen to Plasma is recommended for the hottest burn.
- - The High-pressure pump serves 2 purposes; first, it prevents the burn from backwashing into the supply pipe, which would be... bad, for many reasons. Second, it maintains a positive pressure in the following pipe segment, which is important to allow the burn to continue, especially since hot gases expand.
- - The Pipe segment is where the burn actually occurs; to start it off, one can use a heater to increase the temperature up to the ignition temperature of Plasma. Afterwards, the reaction should be self-sustaining, so long as the Pressure and Moles supplied remains high enough. [color=#a4885c]Be warned[/color]; if you wish to remove the heater, it will carry some of this superheated gas with it, transferring it to the next pipenet you connect it to. Best to space the gas through a space vent, if you must.
- - The Low-pressure pump (whose pressure should be [italic]slightly lower[/italic] than the input pump) prevents [italic]all[/italic] the gas from passing through the circulator, which could result in the loss of the Moles required to sustain a burn.
- - The Circulator is where this generated heat will flow to the cold loop; afterwards, feel free to space the waste gases.
-
- Note: Pressure pumps are used here as, while they pump on pressure (not flow-rate, which is comparatively faster), they are a bit easier to control when it comes to the limited Plasma supply on-station. However, the steps shown can be followed with volumetric pumps too.
+ Side note: Plasma fires burn relatively cool compared to, for example, Tritium fires.
+ It may be viable to extract Tritium from an extraction setup and react it with Oxygen to get truly hellish temperatures for power.
## The Burn Chamber
The burn chamber is the preferred method for heating up gases, and it is commonly used for other purposes too. (see: Tritium production)
- Most (if not all) stations have the burn chamber separated from the main atmospherics block by a 1-wide spaced grid, presumably to prevent conduction. The chambers consist of 3(+1) important parts:
- - The Air Injector/Passive Vent
+ Most (if not all) stations have the burn chamber separated from the main atmospherics block by a 1-wide spaced grid, to prevent the flow of scalding hot gas to Atmos if there was a breach. The chambers consist of 3 important parts:
+ - The [textlink="Air Injector" link="AirInjector"]/[textlink="Passive Vent" link="PassiveVent"]
- The Space Vent
- - The Scrubber Array
+ - The [textlink="scrubber" link="AirScrubber"] Array
Here is one layer of an example setup:
@@ -100,27 +83,38 @@
- The air injector (or Passive Vent) injects air (or allows air to flow) into the burn chamber. Either should be supplemented with a pump before it, to keep pressures high.
- There is a notable difference between the passive vent and the air injector; the air injector can only keep injecting air up to [color=#a4885c]9MPa[/color], which can be reached very easily with a good burn. Ideally, switch out the air injector for a passive vent connected to a volume pump.
+ The [textlink="air injector" link="AirInjector"] (or [textlink="passive vent" link="PassiveVent"]) injects air (or allows air to flow) into the burn chamber.
+ Either should be supplemented with a pump before it, to keep pressures high.
+
+ There is a notable difference between the [textlink="passive vent" link="PassiveVent"] and the [textlink="air injector" link="AirInjector"]; the [textlink="air injector" link="AirInjector"] can only keep injecting air up to [color=#a4885c]9MPa[/color], which can be reached very easily with a good burn.
+ Ideally, switch out the [textlink="air injector" link="AirInjector"] for a [textlink="passive vent" link="PassiveVent"] connected to a volume pump.
+
+ The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gases to be expelled and destroyed.
+ Open this occasionally to keep the pressure under control, or to space excess input gas.
+ You even might find the pneumatic valve useful for occasionally spacing the gas.
- The space vent (designated as a blast door to space on one side of the burn chamber) allows waste gases to be expelled and destroyed. Open this every now and then to keep the pressure under control, or to space excess input gas.
+ The [textlink="scrubber" link="AirScrubber"] array filters out all the burnt gasses and sends them through the TEG.
+ Note that using default settings on the [textlink="scrubbers" link="AirScrubber"] is a bad idea, as valuable plasma will be filtered out too.
- The scrubber array filters out all the burnt gasses and sends them through the TEG. Note that using default settings on the scrubbers is a bad idea, as valuable plasma will be filtered out too.
- Instead, use a network configurator to connect all the scrubbers to a nearby air alarm, and set the air alarm's scrubber settings to scrub everything except Oxygen and Plasma, and to siphon air as well. This ensures that as much heat as available can be collected and sent to the TEG.
+ Instead, use a network configurator to connect all the [textlink="scrubbers" link="AirScrubber"] to a nearby air alarm, and set the air alarm's [textlink="scrubber" link="AirScrubber"] settings to scrub everything except Oxygen and Plasma, and to siphon air as well.
+ This ensures that as much heat as available can be collected and sent to the TEG.
- Note that these are just two of many ways you can setup the hot loop; [color=#a4885c]feel free to mix and match setups as needed![/color] Volume pumps in replacement of pressure pumps, radiator loops for heat collection, or even a Pyroclastic anomaly to provide said heat! The stars are the limit!
+ Note that this is just one of many ways you can setup the hot loop; [color=#a4885c]feel free to mix and match setups as needed![/color]
+ [textlink="Volume pumps" link="Pumps"] in replacement of [textlink="pressure pumps" link="Pumps"], [textlink="radiator" link="Radiators"] loops for heat collection, or even a Pyroclastic anomaly to provide said heat!
+ The stars are the limit!
# The Cold Loop
- As with the Hot Loop, the Cold Loop must also be setup in order to operate the TEG. However, the Cold Loop is usually a lot more low-tech than the Hot Loop; in reality, the Cold Loop only has to be "relatively" cooler -- hey, room temperature is technically cooler than the surface of the sun, right?
+ As with the Hot Loop, the Cold Loop must also be setup to operate the TEG.
+ However, the Cold Loop is usually a lot more low-tech than the Hot Loop; in reality, the Cold Loop only has to be "relatively" cooler—hey, room temperature is technically cooler than the surface of the sun, right?
There are 3 main methods you will see used for the Cold Loop: [color=#a4885c]The Water Cooler[/color] (see: Liltenhead's video on the TEG), [color=cyan]the Coolant Array[/color] and [color=#a4885c]the Freezer Loop[/color].
## The Water Cooler
- An equally naive method as the Pipe Burn, this simply involves taking some useless gas (in this case, Water Vapour) and flowing it through the TEG and into space. It's dirt-cheap and simple, at the cost of efficiency and permanent loss of gas.
+ An equally naive method as the Pipe Burn, this simply involves taking some useless gas (in this case, Water Vapor) and flowing it through the TEG and into space. It's dirt-cheap and simple, at the cost of efficiency and permanent loss of gas.
- Setting this up is so simple, even Hamlet could manage it. Just take an output of a gas (here, Water Vapour), send it through the Cold side of the TEG, and then vent it into space.
+ Setting this up is so simple, even Hamlet could manage it. Take an output of a gas (here, Water Vapor), send it through the Cold side of the TEG, and then vent it into space.
@@ -131,19 +125,21 @@
- [color=#444444]TODO: Remove this section when gas miners are removed in a future atmos refactor.[/color]
-
## Coolant Array
- This is the default method for the Cold Loop you will see on a variety of stations. Being of moderate complexity and having no losses of any resource, this [color=#a4885c]should[/color] be the main method of cooling down the TEG. However, most stations at the moment somehow have their heat exchangers hooked up wrong (or suggest incorrect piping), reducing efficiency greatly. [color=#444444](Thanks a bunch, NT!)[/color]
+ This is the default method for the Cold Loop you will see on a variety of stations.
+ Being of moderate complexity and having no losses of any resource, this [color=#a4885c]should[/color] be the main method of cooling down the TEG.
+ However, most stations at the moment somehow have their radiators hooked up wrong (or suggest incorrect piping), reducing efficiency greatly.
- To use heat-exchangers properly, they must be setup in [color=#a4885c]parallel[/color], not in series (like what you see on most stations). A gas pump at max pressure should be placed after, and a volumetric pump before the heat-exchangers.
+ To use heat-exchangers properly, they must be setup in [color=#a4885c]parallel[/color], not in series (like what you see on most stations).
+ A gas pump at max pressure should be placed after, and a volumetric pump before the heat-exchangers.
The flow-rate of the volumetric pump should be set using the following formula:
[color=cyan]( 200 / number of heat-exchangers )[/color] L/s.
- Simply speaking, the Coolant Array consists of 3 major parts: An input connector port, a few pumps and the heat-exchanger array out in space. It can be setup like so:
+ Simply speaking, the Coolant Array consists of 3 major parts: An input connector port, a few pumps and the heat-exchanger array out in space.
+ It can be setup like so:
@@ -190,15 +186,17 @@
- - Connector Port: Use this to input a gas with high heat capacity; most of the time, Plasma or Frezon is used to do so, as they both have very high specific heat capacities (although most any gas will do). (Yes, Plasma =/= Hot. You can cool it down, and it acts as a really good heat exchange medium.)
- - Input/Output Pumps: Used to make sure gas keeps flowing through both the Circulator and the Heat-Exchanger array. As the gas cools down and heats up (and as it flows through the Exchanger), pressure must be applied for it to keep flowing.
- - Heat-Exchanger: Basically, just a bunch of heat-exchanger pipes in space. Not much to say, besides the fact that it cools down the gas inside it. Make sure the heat-exchangers are [color=#a4885c]placed on lattice, not plating[/color]! Otherwise, the heat-exchange efficiency will be greatly reduced, as the heat-exchangers aren't directly exposed to space below them.
+ - Connector Port: Use this to input a gas with high heat capacity; most of the time, Plasma or Frezon is used to do so, as they both have very high specific heat capacities (although almost any gas will do). (Yes, Plasma =/= Hot. You can cool it down, and it acts as a excellent heat exchange medium.)
+ - Input/Output Pumps: Used to make sure gas keeps flowing through both the Circulator and the radiator array. As the gas cools down and heats up (and as it flows through the Exchanger), pressure must be applied for it to keep flowing.
+ - Radiator: Basically, just a bunch of radiators in space. Not much to say, besides the fact that it cools down the gas inside it. Make sure the radiators are [color=#a4885c]placed on lattice, not plating[/color]! Otherwise, the heat-exchange efficiency will be greatly reduced, as the radiators aren't directly exposed to space below them.
## The Freezer Loop
- Most of the time, you will see this method being used in efficient TEG setups. It's basically just the Coolant array, but replacing the Heat-Exchangers with a freezer. Even though the freezer does use power, it is only a small fraction of what the TEG can generate, and it's better than the default Coolant array at the moment, so go fish.
+ Most of the time, you will see this method being used in efficient TEG setups.
+ It's basically just the Coolant array, but replacing the radiators with a freezer.
+ Even though the freezer does use power, it is only a small fraction of what the TEG can generate, and it's better than the default Coolant array at the moment, so go fish.
- Just follow the steps for the Coolant array, but use a freezer in place of the Heat-Exchangers. As so:
+ Follow the steps for the Coolant array, but use a freezer in place of the Heat-Exchangers. As so:
@@ -219,5 +217,18 @@
- Once again, use Plasma or Frezon in the loop for max efficiency (although most any gas will do).
+ Once again, use Plasma or Frezon in the loop for max efficiency (although almost any gas will do).
+
+ ## In the Pursuit of Greater Efficiency
+ Remember, Atmospherics is a science, and as such, it is always evolving.
+ The setups above are just the tip of the iceberg; there are many ways to setup the TEG, and many ways to improve upon the setups above.
+ [color=#a4885c]Experiment![/color]
+
+ Always seek to improve upon the designs you see, and always seek to improve upon the designs you make.
+ The TEG is a powerful tool, and with great power comes great responsibility.
+ Make sure to use it wisely, and make sure to use it well.
+
+ Space Station 14 atmospherics is a complex system, and the TEG is just one part of it.
+ [bold]It's like a giant puzzle, so go out and solve it![/bold]
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml
new file mode 100644
index 000000000000..859ec8317eb1
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/TeslaEngine.xml
@@ -0,0 +1,104 @@
+
+ # Tesla Engine
+ The Tesla Engine is a powerful generator that uses a contained ball of lightning to produce energy for the station.
+
+
+
+
+
+
+
+ It generates power by harnessing the lightning strikes produced by the lightning ball using Tesla Coils.
+
+ ## Containment Field
+ The Tesla Engine requires a containment field to prevent the lightning ball from escaping and destroying the station.
+
+ It is suggested to use the minimum size containment field for the lightning ball.
+ Larger containment fields allow the lightning ball to reach closer to sensitive equipment and potentially strike it, ignoring placed grounding rods and tesla coils.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ## Lightning Strikes
+ When the Tesla Engine is active, the lightning ball will periodically strike objects surrounding it.
+
+ The Tesla prefers to strike some objects more than others, such as Tesla Coils and Grounding Rods.
+
+
+
+
+
+
+
+
+
+
+
+ Because of this, strategically placing Tesla Coils and Grounding Rods around the lightning ball can help protect sensitive equipment from being struck, and prevent a loosed tesla (tesloose).
+
+ If the tesla can't find any Tesla Coils or Grounding Rods to strike first, it will strike almost any station object capable of being powered, such as Substations, APCs, and general machinery.
+
+ Certain objects aren't struck by the tesla, such as batteries, lights, PDAs, and other handheld items.
+
+ It will also strike mobs and crew members, shocking them. Make sure to wear insulated gloves before approaching it.
+
+ Note that only placing Tesla Coils won't be enough to prevent the tesla from striking sensitive equipment.
+ Grounding Rods should also be placed to help protect nearby Emitters from being struck.
+
+ Engineers can also use grounding rods to protect sensitive equipment from lightning strikes, such as the Emitters powering the containment field generators.
+
+ ## Power Generation
+ Lightning strikes can be harnessed using Tesla Coils, which convert the lightning strikes into power for the station.
+
+
+
+
+
+
+
+ Tesla Coils should be placed around the lightning ball to capture the lightning strikes, as well as to prevent the lightning from striking sensitive equipment further away.
+
+ Tesla Coils take damage every time they are struck by lightning, and will eventually break if not repaired.
+ Be sure to monitor the condition of the Tesla Coils and repair them as needed.
+
+ Grounding rods, in contrast, do not take damage from lightning strikes.
+
+ When lightning strikes Tesla Coils, they fill an internal battery, which is rapidly discharged to the grid.
+ It will discharge this power even if there is no consumer to take it, so it's a good idea to have an SMES nearby to store the power and discharge it smoothly.
+
+ ## Loosed Tesla (Tesloose)
+ If the lightning ball escapes the containment field, it is referred to as a loosed tesla, or tesloose.
+
+ An escaped tesla will randomly walk around the station, attracted to objects that can be powered, such as APCs, Substations, and machinery.
+ It will also gladly strike crew members and mobs, shocking them.
+
+ Wearing insulated gloves will protect you from being shocked by the tesla, but it won't prevent the tesla from striking you.
+
+
+
+
+
+ The tesla can be destroyed by firing antiparticles at it using a Portable Particle Decelerator, however, the Tesla is much more powerful than the Singularity, and it will take a lot of antiparticles to destroy it.
+ A group of people using decelerators is recommended to destroy a tesloose.
+
+ Portable Particle Decelerators can be either researched and made by the Research Department, or they can be bought from Cargo.
+
+
+
+
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml
new file mode 100644
index 000000000000..64035cde1933
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Thermomachines.xml
@@ -0,0 +1,75 @@
+
+ # Thermomachines
+ Thermomachines are devices that manipulate the temperature of gases within a [textlink="pipe network" link="PipeNetworks"] or exposed atmosphere.
+
+
+
+
+
+ They are essential for maintaining the temperature of gasses for various applications.
+
+ All thermomachines work by using [textlink="electrical power" link="Power"] to preform work on the atmosphere to either heat or cool it.
+ The amount of work they do is directly related to the amount of power they consume.
+
+ Thermomachines also have an efficiency coefficient, which determines how much work they can do per unit of power consumed.
+
+ To prevent overshooting their target value, thermomachines will scale back their heating/cooling power as they approach the target temperature.
+ However, they will still consume the same amount of electrical power, even when idle.
+
+ All thermomachines have a target temperature tolerance of [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color], meaning they will stop heating or cooling when the temperature is within [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="TemperatureTolerance"/] K[/color] of the target temperature.
+
+ ## Space Heater
+ The space heater is a portable temperature control unit that preforms work to heat or cool gas in the atmosphere it's exposed to.
+ It's a simple and effective way to maintain the temperature of a room, without having to build a pipenet or other system.
+
+
+
+
+
+ They can be commonly found in Atmospherics, although the relevant machine board can be printed at a circuit imprinter, commonly found in Science.
+
+ The space heater can cool to as low as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MinTemperature"/] K[/color] and heat to as high as [color=orange][protodata="SpaceHeater" comp="SpaceHeater" member="MaxTemperature"/] K[/color].
+
+ It also has three power settings, which determine how much power it consumes and how much work it does.
+
+ Botany or science will often request these to maintain the temperature of their plants or department.
+
+ ## Pipenet Thermomachines (Freezer and Heater)
+ Pipenet thermomachines are more powerful stationary temperature control units that can be used to heat or cool gas in a [textlink="pipenet." link="PipeNetworks"]
+
+
+
+
+
+
+ They draw [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color].
+
+ You can swap the mode of the thermomachine by deconstructing it and using a screwdriver on its board.
+ The board can be printed at a circuit imprinter, commonly found in Science.
+
+
+
+
+
+
+
+
+
+
+
+
+ ## Thermomachines from Hell
+ Science can research more powerful thermomachines, aptly called hellfire heaters and freezers.
+ These machines are much more powerful than their standard counterparts, but they also consume more power.
+
+
+
+
+
+
+ These machines draw [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="HeatCapacity" format="N0"/] W[/color] of power and can heat or cool gas in a pipenet to as high as [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="MaxTemperature"/] K[/color] or as low as [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="MinTemperature"/] K[/color].
+
+ However, they also leak [color=orange][protodata="GasThermoMachineHellfireFreezer" comp="GasThermoMachine" member="EnergyLeakPercentage" format="P0"/][/color] of their energy to the surrounding environment, heating or cooling the exposed atmosphere respectively.
+ This can be dangerous if not properly managed.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/Valves.xml b/Resources/ServerInfo/Guidebook/Engineering/Valves.xml
new file mode 100644
index 000000000000..db8c18807cd8
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/Valves.xml
@@ -0,0 +1,15 @@
+
+ # Valves
+ Valves are a quick way to halt or permit gas flow through a [textlink="pipenet" link="PipeNetworks"].
+
+
+
+
+
+
+ All valves do not require [textlink="power" link="Power"] to operate.
+
+ Valves may look simple, but they can enable a wide variety of complex pipe systems, including:
+ - Signal valves responding to air alarm or logic gate outputs
+ - Pneumatic valves controlling variable venting of waste gasses from a burn chamber
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml b/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml
new file mode 100644
index 000000000000..9d7ed300965b
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/VoltageNetworks.xml
@@ -0,0 +1,95 @@
+
+ # Voltage Networks
+ In Space Station 14, power distribution is divided into three separate voltage networks.
+ These networks are the [color=green]Low Voltage[/color] Network, the [color=Yellow]Medium Voltage[/color] Network, and the [color=orange]High Voltage[/color] Network.
+
+ These networks power different types of machinery on the station.
+
+
+
+
+
+
+
+ ## Low Voltage Network
+ The [color=green]Low Voltage[/color] Network is used for powering almost all small machines on the station. This includes things like lights, computers, and other small devices.
+
+
+
+
+
+
+
+
+
+
+
+ [color=green]Low Voltage[/color] power is provided by APCs, which are wall-mounted devices that convert power from the [color=Yellow]Medium Voltage[/color] Network to [color=green]Low Voltage[/color].
+
+
+
+
+
+ [color=green]Low Voltage[/color] wire doesn't have to be directly run to every machine, as it can power multiple machines as long as the wire is close enough to the machine.
+ It can power machines within 2 tiles radially, and 3 tiles in each cardinal direction.
+
+ ## Medium Voltage Network
+ The [color=Yellow]Medium Voltage[/color] Network is used for powering APCs and other power-hungry machinery that can only accept [color=Yellow]Medium Voltage[/color] power.
+ The Particle Accelerator is an example, as it operates on [color=Yellow]Medium Voltage[/color] power.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ [color=#999999][italic]The Particle Accelerator[italic][/color]
+
+
+ [color=Yellow]Medium Voltage[/color] power is provided by Substations, which are large machines that convert power from the [color=Orange]High Voltage[/color] Network to [color=Yellow]Medium Voltage[/color].
+
+ There are also wallmount variants of these substations for compact spaces, like shuttles.
+
+
+
+
+
+
+
+
+
+ ## High Voltage Network
+ The [color=Orange]High Voltage[/color] Network is used for moving large amount of power across the station. It is used to power most power handling equipment, such as SMES units and Substations.
+
+ Most high-output generators output power to the [color=Orange]High Voltage[/color] Network.
+
+
+
+
+
+
+
+
+ ## Shock Damage
+ If you are shocked by a cable carrying power, you will take damage. The amount of damage you take is based on the voltage of the cable that shocked you.
+
+ [color=green]Low Voltage[/color] cables will deal less damage than [color=Yellow]Medium Voltage[/color] cables, which will deal less damage than [color=Orange]High Voltage[/color] cables.
+
+ Energized [color=Orange]High Voltage[/color] and [color=Yellow]Medium Voltage[/color] cabling hurts, so be sure to wear insulated gloves when working with it.
+
+
diff --git a/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml
new file mode 100644
index 000000000000..6ac749120bcd
--- /dev/null
+++ b/Resources/ServerInfo/Guidebook/Engineering/WirePanels.xml
@@ -0,0 +1,29 @@
+
+ # Wire Panels
+ Some station devices like airlocks, vending machines, and arcade consoles have wire panels, which control certain aspects of their functionality.
+
+ These panels can be opened using a screwdriver to access the wiring inside.
+
+
+
+
+
+
+
+ From here, you can use wirecutters and a multitool to interact with the wiring. Note that interacting with the wiring often requires insulated gloves, as if the wire is live, you can get shocked.
+
+
+
+
+
+ You can cut and mend wires using the wirecutters, and pulse wires using the multitool.
+
+ Cutting wires often completely disables or restores functionality to a device.
+ It may also trigger unintended functionality, like shocking people, dropping door bolts, or exploding.
+
+ Pulsing wires can have a variety of effects, but oftentimes it either temporarily disables or enables functionality.
+
+ You can't pulse wires if the wire you're trying to pulse is cut. You have to mend the wire first.
+
+
+
diff --git a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
index c7b7ad2098d2..5aa4f906cb17 100644
--- a/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
+++ b/Resources/ServerInfo/Guidebook/Security/CriminalRecords.xml
@@ -15,6 +15,7 @@
- The criminal records themselves
+ - The filter button below the crew list can be used to show only wanted, detained, or paroled crew.
In the record section you can:
- See security-related information about a crewmember like their name, fingerprints and DNA.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
index c7e136882adf..44ad34deb66f 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC14ICinOOC.xml
@@ -2,9 +2,6 @@
# Core Rule 14 - Do not use LOOC or OOC to share current round information
Local Out of Character (LOOC) and Out of Character (OOC) channel are meant for things that don't relate to the current round. Using these channels to share round info is often referred to as "IC in OOC" or "ick ock".
- ## MRP Amendment
- Except in circumstances where it would be otherwise required to explain mechanics of the game, this rule is also extended to using LOOC to communicate with other players. Players should be using in-game in-character forms of communication, even when teaching new players.
-
## Examples
Things you should [color=#a4885c]not[/color] do:
- Use LOOC to tell someone you are an antagonist.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
index 1f2766d0d0c6..49785ba1bd5d 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml
@@ -6,9 +6,6 @@
"Antag rolling" refers to a player abandoning their role if they do not get an antagonist role.
- ## MRP Amendment
- Players should be attempting to perform their assigned role duties. They should not be constantly leaving their department, or the station, unless required by their role (or they are an antagonist and are completing their objectives), to the point they have spent more time away from their department than in it.
-
## Examples
Acceptable:
- As an engineer, building a bar in maintenance while there is nothing important for engineering to do.
diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
index bd17f18aacfe..49878fb422c5 100644
--- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
+++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR13PerformRole.xml
@@ -5,7 +5,7 @@
Don't perform other people's jobs, especially where the relevance to you personally is low. This also covers performing the role of security.
## MRP Amendment
- Players should not repeatedly change out of a role and into another, or repeatedly perform the duties of a role they are not. If you do not like playing a role, or do not want to play a role, you should be disabling it in the customization screen.
+ This is enforced more strictly on MRP.
## Examples
Acceptable:
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png
new file mode 100644
index 000000000000..7f6154cd674d
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-vox.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png
new file mode 100644
index 000000000000..197e2534298b
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png
new file mode 100644
index 000000000000..4486bff5622c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-vox.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png
new file mode 100644
index 000000000000..e8aaf06567fc
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png
new file mode 100644
index 000000000000..5082ccf0b82f
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-vox.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png
new file mode 100644
index 000000000000..9571c0e2c4f4
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png
new file mode 100644
index 000000000000..4e8b8a345b00
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-flash.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png
new file mode 100644
index 000000000000..b6e9cb615de8
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon-unshaded.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png
new file mode 100644
index 000000000000..7f2b5b41ec3f
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png
new file mode 100644
index 000000000000..34262103f755
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/light-overlay.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json
new file mode 100644
index 000000000000..d3ac9adcb7d8
--- /dev/null
+++ b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json
@@ -0,0 +1,48 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)",
+
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "icon-unshaded"
+ },
+ {
+ "name": "icon-flash"
+ },
+ {
+ "name": "light-overlay"
+ },
+ {
+ "name": "equipped-head",
+ "directions": 4
+ },
+ {
+ "name": "equipped-head-light",
+ "directions": 4
+ },
+ {
+ "name": "equipped-head-unshaded",
+ "directions": 4
+ },
+ {
+ "name": "equipped-head-vox",
+ "directions": 4
+ },
+ {
+ "name": "equipped-head-light-vox",
+ "directions": 4
+ },
+ {
+ "name": "equipped-head-unshaded-vox",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png
new file mode 100644
index 000000000000..3e5c4e24ee49
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-vox.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png
new file mode 100644
index 000000000000..a55e3eb9a885
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png
new file mode 100644
index 000000000000..29f2e238283c
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png
new file mode 100644
index 000000000000..e41244ac632e
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png
new file mode 100644
index 000000000000..a44cb21e070f
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json
new file mode 100644
index 000000000000..fe0cc3ebbd7a
--- /dev/null
+++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json
@@ -0,0 +1,32 @@
+
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)",
+
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-OUTERCLOTHING",
+ "directions": 4
+ },
+ {
+ "name": "equipped-OUTERCLOTHING-vox",
+ "directions": 4
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png
new file mode 100644
index 000000000000..13086e785415
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded-vox.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png
new file mode 100644
index 000000000000..4cbdf1262f6c
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-unshaded.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png
index 6d9f6dbead9a..1c537dac9d67 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING-vox.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png
index 17e322a69566..3183446dadfc 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png
new file mode 100644
index 000000000000..e386869e3fee
Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon-unshaded.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png
index 57fe7a1def94..c8e89820e715 100644
Binary files a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
index 4c56c355a494..f228d235f719 100644
--- a/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
+++ b/Resources/Textures/Clothing/OuterClothing/Vests/hazard.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. Vox state made by Flareguy for Space Station 14",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. Vox state made by Flareguy for Space Station 14. Modified and splited into shaded-unshaded states by kosticia.",
"size": {
"x": 32,
"y": 32
@@ -10,14 +10,25 @@
{
"name": "icon"
},
+ {
+ "name": "icon-unshaded"
+ },
{
"name": "equipped-OUTERCLOTHING",
"directions": 4
},
+ {
+ "name": "equipped-OUTERCLOTHING-unshaded",
+ "directions": 4
+ },
{
"name": "equipped-OUTERCLOTHING-vox",
"directions": 4
},
+ {
+ "name": "equipped-OUTERCLOTHING-unshaded-vox",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png
new file mode 100644
index 000000000000..19b4e13ec1de
Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon-on.png differ
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png
new file mode 100644
index 000000000000..9eb33d5350c5
Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/icon.png differ
diff --git a/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json
new file mode 100644
index 000000000000..31f288131f62
--- /dev/null
+++ b/Resources/Textures/Interface/Actions/actions_fakemindshield.rsi/meta.json
@@ -0,0 +1,17 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Created by Ubaser (Discord) for SS14, Modified for purpose by brassicaprime69 (Discord)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "icon-on"
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json
new file mode 100644
index 000000000000..8dddb61e05a9
--- /dev/null
+++ b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/meta.json
@@ -0,0 +1,27 @@
+{
+ "version": 1,
+ "license": "CC-BY-NC-SA-3.0",
+ "copyright": "Taken from and modified by kiwedespars on Citadel Station at commit https://github.com/Citadel-Station-13/Citadel-Station-13/commit/e145bdafe83e2cf38d148c39f073da5e7b0cb456",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "voidblink",
+ "delays": [
+ [
+ 0.1,
+ 0.3,
+ 0.1,
+ 0.3,
+ 0.1,
+ 0.3,
+ 0.1,
+ 0.3,
+ 0.3
+ ]
+ ]
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png
new file mode 100644
index 000000000000..c44f8890acd8
Binary files /dev/null and b/Resources/Textures/Objects/Magic/Eldritch/eldritch_actions.rsi/voidblink.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png
new file mode 100644
index 000000000000..c252a030f35a
Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png
new file mode 100644
index 000000000000..90af3cb11a70
Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid-inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png
new file mode 100644
index 000000000000..76d87d47233b
Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/asteroid.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png
index e3c0948112e8..c57497a6ec8f 100644
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png and b/Resources/Textures/Objects/Tiles/tile.rsi/astroice.png differ
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
index 7562d0f9b11b..a39ba782facc 100644
--- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
+++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional copyrights see tiles folder.",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, additional attributions available in the Resources/Textures/Tiles/attributions.yml file. Ice tile and Snow tile modifications, Astreroid tile and in-hands created by Southbridge-fur (github)",
"size": {
"x": 32,
"y": 32
@@ -549,6 +549,17 @@
},
{
"name": "wood-large"
+ },
+ {
+ "name": "asteroid"
+ },
+ {
+ "name": "asteroid-inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "asteroid-inhand-left",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/snow.png b/Resources/Textures/Objects/Tiles/tile.rsi/snow.png
index 385e2d59ac24..1e27fec6762a 100644
Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/snow.png and b/Resources/Textures/Objects/Tiles/tile.rsi/snow.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png
new file mode 100644
index 000000000000..b8903ccb4f7b
Binary files /dev/null and b/Resources/Textures/Objects/Tools/access_breaker.rsi/equipped-BELT.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png
new file mode 100644
index 000000000000..fab24db72c81
Binary files /dev/null and b/Resources/Textures/Objects/Tools/access_breaker.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png
new file mode 100644
index 000000000000..8ea6bbb23f26
Binary files /dev/null and b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png
new file mode 100644
index 000000000000..32070ed47a97
Binary files /dev/null and b/Resources/Textures/Objects/Tools/access_breaker.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json b/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json
new file mode 100644
index 000000000000..1e1baabbba21
--- /dev/null
+++ b/Resources/Textures/Objects/Tools/access_breaker.rsi/meta.json
@@ -0,0 +1,44 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by 20kdc (GitHub), edited by DieselMohawk (GitHub)",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "icon",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.5,
+ 0.5,
+ 0.5,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "equipped-BELT"
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png
index 133fc41a804a..c0555d9ed3e1 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/base.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png
index f534d46c0bf4..5a96a5574935 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/bolt-open.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png
index 38a2686dfb50..c3ed4ab31714 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-BACKPACK.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png
index 38a2686dfb50..c3ed4ab31714 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/equipped-SUITSTORAGE.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png
index fa9fd976bf65..f77038373381 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png
index 992adeac6bc4..5f2eaf5c304b 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-left.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png
index e909999ff93a..c397e9ea12c9 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/inhand-right.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png
index 1a06d11129dd..8242a6d00ab3 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/mag-0.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
index bd66b2c9685c..59312b50931e 100644
--- a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
+++ b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244",
+ "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a/icons/obj/guns/projectile/drozd.dmi, sprite modification by Jaсkal 298/TaralGit, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244, all sprites minus suppressor heavily edited by Emisse for SS14",
"size": {
"x": 32,
"y": 32
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png
index ee66cf3df9bc..3413644e2f2d 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-left.png differ
diff --git a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png
index c5d66956051b..96b7b29e8e72 100644
Binary files a/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png and b/Resources/Textures/Objects/Weapons/Guns/SMGs/drozd.rsi/wielded-inhand-right.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png
deleted file mode 100644
index ded81ca75f5a..000000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/broken.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
index 004666665602..7fa89a8ca15b 100644
--- a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
+++ b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/meta.json
@@ -1,30 +1,60 @@
{
"version":1,
- "license":"CC-BY-SA-3.0",
- "copyright":"Taken from https://github.com/discordia-space/CEV-Eris/blob/d1e0161af146835f4fb79d21a6200caa9cc842d0/icons/obj/power.dmi and modified.",
+ "license":"CC-BY-SA-4.0",
+ "copyright":"KalimbaMachine (github) & CaasGit (github) for Space Station 14",
"size":{"x":32,"y":32},
"states":
[
{
- "name": "normal",
- "select": [],
- "flags": {},
- "directions": 8
+ "name": "solar_assembly"
},
{
- "name": "broken",
- "select": [],
- "flags": {},
- "directions": 1
+ "name": "solar_assembly_tracker_circuit"
},
{
- "name": "static"
+ "name": "solar_panel_glass_broken"
},
{
- "name": "solar_assembly"
+ "name": "solar_panel_plasma_broken"
+ },
+ {
+ "name": "solar_panel_uranium_broken"
+ },
+ {
+ "name": "solar_panel_glass"
+ },
+ {
+ "name": "solar_panel_plasma"
+ },
+ {
+ "name": "solar_panel_uranium"
},
{
"name": "solar_tracker"
+ },
+ {
+ "name": "solar_tracker_broken"
+ },
+ {
+ "name": "solar_assembly_uncabled"
+ },
+ {
+ "name": "solar_assembly_tracker_circuit_uncabled"
+ },
+ {
+ "name": "solar_panel_glass_uncabled"
+ },
+ {
+ "name": "solar_panel_plasma_uncabled"
+ },
+ {
+ "name": "solar_panel_uranium_uncabled"
+ },
+ {
+ "name": "solar_tracker_uncabled"
+ },
+ {
+ "name": "solar_tracker_broken_uncabled"
}
]
}
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png
deleted file mode 100644
index 1e1c620029d4..000000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/normal.png and /dev/null differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png
index 6714f199e4fc..191ebeaaa329 100644
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png
new file mode 100644
index 000000000000..e83efe086947
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png
new file mode 100644
index 000000000000..52db0ee4a59b
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_tracker_circuit_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png
new file mode 100644
index 000000000000..d1fc51c95e10
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_assembly_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png
new file mode 100644
index 000000000000..ae84f90a86b5
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png
new file mode 100644
index 000000000000..13eeac91cea8
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_broken.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png
new file mode 100644
index 000000000000..9e4bfbc11f10
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_glass_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png
new file mode 100644
index 000000000000..a3777f3a7998
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png
new file mode 100644
index 000000000000..465a93267208
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_broken.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png
new file mode 100644
index 000000000000..c1e181ea9116
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_plasma_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png
new file mode 100644
index 000000000000..ae41622a4e43
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png
new file mode 100644
index 000000000000..c2feca3fbdc7
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_broken.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png
new file mode 100644
index 000000000000..fab9dd3ed7e0
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_panel_uranium_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png
index 17abc02d28a6..a36865c79aba 100644
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png
new file mode 100644
index 000000000000..99bdb064758e
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png
new file mode 100644
index 000000000000..2c8a3ec951e2
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_broken_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png
new file mode 100644
index 000000000000..d0684fe3dfdf
Binary files /dev/null and b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/solar_tracker_uncabled.png differ
diff --git a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png b/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png
deleted file mode 100644
index 455a061b31bb..000000000000
Binary files a/Resources/Textures/Structures/Power/Generation/solar_panel.rsi/static.png and /dev/null differ
diff --git a/Resources/map_attributions.txt b/Resources/map_attributions.txt
index a9556b16d0fd..73e6d1ea8f66 100644
--- a/Resources/map_attributions.txt
+++ b/Resources/map_attributions.txt
@@ -57,3 +57,6 @@
- files: ["cog.yml"]
authors: Spacemann
+
+- files: ["convex.yml"]
+ authors: Spacemann
diff --git a/Resources/migration.yml b/Resources/migration.yml
index ca558af97aa9..dd99cabfdad9 100644
--- a/Resources/migration.yml
+++ b/Resources/migration.yml
@@ -544,3 +544,6 @@ DrinkIrishCarBomb: DrinkIrishSlammer
#2025-01-06
ClothingMaskSexyClown: ClothingMaskBlushingClown
ClothingMaskSexyMime: ClothingMaskBlushingMime
+
+# 2025-01-27
+FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce
diff --git a/RobustToolbox b/RobustToolbox
index aa8fe8ac92d5..d7f6a9ba4394 160000
--- a/RobustToolbox
+++ b/RobustToolbox
@@ -1 +1 @@
-Subproject commit aa8fe8ac92d5ac509696ee8d782385c94b98d720
+Subproject commit d7f6a9ba4394b34e55b3fdd4d98c5dfe2bb21642